mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 19:32:19 +01:00
[i2s_audio] Bugfix: cast adc_channel_t to adc1_channel_t (#9688)
This commit is contained in:
@@ -36,8 +36,8 @@ class I2SAudioMicrophone : public I2SAudioIn, public microphone::Microphone, pub
|
|||||||
|
|
||||||
#ifdef USE_I2S_LEGACY
|
#ifdef USE_I2S_LEGACY
|
||||||
#if SOC_I2S_SUPPORTS_ADC
|
#if SOC_I2S_SUPPORTS_ADC
|
||||||
void set_adc_channel(adc1_channel_t channel) {
|
void set_adc_channel(adc_channel_t channel) {
|
||||||
this->adc_channel_ = channel;
|
this->adc_channel_ = (adc1_channel_t) channel;
|
||||||
this->adc_ = true;
|
this->adc_ = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user