Compiling the sketch works well. I tried 3 different cables and two computers that were working with other boards and sketches.
```cpp
#include <Arduino.h>
#include <WiFi.h>
#include <Audio.h>
#define I2S_DOUT 25
#define I2S_BCLK 27
#define I2S_LRC 26
Audio audio;
String ssid = "PPPPPP";
String password = "SSSSSS";
void setup() {
WiFi.disconnect();
WiFi.mode(WIFI_STA);
WiFi.begin(ssid.c_str(), password.c_str());
while (WiFi.status() != WL_CONNECTED)
delay(1500);
audio.setPinout(I2S_BCLK, I2S_LRC, I2S_DOUT);
audio.setVolume(100);
audio.connecttohost("http://vis.media-ice.musicradio.com/CapitalMP3");
Serial.begin(115200);
Serial.println("Music now");
}
void loop()
{
audio.loop();
}
```
A fatal error occurred: Failed to connect to ESP32-S3: Invalid head of packet (0x1B): Possible serial noise or corruption.
For troubleshooting steps visit: Troubleshooting - ESP32 - — esptool latest documentation
Failed uploading: uploading error: exit status 2
Except the USB cable nothing else is connected to the board.
