* Create mujoco_ros2_control package * Enable Mujoco hardware interface for OpenArm * Verify connection with ros2_control * Update actuators to pos/vel * Add motor after creation * Tune KD for smoother motion * Restore realsense camera * Change camera to be 10 tilt from vertical to match physical model * Repair urdf to match physical robot * Checkpoint moveit2_configuration * Remove collision between camera and pedestal and remove additional ros2_control interfaces for mock * Enable octomap perception * Fix base_link to world transform * Update openarm to support moveit2 bimanual planning with end effectors * Improve safety of openarm_hardware zero position autocalibration * Remove openarm_mujoco_ros2_control from moveit2 branch * Restore sensor functionality
21 lines
782 B
XML
21 lines
782 B
XML
<?xml version="1.0"?>
|
|
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="openarm_bimanual">
|
|
<xacro:arg name="initial_positions_file" default="initial_positions.yaml" />
|
|
|
|
<!-- Import openarm_bimanual urdf file -->
|
|
<xacro:include filename="$(find openarm_bimanual_description)/urdf/openarm_bimanual.urdf.xacro" />
|
|
|
|
<link name="base_link"/>
|
|
<joint name="world_to_pedestal" type="fixed">
|
|
<parent link="world"/>
|
|
<child link="base_link"/>
|
|
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0"/>
|
|
</joint>
|
|
<!-- Import control_xacro -->
|
|
<!-- <xacro:include filename="openarm_bimanual.ros2_control.xacro" />
|
|
|
|
|
|
<xacro:openarm_bimanual_ros2_control name="FakeSystem" initial_positions_file="$(arg initial_positions_file)"/> -->
|
|
|
|
</robot>
|