diff --git a/examples/companion_radio/UITask.cpp b/examples/companion_radio/UITask.cpp index 3801236b..01906f90 100644 --- a/examples/companion_radio/UITask.cpp +++ b/examples/companion_radio/UITask.cpp @@ -374,11 +374,10 @@ void UITask::handleButtonTriplePress() { if (buzzer.isQuiet()) { buzzer.quiet(false); soundBuzzer(UIEventType::ack); - sprintf(_alert, "Quiet mode: OFF"); + sprintf(_alert, "Buzzer: ON"); } else { - soundBuzzer(UIEventType::ack); buzzer.quiet(true); - sprintf(_alert, "Quiet mode: ON"); + sprintf(_alert, "Buzzer: OFF"); } _need_refresh = true; #endif