✨ SOUND_ON_DEFAULT option (#24102)
This commit is contained in:
committed by
Scott Lahteine
parent
b2b5b85045
commit
3443a9e18b
@ -596,7 +596,7 @@ MotionAxisState motionAxisState;
|
||||
static void quick_feedback() {
|
||||
#if HAS_CHIRP
|
||||
ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle?
|
||||
#if BOTH(HAS_MARLINUI_MENU, USE_BEEPER)
|
||||
#if BOTH(HAS_MARLINUI_MENU, HAS_BEEPER)
|
||||
for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); }
|
||||
#elif HAS_MARLINUI_MENU
|
||||
delay(10);
|
||||
|
@ -578,7 +578,7 @@ MotionAxisState motionAxisState;
|
||||
static void quick_feedback() {
|
||||
#if HAS_CHIRP
|
||||
ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle?
|
||||
#if BOTH(HAS_MARLINUI_MENU, USE_BEEPER)
|
||||
#if BOTH(HAS_MARLINUI_MENU, HAS_BEEPER)
|
||||
for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); }
|
||||
#elif HAS_MARLINUI_MENU
|
||||
delay(10);
|
||||
|
@ -583,7 +583,7 @@ MotionAxisState motionAxisState;
|
||||
static void quick_feedback() {
|
||||
#if HAS_CHIRP
|
||||
ui.chirp(); // Buzz and wait. Is the delay needed for buttons to settle?
|
||||
#if BOTH(HAS_MARLINUI_MENU, USE_BEEPER)
|
||||
#if BOTH(HAS_MARLINUI_MENU, HAS_BEEPER)
|
||||
for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); }
|
||||
#elif HAS_MARLINUI_MENU
|
||||
delay(10);
|
||||
|
Reference in New Issue
Block a user