mirror of
https://github.com/esphome/esphome.git
synced 2025-09-05 04:42:21 +01:00
28 lines
522 B
C++
28 lines
522 B
C++
#include "i2s_audio.h"
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace i2s_audio {
|
|
|
|
static const char *const TAG = "i2s_audio";
|
|
|
|
void I2SAudioComponent::setup() {
|
|
static i2s_port_t next_port_num = I2S_NUM_0;
|
|
if (next_port_num >= SOC_I2S_NUM) {
|
|
ESP_LOGE(TAG, "Too many components");
|
|
this->mark_failed();
|
|
return;
|
|
}
|
|
|
|
this->port_ = next_port_num;
|
|
next_port_num = (i2s_port_t) (next_port_num + 1);
|
|
}
|
|
|
|
} // namespace i2s_audio
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32
|