forked from agilexrobotics/scout_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scout_v2_nav.xacro
48 lines (40 loc) · 1.29 KB
/
scout_v2_nav.xacro
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
42
43
44
45
46
47
48
<?xml version="1.0"?>
<robot name="scout_v2"
xmlns:xacro="http://ros.org/wiki/xacro">
<xacro:include filename="$(find scout_base)/description/scout_v2.xacro" />
<!-- For testing, hang the robot up in the air -->
<!-- <link name="world" />
<joint name="world_to_base_link=" type="fixed">
<origin xyz="0 0 0.5" rpy="0 0 0" />
<parent link="world"/>
<child link="base_link"/>
</joint> -->
<link name="imu_link">
<visual>
<origin xyz="0.0 0.0 0.0" />
<geometry>
<cylinder length="0.03" radius="0.02" />
</geometry>
<material name="red" />
</visual>
</link>
<joint name="imu_joint" type="fixed">
<parent link="base_link" />
<child link="imu_link" />
<origin xyz="0.32 0.0 0.18" rpy="0 0 0" />
</joint>
<link name="laser">
<visual>
<origin xyz="0.0 0.0 0.0" />
<geometry>
<cylinder length="0.03" radius="0.02" />
</geometry>
<material name="red" />
</visual>
</link>
<joint name="base_laser_joint" type="fixed">
<parent link="base_link" />
<child link="laser" />
<origin xyz="0.0 0.0 0.65" rpy="0 0 0" />
</joint>
</robot>