Skip to content

Commit

Permalink
Add ur20 to possible values (#42)
Browse files Browse the repository at this point in the history
* Add ur20 to possible values

* Remove notice about missing UR20 in README
  • Loading branch information
fmauch authored Dec 20, 2023
1 parent ef39ef6 commit f0ebd01
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ users an overview of the current released state.
## Known issues
:warning: The UR5 (non-e-series) model seems to be broken at the moment. Please see [#34](https://github.com/UniversalRobots/Universal_Robots_ROS2_Gazebo_Simulation/issues/34) :warning:

:construction: The UR20 has not been added, yet. There are a couple of things we want to change in
this repo first. Please see
[#35](https://github.com/UniversalRobots/Universal_Robots_ROS2_Gazebo_Simulation/issues/35) :construction:

All other models should be working correctly.

## Using the repository
Expand Down
2 changes: 1 addition & 1 deletion ur_simulation_gazebo/launch/ur_sim_control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def generate_launch_description():
DeclareLaunchArgument(
"ur_type",
description="Type/series of used UR robot.",
choices=["ur3", "ur3e", "ur5", "ur5e", "ur10", "ur10e", "ur16e"],
choices=["ur3", "ur3e", "ur5", "ur5e", "ur10", "ur10e", "ur16e", "ur20"],
default_value="ur5e",
)
)
Expand Down
2 changes: 1 addition & 1 deletion ur_simulation_gazebo/launch/ur_sim_moveit.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def generate_launch_description():
DeclareLaunchArgument(
"ur_type",
description="Type/series of used UR robot.",
choices=["ur3", "ur3e", "ur5", "ur5e", "ur10", "ur10e", "ur16e"],
choices=["ur3", "ur3e", "ur5", "ur5e", "ur10", "ur10e", "ur16e", "ur20"],
default_value="ur5e",
)
)
Expand Down

0 comments on commit f0ebd01

Please sign in to comment.