From 052ca9f12f3febdbcce6aa85f1223b00c08645f8 Mon Sep 17 00:00:00 2001 From: Florent Date: Sun, 20 Apr 2025 16:44:30 +0200 Subject: [PATCH] fix screen boot --- src/helpers/ui/GxEPDDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/ui/GxEPDDisplay.cpp b/src/helpers/ui/GxEPDDisplay.cpp index 2e3e5589..0b8bf502 100644 --- a/src/helpers/ui/GxEPDDisplay.cpp +++ b/src/helpers/ui/GxEPDDisplay.cpp @@ -11,7 +11,7 @@ bool GxEPDDisplay::begin() { display.setPartialWindow(0, 0, display.width(), display.height()); display.fillScreen(GxEPD_WHITE); - display.display(); + display.display(true); _init = true; return true; }