-
-
Notifications
You must be signed in to change notification settings - Fork 436
Garbage output in Serial Monitor when using ESP8266 via FTDI #427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @nboorstin. Do you have the baud rate menu in the Arduino IDE 2.x Serial Monitor set to match the rate set in the For example, if your sketch contains this line: Serial.begin(115200); Then you must make sure that the Serial Monitor's dropdown menu is set to "115200 baud". Mismatched baud rates is the most common cause of getting gibberish characters in Serial Monitor. |
Hi @per1234, thanks for taking the time to respond! |
Do you get the same problem if you upload this super simple sketch? void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("hello");
delay(1000);
} |
Yes, same problem, it compiles/uploads with both the old and new IDE but the serial monitor only works in the old IDE |
Describe the bug
Hi, I'm using an ESP8266 connecting to USB via a FTDI FT231XS using the ESP8266 Boards version 2.7.4 library (https://github.com/esp8266/Arduino), and although I can compile and upload properly using the IDE 2.0.0-beta.7, I can't see any output from the Serial Monitor: I only get this symbol: �. The Serial Monitor works as expected on the old Arduino IDE.
To Reproduce
Steps to reproduce the behavior:
Plug in the board, select the port and board type, try to open the Serial Monitor
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: