Skip to content

Commit

Permalink
Code tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
bonzer35 committed Jun 3, 2023
1 parent 74745be commit 3bd5f19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/KiwiBoardFirmware_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void loop() {
void stoppedCallback(int pgm) {

// Stopped happened.
sounderOps->beep_activate(0); // 0 = End of cycle tone
sounderOps->beep_activate(false); // 0 = End of cycle tone
resetIcons();
observer->resetConstraint();
}
Expand Down Expand Up @@ -541,7 +541,7 @@ void setIconStopped(MenuItem *icon) {
void checkLongPress(bool direction, bool held) {

// Button pressed, so we beep
sounderOps->beep_activate(1); // 1 = Push button tone
sounderOps->beep_activate(true);

// Check for a long press... no idea what menu ... but whatever?
if (held) {
Expand Down

0 comments on commit 3bd5f19

Please sign in to comment.