Skip to content

Commit

Permalink
Merge pull request #149 from thooge/master
Browse files Browse the repository at this point in the history
Fix for OBP40 in page system and deepSleep
  • Loading branch information
norbert-walter authored Jan 24, 2025
2 parents b4ebec8 + 46af891 commit a952567
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/obp60task/PageSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,12 @@ char mode = 'N'; // (N)ormal, (D)evice list
if (key == 4) {
ESP.restart();
}
#ifdef BOARD_OBP60S3
// standby / deep sleep
if (key == 5) {
deepSleep(*commonData);
}
#endif
// Code for keylock
if (key == 11) {
commonData->keylock = !commonData->keylock;
Expand Down

0 comments on commit a952567

Please sign in to comment.