I can’t get my XIAO ESP32-S3 to output to the Arduino Serial Monitor. This seems to be a common problem and I have tried almost all solutions for it, on this forum and elsewhere. Unfortunately without result. Can someone help me?
This is the sketch:
void setup() {
Serial.begin(115200);
while(!Serial);
}
void loop() {
Serial.println("HELLO!");
delay(1000);
}
In the Arduino settings, it makes no difference whether I set USB CDC On Boot as disabled or enabled.