I have an ESP32 module marked as 'ESP32S' at the back. It has an ESPRESSIF ESP32-WROOM-32. I have connected it via USB and it lights up. If I look under device manager, it displays under 'Ports' as Silicon Labs CP210x USB to UART Bridge (COM7). I have updated the CP210x driver version to the latest, 10.1.8.2466.
I am trying to run this simple program:
#define led 2
void setup() {
// put your setup code here, to run once:
pinMode(led, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(led, HIGH);
delay(500);
digitalWrite(led, LOW);
delay(500);
}
Upload Speed: 921600
Board: DOIT ESP32 DEVKIT V1 (I tried multiple ones, I am really unsure which one my board requires since I received just the module on its own with no documentation
)
Flash Frequency: 80MHz
If I try COM7, it never connects. It has the following error: A fatal error occurred: Failed to connect to ESP32: Invalid head of packet (0x00)
Thanks for your help...