-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevvy-control.launch
More file actions
28 lines (23 loc) · 837 Bytes
/
revvy-control.launch
File metadata and controls
28 lines (23 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<launch>
<arg name="ticks_per_meter" value="1800" />
<arg name="wheel_separation" value="0.11" />
<node name="controller" pkg="diff_drive" type="diff_drive_controller"
output="screen">
<rosparam subst_value="true">
ticks_per_meter: $(arg ticks_per_meter)
wheel_separation: $(arg wheel_separation)
max_motor_speed: 3000
timeout: 1.0
</rosparam>
</node>
<node name="odom_publisher" pkg="diff_drive" type="diff_drive_odometry"
output="screen">
<rosparam subst_value="true">
ticks_per_meter: $(arg ticks_per_meter)
wheel_separation: $(arg wheel_separation)
</rosparam>
</node>
<node name="revvy_teleop" pkg="revvy_teleop_ros" type="key_teleop.py" output="screen">
</node>
</launch>