changed menu of 3pushed button

This commit is contained in:
richonguzman 2024-10-01 19:53:38 -03:00
parent e365b1b5ce
commit 337113caff
2 changed files with 7 additions and 7 deletions

View File

@ -474,17 +474,17 @@ namespace KEYBOARD_Utils {
}
else if (menuDisplay == 9000) {
displayShow("", "", " STARTING WiFi AP...", 2000);
Config.wifiAP.active = true;
Config.writeFile();
ESP.restart();
} else if (menuDisplay == 9001) {
#if defined(HAS_AXP192) || defined(HAS_AXP2101)
displayShow("", "", " POWER OFF ...", 2000);
#else
displayShow("", "", " starting DEEP SLEEP", 2000);
#endif
POWER_Utils::shutdown();
} else if (menuDisplay == 9001) {
displayShow("", "", " STARTING WiFi AP", 2000);
Config.wifiAP.active = true;
Config.writeFile();
ESP.restart();
}
}

View File

@ -507,10 +507,10 @@ namespace MENU_Utils {
//////////
case 9000: // 9. multiPress Menu ---> Turn ON WiFi AP
displayShow("__CONFIG__", "> Turn ON WiFi AP", " Turn Tracker Off", "","",lastLine);
displayShow("__CONFIG__", "> Turn Tracker Off"," Config. WiFi AP", "","",lastLine);
break;
case 9001: // 9. multiPress Menu
displayShow("__CONFIG__", " Turn ON WiFi AP", "> Turn Tracker Off", "","",lastLine);
displayShow("__CONFIG__", " Turn Tracker Off","> Config. WiFi AP", "","",lastLine);
break;