Default display blanking to 10 minutes (enabled)

This commit is contained in:
James L
2026-03-05 23:38:39 -05:00
parent 42f0eec7b1
commit ed36e792f2
2 changed files with 2 additions and 2 deletions

View File

@@ -231,7 +231,7 @@
uint8_t display_intensity = 0xFF;
uint8_t display_addr = 0xFF;
volatile bool display_updating = false;
bool display_blanking_enabled = false;
bool display_blanking_enabled = true;
bool display_diagnostics = true;
bool device_init_done = false;
bool eeprom_ok = false;

View File

@@ -164,7 +164,7 @@ float epd_update_fps = 0.5;
#define DISP_MODE_LANDSCAPE 0x01
#define DISP_MODE_PORTRAIT 0x02
#define DISP_PIN_SIZE 6
#define DISPLAY_BLANKING_TIMEOUT 1*60*1000
#define DISPLAY_BLANKING_TIMEOUT 10*60*1000
uint8_t disp_mode = DISP_MODE_UNKNOWN;
uint8_t disp_ext_fb = false;
unsigned char fb[512];