From 5dc7fb53f3bcd5c08e4e00371ce5343944b5c37b Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 25 Apr 2025 02:59:59 -0400 Subject: [PATCH] ESP32-C3 ePaper --- ESP32-C3_ePaper/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESP32-C3_ePaper/src/main.cpp b/ESP32-C3_ePaper/src/main.cpp index ef83a42c4..dfbb504c9 100644 --- a/ESP32-C3_ePaper/src/main.cpp +++ b/ESP32-C3_ePaper/src/main.cpp @@ -68,7 +68,7 @@ void setup() { display.print("Archives Storage"); // Display text nicely centered on the display - display.setFont(&Freesans12pt7b); // Specify the font family & size + display.setFont(&FreeSans12pt7b); // Specify the font family & size display.getTextBounds("SERVER DASHBOARD", 10, 100, &tbx, &tby, &tbw, &tbh); // Request width of text to be displayed display.setCursor((display.width() - tbw) / 2, 100); // Calculate x-coordinate value display.print("SERVER DASHBOARD"); // Print the text