Turn the e-ink backlight on for any brightness value over 0 (#8481)

This commit is contained in:
Jonathan Bennett
2025-10-29 06:46:50 -05:00
committed by GitHub
parent 7d3e529b2f
commit c330bfe848
2 changed files with 2 additions and 2 deletions

View File

@@ -443,7 +443,7 @@ void Screen::handleSetOn(bool on, FrameCallback einkScreensaver)
if (uiconfig.screen_brightness == 1)
digitalWrite(PIN_EINK_EN, HIGH);
#elif defined(PCA_PIN_EINK_EN)
if (uiconfig.screen_brightness == 1)
if (uiconfig.screen_brightness > 0)
io.digitalWrite(PCA_PIN_EINK_EN, HIGH);
#endif