Skip to content

Commit 29cb4f0

Browse files
authored
Add launch support for UR8 Long (#111)
* Add launch support for UR8 Long * Reorder model listings by generation, payload The list of supported robot models has been growing over time. This commit sorts them by generation (CB3, e-Series and UR series) and each generation by payload.
1 parent 03d2609 commit 29cb4f0

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

ur_simulation_gz/launch/ur_sim_control.launch.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,15 @@ def generate_launch_description():
202202
description="Type/series of used UR robot.",
203203
choices=[
204204
"ur3",
205-
"ur3e",
206205
"ur5",
206+
"ur10",
207+
"ur3e",
207208
"ur5e",
208209
"ur7e",
209-
"ur10",
210210
"ur10e",
211211
"ur12e",
212212
"ur16e",
213+
"ur8long",
213214
"ur15",
214215
"ur20",
215216
"ur30",

ur_simulation_gz/launch/ur_sim_moveit.launch.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,15 @@ def generate_launch_description():
8585
description="Type/series of used UR robot.",
8686
choices=[
8787
"ur3",
88-
"ur3e",
8988
"ur5",
89+
"ur10",
90+
"ur3e",
9091
"ur5e",
9192
"ur7e",
92-
"ur10",
9393
"ur10e",
9494
"ur12e",
9595
"ur16e",
96+
"ur8long",
9697
"ur15",
9798
"ur20",
9899
"ur30",

ur_simulation_gz/test/test_description.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,15 @@
4141
"ur_type",
4242
[
4343
"ur3",
44-
"ur3e",
4544
"ur5",
45+
"ur10",
46+
"ur3e",
4647
"ur5e",
4748
"ur7e",
48-
"ur10",
4949
"ur10e",
5050
"ur12e",
5151
"ur16e",
52+
"ur8long",
5253
"ur15",
5354
"ur20",
5455
"ur30",

ur_simulation_gz/test/test_gz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
# might change, once the gz launch system migration is done using gzserver and such....
7575
# @launch_testing.parametrize(
7676
# "ur_type",
77-
# ["ur3", "ur3e", "ur5", "ur5e", "ur7e", "ur10", "ur10e", "ur12e", "ur16e", "ur15", "ur20", "ur30"],
77+
# ["ur3", "ur5", "ur10", "ur3e", "ur5e", "ur7e", "ur10e", "ur12e", "ur16e", "ur8long", "ur15", "ur20", "ur30"],
7878
# )
7979
@pytest.mark.launch_test
8080
def generate_test_description():

ur_simulation_gz/urdf/ur_gz.urdf.xacro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<xacro:include filename="$(find ur_simulation_gz)/urdf/ur_gz.ros2_control.xacro" />
99

10-
<!-- possible 'ur_type' values: ur3, ur3e, ur5, ur5e, ur7e, ur10, ur10e, ur12e, ur16e, ur15, ur20, ur30 -->
10+
<!-- possible 'ur_type' values: ur3, ur5, ur10, ur3e, ur5e, ur7e, ur10e, ur12e, ur16e, ur8long, ur15, ur20, ur30 -->
1111
<!-- the default value should raise an error in case this was called without defining the type -->
1212
<xacro:arg name="ur_type" default="ur5x"/>
1313

0 commit comments

Comments
 (0)