Merge pull request #1969 from thinkyhead/buzz_duration
Fix BEEPER duration
This commit is contained in:
commit
ac9ca64c50
@ -1545,8 +1545,9 @@ void lcd_buzz(long duration, uint16_t freq) {
|
||||
#if BEEPER > 0
|
||||
SET_OUTPUT(BEEPER);
|
||||
tone(BEEPER, freq, duration);
|
||||
delay(duration);
|
||||
#elif defined(LCD_USE_I2C_BUZZER)
|
||||
lcd.buzz(duration,freq);
|
||||
lcd.buzz(duration, freq);
|
||||
#else
|
||||
delay(duration);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user