Guitar Effects Pedal with ESP32 and Arduino Audio tools (a.k.a ADC in to DAC out) #225
-
Hi everyone, I wanted to build a really simple guitar pedal which uses the built in ADC and DAC from the ESP32, but trying to set up the variables of
instead of the usual
, making me start to believe that this idea is not feasible with the barebone hardware of the ESP32. Maybe its also that im coding it wrong So my question is, is this idea feasible with my current hardware? Here is my code in case I am missing something:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Analog input requires port 0 as does Analog Output: so it is technically not possible to do analog input and output on an ESP32 using the I2S interface. There is no such restriction if you do regular (digital) I2S for input or output. |
Beta Was this translation helpful? Give feedback.
-
I think it will not be great, but technically it will work. |
Beta Was this translation helpful? Give feedback.
Analog input requires port 0 as does Analog Output: so it is technically not possible to do analog input and output on an ESP32 using the I2S interface.
There is no such restriction if you do regular (digital) I2S for input or output.