Skip to content

Commit

Permalink
Changed blink behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
gskjold committed Oct 16, 2022
1 parent fa29919 commit 34ebe96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HwTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,10 +371,10 @@ bool HwTools::ledOff(uint8_t color) {
bool HwTools::ledBlink(uint8_t color, uint8_t blink) {
for(int i = 0; i < blink; i++) {
if(!ledOn(color)) return false;
delay(150);
delay(50);
ledOff(color);
if(i != blink-1)
delay(250);
delay(200);
}
return true;
}
Expand Down

0 comments on commit 34ebe96

Please sign in to comment.