Rasperry Picco 2W – Testing Streaming Audio to I2S
Today I found the time to test some audio on the Rasperry Pico 2W Microcontroller. I tried out the standard Interenet Streaming sketch from the Audio Tools examples. Unfortunatly, I noticed that the regular WiFi login logic is quite unreliable, but using the WiFiMulti works each time. Here is the adapted version: #include “AudioTools.h” #include “AudioTools/AudioCodecs/CodecMP3Helix.h” #include <WiFiMulti.h> const char *ssid = “ssid”; const char *pwd = “password”; WiFiMulti wifiMulti; URLStream url; I2SStream i2s; // Read more…