diff --git a/TODO.txt b/TODO.txt index 4e9734b..072a70d 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,13 +1,8 @@ -switch dev enviroment to 100% git pc -- done -fix current issues -- vip -- debug -implement brightness slider -- vip -- done -remove settings lock option -- done toolbar preparation add toolbar conf in settings additional color picker field change slider height to relative values -fully implement EEPROM -- vip -- done -- debug -implement settings getter/setter -- vip -- done -- debug +implement all settings setters implement OTA implement OTA lock implement button @@ -15,6 +10,3 @@ implement LED Control (NeoPixelBus?) -- vip implement HSB slider option implement default color on boot -Bugs: -FAILURE SOURCE?? --> non-null String -post req doesnt send checkboxes diff --git a/wled00/wled00.ino b/wled00/wled00.ino index 82167ce..c8ff97b 100644 --- a/wled00/wled00.ino +++ b/wled00/wled00.ino @@ -548,11 +548,13 @@ void setup() { if (apssid.length()>0) { + Serial.print("USING AP"); Serial.println(apssid.length()); initAP(); } else { - WiFi.softAPdisconnect(); + Serial.println("NO AP"); + WiFi.softAPdisconnect(true); } initCon(); @@ -585,7 +587,7 @@ void setup() { server.on("/reset", HTTP_GET, reset); server.on("/set-settings", HTTP_POST, [](){ handleSettingsSet(); - server.send(200, "text/html", ""); + server.send(200, "text/plain", "Settings saved. Please wait a minute for module to reset, then go to main page..."); reset(); }); if (!ota_lock){