[SOLVED] ESP32 Serial monitor not working

Hello,

I can build and upload the programs on my ESP32.
But when I run the Monitor Serial nothing happens and the LED stops blinking (the port and the baudrate are good)
I tried VS Code with PlatformIO and Sublime Text with Deviot same problems. While on the Arduino IDE everything is ok.

If anyone has a solution ? :slight_smile:

2 Likes

Could you reproduce this issue with a simple main.cpp?

#include <Arduino.h>

void setup() {
  Serial.begin(9600);
  Serial.println("Test");
}

void loop () {
}

I just tried nothing, I try on another pc even worries, the problem could come from the ESP32

https://youtu.be/F9Y5JsHHvoc

1 Like

Does it work with Arduino IDE?

Yes, I have just found the trouble, just put Off DTR & RTS in the settings of the serial monitor.

3 Likes

Zh0nd, how can I do it?

This is documented in Redirecting....

3 Likes

It works for me
adding to platformio.ini monitor_speed = 115200
monitor_rts = 0
monitor_dtr = 0

7 Likes

Thanks a lot!
this solution worked like a charm.