Fixed LED blink delay

This commit is contained in:
Gunnar Skjold 2022-10-17 13:09:04 +02:00
parent 34ebe9601a
commit f446dff865

View File

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