-
Notifications
You must be signed in to change notification settings - Fork 18
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
Added config and launch files UR10 and hand lite #187
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<robot xmlns:xacro="http://ros.org/wiki/xacro" name="ur10srh"> | ||
|
||
<!--<xacro:include filename="$(find ur_description)/urdf/gazebo.urdf.xacro" />--> | ||
<xacro:include filename="$(find ur_description)/urdf/ur10.urdf.xacro"/> | ||
|
||
<link name="world"/> | ||
|
||
<joint name="world_joint" type="fixed"> | ||
<parent link="world"/> | ||
<child link="ra_base_link"/> | ||
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0"/> | ||
</joint> | ||
|
||
<xacro:ur10_robot prefix="ra_" joint_limited="true"/> | ||
|
||
<xacro:include filename="$(find sr_description)/materials.urdf.xacro"/> | ||
<xacro:include filename="$(find sr_description)/hand/xacro/hand_lite.urdf.xacro"/> | ||
<xacro:include filename="$(find sr_description)/other/xacro/gazebo/gazebo.urdf.xacro"/> | ||
|
||
<xacro:shadowhand muscletrans="false" muscle="false" bio="false" bt_sp="false" ubi="false" eli="false" | ||
reflect="1.0" prefix="rh_" extra_lite="false"/> | ||
|
||
<joint name="ra_arm_to_hand" type="fixed"> | ||
<parent link="ra_ee_link"/> | ||
<child link="rh_forearm"/> | ||
<origin xyz="0.012 0.0 0.0" rpy="${pi/2.0} ${pi} ${pi/2.0}"/> | ||
</joint> | ||
|
||
</robot> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
robot: | ||
name: ur10srh | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would it be worth having a different robot name for the ur10 with hand lite? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is in different parts of the launch files so I don't think it is not a good idea to change the names. |
||
manipulators: | ||
right_manipulator: | ||
side: right | ||
arm: | ||
name: ur10 | ||
main_group: manipulator | ||
moveit_path: | ||
package: sr_multi_moveit_config | ||
relative_path: /config/ur | ||
group_states: | ||
- home | ||
- up | ||
hand: | ||
name: shadowhand_lite.urdf.xacro | ||
is_lite: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if changing robot name, needs to be changed here too (see next comment)