Skip to content

Commit

Permalink
Merge pull request #4140 from thinkyhead/rc_button_reliability
Browse files Browse the repository at this point in the history
Always do a brief delay in `lcd_quick_feedback`
  • Loading branch information
thinkyhead authored Jun 25, 2016
2 parents 7de7552 + 74878d1 commit c8a9829
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Marlin/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1999,9 +1999,8 @@ static void lcd_status_screen() {
lcd.buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
#elif PIN_EXISTS(BEEPER)
buzzer.tone(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
#else
delay(LCD_FEEDBACK_FREQUENCY_DURATION_MS);
#endif
delay(10); // needed for buttons to settle
}

/**
Expand Down

0 comments on commit c8a9829

Please sign in to comment.