From 48810ee50c9ea62d26ca220ee7efc97cfeae91c8 Mon Sep 17 00:00:00 2001 From: Lyubomir Penev Date: Sun, 5 Oct 2025 16:07:13 +0200 Subject: [PATCH] Fixed bug with mute --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index d83c7c9..b0267cc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -131,7 +131,7 @@ void loop() else { // This is if the user is unmuted and is aksing to be muted - for (int i = 0; i < userVolume; i++) + for (int i = 0; i < 64; i++) { volumeDown(); }