Page 1 of 1

how to use serial monitor with ESP32

Posted: Sun Jul 12, 2020 4:41 pm
by what2use
How can I send data to the serial monitor, such as text messages for troubleshooting, with the ESP32 ?
When I tried this the Arduino IDE gave me an error that SoftwareSerial.h was not found.

I can use this library with the Uno or Nano but not the ESP32

Any help is greatly appreciated

Re: how to use serial monitor with ESP32

Posted: Sun Jul 12, 2020 9:26 pm
by Agree007
Serial.begin(115200)
delay(2000)
Serial.println("Setup startede....");

Re: how to use serial monitor with ESP32

Posted: Sun Jul 12, 2020 11:57 pm
by what2use
That worked. Thanks