This commit is contained in:
Klaus K Wilting 2018-04-20 11:52:58 +02:00
parent 14e68260e6
commit 7f47829140

View File

@ -402,8 +402,6 @@ uint64_t uptime() {
rgb_set_color(LEDState ? color : COLOR_NONE); rgb_set_color(LEDState ? color : COLOR_NONE);
#endif #endif
ESP_LOGI(TAG, "switched LED: %d -> %d", previousLEDState, LEDState);
previousLEDState = LEDState; previousLEDState = LEDState;
} }
@ -419,8 +417,6 @@ uint64_t uptime() {
else // only one blink else // only one blink
LEDState = (currentMillis < LEDBlinkduration) ? LED_ON : LED_OFF; LEDState = (currentMillis < LEDBlinkduration) ? LED_ON : LED_OFF;
ESP_LOGI(TAG, "current LEDState %d", LEDState);
} // switchLEDstate() } // switchLEDstate()
#endif #endif