ESP32 build, upload but no monitor

HI, Im using Arduino Ide2.1.1 and im trying to test my esp32 because i tried to use it with VSC, in both plataforms it did the same, build success, upload succes but no monitor. the lastest lines are:

Leaving...
Hard resetting via RTS pin...

and the code is simple:

void setup() {
  Serial.begin(115200);
}

void loop() {
  Serial.println("hello");
  delay(1000);
}

somebody help i wate 3 days with it

Typical - I would conclude that it has Uploaded.
You clicked the Serial Monitor gadget and no output?

anyway
you can post the complete compile log and the upload-log.
How should anybody who is not sitting at your desk be able to analyse something without giving as much information as possible!?

After compiling and uploading
Click into compile-log window
Press ctrl-A, ctrl-C
then paste the clibboard content as a code-section

To ask the obvious: to what baudrate did you adjust the serial monitor in the Arduino-IDE?

best regards Stefan

it was the baudrate adjust in the serial monitor, thanks it works. :grin:

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.