File tree 3 files changed +27
-0
lines changed
3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,4 @@ You can check this out into your catkin workspace as follows:
20
20
* and contains elementary safety features: stopping at walls, stairs and Neato's magnetic strips.
21
21
* LDS, Sounds, and Leds can be set via service call
22
22
* This ROS node works with Kinetic.
23
+ * Add config to control the Neato with a joystick.
Original file line number Diff line number Diff line change
1
+ teleop :
2
+ move :
3
+ type : topic
4
+ message_type : geometry_msgs/Twist
5
+ topic_name : cmd_vel
6
+ axis_mappings :
7
+ -
8
+ axis : 1
9
+ target : linear.x
10
+ scale : 0.6
11
+ -
12
+ axis : 3
13
+ target : angular.z
14
+ scale : 1.0
Original file line number Diff line number Diff line change
1
+ <launch >
2
+ <arg name =" cmd_vel" default =" /cmd_vel" />
3
+ <arg name =" teleop_config" default =" $(find neato_node)/config/joy_teleop.yaml" />
4
+
5
+ <node pkg =" joy" type =" joy_node" name =" joystick" output =" screen" />
6
+
7
+ <rosparam file =" $(arg teleop_config)" command =" load" />
8
+ <node pkg =" joy_teleop" type =" joy_teleop.py" name =" joy_teleop" >
9
+ <remap from =" cmd_vel" to =" $(arg cmd_vel)" />
10
+ </node >
11
+
12
+ </launch >
You can’t perform that action at this time.
0 commit comments