ESP32-C3 ePaper

This commit is contained in:
2025-04-25 00:24:39 -04:00
parent 7815f2c420
commit a017e7e80f

View File

@@ -62,11 +62,11 @@ void setup() {
display.setCursor(10, 100);
display.setFont(&FreeSerif24pt7b);
display.print("DATA BOARD");
display.print("INFO DASHBOARD");
//display.update();
display.drawBitmap(200, 200, gridicons_bug, 24, 24, GxEPD_BLACK);
display.drawBitmap(150, 150, gridicons_cloud, 24, 24, GxEPD_BLACK);
//display.drawBitmap(200, 200, gridicons_bug, 24, 24, GxEPD_BLACK);
//display.drawBitmap(150, 150, gridicons_cloud, 24, 24, GxEPD_BLACK);
// Add UI elements
// Draw axis: (x1,y1) @ 5, 100 and width-2*margin_x height-2*margin_y
@@ -82,7 +82,7 @@ void setup() {
display.drawLine(0, 200, display.width(), 200, GxEPD_BLACK);
display.drawLine(200, 0, 200, display.height(), GxEPD_BLACK);*/
display.invertDisplay(true);
//display.invertDisplay(true);
display.update();
}