Skip to main content
+ mention picocom
Source Link
Edgar Bonet
  • 45.2k
  • 4
  • 42
  • 81

Programs such as minicomscreen and, screenminicom or (my favorite) picocom are useful if you want bidirectional communication communication betweenbetween the Arduino and the host computer. If you only want want to read what what the Arduino sends, that can be done with cat:

stty -F /dev/ttyACM0 raw 115200
cat /dev/ttyACM0

minicom and screen are useful if you want bidirectional communication between the Arduino and the host computer. If you only want to read what the Arduino sends, that can be done with cat:

stty -F /dev/ttyACM0 raw 115200
cat /dev/ttyACM0

Programs such as screen, minicom or (my favorite) picocom are useful if you want bidirectional communication between the Arduino and the host computer. If you only want to read what the Arduino sends, that can be done with cat:

stty -F /dev/ttyACM0 raw 115200
cat /dev/ttyACM0
Source Link
Edgar Bonet
  • 45.2k
  • 4
  • 42
  • 81

minicom and screen are useful if you want bidirectional communication between the Arduino and the host computer. If you only want to read what the Arduino sends, that can be done with cat:

stty -F /dev/ttyACM0 raw 115200
cat /dev/ttyACM0