I am trying to get serial data from my custom build wroom s3 board (https://github.com/crgarcia12/electroni ... tscontroll)
I have the simplest possible code:
Code: Select all
void setup() {
Serial.begin(9600);
Serial.println("Hello");
}
void loop() {
Serial.println("Loop");
digitalWrite(1, HIGH);
delay(1000);
digitalWrite(1, LOW)
delay(1000);
}
Arduino IDE is the newest version, with the esp added via the Board Managers as recommended in the ESP docs (https://docs.espressif.com/projects/ard ... lling.html)
Code: Select all
Board: ESP32 S3 DevModule
UsbMode: USB-OTG
If yes, Do you have any tips on what could be wrong?
Thank you very much!