Skip to content

Commit c38d7ba

Browse files
committed
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 8fa6661 commit c38d7ba

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ For getting started, you'll basically need three steps:
124124
details.
125125

126126
```bash
127-
# Replace ur5e with one of ur3, ur3e, ur5, ur5e, ur7e, ur8long, ur10, ur10e, ur12e, ur16e, ur15, ur20, ur30
127+
# Replace ur5e with one of ur3, ur5, ur10, ur3e, ur5e, ur7e, ur10e, ur12e, ur16e, ur8long, ur15, ur20, ur30
128128
# Replace the IP address with the IP address of your actual robot / URSim
129129
ros2 launch ur_robot_driver ur_control.launch.py ur_type:=ur5e robot_ip:=192.168.56.101
130130
```

ur_bringup/launch/ur_control.launch.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ def generate_launch_description():
5252
description="Type/series of used UR robot.",
5353
choices=[
5454
"ur3",
55-
"ur3e",
5655
"ur5",
56+
"ur10",
57+
"ur3e",
5758
"ur5e",
5859
"ur7e",
59-
"ur8long",
60-
"ur10",
6160
"ur10e",
6261
"ur12e",
6362
"ur16e",
63+
"ur8long",
6464
"ur15",
6565
"ur20",
6666
"ur30",

ur_moveit_config/launch/ur_moveit.launch.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,15 +285,15 @@ def generate_launch_description():
285285
description="Type/series of used UR robot.",
286286
choices=[
287287
"ur3",
288-
"ur3e",
289288
"ur5",
289+
"ur10",
290+
"ur3e",
290291
"ur5e",
291292
"ur7e",
292-
"ur8long",
293-
"ur10",
294293
"ur10e",
295294
"ur12e",
296295
"ur16e",
296+
"ur8long",
297297
"ur15",
298298
"ur20",
299299
"ur30",

ur_robot_driver/doc/usage/startup.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ nodes for UR robots. The only required arguments are the ``ur_type`` and ``robot
2222
2323
$ ros2 launch ur_robot_driver ur_control.launch.py ur_type:=ur5e robot_ip:=192.168.56.101
2424
25-
Allowed ``ur_type`` strings: ``ur3``, ``ur3e``, ``ur5``, ``ur5e``, ``ur7e``, ``ur8long``, ``ur10``, ``ur10e``,
26-
``ur12e``, ``ur16e``, ``ur15``, ``ur20``, ``ur30``.
25+
Allowed ``ur_type`` strings: ``ur3``, ``ur5``, ``ur10``, ``ur3e``, ``ur5e``, ``ur7e``, ``ur10e``,
26+
``ur12e``, ``ur16e``, ``ur8long``, ``ur15``, ``ur20``, ``ur30``.
2727

2828
Other important arguments are:
2929

ur_robot_driver/launch/ur_control.launch.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -400,15 +400,15 @@ def generate_launch_description():
400400
description="Type/series of used UR robot.",
401401
choices=[
402402
"ur3",
403-
"ur3e",
404403
"ur5",
404+
"ur10",
405+
"ur3e",
405406
"ur5e",
406407
"ur7e",
407-
"ur8long",
408-
"ur10",
409408
"ur10e",
410409
"ur12e",
411410
"ur16e",
411+
"ur8long",
412412
"ur15",
413413
"ur20",
414414
"ur30",

ur_robot_driver/test/test_common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,15 +310,15 @@ def _declare_launch_arguments():
310310
description="Type/series of used UR robot.",
311311
choices=[
312312
"ur3",
313-
"ur3e",
314313
"ur5",
314+
"ur10",
315+
"ur3e",
315316
"ur5e",
316317
"ur7e",
317-
"ur8long",
318-
"ur10",
319318
"ur10e",
320319
"ur12e",
321320
"ur16e",
321+
"ur8long",
322322
"ur15",
323323
"ur20",
324324
"ur30",

0 commit comments

Comments
 (0)