From 9c6b450e4ced3cfdf0f0c049a7783a07787011cd Mon Sep 17 00:00:00 2001 From: tetele Date: Fri, 2 Aug 2024 12:02:01 +0300 Subject: [PATCH] Reduce volume --- esphome/components/es8388/es8388_component.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/esphome/components/es8388/es8388_component.cpp b/esphome/components/es8388/es8388_component.cpp index 914d5c5f05..ccd4f7c491 100644 --- a/esphome/components/es8388/es8388_component.cpp +++ b/esphome/components/es8388/es8388_component.cpp @@ -214,10 +214,10 @@ void ES8388Component::setup_raspiaudio_radio() { // unmute error = error || not this->write_byte(25, 0x00); // amp validation - error = error || not this->write_byte(46, 30); - error = error || not this->write_byte(47, 30); - error = error || not this->write_byte(48, 33); - error = error || not this->write_byte(49, 33); + error = error || not this->write_byte(46, 24); + error = error || not this->write_byte(47, 24); + error = error || not this->write_byte(48, 24); + error = error || not this->write_byte(49, 24); if (error) { ESP_LOGE(TAG, "Error writing I2C registers for preset Raspiaudio Radio");