6 ways to access the serial monitor for Arduino

preview_player
Показать описание
#serial #monitor #arduino
Apart from the Arduino IDE, we can also access the serial monitor in other IDEs like Atom or VS Code. If an IDE is not available, the screen command on the terminal or Cool Term app can also be used. Finally, for some automation on a Linux machine, the commands stty and cat can be handy to view the serial monitor!

⏰ TIMESTAMPS
0:00 Intro
0:51 Arduino IDE
3:44 VS Code IDE with Arduino extension
4:52 Atom IDE with Platform IO plugin
6:52 Cool Term
9:27 screen command
10:22 stty command with cat on Linux

‣ Some links below are affiliate. I receive a small commission at no extra cost to you.

📻 PRODUCTS MENTIONED

🎩 DEMO FILES

🔗 LINKS SHOWN

🔌 TOOLS USED
Рекомендации по теме
Комментарии
Автор

Thanks for the video. I have just tried a 7th way :-)
install PySerial (via command line pip3 install PySerial), and then in IDLE 4 lines of code:
import serial
ser = serial.Serial('COM6', 9600, timeout=10)

while 1:
print(ser.readline())

ernestb.
Автор

I could listen to you all day long. Thank you for sharing and best wishes from Denmark.

mortenlund
Автор

coolterm : add timestamp and output to logfile, excellent! That's one of my tasks crossed off the list. Thanks!

thisusernameismine
Автор

I love your contents Sayanee Basu. Thanks heaps

ollierangel
Автор

PuTTY has also support for serial connections. If you are using it as SSH client, you have serial terminal already available....

radekhladik
Автор

I like the video so much, especially the LINUX part.

ogunsadebenjaminadeiyin
Автор

Excellent well explained and demonstrated.
Cheers from Oz

pulporock
Автор

If i am not connect the arduino uno board .. and open siriel monitor its not workoing right ?? ..

nethilascube
Автор

You have really explained so well. My stereotypical bias on ladies Tutorials has been diluted and flushed off

razorramzan-inc
Автор

Can any monitor accept a ‘clear screen’ command from the arduino?

SeanAlcorn
Автор

how do i remove monitor filters from visual studio ?

abcd-ygrx
Автор

Honourable mention to the tio package -- a Linux command which can send *AND* receive serial data!

Pupperoni
Автор

sorry for my English
does the serial monitor function only when the pc is connected whit arduino?

ildisonorevolesannita
Автор

In my ide serial monitor show nothing. Please help

shubhamkhandelwal