Fix for OBP40 in page system and deepSleep

This commit is contained in:
Thomas Hooge 2025-01-24 08:06:26 +01:00
parent b4ebec872d
commit 46af8916e7
1 changed files with 2 additions and 0 deletions

View File

@ -74,10 +74,12 @@ public:
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;