settings working (partially)
TODO updated
This commit is contained in:
parent
a58ff54d5b
commit
724b9c6ecb
10
TODO.txt
10
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
|
||||
|
@ -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", "<html><head><script>alert(Settings saved. Please power cycle module to apply changes...);</script></head></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){
|
||||
|
Loading…
Reference in New Issue
Block a user