-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathodom_only.launch
More file actions
36 lines (25 loc) · 1020 Bytes
/
odom_only.launch
File metadata and controls
36 lines (25 loc) · 1020 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
29
30
31
32
33
34
35
36
<?xml version="1.0"?>
<launch>
<node pkg="tf" type="static_transform_publisher" name="laser" args="-0.005 0.005 0.18 0 0 0 base_link laser 50" />
<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>
<node name="rviz" pkg="rviz" type="rviz" />
</launch>