From bdfb6abba0b0050120867eaa6916782f9c3fbc28 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 25 Apr 2025 03:43:16 -0400 Subject: [PATCH] ESP32-C3 ePaper --- ESP32-C3_ePaper/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ESP32-C3_ePaper/src/main.cpp b/ESP32-C3_ePaper/src/main.cpp index ac2c0db66..c40e0406d 100644 --- a/ESP32-C3_ePaper/src/main.cpp +++ b/ESP32-C3_ePaper/src/main.cpp @@ -77,14 +77,14 @@ void setup() { display.setFont(&FreeMonoBold9pt7b); display.print("Backups"); display.setCursor(str_x, str_y+str_inc+250); -display.print("Free: 25%"); + display.print("Free: 25%"); // Files bar display.drawRect(str_x+100, str_y-str_inc, 100, str_inc, GxEPD_BLACK); display.fillRect(str_x+100, str_y-str_inc, 100*0.25, str_inc, GxEPD_BLACK); // Backups bar display.drawRect(str_x+100, str_y-1, 100, str_inc, GxEPD_BLACK); - display.fillRect(str_x+100, str_y-1, 100*0.75, str_inc, GxEPD_BLACK); - display.fillRect(str_x+100+100*0.75, str_y-1, 100*0.25, str_inc, GxEPD_RED); + display.fillRect(str_x+100, str_y-1, 100*0.75, str_inc, GxEPD_RED); + //display.fillRect(str_x+100+100*0.75, str_y-1, 100*0.25, str_inc, GxEPD_RED); // Display text nicely centered on the display display.setTextColor(GxEPD_WHITE);