We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1313553 commit f8609f2Copy full SHA for f8609f2
2 files changed
src/main.cpp
@@ -21,6 +21,8 @@ void setup()
21
M5.Power.powerOff();
22
}
23
24
+ delay(3500);
25
+
26
boot::BootScreen();
27
28
src/modules/menus/SettingsMenu.cpp
@@ -8,7 +8,7 @@ void SettingsMenu::ShowMenu() {
8
{"Deep Sleep", [=] { Settings::DeepSleep(); }},
9
{"Light Sleep", [=] { Settings::LightSpeed(); }},
10
{"Reboot", [=] { Settings::Reboot(); }},
11
- {"Format SPIFFS", [] { files::format(); }},
+ {"Format SPIFFS", [] { files::format(); ESP.restart(); }},
12
{"Main Menu", [] { menu::MainMenu(); }},
13
};
14
print::LoopOptions(options, "WiFi Menu", 0);
0 commit comments