🧑💻 Add standard BUZZ types
This commit is contained in:
committed by
Scott Lahteine
parent
f82b133595
commit
c49f26a7ae
@ -151,7 +151,7 @@ void PrintCounter::loadStats() {
|
||||
if (data.nextService3 == 0) doBuzz = _service_warn(PSTR(" " SERVICE_NAME_3));
|
||||
#endif
|
||||
#if HAS_BUZZER && SERVICE_WARNING_BUZZES > 0
|
||||
if (doBuzz) for (int i = 0; i < SERVICE_WARNING_BUZZES; i++) BUZZ(200, 404);
|
||||
if (doBuzz) for (int i = 0; i < SERVICE_WARNING_BUZZES; i++) { BUZZ(200, 404); BUZZ(10, 0); }
|
||||
#else
|
||||
UNUSED(doBuzz);
|
||||
#endif
|
||||
|
@ -306,8 +306,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
|
||||
if (deploy != PROBE_TRIGGERED()) break;
|
||||
#endif
|
||||
|
||||
BUZZ(100, 659);
|
||||
BUZZ(100, 698);
|
||||
OKAY_BUZZ();
|
||||
|
||||
FSTR_P const ds_str = deploy ? GET_TEXT_F(MSG_MANUAL_DEPLOY) : GET_TEXT_F(MSG_MANUAL_STOW);
|
||||
ui.return_to_status(); // To display the new status message
|
||||
|
Reference in New Issue
Block a user