ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

This problem is commonly seen when there is an error in the baud rate that Arduino serial takes. The commonly used baud rates are 9600, 57600, and 115200. so you can try changing the baud rates which is working with you by the following command

rosrun rosserial_python serial_node.py _port:=/dev/ttyACM0 _port:=9600

(note : ensure your port is /dev/ttyACM0 . If not try others like /dev/ttyACM1)

This problem is commonly seen when there is an error in the baud rate that Arduino serial takes. The commonly used baud rates are 9600, 57600, and 115200. so you can try changing the baud rates which is working with you by the following command

rosrun rosserial_python serial_node.py _port:=/dev/ttyACM0 _port:=9600
_baud:=9600

(note : ensure your port is /dev/ttyACM0 . If not try others like /dev/ttyACM1)