|
@ -14,6 +14,7 @@ |
|
|
#include <GxEPD2_BW.h> |
|
|
#include <GxEPD2_BW.h> |
|
|
#include <Fonts/FreeMonoBold9pt7b.h> |
|
|
#include <Fonts/FreeMonoBold9pt7b.h> |
|
|
#include <Fonts/FreeSans9pt7b.h> |
|
|
#include <Fonts/FreeSans9pt7b.h> |
|
|
|
|
|
#include <Fonts/Org_01.h> |
|
|
#include "bitmaps/Bitmaps128x250.h" |
|
|
#include "bitmaps/Bitmaps128x250.h" |
|
|
#include <Adafruit_GFX.h> |
|
|
#include <Adafruit_GFX.h> |
|
|
|
|
|
|
|
@ -61,6 +62,10 @@ void helloWorld() |
|
|
display.fillScreen(GxEPD_WHITE); |
|
|
display.fillScreen(GxEPD_WHITE); |
|
|
display.setCursor(x, y); |
|
|
display.setCursor(x, y); |
|
|
display.print(HelloWorld); |
|
|
display.print(HelloWorld); |
|
|
|
|
|
|
|
|
|
|
|
display.setCursor(5, display.height()-5); |
|
|
|
|
|
display.setFont(&Org_01); |
|
|
|
|
|
display.print(FW_VERSION); |
|
|
} |
|
|
} |
|
|
while (display.nextPage()); |
|
|
while (display.nextPage()); |
|
|
//Serial.println("helloWorld done");
|
|
|
//Serial.println("helloWorld done");
|
|
|