-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add description with ros2_control tag
This uses the ur_description without a ros2_control tag and adds an own one for gazebo classic.
- Loading branch information
Showing
4 changed files
with
93 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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 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 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,29 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
|
||
<xacro:include filename="$(find ur_description)/urdf/inc/ur_joint_control.xacro" /> | ||
|
||
<xacro:macro name="ur_ros2_control" params=" | ||
name | ||
tf_prefix | ||
transmission_hw_interface:=hardware_interface/PositionJointInterface | ||
initial_positions:=${dict(shoulder_pan_joint=0.0,shoulder_lift_joint=-1.57,elbow_joint=0.0,wrist_1_joint=-1.57,wrist_2_joint=0.0,wrist_3_joint=0.0)} | ||
"> | ||
|
||
|
||
<!-- Add URDF transmission elements (for ros_control) --> | ||
<!--<xacro:ur_arm_transmission prefix="${prefix}" hw_interface="${transmission_hw_interface}" />--> | ||
<!-- Placeholder for ros2_control transmission which don't yet exist --> | ||
|
||
<ros2_control name="${name}" type="system"> | ||
<hardware> | ||
<plugin>gazebo_ros2_control/GazeboSystem</plugin> | ||
</hardware> | ||
|
||
<xacro:ur_joint_control_description | ||
tf_prefix="${tf_prefix}" | ||
initial_positions="${initial_positions}" | ||
/> | ||
</ros2_control> | ||
</xacro:macro> | ||
</robot> |
This file contains 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,61 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://wiki.ros.org/xacro" name="$(arg name)"> | ||
<!-- robot name parameter --> | ||
<xacro:arg name="name" default="ur"/> | ||
<!-- import main macro --> | ||
<xacro:include filename="$(find ur_description)/urdf/ur_macro.xacro"/> | ||
|
||
<xacro:include filename="$(find ur_simulation_gazebo)/urdf/ur_gazebo.ros2_control.xacro" /> | ||
|
||
<!-- possible 'ur_type' values: ur3, ur3e, ur5, ur5e, ur10, ur10e, ur16e, ur20 --> | ||
<!-- the default value should raise an error in case this was called without defining the type --> | ||
<xacro:arg name="ur_type" default="ur5x"/> | ||
|
||
<!-- parameters --> | ||
<xacro:arg name="tf_prefix" default="" /> | ||
<xacro:arg name="joint_limit_params" default="$(find ur_description)/config/$(arg ur_type)/joint_limits.yaml"/> | ||
<xacro:arg name="kinematics_params" default="$(find ur_description)/config/$(arg ur_type)/default_kinematics.yaml"/> | ||
<xacro:arg name="physical_params" default="$(find ur_description)/config/$(arg ur_type)/physical_parameters.yaml"/> | ||
<xacro:arg name="visual_params" default="$(find ur_description)/config/$(arg ur_type)/visual_parameters.yaml"/> | ||
<xacro:arg name="transmission_hw_interface" default=""/> | ||
<xacro:arg name="safety_limits" default="false"/> | ||
<xacro:arg name="safety_pos_margin" default="0.15"/> | ||
<xacro:arg name="safety_k_position" default="20"/> | ||
|
||
<xacro:arg name="simulation_controllers" default="" /> | ||
|
||
<!-- create link fixed to the "world" --> | ||
<link name="world" /> | ||
|
||
<!-- arm --> | ||
<xacro:ur_robot | ||
name="$(arg name)" | ||
tf_prefix="$(arg tf_prefix)" | ||
parent="world" | ||
joint_limits_parameters_file="$(arg joint_limit_params)" | ||
kinematics_parameters_file="$(arg kinematics_params)" | ||
physical_parameters_file="$(arg physical_params)" | ||
visual_parameters_file="$(arg visual_params)" | ||
safety_limits="$(arg safety_limits)" | ||
safety_pos_margin="$(arg safety_pos_margin)" | ||
safety_k_position="$(arg safety_k_position)" | ||
force_abs_paths="true" | ||
> | ||
<origin xyz="0 0 0" rpy="0 0 0" /> <!-- position robot in the world --> | ||
</xacro:ur_robot> | ||
|
||
<gazebo reference="world"> | ||
</gazebo> | ||
<gazebo> | ||
<plugin filename="libgazebo_ros2_control.so" name="gazebo_ros2_control"> | ||
<parameters>$(arg simulation_controllers)</parameters> | ||
</plugin> | ||
</gazebo> | ||
|
||
<!-- ros2 control instance --> | ||
<xacro:ur_ros2_control | ||
name="$(arg name)" | ||
tf_prefix="$(arg tf_prefix)" | ||
transmission_hw_interface="$(arg transmission_hw_interface)" | ||
/> | ||
</robot> |