diff --git a/TODO.txt b/TODO.txt index 10796a25..598b5266 100644 --- a/TODO.txt +++ b/TODO.txt @@ -9,7 +9,6 @@ implement discrete range color setter implement discrete single color setter svg icons in html notifier function -> send get request -nightlight function -> turns off after set time (+implement fading) add preferred colors to settings -> quickly t. UI, button select, use iframe for settings, seperate tabs for wifi and application confg use iframe for all adv. features? diff --git a/wled00/wled01_eeprom.ino b/wled00/wled01_eeprom.ino index ae62a0d1..381c304e 100644 --- a/wled00/wled01_eeprom.ino +++ b/wled00/wled01_eeprom.ino @@ -143,6 +143,7 @@ void loadSettingsFromEEPROM() transitionDelay = ((EEPROM.read(253) << 0) & 0xFF) + ((EEPROM.read(254) << 8) & 0xFF00); transitionDelay_old = transitionDelay; bri_n = EEPROM.read(255); + otapass = ""; for (int i = 256; i < 288; ++i) { if (EEPROM.read(i) == 0) break; diff --git a/wled00/wled05_init.ino b/wled00/wled05_init.ino index e6bcfe50..957aab94 100644 --- a/wled00/wled05_init.ino +++ b/wled00/wled05_init.ino @@ -130,6 +130,8 @@ void wledInit() strip.Begin(); colorUpdated(0); pinMode(buttonPin, INPUT_PULLUP); + + Serial.println(otapass); } void initAP(){ diff --git a/wled00/wled08_led.ino b/wled00/wled08_led.ino index 1d751132..c4fa385c 100644 --- a/wled00/wled08_led.ino +++ b/wled00/wled08_led.ino @@ -119,7 +119,6 @@ void handleNightlight() } } float nper = (millis() - nightlightStartTime)/((float)nightlightDelayMs); - Serial.println(nper); if (nper >= 1) { nightlightActive = false;