Fork of Silabs MemoryLCD library

Dependents:   demoUI whrmDemoUI Host_Software_MAX32664GWEB_HR_EXTENDED Host_Software_MAX32664GWEC_SpO2_HR-_EXTE ... more

C++ library for Sharp Microelectronics 1.28 inch LCD TFT, LS013B7DH03, SPI bus. Forked from Silicon Labs MemoryLCD display driver.

Revision:
12:ca0bcb4777e9
Parent:
10:231fa7861d1f
--- a/BufferedDisplay.cpp	Wed Aug 12 14:06:07 2015 +0000
+++ b/BufferedDisplay.cpp	Wed Jan 02 13:20:35 2019 +0300
@@ -29,7 +29,7 @@
  *
  ******************************************************************************/
 
-#include "BufferedDisplay.h"
+#include "../screen/BufferedDisplay.h"
 
 #define SWAP8(a) ((((a) & 0x80) >> 7) | (((a) & 0x40) >> 5) | (((a) & 0x20) >> 3) | (((a) & 0x10) >> 1) | (((a) & 0x08) << 1) | (((a) & 0x04) << 3) | (((a) & 0x02) << 5) | (((a) & 0x01) << 7))