From 7c011324f245c87563deed8f7e14977d73908a71 Mon Sep 17 00:00:00 2001 From: JQ Date: Sun, 8 Jun 2025 08:25:54 -0700 Subject: [PATCH] feedback --- examples/companion_radio/UITask.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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