Merge pull request #43 from drkhsh/fix/boot-backlight

Boot: bring backlight up after first boot-screen frame
This commit is contained in:
dude.eth
2026-05-03 21:00:26 -06:00
committed by GitHub
+5
View File
@@ -564,6 +564,11 @@ void setup() {
ui.lvStatusBar().setLoRaOnline(radioOnline);
lvBootScreen.setProgress(0.45f, radioOnline ? "Radio online" : "Radio FAILED");
// Display::begin() left the backlight at 0 to hide an unpainted
// framebuffer; the setProgress() above has now flushed the boot screen.
// powerMgr at step 24 overrides with the user's configured value.
display.setBrightness(128);
// Step 7: Touch HAL — GT911 I2C
touch.begin();
lvBootScreen.setProgress(0.50f, "Touch ready");