How to read serial messages from S3 integrated USB?

crgarcia
Posts: 9
Joined: Wed Sep 09, 2020 9:52 pm

How to read serial messages from S3 integrated USB?

Postby crgarcia » Fri Feb 17, 2023 8:42 am

Hi,

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);
}
The led blinks no problem, but in the serial console of Arduino I get no message at all

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
Does S3Wroom integrated USB supports sending serial data via USB?
If yes, Do you have any tips on what could be wrong?

Thank you very much!

Who is online

Users browsing this forum: No registered users and 109 guests