From 124b73035cdb963703818af36a12b5821e690bd1 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 4 Jan 2023 10:04:49 +0100 Subject: [PATCH] Increase default volume --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 1ccfc5e..c91c3b0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -52,7 +52,7 @@ AsyncWebServer server(80); Audio audio; byte buttonLastState = HIGH; -byte currentVolume = 2; +byte currentVolume = 12; bool fileIsValid(String fileName) { return !fileName.startsWith(".") && (fileName.endsWith(".mp3") || fileName.endsWith(".aac") || fileName.endsWith(".wav"));