hex-zmq-servers 0.3.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hex_zmq_servers/__init__.py +173 -0
- hex_zmq_servers/cam/__init__.py +52 -0
- hex_zmq_servers/cam/berxel/__init__.py +17 -0
- hex_zmq_servers/cam/berxel/cam_berxel.py +282 -0
- hex_zmq_servers/cam/berxel/cam_berxel_cli.py +33 -0
- hex_zmq_servers/cam/berxel/cam_berxel_srv.py +79 -0
- hex_zmq_servers/cam/cam_base.py +189 -0
- hex_zmq_servers/cam/dummy/__init__.py +17 -0
- hex_zmq_servers/cam/dummy/cam_dummy.py +69 -0
- hex_zmq_servers/cam/dummy/cam_dummy_cli.py +29 -0
- hex_zmq_servers/cam/dummy/cam_dummy_srv.py +68 -0
- hex_zmq_servers/cam/realsense/__init__.py +17 -0
- hex_zmq_servers/cam/realsense/cam_realsense.py +159 -0
- hex_zmq_servers/cam/realsense/cam_realsense_cli.py +33 -0
- hex_zmq_servers/cam/realsense/cam_realsense_srv.py +78 -0
- hex_zmq_servers/cam/rgb/__init__.py +17 -0
- hex_zmq_servers/cam/rgb/cam_rgb.py +135 -0
- hex_zmq_servers/cam/rgb/cam_rgb_cli.py +43 -0
- hex_zmq_servers/cam/rgb/cam_rgb_srv.py +78 -0
- hex_zmq_servers/config/cam_berxel.json +18 -0
- hex_zmq_servers/config/cam_dummy.json +12 -0
- hex_zmq_servers/config/cam_realsense.json +17 -0
- hex_zmq_servers/config/cam_rgb.json +28 -0
- hex_zmq_servers/config/mujoco_archer_y6.json +37 -0
- hex_zmq_servers/config/mujoco_e3_desktop.json +41 -0
- hex_zmq_servers/config/robot_dummy.json +153 -0
- hex_zmq_servers/config/robot_gello.json +66 -0
- hex_zmq_servers/config/robot_hexarm.json +37 -0
- hex_zmq_servers/config/zmq_dummy.json +12 -0
- hex_zmq_servers/device_base.py +44 -0
- hex_zmq_servers/hex_launch.py +489 -0
- hex_zmq_servers/mujoco/__init__.py +28 -0
- hex_zmq_servers/mujoco/archer_y6/__init__.py +17 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/arm_base_link.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_1.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_2.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_3.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_4.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/arm_link_5.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/assets.xml +17 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/camera_link.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_base_link.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_helper_link.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_link_1.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_left_link_2.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_helper_link.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_link_1.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/gripper_right_link_2.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/assets/table_link.STL +0 -0
- hex_zmq_servers/mujoco/archer_y6/model/robot.xml +95 -0
- hex_zmq_servers/mujoco/archer_y6/model/scene.xml +51 -0
- hex_zmq_servers/mujoco/archer_y6/model/setting.xml +37 -0
- hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6.py +325 -0
- hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6_cli.py +71 -0
- hex_zmq_servers/mujoco/archer_y6/mujoco_archer_y6_srv.py +148 -0
- hex_zmq_servers/mujoco/e3_desktop/__init__.py +17 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_base_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_1.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_2.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_3.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_4.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/arm_link_5.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/assets.xml +18 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/camera_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/e3_desktop_base_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_base_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_helper_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_link_1.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_left_link_2.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_helper_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_link_1.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/gripper_right_link_2.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/assets/table_link.STL +0 -0
- hex_zmq_servers/mujoco/e3_desktop/model/robot.xml +188 -0
- hex_zmq_servers/mujoco/e3_desktop/model/scene.xml +53 -0
- hex_zmq_servers/mujoco/e3_desktop/model/setting.xml +72 -0
- hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop.py +449 -0
- hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop_cli.py +289 -0
- hex_zmq_servers/mujoco/e3_desktop/mujoco_e3_desktop_srv.py +244 -0
- hex_zmq_servers/mujoco/mujoco_base.py +425 -0
- hex_zmq_servers/robot/__init__.py +37 -0
- hex_zmq_servers/robot/dummy/__init__.py +17 -0
- hex_zmq_servers/robot/dummy/robot_dummy.py +94 -0
- hex_zmq_servers/robot/dummy/robot_dummy_cli.py +29 -0
- hex_zmq_servers/robot/dummy/robot_dummy_srv.py +82 -0
- hex_zmq_servers/robot/gello/__init__.py +17 -0
- hex_zmq_servers/robot/gello/robot_gello.py +366 -0
- hex_zmq_servers/robot/gello/robot_gello_cli.py +29 -0
- hex_zmq_servers/robot/gello/robot_gello_srv.py +93 -0
- hex_zmq_servers/robot/hexarm/__init__.py +47 -0
- hex_zmq_servers/robot/hexarm/robot_hexarm.py +292 -0
- hex_zmq_servers/robot/hexarm/robot_hexarm_cli.py +37 -0
- hex_zmq_servers/robot/hexarm/robot_hexarm_srv.py +87 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_l6y/empty.urdf +206 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100.urdf +206 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_handle.urdf +206 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_p050.urdf +206 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_l6y/gp100_p050_handle.urdf +206 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_y6/empty.urdf +207 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100.urdf +207 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_handle.urdf +207 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_p050.urdf +207 -0
- hex_zmq_servers/robot/hexarm/urdf/archer_y6/gp100_p050_handle.urdf +207 -0
- hex_zmq_servers/robot/robot_base.py +276 -0
- hex_zmq_servers/zmq_base.py +547 -0
- hex_zmq_servers-0.3.9.dist-info/METADATA +147 -0
- hex_zmq_servers-0.3.9.dist-info/RECORD +110 -0
- hex_zmq_servers-0.3.9.dist-info/WHEEL +5 -0
- hex_zmq_servers-0.3.9.dist-info/licenses/LICENSE +201 -0
- hex_zmq_servers-0.3.9.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<robot name="archer_l6y">
|
|
3
|
+
<link name="base_link">
|
|
4
|
+
<inertial>
|
|
5
|
+
<origin xyz="-0.00080975 0.00005863 0.05684460" rpy="0 0 0" />
|
|
6
|
+
<mass value="0.61800543" />
|
|
7
|
+
<inertia ixx="0.00055618" ixy="-0.00000009" ixz="-0.00000663" iyy="0.00058624" iyz="0.00000086" izz="0.00060508" />
|
|
8
|
+
</inertial>
|
|
9
|
+
<visual>
|
|
10
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
11
|
+
<geometry>
|
|
12
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/base_link.STL" />
|
|
13
|
+
</geometry>
|
|
14
|
+
<material name="">
|
|
15
|
+
<color rgba="1 1 1 1" />
|
|
16
|
+
</material>
|
|
17
|
+
</visual>
|
|
18
|
+
<collision>
|
|
19
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
20
|
+
<geometry>
|
|
21
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/base_link.STL" />
|
|
22
|
+
</geometry>
|
|
23
|
+
</collision>
|
|
24
|
+
</link>
|
|
25
|
+
|
|
26
|
+
<link name="link_1">
|
|
27
|
+
<inertial>
|
|
28
|
+
<origin xyz="0.00884023 -0.00039740 0.03457242" rpy="0 0 0" />
|
|
29
|
+
<mass value="0.29593000" />
|
|
30
|
+
<inertia ixx="0.00047871" ixy="0.00000088" ixz="-0.00005799" iyy="0.00030053" iyz="0.00000258" izz="0.00041726" />
|
|
31
|
+
</inertial>
|
|
32
|
+
<visual>
|
|
33
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
34
|
+
<geometry>
|
|
35
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_1.STL" />
|
|
36
|
+
</geometry>
|
|
37
|
+
<material name="">
|
|
38
|
+
<color rgba="1 1 1 1" />
|
|
39
|
+
</material>
|
|
40
|
+
</visual>
|
|
41
|
+
<collision>
|
|
42
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
43
|
+
<geometry>
|
|
44
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_1.STL" />
|
|
45
|
+
</geometry>
|
|
46
|
+
</collision>
|
|
47
|
+
</link>
|
|
48
|
+
<joint name="joint_1" type="revolute">
|
|
49
|
+
<origin xyz="0 0 0.08355" rpy="0 0 0" />
|
|
50
|
+
<parent link="base_link" />
|
|
51
|
+
<child link="link_1" />
|
|
52
|
+
<axis xyz="0 0 1" />
|
|
53
|
+
<limit lower="-2.8623" upper="2.8623" effort="1" velocity="1" />
|
|
54
|
+
</joint>
|
|
55
|
+
|
|
56
|
+
<link name="link_2">
|
|
57
|
+
<inertial>
|
|
58
|
+
<origin xyz="-0.00159885 0.02740310 0.13379837" rpy="0 0 0" />
|
|
59
|
+
<mass value="1.34359000" />
|
|
60
|
+
<inertia ixx="0.01905633" ixy="0.00000078" ixz="0.00001635" iyy="0.01890424" iyz="0.00000765" izz="0.00086433" />
|
|
61
|
+
</inertial>
|
|
62
|
+
<visual>
|
|
63
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
64
|
+
<geometry>
|
|
65
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_2.STL" />
|
|
66
|
+
</geometry>
|
|
67
|
+
<material name="">
|
|
68
|
+
<color rgba="1 1 1 1" />
|
|
69
|
+
</material>
|
|
70
|
+
</visual>
|
|
71
|
+
<collision>
|
|
72
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
73
|
+
<geometry>
|
|
74
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_2.STL" />
|
|
75
|
+
</geometry>
|
|
76
|
+
</collision>
|
|
77
|
+
</link>
|
|
78
|
+
<joint name="joint_2" type="revolute">
|
|
79
|
+
<origin xyz="0.02 -0.0285 0.0555" rpy="0 0 0" />
|
|
80
|
+
<parent link="link_1" />
|
|
81
|
+
<child link="link_2" />
|
|
82
|
+
<axis xyz="0 1 0" />
|
|
83
|
+
<limit lower="-2.0943" upper="1.5707" effort="1" velocity="1" />
|
|
84
|
+
</joint>
|
|
85
|
+
|
|
86
|
+
<link name="link_3">
|
|
87
|
+
<inertial>
|
|
88
|
+
<origin xyz="-0.05454198 0.02770576 0.14631127" rpy="0 0 0" />
|
|
89
|
+
<mass value="1.08626000" />
|
|
90
|
+
<inertia ixx="0.01172853" ixy="-0.00000662" ixz="0.00163495" iyy="0.01182587" iyz="0.00007450" izz="0.00147592" />
|
|
91
|
+
</inertial>
|
|
92
|
+
<visual>
|
|
93
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
94
|
+
<geometry>
|
|
95
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_3.STL" />
|
|
96
|
+
</geometry>
|
|
97
|
+
<material name="">
|
|
98
|
+
<color rgba="1 1 1 1" />
|
|
99
|
+
</material>
|
|
100
|
+
</visual>
|
|
101
|
+
<collision>
|
|
102
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
103
|
+
<geometry>
|
|
104
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_3.STL" />
|
|
105
|
+
</geometry>
|
|
106
|
+
</collision>
|
|
107
|
+
</link>
|
|
108
|
+
<joint name="joint_3" type="revolute">
|
|
109
|
+
<origin xyz="0 0 0.27" rpy="0 0 0" />
|
|
110
|
+
<parent link="link_2" />
|
|
111
|
+
<child link="link_3" />
|
|
112
|
+
<axis xyz="0 1 0" />
|
|
113
|
+
<limit lower="0" upper="3.159" effort="1" velocity="1" />
|
|
114
|
+
</joint>
|
|
115
|
+
|
|
116
|
+
<link name="link_4">
|
|
117
|
+
<inertial>
|
|
118
|
+
<origin xyz="-0.04639218 0.02832840 0.04493954" rpy="0 0 0" />
|
|
119
|
+
<mass value="0.53458000" />
|
|
120
|
+
<inertia ixx="0.00085129" ixy="0.00000633" ixz="0.00043133" iyy="0.00109396" iyz="-0.00000547" izz="0.00087351" />
|
|
121
|
+
</inertial>
|
|
122
|
+
<visual>
|
|
123
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
124
|
+
<geometry>
|
|
125
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_4.STL" />
|
|
126
|
+
</geometry>
|
|
127
|
+
<material name="">
|
|
128
|
+
<color rgba="1 1 1 1" />
|
|
129
|
+
</material>
|
|
130
|
+
</visual>
|
|
131
|
+
<collision>
|
|
132
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
133
|
+
<geometry>
|
|
134
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_4.STL" />
|
|
135
|
+
</geometry>
|
|
136
|
+
</collision>
|
|
137
|
+
</link>
|
|
138
|
+
<joint name="joint_4" type="revolute">
|
|
139
|
+
<origin xyz="-0.065 -5E-05 0.25" rpy="0 0 0" />
|
|
140
|
+
<parent link="link_3" />
|
|
141
|
+
<child link="link_4" />
|
|
142
|
+
<axis xyz="0 1 0" />
|
|
143
|
+
<limit lower="-1.5707" upper="1.5707" effort="1" velocity="1" />
|
|
144
|
+
</joint>
|
|
145
|
+
|
|
146
|
+
<link name="link_5">
|
|
147
|
+
<inertial>
|
|
148
|
+
<origin xyz="0.04082486 0.00006149 0.00717093" rpy="0 0 0" />
|
|
149
|
+
<mass value="0.38996000" />
|
|
150
|
+
<inertia ixx="0.00016500" ixy="-0.00000021" ixz="-0.00002287" iyy="0.00022995" iyz="0.00000039" izz="0.00021724" />
|
|
151
|
+
</inertial>
|
|
152
|
+
<visual>
|
|
153
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
154
|
+
<geometry>
|
|
155
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_5.STL" />
|
|
156
|
+
</geometry>
|
|
157
|
+
<material name="">
|
|
158
|
+
<color rgba="1 1 1 1" />
|
|
159
|
+
</material>
|
|
160
|
+
</visual>
|
|
161
|
+
<collision>
|
|
162
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
163
|
+
<geometry>
|
|
164
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_5.STL" />
|
|
165
|
+
</geometry>
|
|
166
|
+
</collision>
|
|
167
|
+
</link>
|
|
168
|
+
<joint name="joint_5" type="revolute">
|
|
169
|
+
<origin xyz="-0.046 0.0285 0.065" rpy="0 0 0" />
|
|
170
|
+
<parent link="link_4" />
|
|
171
|
+
<child link="link_5" />
|
|
172
|
+
<axis xyz="-1 0 0" />
|
|
173
|
+
<limit lower="-1.5707" upper="1.5707" effort="1" velocity="1" />
|
|
174
|
+
</joint>
|
|
175
|
+
|
|
176
|
+
<link name="link_6">
|
|
177
|
+
<inertial>
|
|
178
|
+
<origin xyz="-0.009 0.0001 0.059" rpy="0 0 0" />
|
|
179
|
+
<mass value="0.8192" />
|
|
180
|
+
<inertia ixx="0.0012" ixy="0" ixz="-0.0002" iyy="0.025" iyz="0" izz="0.0018" />
|
|
181
|
+
</inertial>
|
|
182
|
+
<visual>
|
|
183
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
184
|
+
<geometry>
|
|
185
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_6.STL" />
|
|
186
|
+
</geometry>
|
|
187
|
+
<material name="">
|
|
188
|
+
<color rgba="0.1098 0.1098 0.1098 1" />
|
|
189
|
+
</material>
|
|
190
|
+
</visual>
|
|
191
|
+
<collision>
|
|
192
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
193
|
+
<geometry>
|
|
194
|
+
<mesh filename="package://xpkg_urdf_archer_l6y/meshes/link_6.STL" />
|
|
195
|
+
</geometry>
|
|
196
|
+
</collision>
|
|
197
|
+
</link>
|
|
198
|
+
<joint name="joint_6" type="revolute">
|
|
199
|
+
<origin xyz="0.046 0 0.034" rpy="0 0 0" />
|
|
200
|
+
<parent link="link_5" />
|
|
201
|
+
<child link="link_6" />
|
|
202
|
+
<axis xyz="0 0 1" />
|
|
203
|
+
<limit lower="-3.1415" upper="3.1415" effort="0" velocity="0" />
|
|
204
|
+
</joint>
|
|
205
|
+
|
|
206
|
+
</robot>
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<robot name="archer_y6">
|
|
3
|
+
|
|
4
|
+
<link name="base_link">
|
|
5
|
+
<inertial>
|
|
6
|
+
<origin xyz="-0.001 0 0.322" rpy="0 0 0" />
|
|
7
|
+
<mass value="0.687" />
|
|
8
|
+
<inertia ixx="0.0005" iyy="0.0005" izz="0.0007" ixy="0" ixz="0" iyz="0" />
|
|
9
|
+
</inertial>
|
|
10
|
+
<visual>
|
|
11
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
12
|
+
<geometry>
|
|
13
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/base_link.STL" />
|
|
14
|
+
</geometry>
|
|
15
|
+
<material name="">
|
|
16
|
+
<color rgba="1 1 1 1" />
|
|
17
|
+
</material>
|
|
18
|
+
</visual>
|
|
19
|
+
<collision>
|
|
20
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
21
|
+
<geometry>
|
|
22
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/base_link.STL" />
|
|
23
|
+
</geometry>
|
|
24
|
+
</collision>
|
|
25
|
+
</link>
|
|
26
|
+
|
|
27
|
+
<link name="link_1">
|
|
28
|
+
<inertial>
|
|
29
|
+
<origin xyz="0.008 -0.0023 0.0213" rpy="0 0 0" />
|
|
30
|
+
<mass value="0.2154" />
|
|
31
|
+
<inertia ixx="0.0003" iyy="0.0002" izz="0.0003" ixy="0" ixz="0" iyz="0"/>
|
|
32
|
+
</inertial>
|
|
33
|
+
<visual>
|
|
34
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
35
|
+
<geometry>
|
|
36
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_1.STL" />
|
|
37
|
+
</geometry>
|
|
38
|
+
<material name="">
|
|
39
|
+
<color rgba="1 1 1 1" />
|
|
40
|
+
</material>
|
|
41
|
+
</visual>
|
|
42
|
+
<collision>
|
|
43
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
44
|
+
<geometry>
|
|
45
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_1.STL" />
|
|
46
|
+
</geometry>
|
|
47
|
+
</collision>
|
|
48
|
+
</link>
|
|
49
|
+
<joint name="joint_1" type="revolute">
|
|
50
|
+
<origin xyz="0 0 0.0665" rpy="0 0 0" />
|
|
51
|
+
<parent link="base_link" />
|
|
52
|
+
<child link="link_1" />
|
|
53
|
+
<axis xyz="0 0 1" />
|
|
54
|
+
<limit lower="-2.61" upper="3.14" effort="6" velocity="6" />
|
|
55
|
+
</joint>
|
|
56
|
+
|
|
57
|
+
<link name="link_2">
|
|
58
|
+
<inertial>
|
|
59
|
+
<origin xyz="0.0001 -0.0028 0.1317" rpy="0 0 0" />
|
|
60
|
+
<mass value="1.3123" />
|
|
61
|
+
<inertia ixx="0.018" iyy="0.0177" izz="0.0007" ixy="0" ixz="0" iyz="0.0007" />
|
|
62
|
+
</inertial>
|
|
63
|
+
<visual>
|
|
64
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
65
|
+
<geometry>
|
|
66
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_2.STL" />
|
|
67
|
+
</geometry>
|
|
68
|
+
<material name="">
|
|
69
|
+
<color rgba="1 1 1 1" />
|
|
70
|
+
</material>
|
|
71
|
+
</visual>
|
|
72
|
+
<collision>
|
|
73
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
74
|
+
<geometry>
|
|
75
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_2.STL" />
|
|
76
|
+
</geometry>
|
|
77
|
+
</collision>
|
|
78
|
+
</link>
|
|
79
|
+
<joint name="joint_2" type="revolute">
|
|
80
|
+
<origin xyz="0.02 0 0.045" rpy="0 0 0" />
|
|
81
|
+
<parent link="link_1" />
|
|
82
|
+
<child link="link_2" />
|
|
83
|
+
<axis xyz="0 1 0" />
|
|
84
|
+
<limit lower="-1.57" upper="2.09" effort="6" velocity="6" />
|
|
85
|
+
</joint>
|
|
86
|
+
|
|
87
|
+
<link name="link_3">
|
|
88
|
+
<inertial>
|
|
89
|
+
<origin xyz="-0.051 0.0008 0.1447" rpy="0 0 0" />
|
|
90
|
+
<mass value="1.1083" />
|
|
91
|
+
<inertia ixx="0.0114" iyy="0.0112" izz="0.0016" ixy="-0.0001" ixz="0.0014" iyz="0.0006" />
|
|
92
|
+
</inertial>
|
|
93
|
+
<visual>
|
|
94
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
95
|
+
<geometry>
|
|
96
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_3.STL" />
|
|
97
|
+
</geometry>
|
|
98
|
+
<material name="">
|
|
99
|
+
<color rgba="1 1 1 1" />
|
|
100
|
+
</material>
|
|
101
|
+
</visual>
|
|
102
|
+
<collision>
|
|
103
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
104
|
+
<geometry>
|
|
105
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_3.STL" />
|
|
106
|
+
</geometry>
|
|
107
|
+
</collision>
|
|
108
|
+
</link>
|
|
109
|
+
<joint name="joint_3" type="revolute">
|
|
110
|
+
<origin xyz="0 0 0.264" rpy="0 0 0" />
|
|
111
|
+
<parent link="link_2" />
|
|
112
|
+
<child link="link_3" />
|
|
113
|
+
<axis xyz="0 1 0" />
|
|
114
|
+
<limit lower="0" upper="3.14" effort="6" velocity="6" />
|
|
115
|
+
</joint>
|
|
116
|
+
|
|
117
|
+
<link name="link_4">
|
|
118
|
+
<inertial>
|
|
119
|
+
<origin xyz="-0.0597 -0.001 0.0572" rpy="0 0 0" />
|
|
120
|
+
<mass value="0.5398" />
|
|
121
|
+
<inertia ixx="0.0008" iyy="0.001" izz="0.0008" ixy="0" ixz="0.0003" iyz="0" />
|
|
122
|
+
</inertial>
|
|
123
|
+
<visual>
|
|
124
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
125
|
+
<geometry>
|
|
126
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_4.STL" />
|
|
127
|
+
</geometry>
|
|
128
|
+
<material name="">
|
|
129
|
+
<color rgba="1 1 1 1" />
|
|
130
|
+
</material>
|
|
131
|
+
</visual>
|
|
132
|
+
<collision>
|
|
133
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
134
|
+
<geometry>
|
|
135
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_4.STL" />
|
|
136
|
+
</geometry>
|
|
137
|
+
</collision>
|
|
138
|
+
</link>
|
|
139
|
+
<joint name="joint_4" type="revolute">
|
|
140
|
+
<origin xyz="-0.06 0 0.245" rpy="0 0 0" />
|
|
141
|
+
<parent link="link_3" />
|
|
142
|
+
<child link="link_4" />
|
|
143
|
+
<axis xyz="0 1 0" />
|
|
144
|
+
<limit lower="-1.57" upper="1.57" effort="6" velocity="6" />
|
|
145
|
+
</joint>
|
|
146
|
+
|
|
147
|
+
<link name="link_5">
|
|
148
|
+
<inertial>
|
|
149
|
+
<origin xyz="0.0292 0.0001 -0.0107" rpy="0 0 0" />
|
|
150
|
+
<mass value="0.3984" />
|
|
151
|
+
<inertia ixx="0.0002" iyy="0.0003" izz="0.0002" ixy="0" ixz="0" iyz="0" />
|
|
152
|
+
</inertial>
|
|
153
|
+
<visual>
|
|
154
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
155
|
+
<geometry>
|
|
156
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_5.STL" />
|
|
157
|
+
</geometry>
|
|
158
|
+
<material name="">
|
|
159
|
+
<color rgba="1 1 1 1" />
|
|
160
|
+
</material>
|
|
161
|
+
</visual>
|
|
162
|
+
<collision>
|
|
163
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
164
|
+
<geometry>
|
|
165
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_5.STL" />
|
|
166
|
+
</geometry>
|
|
167
|
+
</collision>
|
|
168
|
+
</link>
|
|
169
|
+
<joint name="joint_5" type="revolute">
|
|
170
|
+
<origin xyz="-0.0553 0 0.070" rpy="0 0 0" />
|
|
171
|
+
<parent link="link_4" />
|
|
172
|
+
<child link="link_5" />
|
|
173
|
+
<axis xyz="-1 0 0" />
|
|
174
|
+
<limit lower="-1.57" upper="1.57" effort="6" velocity="6" />
|
|
175
|
+
</joint>
|
|
176
|
+
|
|
177
|
+
<link name="link_6">
|
|
178
|
+
<inertial>
|
|
179
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
180
|
+
<mass value="0.001" />
|
|
181
|
+
<inertia ixx="0.0001" ixy="0" ixz="0" iyy="0.0001" iyz="0" izz="0.0001" />
|
|
182
|
+
</inertial>
|
|
183
|
+
<visual>
|
|
184
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
185
|
+
<geometry>
|
|
186
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_6.STL" />
|
|
187
|
+
</geometry>
|
|
188
|
+
<material name="">
|
|
189
|
+
<color rgba="1 1 1 1" />
|
|
190
|
+
</material>
|
|
191
|
+
</visual>
|
|
192
|
+
<collision>
|
|
193
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
194
|
+
<geometry>
|
|
195
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_6.STL" />
|
|
196
|
+
</geometry>
|
|
197
|
+
</collision>
|
|
198
|
+
</link>
|
|
199
|
+
<joint name="joint_6" type="revolute">
|
|
200
|
+
<origin xyz="0.0553 0 0.029" rpy="0 0 0" />
|
|
201
|
+
<parent link="link_5" />
|
|
202
|
+
<child link="link_6" />
|
|
203
|
+
<axis xyz="0 0 1" />
|
|
204
|
+
<limit lower="-2.96" upper="2.96" effort="6" velocity="6" />
|
|
205
|
+
</joint>
|
|
206
|
+
|
|
207
|
+
</robot>
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<robot name="archer_y6">
|
|
3
|
+
|
|
4
|
+
<link name="base_link">
|
|
5
|
+
<inertial>
|
|
6
|
+
<origin xyz="-0.001 0 0.322" rpy="0 0 0" />
|
|
7
|
+
<mass value="0.687" />
|
|
8
|
+
<inertia ixx="0.0005" iyy="0.0005" izz="0.0007" ixy="0" ixz="0" iyz="0" />
|
|
9
|
+
</inertial>
|
|
10
|
+
<visual>
|
|
11
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
12
|
+
<geometry>
|
|
13
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/base_link.STL" />
|
|
14
|
+
</geometry>
|
|
15
|
+
<material name="">
|
|
16
|
+
<color rgba="1 1 1 1" />
|
|
17
|
+
</material>
|
|
18
|
+
</visual>
|
|
19
|
+
<collision>
|
|
20
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
21
|
+
<geometry>
|
|
22
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/base_link.STL" />
|
|
23
|
+
</geometry>
|
|
24
|
+
</collision>
|
|
25
|
+
</link>
|
|
26
|
+
|
|
27
|
+
<link name="link_1">
|
|
28
|
+
<inertial>
|
|
29
|
+
<origin xyz="0.008 -0.0023 0.0213" rpy="0 0 0" />
|
|
30
|
+
<mass value="0.2154" />
|
|
31
|
+
<inertia ixx="0.0003" iyy="0.0002" izz="0.0003" ixy="0" ixz="0" iyz="0"/>
|
|
32
|
+
</inertial>
|
|
33
|
+
<visual>
|
|
34
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
35
|
+
<geometry>
|
|
36
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_1.STL" />
|
|
37
|
+
</geometry>
|
|
38
|
+
<material name="">
|
|
39
|
+
<color rgba="1 1 1 1" />
|
|
40
|
+
</material>
|
|
41
|
+
</visual>
|
|
42
|
+
<collision>
|
|
43
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
44
|
+
<geometry>
|
|
45
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_1.STL" />
|
|
46
|
+
</geometry>
|
|
47
|
+
</collision>
|
|
48
|
+
</link>
|
|
49
|
+
<joint name="joint_1" type="revolute">
|
|
50
|
+
<origin xyz="0 0 0.0665" rpy="0 0 0" />
|
|
51
|
+
<parent link="base_link" />
|
|
52
|
+
<child link="link_1" />
|
|
53
|
+
<axis xyz="0 0 1" />
|
|
54
|
+
<limit lower="-2.61" upper="3.14" effort="6" velocity="6" />
|
|
55
|
+
</joint>
|
|
56
|
+
|
|
57
|
+
<link name="link_2">
|
|
58
|
+
<inertial>
|
|
59
|
+
<origin xyz="0.0001 -0.0028 0.1317" rpy="0 0 0" />
|
|
60
|
+
<mass value="1.3123" />
|
|
61
|
+
<inertia ixx="0.018" iyy="0.0177" izz="0.0007" ixy="0" ixz="0" iyz="0.0007" />
|
|
62
|
+
</inertial>
|
|
63
|
+
<visual>
|
|
64
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
65
|
+
<geometry>
|
|
66
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_2.STL" />
|
|
67
|
+
</geometry>
|
|
68
|
+
<material name="">
|
|
69
|
+
<color rgba="1 1 1 1" />
|
|
70
|
+
</material>
|
|
71
|
+
</visual>
|
|
72
|
+
<collision>
|
|
73
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
74
|
+
<geometry>
|
|
75
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_2.STL" />
|
|
76
|
+
</geometry>
|
|
77
|
+
</collision>
|
|
78
|
+
</link>
|
|
79
|
+
<joint name="joint_2" type="revolute">
|
|
80
|
+
<origin xyz="0.02 0 0.045" rpy="0 0 0" />
|
|
81
|
+
<parent link="link_1" />
|
|
82
|
+
<child link="link_2" />
|
|
83
|
+
<axis xyz="0 1 0" />
|
|
84
|
+
<limit lower="-1.57" upper="2.09" effort="6" velocity="6" />
|
|
85
|
+
</joint>
|
|
86
|
+
|
|
87
|
+
<link name="link_3">
|
|
88
|
+
<inertial>
|
|
89
|
+
<origin xyz="-0.051 0.0008 0.1447" rpy="0 0 0" />
|
|
90
|
+
<mass value="1.1083" />
|
|
91
|
+
<inertia ixx="0.0114" iyy="0.0112" izz="0.0016" ixy="-0.0001" ixz="0.0014" iyz="0.0006" />
|
|
92
|
+
</inertial>
|
|
93
|
+
<visual>
|
|
94
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
95
|
+
<geometry>
|
|
96
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_3.STL" />
|
|
97
|
+
</geometry>
|
|
98
|
+
<material name="">
|
|
99
|
+
<color rgba="1 1 1 1" />
|
|
100
|
+
</material>
|
|
101
|
+
</visual>
|
|
102
|
+
<collision>
|
|
103
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
104
|
+
<geometry>
|
|
105
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_3.STL" />
|
|
106
|
+
</geometry>
|
|
107
|
+
</collision>
|
|
108
|
+
</link>
|
|
109
|
+
<joint name="joint_3" type="revolute">
|
|
110
|
+
<origin xyz="0 0 0.264" rpy="0 0 0" />
|
|
111
|
+
<parent link="link_2" />
|
|
112
|
+
<child link="link_3" />
|
|
113
|
+
<axis xyz="0 1 0" />
|
|
114
|
+
<limit lower="0" upper="3.14" effort="6" velocity="6" />
|
|
115
|
+
</joint>
|
|
116
|
+
|
|
117
|
+
<link name="link_4">
|
|
118
|
+
<inertial>
|
|
119
|
+
<origin xyz="-0.0597 -0.001 0.0572" rpy="0 0 0" />
|
|
120
|
+
<mass value="0.5398" />
|
|
121
|
+
<inertia ixx="0.0008" iyy="0.001" izz="0.0008" ixy="0" ixz="0.0003" iyz="0" />
|
|
122
|
+
</inertial>
|
|
123
|
+
<visual>
|
|
124
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
125
|
+
<geometry>
|
|
126
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_4.STL" />
|
|
127
|
+
</geometry>
|
|
128
|
+
<material name="">
|
|
129
|
+
<color rgba="1 1 1 1" />
|
|
130
|
+
</material>
|
|
131
|
+
</visual>
|
|
132
|
+
<collision>
|
|
133
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
134
|
+
<geometry>
|
|
135
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_4.STL" />
|
|
136
|
+
</geometry>
|
|
137
|
+
</collision>
|
|
138
|
+
</link>
|
|
139
|
+
<joint name="joint_4" type="revolute">
|
|
140
|
+
<origin xyz="-0.06 0 0.245" rpy="0 0 0" />
|
|
141
|
+
<parent link="link_3" />
|
|
142
|
+
<child link="link_4" />
|
|
143
|
+
<axis xyz="0 1 0" />
|
|
144
|
+
<limit lower="-1.57" upper="1.57" effort="6" velocity="6" />
|
|
145
|
+
</joint>
|
|
146
|
+
|
|
147
|
+
<link name="link_5">
|
|
148
|
+
<inertial>
|
|
149
|
+
<origin xyz="0.0292 0.0001 -0.0107" rpy="0 0 0" />
|
|
150
|
+
<mass value="0.3984" />
|
|
151
|
+
<inertia ixx="0.0002" iyy="0.0003" izz="0.0002" ixy="0" ixz="0" iyz="0" />
|
|
152
|
+
</inertial>
|
|
153
|
+
<visual>
|
|
154
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
155
|
+
<geometry>
|
|
156
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_5.STL" />
|
|
157
|
+
</geometry>
|
|
158
|
+
<material name="">
|
|
159
|
+
<color rgba="1 1 1 1" />
|
|
160
|
+
</material>
|
|
161
|
+
</visual>
|
|
162
|
+
<collision>
|
|
163
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
164
|
+
<geometry>
|
|
165
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_5.STL" />
|
|
166
|
+
</geometry>
|
|
167
|
+
</collision>
|
|
168
|
+
</link>
|
|
169
|
+
<joint name="joint_5" type="revolute">
|
|
170
|
+
<origin xyz="-0.0553 0 0.070" rpy="0 0 0" />
|
|
171
|
+
<parent link="link_4" />
|
|
172
|
+
<child link="link_5" />
|
|
173
|
+
<axis xyz="-1 0 0" />
|
|
174
|
+
<limit lower="-1.57" upper="1.57" effort="6" velocity="6" />
|
|
175
|
+
</joint>
|
|
176
|
+
|
|
177
|
+
<link name="link_6">
|
|
178
|
+
<inertial>
|
|
179
|
+
<origin xyz="-0.0009 0.0001 0.0596" rpy="0 0 0" />
|
|
180
|
+
<mass value="0.6760" />
|
|
181
|
+
<inertia ixx="0.0011" ixy="0" ixz="0" iyy="0.0011" iyz="0" izz="0.0004" />
|
|
182
|
+
</inertial>
|
|
183
|
+
<visual>
|
|
184
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
185
|
+
<geometry>
|
|
186
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_6.STL" />
|
|
187
|
+
</geometry>
|
|
188
|
+
<material name="">
|
|
189
|
+
<color rgba="1 1 1 1" />
|
|
190
|
+
</material>
|
|
191
|
+
</visual>
|
|
192
|
+
<collision>
|
|
193
|
+
<origin xyz="0 0 0" rpy="0 0 0" />
|
|
194
|
+
<geometry>
|
|
195
|
+
<mesh filename="package://xpkg_urdf_archer_y6/meshes/link_6.STL" />
|
|
196
|
+
</geometry>
|
|
197
|
+
</collision>
|
|
198
|
+
</link>
|
|
199
|
+
<joint name="joint_6" type="revolute">
|
|
200
|
+
<origin xyz="0.0553 0 0.029" rpy="0 0 0" />
|
|
201
|
+
<parent link="link_5" />
|
|
202
|
+
<child link="link_6" />
|
|
203
|
+
<axis xyz="0 0 1" />
|
|
204
|
+
<limit lower="-2.96" upper="2.96" effort="6" velocity="6" />
|
|
205
|
+
</joint>
|
|
206
|
+
|
|
207
|
+
</robot>
|