From 92f05fe7ca3deb046ca2101915fce131ae173830 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sun, 5 Jun 2022 12:00:38 +0200 Subject: [PATCH] Fix MP3 default state --- tasmota/tasmota_xdrv_driver/xdrv_14_mp3.ino | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_14_mp3.ino b/tasmota/tasmota_xdrv_driver/xdrv_14_mp3.ino index 2df04da58..14c991377 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_14_mp3.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_14_mp3.ino @@ -77,6 +77,10 @@ #define XDRV_14 14 +#ifndef MP3_VOLUME +#define MP3_VOLUME 30 // Set the startup volume on init, the range can be 0..100(max) +#endif + #include TasmotaSerial *MP3Player;