mirror of
https://github.com/esphome/esphome.git
synced 2025-04-14 06:40:32 +01:00
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
#include "../i2s_audio.h"
|
|
|
|
#include "esphome/components/microphone/microphone.h"
|
|
#include "esphome/core/component.h"
|
|
|
|
namespace esphome {
|
|
namespace i2s_audio {
|
|
|
|
class I2SAudioMicrophone : public I2SAudioIn, public microphone::Microphone, public Component {
|
|
public:
|
|
void setup() override;
|
|
void start() override;
|
|
void stop() override;
|
|
|
|
void loop() override;
|
|
|
|
void set_din_pin(int8_t pin) { this->din_pin_ = pin; }
|
|
void set_pdm(bool pdm) { this->pdm_ = pdm; }
|
|
|
|
size_t read(int16_t *buf, size_t len) override;
|
|
|
|
#if SOC_I2S_SUPPORTS_ADC
|
|
void set_adc_channel(adc1_channel_t channel) {
|
|
this->adc_channel_ = channel;
|
|
this->adc_ = true;
|
|
}
|
|
#endif
|
|
|
|
void set_i2s_mode(i2s_mode_t mode) { this->i2s_mode_ = mode; }
|
|
|
|
void set_channel(i2s_channel_fmt_t channel) { this->channel_ = channel; }
|
|
void set_sample_rate(uint32_t sample_rate) { this->sample_rate_ = sample_rate; }
|
|
void set_bits_per_sample(i2s_bits_per_sample_t bits_per_sample) { this->bits_per_sample_ = bits_per_sample; }
|
|
void set_use_apll(uint32_t use_apll) { this->use_apll_ = use_apll; }
|
|
|
|
protected:
|
|
void start_();
|
|
void stop_();
|
|
void read_();
|
|
|
|
int8_t din_pin_{I2S_PIN_NO_CHANGE};
|
|
#if SOC_I2S_SUPPORTS_ADC
|
|
adc1_channel_t adc_channel_{ADC1_CHANNEL_MAX};
|
|
bool adc_{false};
|
|
#endif
|
|
bool pdm_{false};
|
|
i2s_mode_t i2s_mode_{};
|
|
i2s_channel_fmt_t channel_;
|
|
uint32_t sample_rate_;
|
|
i2s_bits_per_sample_t bits_per_sample_;
|
|
bool use_apll_;
|
|
|
|
HighFrequencyLoopRequester high_freq_;
|
|
};
|
|
|
|
} // namespace i2s_audio
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32
|