mirror of
https://github.com/esphome/esphome.git
synced 2025-04-16 07:40:29 +01:00
31 lines
609 B
C++
31 lines
609 B
C++
#pragma once
|
|
|
|
namespace esphome {
|
|
namespace speaker {
|
|
|
|
enum State : uint8_t {
|
|
STATE_STOPPED = 0,
|
|
STATE_STARTING,
|
|
STATE_RUNNING,
|
|
STATE_STOPPING,
|
|
};
|
|
|
|
class Speaker {
|
|
public:
|
|
virtual size_t play(const uint8_t *data, size_t length) = 0;
|
|
size_t play(const std::vector<uint8_t> &data) { return this->play(data.data(), data.size()); }
|
|
|
|
virtual void start() = 0;
|
|
virtual void stop() = 0;
|
|
|
|
virtual bool has_buffered_data() const = 0;
|
|
|
|
bool is_running() const { return this->state_ == STATE_RUNNING; }
|
|
|
|
protected:
|
|
State state_{STATE_STOPPED};
|
|
};
|
|
|
|
} // namespace speaker
|
|
} // namespace esphome
|