From a017e7e80fde8d94644186ce85bb9629ded49a79 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 25 Apr 2025 00:24:39 -0400 Subject: [PATCH] ESP32-C3 ePaper --- ESP32-C3_ePaper/src/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ESP32-C3_ePaper/src/main.cpp b/ESP32-C3_ePaper/src/main.cpp index c2c5b4665..846f2f73f 100644 --- a/ESP32-C3_ePaper/src/main.cpp +++ b/ESP32-C3_ePaper/src/main.cpp @@ -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(); }