-
|
Wifi connection and mp3 steaming work perfectly on an esp32-wroom via: But the same command ran on both the esp32-s2-wrover and the lolin_s2mini never even connect to wifi. Anyone experience this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
|
Cool that the MP3 streaming is working for you. That's a powerful capability. The two boards you mention use the ESP32-S2 chip. When you build with Our ESP32 documentation lists supported boards along with the platform/sub-platform ID to use when building. |
Beta Was this translation helpful? Give feedback.
-
|
What audio output device are you using and how is it connected? I am able to reproduce the problems you're having with the lolin_s2mini and saola_wrover. I'll have a fix for it soon. |
Beta Was this translation helpful? Give feedback.
-
|
For the saola_wrover, try replacing https://gist.github.com/mkellner/b244fa68827cef830236f956b09db8c6 My max98357 is connected to pins 1, 2 and 3. In the defines section of With that, I can run mp3-http-stream successfully. Let me know how it works for you. esp32s2-mp3-stream.mp4 |
Beta Was this translation helpful? Give feedback.
For the saola_wrover, try replacing
$MODDABLE/build/devices/esp32/sdkconfig-s2-psram/sdkconfig.defaultswith the contents of this gist:https://gist.github.com/mkellner/b244fa68827cef830236f956b09db8c6
My max98357 is connected to pins 1, 2 and 3.
In the defines section of
$MODDABLE/build/devices/esp32/targets/saola_wrover/manifest.json, I have:With that, I can run mp3-http-stre…