-
Notifications
You must be signed in to change notification settings - Fork 14
Humble #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Humble #11
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
cfca4fb
renamed update_rate.yaml
maditavomstein 0c76424
added ur20 in ...control/config because ur_control.launch.py will loo…
maditavomstein 2f31469
changed launch files according to ur_driver, ur_Description and ros2 …
maditavomstein 961b712
adaptions for humble
maditavomstein 2139e1d
added controller and changed rviz file name
maditavomstein b2e11c8
removed controller
maditavomstein 98f8579
removed rclcpp
maditavomstein beef717
changed xacro:arg name for kinematics_params, physical_params and vis…
maditavomstein 7d2c2b7
kinematics_hash now automatically read from kinematics_params
maditavomstein 73ce711
Use --unsafe for check-yaml
urfeex 2ed467a
Code formatting
urfeex dff662b
Merge branch 'humble' into humble
urfeex dc6b8b2
Update sphinx docs
urfeex fcea1b7
Fix formatting
urfeex a811bd0
Add missing controllers
urfeex adcc7e4
Do not duplicate controllers.yaml
urfeex 9018758
Update urdf file captions
urfeex File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 0 additions & 94 deletions
94
my_robot_cell/my_robot_cell_control/config/ros2_controllers.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
my_robot_cell/my_robot_cell_control/config/ur20/default_kinematics.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
kinematics: | ||
shoulder: | ||
x: 0 | ||
y: 0 | ||
z: 0.23630000000000001 | ||
roll: -0 | ||
pitch: 0 | ||
yaw: -0 | ||
upper_arm: | ||
x: 0 | ||
y: 0 | ||
z: 0 | ||
roll: 1.570796327 | ||
pitch: 0 | ||
yaw: -0 | ||
forearm: | ||
x: -0.86199999999999999 | ||
y: 0 | ||
z: 0 | ||
roll: -0 | ||
pitch: 0 | ||
yaw: -0 | ||
wrist_1: | ||
x: -0.72870000000000001 | ||
y: 0 | ||
z: 0.20100000000000001 | ||
roll: -0 | ||
pitch: 0 | ||
yaw: -0 | ||
wrist_2: | ||
x: 0 | ||
y: -0.1593 | ||
z: -3.2672976162492252e-11 | ||
roll: 1.570796327 | ||
pitch: 0 | ||
yaw: -0 | ||
wrist_3: | ||
x: 0 | ||
y: 0.15429999999999999 | ||
z: -3.1647459019915597e-11 | ||
roll: 1.5707963265897931 | ||
pitch: 3.1415926535897931 | ||
yaw: 3.1415926535897931 | ||
hash: calib_4890363623803256388 |
77 changes: 77 additions & 0 deletions
77
my_robot_cell/my_robot_cell_control/config/ur20/joint_limits.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# Joints limits | ||
# | ||
# Sources: | ||
# | ||
# - Universal Robots e-Series, User Manual, UR20, Version 5.14 | ||
# https://s3-eu-west-1.amazonaws.com/ur-support-site/203281/706-276-00_UR20_User_Manual_en_Global.pdf | ||
joint_limits: | ||
shoulder_pan_joint: | ||
# acceleration limits are not publicly available | ||
has_acceleration_limits: false | ||
has_effort_limits: true | ||
has_position_limits: true | ||
has_velocity_limits: true | ||
max_effort: 738.0 | ||
max_position: !degrees 360.0 | ||
max_velocity: !degrees 120.0 | ||
min_position: !degrees -360.0 | ||
shoulder_lift_joint: | ||
# acceleration limits are not publicly available | ||
has_acceleration_limits: false | ||
has_effort_limits: true | ||
has_position_limits: true | ||
has_velocity_limits: true | ||
max_effort: 738.0 | ||
max_position: !degrees 360.0 | ||
max_velocity: !degrees 120.0 | ||
min_position: !degrees -360.0 | ||
elbow_joint: | ||
# acceleration limits are not publicly available | ||
has_acceleration_limits: false | ||
has_effort_limits: true | ||
has_position_limits: true | ||
has_velocity_limits: true | ||
max_effort: 433.0 | ||
# we artificially limit this joint to half its actual joint position limit | ||
# to avoid (MoveIt/OMPL) planning problems, as due to the physical | ||
# construction of the robot, it's impossible to rotate the 'elbow_joint' | ||
# over more than approx +- 1 pi (the shoulder lift joint gets in the way). | ||
# | ||
# This leads to planning problems as the search space will be divided into | ||
# two sections, with no connections from one to the other. | ||
# | ||
# Refer to https://github.com/ros-industrial/universal_robot/issues/265 for | ||
# more information. | ||
max_position: !degrees 180.0 | ||
max_velocity: !degrees 150.0 | ||
min_position: !degrees -180.0 | ||
wrist_1_joint: | ||
# acceleration limits are not publicly available | ||
has_acceleration_limits: false | ||
has_effort_limits: true | ||
has_position_limits: true | ||
has_velocity_limits: true | ||
max_effort: 107.0 | ||
max_position: !degrees 360.0 | ||
max_velocity: !degrees 210.0 | ||
min_position: !degrees -360.0 | ||
wrist_2_joint: | ||
# acceleration limits are not publicly available | ||
has_acceleration_limits: false | ||
has_effort_limits: true | ||
has_position_limits: true | ||
has_velocity_limits: true | ||
max_effort: 107.0 | ||
max_position: !degrees 360.0 | ||
max_velocity: !degrees 210.0 | ||
min_position: !degrees -360.0 | ||
wrist_3_joint: | ||
# acceleration limits are not publicly available | ||
has_acceleration_limits: false | ||
has_effort_limits: true | ||
has_position_limits: true | ||
has_velocity_limits: true | ||
max_effort: 107.0 | ||
max_position: !degrees 360.0 | ||
max_velocity: !degrees 210.0 | ||
min_position: !degrees -360.0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.