Fixed error blinks and improved WiFi reconnect

This commit is contained in:
Gunnar Skjold
2022-10-12 19:25:48 +02:00
parent 867ab9d6c2
commit ce3a47a7e6
3 changed files with 33 additions and 18 deletions

View File

@@ -373,8 +373,8 @@ bool HwTools::ledBlink(uint8_t color, uint8_t blink) {
if(!ledOn(color)) return false;
delay(50);
ledOff(color);
if(i != blink)
delay(50);
if(i != blink-1)
delay(200);
}
return true;
}