// GxEPD_Example : test example for e-Paper displays from Waveshare and from Dalian Good Display Inc. // // Created by Jean-Marc Zingg based on demo code from Good Display, // available on http://www.e-paper-display.com/download_list/downloadcategoryid=34&isMode=false.html // // The e-paper displays are available from: // // https://www.aliexpress.com/store/product/Wholesale-1-54inch-E-Ink-display-module-with-embedded-controller-200x200-Communicate-via-SPI-interface-Supports/216233_32824535312.html // // http://www.buy-lcd.com/index.php?route=product/product&path=2897_8363&product_id=35120 // or https://www.aliexpress.com/store/product/E001-1-54-inch-partial-refresh-Small-size-dot-matrix-e-paper-display/600281_32815089163.html // // Supporting Arduino Forum Topics: // Waveshare e-paper displays with SPI: http://forum.arduino.cc/index.php?topic=487007.0 // Good Dispay ePaper for Arduino : https://forum.arduino.cc/index.php?topic=436411.0 // mapping suggestion from Waveshare SPI e-Paper to Wemos D1 mini // BUSY -> D2, RST -> D4, DC -> D3, CS -> D8, CLK -> D5, DIN -> D7, GND -> GND, 3.3V -> 3.3V // mapping suggestion from Waveshare SPI e-Paper to generic ESP8266 // BUSY -> GPIO4, RST -> GPIO2, DC -> GPIO0, CS -> GPIO15, CLK -> GPIO14, DIN -> GPIO13, GND -> GND, 3.3V -> 3.3V // mapping suggestion for ESP32, e.g. LOLIN32, see .../variants/.../pins_arduino.h for your board // NOTE: there are variants with different pins for SPI ! CHECK SPI PINS OF YOUR BOARD // BUSY -> 4, RST -> 16, DC -> 17, CS -> SS(5), CLK -> SCK(18), DIN -> MOSI(23), GND -> GND, 3.3V -> 3.3V // new mapping suggestion for STM32F1, e.g. STM32F103C8T6 "BluePill" // BUSY -> A1, RST -> A2, DC -> A3, CS-> A4, CLK -> A5, DIN -> A7 // mapping suggestion for AVR, UNO, NANO etc. // BUSY -> 7, RST -> 9, DC -> 8, CS-> 10, CLK -> 13, DIN -> 11 // mapping suggestion for Arduino MEGA // BUSY -> 7, RST -> 9, DC -> 8, CS-> 53, CLK -> 52, DIN -> 51 // mapping suggestion for Arduino DUE // BUSY -> 7, RST -> 9, DC -> 8, CS-> 77, CLK -> 76, DIN -> 75 // SPI pins are also on 6 pin 2x3 SPI header // include library, include base class, make path known #include // select the display class to use, only one //#include // 1.54" b/w //#include // 1.54" b/w/r 200x200 //#include // 1.54" b/w/r 152x152 //#include // 2.13" b/w 104x212 flexible //#include // 2.13" b/w //#include // 2.13" b/w new panel //#include // 2.13" b/w newer panel //#include // 2.13" b/w/r //#include // 2.9" b/w //#include // 2.9" b/w IL0373 //#include // 2.9" b/w/r //#include // 2.6" b/w //#include // 2.7" b/w/r //#include // 2.7" b/w //#include // 3.7" b/w //#include // 4.2" b/w //#include // 4.2" b/w/r //#include // 5.83" b/w //#include // 7.5" b/w //#include // 7.5" b/w 800x480 //#include // 7.5" b/w/r //#include // 7.5" b/w/r 800x480 #include GxEPD_BitmapExamples // FreeFonts from Adafruit_GFX #include #include #include #include #include #include #if defined(ESP8266) // for SPI pin definitions see e.g.: // C:\Users\xxx\AppData\Local\Arduino15\packages\esp8266\hardware\esp8266\2.4.2\variants\generic\common.h GxIO_Class io(SPI, /*CS=D8*/ SS, /*DC=D3*/ 0, /*RST=D4*/ 2); // arbitrary selection of D3(=0), D4(=2), selected for default of GxEPD_Class GxEPD_Class display(io, /*RST=D4*/ 2, /*BUSY=D2*/ 4); // default selection of D4(=2), D2(=4) // Heltec E-Paper 1.54" b/w without RST, BUSY //GxEPD_Class display(io, /*RST=D4*/ -1, /*BUSY=D2*/ -1); // no RST, no BUSY // Waveshare e-Paper ESP8266 Driver Board //GxIO_Class io(SPI, 15, 4, 5); //GxEPD_Class display(io, 5, 16); #elif defined(ESP32) // for SPI pin definitions see e.g.: // C:\Users\xxx\Documents\Arduino\hardware\espressif\esp32\variants\lolin32\pins_arduino.h GxIO_Class io(SPI, /*CS=5*/ SS, /*DC=*/ 17, /*RST=*/ 16); // arbitrary selection of 17, 16 GxEPD_Class display(io, /*RST=*/ 16, /*BUSY=*/ 4); // arbitrary selection of (16), 4 #elif defined(ARDUINO_ARCH_SAMD) // for SPI pin definitions see e.g.: // C:\Users\xxx\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.6.19\variants\mkr1000\variant.h // C:\Users\xxx\AppData\Local\Arduino15\packages\arduino\hardware\samd\1.6.19\variants\mkrzero\variant.h GxIO_Class io(SPI, /*CS=*/ 4, /*DC=*/ 7, /*RST=*/ 6); GxEPD_Class display(io, /*RST=*/ 6, /*BUSY=*/ 5); #elif defined(ARDUINO_GENERIC_STM32F103C) && defined(MCU_STM32F103C8) // STM32 Boards(STM32duino.com) Generic STM32F103C series STM32F103C8 // for SPI pin definitions see e.g.: // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103c\variant.h // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103c\board\board.h // new mapping suggestion for STM32F1, e.g. STM32F103C8T6 "BluePill" // BUSY -> A1, RST -> A2, DC -> A3, CS-> A4, CLK -> A5, DIN -> A7 GxIO_Class io(SPI, /*CS=*/ SS, /*DC=*/ 3, /*RST=*/ 2); GxEPD_Class display(io, /*RST=*/ 2, /*BUSY=*/ 1); #elif defined(ARDUINO_GENERIC_STM32F103V) && defined(MCU_STM32F103VB) // STM32 Boards(STM32duino.com) Generic STM32F103V series STM32F103VB // for SPI pin definitions see e.g.: // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103vb\variant.h // C:\Users\xxx\Documents\Arduino\hardware\Arduino_STM32\STM32F1\variants\generic_stm32f103vb\board\board.h // Good Display DESPI-M01 // note: needs jumper wires from SS=PA4->CS, SCK=PA5->SCK, MOSI=PA7->SDI GxIO_Class io(SPI, /*CS=*/ SS, /*DC=*/ PE15, /*RST=*/ PE14); // DC, RST as wired by DESPI-M01 GxEPD_Class display(io, /*RST=*/ PE14, /*BUSY=*/ PE13); // RST, BUSY as wired by DESPI-M01 #elif defined(ARDUINO_AVR_MEGA2560) // for SPI pin definitions see e.g.: // C:\Users\xxx\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.21\variants\mega\pins_arduino.h // select one, depending on your CS connection GxIO_Class io(SPI, /*CS=*/ SS, /*DC=*/ 8, /*RST=*/ 9); // arbitrary selection of 8, 9 selected for default of GxEPD_Class //GxIO_Class io(SPI, /*CS=*/ 10, /*DC=*/ 8, /*RST=*/ 9); // arbitrary selection of 8, 9, CS on 10 (for CS same as on UNO, for SPI on ICSP use) GxEPD_Class display(io, /*RST=*/ 9, /*BUSY=*/ 7); // default selection of (9), 7 #else // for SPI pin definitions see e.g.: // C:\Users\xxx\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.21\variants\standard\pins_arduino.h GxIO_Class io(SPI, /*CS=*/ SS, /*DC=*/ 8, /*RST=*/ 9); // arbitrary selection of 8, 9 selected for default of GxEPD_Class GxEPD_Class display(io, /*RST=*/ 9, /*BUSY=*/ 7); // default selection of (9), 7 #endif void setup() { Serial.begin(115200); Serial.println(); Serial.println("setup"); display.init(115200); // enable diagnostic output on Serial Serial.println("setup done"); } void loop() { showBitmapExample(); delay(2000); #if !defined(__AVR) //drawCornerTest(); showFont("FreeMonoBold9pt7b", &FreeMonoBold9pt7b); showFont("FreeMonoBold12pt7b", &FreeMonoBold12pt7b); //showFont("FreeMonoBold18pt7b", &FreeMonoBold18pt7b); //showFont("FreeMonoBold24pt7b", &FreeMonoBold24pt7b); #else display.drawCornerTest(); delay(2000); display.drawPaged(showFontCallback); #endif delay(10000); } #if defined(_GxGDEP015OC1_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); delay(5000); showBoat(); } #endif #if defined(_GxGDEW0154Z04_H_) #define HAS_RED_COLOR void showBitmapExample() { #if !defined(__AVR) display.drawPicture(BitmapWaveshare_black, BitmapWaveshare_red, sizeof(BitmapWaveshare_black), sizeof(BitmapWaveshare_red), GxEPD::bm_normal); delay(5000); #endif display.drawExamplePicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); } #endif #if defined(_GxGDEW0154Z17_H_) #define HAS_RED_COLOR void showBitmapExample() { display.drawExamplePicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); display.drawExamplePicture(BitmapExample3, BitmapExample4, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); //display.drawBitmap(BitmapExample2, sizeof(BitmapExample2)); } #endif #if defined(_GxGDE0213B1_H_) void showBitmapExample() { display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); #if !defined(__AVR) display.drawBitmap(first, sizeof(first)); delay(5000); display.drawBitmap(second, sizeof(second)); delay(5000); display.drawBitmap(third, sizeof(third)); delay(5000); #endif display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); delay(5000); showBoat(); } #endif #if defined(_GxGDEH0213B72_H_) || defined(_GxGDEH0213B73_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); #if !defined(__AVR) display.drawExampleBitmap(BitmapExample3, sizeof(BitmapExample3)); delay(5000); display.drawExampleBitmap(logo, sizeof(logo)); delay(5000); display.drawExampleBitmap(first, sizeof(first)); delay(5000); display.drawExampleBitmap(second, sizeof(second)); delay(5000); display.drawExampleBitmap(third, sizeof(third)); delay(5000); #endif display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); delay(5000); showBoat(); } #endif #if defined(_GxGDEW0213I5F_H_) void showBitmapExample() { display.drawBitmap(BitmapExample1, sizeof(BitmapExample1), GxEPD::bm_invert); delay(5000); display.drawBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); #if !defined(__AVR) display.drawBitmap(BitmapExample3, sizeof(BitmapExample3)); delay(5000); display.drawBitmap(BitmapExample4, sizeof(BitmapExample4)); delay(5000); #endif display.fillScreen(GxEPD_WHITE); display.drawBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); delay(5000); } #endif #if defined(_GxGDEW0213Z16_H_) #define HAS_RED_COLOR void showBitmapExample() { display.drawPicture(BitmapWaveshare_black, BitmapWaveshare_red, sizeof(BitmapWaveshare_black), sizeof(BitmapWaveshare_red)); delay(5000); display.drawExamplePicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); #if !defined(__AVR) display.drawExamplePicture(BitmapExample3, BitmapExample4, sizeof(BitmapExample3), sizeof(BitmapExample4)); delay(5000); #endif display.drawExampleBitmap(BitmapWaveshare_black, sizeof(BitmapWaveshare_black)); delay(2000); // example bitmaps for b/w/r are normal on b/w, but inverted on red display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2), GxEPD::bm_invert); delay(2000); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); } #endif #if defined(_GxGDEH029A1_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); delay(5000); showBoat(); } #endif #if defined(_GxGDEW029T5_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.drawExampleBitmap(BitmapExample3, sizeof(BitmapExample3)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); delay(5000); // showBoat(); } #endif #if defined(_GxGDEW029Z10_H_) #define HAS_RED_COLOR void showBitmapExample() { #if defined(__AVR) display.drawExamplePicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); #else display.drawPicture(BitmapWaveshare_black, BitmapWaveshare_red, sizeof(BitmapWaveshare_black), sizeof(BitmapWaveshare_red)); delay(5000); display.drawExamplePicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); display.drawExamplePicture(BitmapExample3, BitmapExample4, sizeof(BitmapExample3), sizeof(BitmapExample4)); delay(5000); display.drawExampleBitmap(BitmapWaveshare_black, sizeof(BitmapWaveshare_black)); delay(2000); // example bitmaps for b/w/r are normal on b/w, but inverted on red display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2), GxEPD::bm_invert); delay(2000); #endif display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); } #endif #if defined(_GxGDEW026T0_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); #if !defined(__AVR) display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(2000); display.drawExampleBitmap(BitmapExample3, sizeof(BitmapExample3)); delay(2000); #endif display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); } #endif #if defined(_GxGDEW027C44_H_) #define HAS_RED_COLOR void showBitmapExample() { // draw black and red bitmap display.drawPicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); return; display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.fillScreen(GxEPD_WHITE); display.drawBitmap(0, 0, BitmapExample1, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); } #endif #if defined(_GxGDEW027W3_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); #if !defined(__AVR) display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(2000); display.drawExampleBitmap(BitmapExample3, sizeof(BitmapExample3)); delay(2000); display.drawExampleBitmap(BitmapExample4, sizeof(BitmapExample4)); delay(2000); display.drawExampleBitmap(BitmapExample5, sizeof(BitmapExample5)); delay(2000); #endif display.drawExampleBitmap(BitmapWaveshare, sizeof(BitmapWaveshare)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); } #endif #if defined(_GxGDEW0371W7_H_) void showBitmapExample() { display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); #if !defined(__AVR) display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(2000); display.drawExampleBitmap(BitmapExample3, sizeof(BitmapExample3)); delay(2000); #endif display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); } #endif #if defined(_GxGDEW042T2_H_) void showBitmapExample() { #if defined(__AVR) display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); #else display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); #endif } #endif #if defined(_GxGDEW042Z15_H_) #define HAS_RED_COLOR void showBitmapExample() { #if defined(__AVR) display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); #else // draw black and red bitmap display.drawPicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); delay(5000); display.drawPicture(BitmapExample3, BitmapExample4, sizeof(BitmapExample3), sizeof(BitmapExample4)); delay(5000); display.drawPicture(BitmapWaveshare_black, BitmapWaveshare_red, sizeof(BitmapWaveshare_black), sizeof(BitmapWaveshare_red)); delay(5000); display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); #endif } #endif #if defined(_GxGDEW0583T7_H_) void showBitmapExample() { #if defined(__AVR) //display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); #else display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); #endif } #endif #if defined(_GxGDEW075T8_H_) void showBitmapExample() { #if defined(__AVR) display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); #else display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); #endif } #endif #if defined(_GxGDEW075Z09_H_) #define HAS_RED_COLOR void showBitmapExample() { #if defined(__AVR) display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); #elif defined(ARDUINO_GENERIC_STM32F103C) display.drawBitmap(BitmapExample1, sizeof(BitmapExample1)); #elif defined(ARDUINO_GENERIC_STM32F103V) display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExamplePicture_3C(BitmapPicture_3C, sizeof(BitmapPicture_3C)); #else display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.drawExamplePicture_3C(BitmapPicture_3C, sizeof(BitmapPicture_3C)); #endif } #endif #if defined(_GxGDEW075T7_H_) void showBitmapExample() { #if defined(__AVR) display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); #else display.drawExampleBitmap(BitmapExample1, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample2, sizeof(BitmapExample2)); delay(5000); display.drawExampleBitmap(BitmapExample3, sizeof(BitmapExample1)); delay(2000); display.drawExampleBitmap(BitmapExample4, sizeof(BitmapExample2)); delay(5000); display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); display.update(); #endif } #endif #if defined(_GxGDEW075Z08_H_) #define HAS_RED_COLOR void showBitmapExample() { #if defined(__AVR) || defined(MCU_STM32F103C8) // draw (part of) black bitmap, not enough space for red display.drawPicture(BitmapExample1, 0, sizeof(BitmapExample1), 0); #else // draw black and red bitmap display.drawExamplePicture(BitmapExample1, BitmapExample2, sizeof(BitmapExample1), sizeof(BitmapExample2)); //delay(5000); //display.drawPicture(BitmapExample1, 0, sizeof(BitmapExample1), 0); //delay(5000); //display.drawPicture(0, BitmapExample2, 0, sizeof(BitmapExample2)); //delay(5000); //display.drawExamplePicture(BitmapExample1, 0, sizeof(BitmapExample1), 0); //delay(5000); //display.drawExamplePicture(0, BitmapExample2, 0, sizeof(BitmapExample2)); //delay(5000); //display.fillScreen(GxEPD_WHITE); //display.drawBitmap(0, 0, BitmapExample1, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); //display.update(); //delay(5000); //display.fillScreen(GxEPD_WHITE); //display.drawBitmap(0, 0, BitmapExample2, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); //display.update(); //display.drawExampleBitmap(BitmapExample1, 0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, GxEPD_BLACK); //display.updateWindow(0, 0, GxEPD_WIDTH, GxEPD_HEIGHT, false); #endif } #endif void showFont(const char name[], const GFXfont* f) { display.fillScreen(GxEPD_WHITE); display.setTextColor(GxEPD_BLACK); display.setFont(f); display.setCursor(0, 0); display.println(); display.println(name); display.println(" !\"#$%&'()*+,-./"); display.println("0123456789:;<=>?"); display.println("@ABCDEFGHIJKLMNO"); display.println("PQRSTUVWXYZ[\\]^_"); #if defined(HAS_RED_COLOR) display.setTextColor(GxEPD_RED); #endif display.println("`abcdefghijklmno"); display.println("pqrstuvwxyz{|}~ "); display.update(); delay(5000); } void showFontCallback() { const char* name = "FreeMonoBold9pt7b"; const GFXfont* f = &FreeMonoBold9pt7b; display.fillScreen(GxEPD_WHITE); display.setTextColor(GxEPD_BLACK); display.setFont(f); display.setCursor(0, 0); display.println(); display.println(name); display.println(" !\"#$%&'()*+,-./"); display.println("0123456789:;<=>?"); display.println("@ABCDEFGHIJKLMNO"); display.println("PQRSTUVWXYZ[\\]^_"); #if defined(HAS_RED_COLOR) display.setTextColor(GxEPD_RED); #endif display.println("`abcdefghijklmno"); display.println("pqrstuvwxyz{|}~ "); } void drawCornerTest() { display.drawCornerTest(); delay(5000); uint8_t rotation = display.getRotation(); for (uint16_t r = 0; r < 4; r++) { display.setRotation(r); display.fillScreen(GxEPD_WHITE); display.fillRect(0, 0, 8, 8, GxEPD_BLACK); display.fillRect(display.width() - 18, 0, 16, 16, GxEPD_BLACK); display.fillRect(display.width() - 25, display.height() - 25, 24, 24, GxEPD_BLACK); display.fillRect(0, display.height() - 33, 32, 32, GxEPD_BLACK); display.update(); delay(5000); } display.setRotation(rotation); // restore } #if defined(_GxGDEP015OC1_H_) || defined(_GxGDE0213B1_H_) || defined(_GxGDEH0213B72_H_) || defined(_GxGDEH0213B73_H_)|| defined(_GxGDEH029A1_H_) #include "IMG_0001.h" void showBoat() { // thanks to bytecrusher: http://forum.arduino.cc/index.php?topic=487007.msg3367378#msg3367378 uint16_t x = (display.width() - 64) / 2; uint16_t y = 5; display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(gImage_IMG_0001, x, y, 64, 180, GxEPD_BLACK); display.update(); delay(500); uint16_t forward = GxEPD::bm_invert | GxEPD::bm_flip_x; uint16_t reverse = GxEPD::bm_invert | GxEPD::bm_flip_x | GxEPD::bm_flip_y; for (; y + 180 + 5 <= display.height(); y += 5) { display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(gImage_IMG_0001, x, y, 64, 180, GxEPD_BLACK, forward); display.updateWindow(0, 0, display.width(), display.height()); delay(500); } delay(1000); for (; y >= 5; y -= 5) { display.fillScreen(GxEPD_WHITE); display.drawExampleBitmap(gImage_IMG_0001, x, y, 64, 180, GxEPD_BLACK, reverse); display.updateWindow(0, 0, display.width(), display.height()); delay(1000); } display.update(); delay(1000); } #endif