SPDIF and I2S simultaneously?; #909
-
Hello, I noticed that the audio tools mentioned that the SPDif output is essentially the I2S data pin. I'm curious how many i2S output data pins are available on the esp32 and is it possible to use both at the same time? I want to send I2S to a DAC and also SPDif to a separate amplifier at the same time. In fact I'll need one i2S input, an i2S output and SPDIF output. For bonus I would also need SPDIF input. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The ESP32 has 2 I2S ports: each port is duplex so you can read and write at the same time... |
Beta Was this translation helpful? Give feedback.
-
Not sure if the regular ESP32 supports TDM. You can try to work with IDF and uncomment and correct the DRAFT TDM implementation in I2SESP32-New.h. |
Beta Was this translation helpful? Give feedback.
The ESP32 has 2 I2S ports: each port is duplex so you can read and write at the same time...