/*
https://forum.arduino.cc/t/esp32-s3-devkitc-1-uart0-not-working-in-serial-monitor-window/1255467
test serial output esp32s3
*/
void setup() {
Serial.begin( 9600 );
//Serial1.begin ( 9600, SERIAL_8N1, 7, 8 ); // rx, tx
Serial1.begin ( 9600, SERIAL_8N1, 5, 4 );
delay(2000);
Serial1.println("**** PRINTING TO COM6 ****");
Serial.println(">>>---- PRINTING TO COM15 ----");
}
void loop() {
// put your main code here, to run repeatedly:
delay(1000);
}