|
24 | 24 |
|
25 | 25 | #include "../MarlinCore.h" // for printingIsPaused
|
26 | 26 |
|
27 |
| -#if LED_POWEROFF_TIMEOUT > 0 || BOTH(HAS_WIRED_LCD, PRINTER_EVENT_LEDS) |
| 27 | +#if LED_POWEROFF_TIMEOUT > 0 || BOTH(HAS_WIRED_LCD, PRINTER_EVENT_LEDS) || (defined(LCD_BACKLIGHT_TIMEOUT_MINS) && defined(NEOPIXEL_BKGD_INDEX_FIRST)) |
28 | 28 | #include "../feature/leds/leds.h"
|
29 | 29 | #endif
|
30 | 30 |
|
@@ -195,12 +195,17 @@ constexpr uint8_t epps = ENCODER_PULSES_PER_STEP;
|
195 | 195 | #if LCD_BACKLIGHT_TIMEOUT_MINS
|
196 | 196 |
|
197 | 197 | constexpr uint8_t MarlinUI::backlight_timeout_min, MarlinUI::backlight_timeout_max;
|
198 |
| - |
199 | 198 | uint8_t MarlinUI::backlight_timeout_minutes; // Initialized by settings.load()
|
200 | 199 | millis_t MarlinUI::backlight_off_ms = 0;
|
| 200 | + |
201 | 201 | void MarlinUI::refresh_backlight_timeout() {
|
202 | 202 | backlight_off_ms = backlight_timeout_minutes ? millis() + backlight_timeout_minutes * 60UL * 1000UL : 0;
|
203 |
| - WRITE(LCD_BACKLIGHT_PIN, HIGH); |
| 203 | + #ifdef NEOPIXEL_BKGD_INDEX_FIRST |
| 204 | + neo.reset_background_color(); |
| 205 | + neo.show(); |
| 206 | + #elif PIN_EXISTS(LCD_BACKLIGHT) |
| 207 | + WRITE(LCD_BACKLIGHT_PIN, HIGH); |
| 208 | + #endif |
204 | 209 | }
|
205 | 210 |
|
206 | 211 | #elif HAS_DISPLAY_SLEEP
|
@@ -1212,8 +1217,14 @@ void MarlinUI::init() {
|
1212 | 1217 | #endif
|
1213 | 1218 |
|
1214 | 1219 | #if LCD_BACKLIGHT_TIMEOUT_MINS
|
| 1220 | + |
1215 | 1221 | if (backlight_off_ms && ELAPSED(ms, backlight_off_ms)) {
|
1216 |
| - WRITE(LCD_BACKLIGHT_PIN, LOW); // Backlight off |
| 1222 | + #ifdef NEOPIXEL_BKGD_INDEX_FIRST |
| 1223 | + neo.set_background_off(); |
| 1224 | + neo.show(); |
| 1225 | + #elif PIN_EXIST(LCD_BACKLIGHT) |
| 1226 | + WRITE(LCD_BACKLIGHT_PIN, LOW); // Backlight off |
| 1227 | + #endif |
1217 | 1228 | backlight_off_ms = 0;
|
1218 | 1229 | }
|
1219 | 1230 | #elif HAS_DISPLAY_SLEEP
|
|
0 commit comments