ESP32-C3 ePaper

This commit is contained in:
2025-04-25 03:47:15 -04:00
parent bfa117d252
commit 5b66fbcadc

View File

@@ -72,13 +72,13 @@ void setup() {
display.setFont(&FreeMonoBold9pt7b);
display.print("Files");
display.setCursor(str_x+200, str_y);
display.print("Free: 75%");
display.print("25%");
// Display Backups storage usage
display.setCursor(str_x, str_y+str_inc);
display.setFont(&FreeMonoBold9pt7b);
display.print("Backups");
display.setCursor(str_x+200, str_y+str_inc);
display.print("Free: 25%");
display.print("75%");
// 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);