How to open Serial Monitor Arduino?


To open the Serial Monitor in the Arduino IDE, follow these simple steps:
For Arduino IDE 2.x (latest versions)
Connect your Arduino board to your computer via USB.
Open the Arduino IDE 2.x.
Click the “Plug” icon on the left toolbar (🔌) to ensure your board is recognized.
Select the correct Port from the lower status bar (e.g.,
COM3
,/dev/ttyUSB0
, etc.).Click the “Magnifying glass” icon 🔍 on the top right (or go to “View” > “Serial Monitor”).
The Serial Monitor window will open — you can now view incoming serial data.
For Arduino IDE 1.x (classic versions)
Connect your Arduino board.
Open Arduino IDE 1.x.
Choose your board and port under:
Tools > Board
Tools > Port
Go to Tools > Serial Monitor, or press:
nginx Ctrl + Shift + M
The Serial Monitor will pop up in a new window.
Notes
Baud Rate: Make sure it matches what’s in your code:
cpp Serial.begin(9600); // Use 9600 in Serial Monitor
You can send data back to the Arduino using the input box at the top.
For Serial Plotter (graphing data): go to Tools > Serial Plotter
Subscribe to my newsletter
Read articles from ampheo directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
