E_paper, E_ink, Screen size 1.54", resolution 200x200, 4 wire spi, Waveshare, Black and White, Kl25Z, 8 wire print connector, supply 3.3 Volt, IL0373 Controller, font size is 8, 12, 16 and 24.

Dependencies:   mbed

Revision:
3:e4399b5ceb4b
Parent:
2:d7fc318a1528
Child:
6:469fb6b0d26d
--- a/epd1in54.cpp	Tue Mar 27 17:36:34 2018 +0000
+++ b/epd1in54.cpp	Tue Mar 27 17:59:56 2018 +0000
@@ -188,7 +188,7 @@
     SendCommand(WRITE_RAM);
     /* send the image data */
     for (int i = 0; i < this->width / 8 * this->height; i++) {
-        SendData(pgm_read_byte(&image_buffer[i]));
+        //SendData(pgm_read_byte(&image_buffer[i]));
          SendData(*(&image_buffer[i]));
     }
 }