Skip to content

Commit

Permalink
Fixed LED blink delay
Browse files Browse the repository at this point in the history
  • Loading branch information
gskjold committed Oct 17, 2022
1 parent 34ebe96 commit f446dff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/HwTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f446dff

Please sign in to comment.