1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-01 15:41:52 +00:00

Set volume on amplifier

This commit is contained in:
Jesse Hills
2022-06-16 15:57:40 +12:00
parent c974fbbea8
commit 1720b2a37e

View File

@@ -44,6 +44,9 @@ void ES8388Component::setup() {
this->write_bytes(0x04, {0x30}); this->write_bytes(0x04, {0x30});
// unmute // unmute
this->write_bytes(0x19, {0x00}); this->write_bytes(0x19, {0x00});
this->write_bytes(0x2E, {33});
this->write_bytes(0x2F, {33});
} }
} // namespace es8388 } // namespace es8388
} // namespace esphome } // namespace esphome