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:
2:d7fc318a1528
Parent:
1:d27a7e06c233
Child:
3:e4399b5ceb4b
--- a/epd1in54.cpp	Mon Mar 26 17:20:56 2018 +0000
+++ b/epd1in54.cpp	Tue Mar 27 17:36:34 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]));
     }
 }