From d02c1cf098de244ab015601c0a0291ae9a4c1317 Mon Sep 17 00:00:00 2001 From: Jakub <106778416+MarekZegare4@users.noreply.github.com> Date: Fri, 15 May 2026 11:46:48 +0200 Subject: [PATCH] feat: play preview tone when buzzer volume changes in settings Co-Authored-By: Claude Sonnet 4.6 --- examples/companion_radio/ui-new/UITask.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/companion_radio/ui-new/UITask.cpp b/examples/companion_radio/ui-new/UITask.cpp index 525a1bda..6b1d4ce9 100644 --- a/examples/companion_radio/ui-new/UITask.cpp +++ b/examples/companion_radio/ui-new/UITask.cpp @@ -2945,6 +2945,7 @@ void UITask::setBuzzerVolumeLevel(uint8_t level) { if (level > 4) level = 4; _node_prefs->buzzer_volume = level; buzzer.setVolume(level); + buzzer.playForced("Vol:d=8,o=5,b=120:c"); _next_refresh = 0; #endif }