51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "esphome/components/audio_dac/audio_dac.h"
|
|
#include "esphome/components/i2c/i2c.h"
|
|
#include "esphome/core/component.h"
|
|
|
|
namespace esphome {
|
|
namespace es8156 {
|
|
|
|
class ES8156 : public audio_dac::AudioDac, public Component, public i2c::I2CDevice {
|
|
public:
|
|
/////////////////////////
|
|
// Component overrides //
|
|
/////////////////////////
|
|
|
|
void setup() override;
|
|
float get_setup_priority() const override { return setup_priority::DATA; }
|
|
void dump_config() override;
|
|
|
|
////////////////////////
|
|
// AudioDac overrides //
|
|
////////////////////////
|
|
|
|
/// @brief Writes the volume out to the DAC
|
|
/// @param volume floating point between 0.0 and 1.0
|
|
/// @return True if successful and false otherwise
|
|
bool set_volume(float volume) override;
|
|
|
|
/// @brief Gets the current volume out from the DAC
|
|
/// @return floating point between 0.0 and 1.0
|
|
float volume() override;
|
|
|
|
/// @brief Disables mute for audio out
|
|
/// @return True if successful and false otherwise
|
|
bool set_mute_off() override { return this->set_mute_state_(false); }
|
|
|
|
/// @brief Enables mute for audio out
|
|
/// @return True if successful and false otherwise
|
|
bool set_mute_on() override { return this->set_mute_state_(true); }
|
|
|
|
bool is_muted() override { return this->is_muted_; }
|
|
|
|
protected:
|
|
/// @brief Mutes or unmutes the DAC audio out
|
|
/// @param mute_state True to mute, false to unmute
|
|
/// @return True if successful and false otherwise
|
|
bool set_mute_state_(bool mute_state);
|
|
};
|
|
|
|
} // namespace es8156
|
|
} // namespace esphome
|