1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-16 06:45:48 +00:00

Expose start to speaker interface (#5228)

This commit is contained in:
Jesse Hills
2023-08-11 16:21:44 +12:00
parent 2fa79a2e2f
commit 351e7ea16b
2 changed files with 3 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ class I2SAudioSpeaker : public Component, public speaker::Speaker, public I2SAud
#endif
void set_external_dac_channels(uint8_t channels) { this->external_dac_channels_ = channels; }
void start();
void start() override;
void stop() override;
size_t play(const uint8_t *data, size_t length) override;