Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changed ttyUSB0 to ttyACM0
  • Loading branch information
Samuel Bierwagen committed Jun 1, 2016
1 parent c6ab79c commit 32258db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neato_driver/src/neato_driver/neato_driver.py
Expand Up @@ -114,7 +114,7 @@

class xv11():

def __init__(self, port="/dev/ttyUSB0"):
def __init__(self, port="/dev/ttyACM0"):
self.port = serial.Serial(port,115200)
# Storage for motor and sensor information
self.state = {"LeftWheel_PositionInMM": 0, "RightWheel_PositionInMM": 0}
Expand Down
2 changes: 1 addition & 1 deletion neato_node/launch/bringup.launch
Expand Up @@ -4,7 +4,7 @@
args="-0.1016 0 0.0889 0 0 0 base_link base_laser_link 50" />

<node name="neato" pkg="neato_node" type="neato.py" output="screen">
<param name="port" value="/dev/ttyUSB0" />
<param name="port" value="/dev/ttyACM0" />
</node>

</launch>
2 changes: 1 addition & 1 deletion neato_node/nodes/neato.py
Expand Up @@ -49,7 +49,7 @@ def __init__(self):
""" Start up connection to the Neato Robot. """
rospy.init_node('neato')

self.port = rospy.get_param('~port', "/dev/ttyUSB0")
self.port = rospy.get_param('~port', "/dev/ttyACM0")
rospy.loginfo("Using port: %s"%(self.port))

self.robot = xv11(self.port)
Expand Down

0 comments on commit 32258db

Please sign in to comment.