-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevvy-jetson-diffdrive.launch
More file actions
executable file
·41 lines (34 loc) · 1.53 KB
/
revvy-jetson-diffdrive.launch
File metadata and controls
executable file
·41 lines (34 loc) · 1.53 KB
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
37
38
39
40
41
<?xml version="1.0"?>
<launch>
<arg name="ticks_per_meter" value="1800" />
<arg name="wheel_separation" value="0.11" />
<arg name="wheel_separation_length" value="0.13" />
<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)
wheel_separation_length: $(arg wheel_separation_length)
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)
wheel_separation_length: $(arg wheel_separation_length)
base_frame_id: "base_footprint"
</rosparam>
</node>
<node name="rplidarNode" pkg="rplidar_ros" type="rplidarNode" output="screen">
<param name="serial_port" type="string" value="/dev/ttyUSB0"/>
<param name="serial_baudrate" type="int" value="115200"/><!--A1/A2 -->
<!--param name="serial_baudrate" type="int" value="256000"--><!--A3 -->
<param name="frame_id" type="string" value="laser"/>
<param name="inverted" type="bool" value="false"/>
<param name="angle_compensate" type="bool" value="true"/>
</node>
<node name="revvyNode" pkg="revvyframework_ros" type="revvy.py" output="screen">
</node>
</launch>