Skip to content

Commit

Permalink
5 minute timeout by default
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Feb 24, 2024
1 parent 4c1e92a commit a07e0e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ESPGeiger/src/OLEDDisplay/OLEDDisplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class SSD1306Display : public SSD1306Wire{
//if(c<NUM_CUSTOM_ICONS && custom_chars[c]!=NULL) {
// drawXbm(cx, cy, fontWidth, fontHeight, (const byte*) custom_chars[c]);
//} else {
drawString(cx, cy, String((char)c));
drawString(cx, cy, String((char)c));
//}
cx += fontWidth;
display(); // todo: not very efficient
Expand Down Expand Up @@ -257,7 +257,7 @@ class SSD1306Display : public SSD1306Wire{
uint8_t fontWidth, fontHeight;
unsigned long _last_update = 0;
unsigned long _last_full = 0;
unsigned long _lcd_timeout = 60000;
unsigned long _lcd_timeout = 300000;
};

#endif
Expand Down

0 comments on commit a07e0e2

Please sign in to comment.