* fix display timeout (OLED) to 60s
* change offs to signed value
This commit is contained in:
lumapu 2024-01-02 15:12:24 +01:00
parent 3dd4997094
commit f2e1e536f5
8 changed files with 18 additions and 14 deletions

View file

@ -80,7 +80,7 @@ class DisplayMono {
uint8_t mExtra;
int8_t mPixelshift=0;
TimeMonitor mDisplayTime = TimeMonitor(1000 * 15, true);
TimeMonitor mDisplayTime = TimeMonitor(1000 * DISP_DEFAULT_TIMEOUT, true);
bool mDisplayActive = true; // always start with display on
char mFmtText[DISP_FMT_TEXT_LEN];