Package Summary

Tags No category tags.
Version 2025.0.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/cyberbotics/webots_ros2.git
VCS Type git
VCS Version master
Last Updated 2025-03-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

Universal Robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

Documentation is available here.

Creation of the UR5e URDF file

The URDF file for the UR5e robot used in this package is a mix of the UR5e robot taken from UniversalRobots and the 3-fingers-gripper taken from robotiq. Some adaptations have been made in the files from the two repositories.

In order to reproduce a Xacro file that can generate this URDF file follow these steps:

  • Clone the repositories of UniversalRobots and robotiq in your package.
  • Create your own Xacro file to combine the robot and the gripper and add the <webots> plugin tag:
<?xml version="1.0"?>
<robot name="UR5e" xmlns:xacro="http://wiki.ros.org/xacro">
    <!--
        Custom mix of ur5e robot and robotiq 3f gripper for Webots.
        Based on https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver
        and https://github.com/ros-industrial/robotiq.
    -->

    <webots>
        <plugin type="webots_ros2_control::Ros2Control" />
    </webots>

    <!-- ur5e robot -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/Universal_Robots_ROS2_Driver/ur_description/urdf/ur.urdf.xacro" />

    <!-- robotiq 3f gripper -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/robotiq/robotiq_3f_gripper_visualization/cfg/robotiq-3f-gripper_articulated_macro.xacro" />
    <xacro:robotiq-3f-gripper_articulated prefix=""/>
</robot>

Steps on the UniversalRobots files:

The ur.urdf.xacro file:

  • Define the joint_limit_params, kinematics_params, physical_params and visual_params default arguments with the path to their corresponding .yaml files.
  • Update all the paths accordingly to your package.

The visual_parameters.yaml file:

  • Update all the paths accordingly to your package.

The ur_macro.xacro file:

  • Remove the 4 lines below <!-- Data files required by the UR driver -->.
  • Replace the tag <xacro:ur_ros2_control.../> below <!-- ros2 control instance --> by:
<xacro:ur_ros2_control
    name="WebotsControl" prefix="${prefix}"
    initial_positions="${initial_positions}" />

  • Update all the paths accordingly to your package.

The ur.ros2_control.xacro file:

  • Remove script_filename output_recipe_filename input_recipe_filename tf_prefix hash_kinematics robot_ip from the <xacro:macro...> tag.
  • Remove the <joint name="speed_scaling">, the <joint name="gpio">, the <joint name="resend_robot_program"> and the <joint name="system_interface"> tags.
  • Remove all the <command_interface name="velocity">...</command_interface> tags and all the <param...>...</param> tags from the <command_interface name="position">...</command_interface> tags
  • Replace the <hardware></hardware> tag by:
<hardware>
    <plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>

  • In order to also control the gripper, add after the <sensor name="tcp_fts_sensor">...</sensor> tag these tags:
<!-- ROBOTIQ 3F Gripper -->
<joint name="palm_finger_1_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="palm_finger_2_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>

Steps on the robotiq files:

The robotiq-3f-gripper_articulated_macro.xacro file:

  • Remove the <link name="${prefix}tool0"/> tag and replace the <joint name="${prefix}palm_tool0" type="fixed">...</joint> tags by:
<joint name="${prefix}tool0_palm" type="fixed">
    <parent link="${prefix}tool0"/>
    <child link="${prefix}palm"/>
    <origin xyz="0 0 0.045" rpy="1.5708 0 0"/>
</joint>

  • Update all the paths accordingly to your package.

The robotiq-3f-gripper_finger_articulated_macro.xacro file:

  • Update all the paths accordingly to your package.
CHANGELOG

Changelog for package webots_ros2_universal_robot

2023.1.3 (2024-08-07) ------------------* Fixed passing the [robot_description]{.title-ref} parameter to ros2_control.

2023.1.2 (2023-07-28) ------------------* Fixed errors showing up when launching moveit for ur5e.

2023.1.0 (2023-06-29) ------------------* Clean simulation reset in launch file. * Fixed JTC interpolation. * Fixed deprecated load_yaml() function. * Update driver node to new WebotsController node.

2023.0.4 (2023-05-23) ------------------* Start ros control nodes when Webots is ready.

2023.0.2 (2023-02-07) ------------------* Fixed URDF relative URLs to assets. * Updated supervisor launch.

2022.1.3 (2022-11-02) ------------------* Added macOS support.

2022.1.2 (2022-10-21) ------------------* Added WSL support.

2022.1.0 (2022-09-23) ------------------* The 'robot' and 'moveit_demo' scenarios now show a use case of the new URDF importer.

1.2.2 (2022-01-19)

  • Remove the 'moveit' dependency.

1.2.0 (2021-12-21)

  • Adapt the worlds to the new R2022a FLU convention.
  • Fix synchornosiation issue when the trajectory controller was receiving goals but was not ready to execute them.

1.1.2 (2021-11-03)

  • Utilize the 'webots_ros2_driver' and 'ros2_control' instead of 'webots_ros2_core'.
  • Add MoveIt2 example.
  • Upgrade the multi-robot example.
  • Remove non-useful simulations.

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node.

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2025.0.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/cyberbotics/webots_ros2.git
VCS Type git
VCS Version master
Last Updated 2025-03-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

Universal Robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

Documentation is available here.

Creation of the UR5e URDF file

The URDF file for the UR5e robot used in this package is a mix of the UR5e robot taken from UniversalRobots and the 3-fingers-gripper taken from robotiq. Some adaptations have been made in the files from the two repositories.

In order to reproduce a Xacro file that can generate this URDF file follow these steps:

  • Clone the repositories of UniversalRobots and robotiq in your package.
  • Create your own Xacro file to combine the robot and the gripper and add the <webots> plugin tag:
<?xml version="1.0"?>
<robot name="UR5e" xmlns:xacro="http://wiki.ros.org/xacro">
    <!--
        Custom mix of ur5e robot and robotiq 3f gripper for Webots.
        Based on https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver
        and https://github.com/ros-industrial/robotiq.
    -->

    <webots>
        <plugin type="webots_ros2_control::Ros2Control" />
    </webots>

    <!-- ur5e robot -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/Universal_Robots_ROS2_Driver/ur_description/urdf/ur.urdf.xacro" />

    <!-- robotiq 3f gripper -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/robotiq/robotiq_3f_gripper_visualization/cfg/robotiq-3f-gripper_articulated_macro.xacro" />
    <xacro:robotiq-3f-gripper_articulated prefix=""/>
</robot>

Steps on the UniversalRobots files:

The ur.urdf.xacro file:

  • Define the joint_limit_params, kinematics_params, physical_params and visual_params default arguments with the path to their corresponding .yaml files.
  • Update all the paths accordingly to your package.

The visual_parameters.yaml file:

  • Update all the paths accordingly to your package.

The ur_macro.xacro file:

  • Remove the 4 lines below <!-- Data files required by the UR driver -->.
  • Replace the tag <xacro:ur_ros2_control.../> below <!-- ros2 control instance --> by:
<xacro:ur_ros2_control
    name="WebotsControl" prefix="${prefix}"
    initial_positions="${initial_positions}" />

  • Update all the paths accordingly to your package.

The ur.ros2_control.xacro file:

  • Remove script_filename output_recipe_filename input_recipe_filename tf_prefix hash_kinematics robot_ip from the <xacro:macro...> tag.
  • Remove the <joint name="speed_scaling">, the <joint name="gpio">, the <joint name="resend_robot_program"> and the <joint name="system_interface"> tags.
  • Remove all the <command_interface name="velocity">...</command_interface> tags and all the <param...>...</param> tags from the <command_interface name="position">...</command_interface> tags
  • Replace the <hardware></hardware> tag by:
<hardware>
    <plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>

  • In order to also control the gripper, add after the <sensor name="tcp_fts_sensor">...</sensor> tag these tags:
<!-- ROBOTIQ 3F Gripper -->
<joint name="palm_finger_1_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="palm_finger_2_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>

Steps on the robotiq files:

The robotiq-3f-gripper_articulated_macro.xacro file:

  • Remove the <link name="${prefix}tool0"/> tag and replace the <joint name="${prefix}palm_tool0" type="fixed">...</joint> tags by:
<joint name="${prefix}tool0_palm" type="fixed">
    <parent link="${prefix}tool0"/>
    <child link="${prefix}palm"/>
    <origin xyz="0 0 0.045" rpy="1.5708 0 0"/>
</joint>

  • Update all the paths accordingly to your package.

The robotiq-3f-gripper_finger_articulated_macro.xacro file:

  • Update all the paths accordingly to your package.
CHANGELOG

Changelog for package webots_ros2_universal_robot

2023.1.3 (2024-08-07) ------------------* Fixed passing the [robot_description]{.title-ref} parameter to ros2_control.

2023.1.2 (2023-07-28) ------------------* Fixed errors showing up when launching moveit for ur5e.

2023.1.0 (2023-06-29) ------------------* Clean simulation reset in launch file. * Fixed JTC interpolation. * Fixed deprecated load_yaml() function. * Update driver node to new WebotsController node.

2023.0.4 (2023-05-23) ------------------* Start ros control nodes when Webots is ready.

2023.0.2 (2023-02-07) ------------------* Fixed URDF relative URLs to assets. * Updated supervisor launch.

2022.1.3 (2022-11-02) ------------------* Added macOS support.

2022.1.2 (2022-10-21) ------------------* Added WSL support.

2022.1.0 (2022-09-23) ------------------* The 'robot' and 'moveit_demo' scenarios now show a use case of the new URDF importer.

1.2.2 (2022-01-19)

  • Remove the 'moveit' dependency.

1.2.0 (2021-12-21)

  • Adapt the worlds to the new R2022a FLU convention.
  • Fix synchornosiation issue when the trajectory controller was receiving goals but was not ready to execute them.

1.1.2 (2021-11-03)

  • Utilize the 'webots_ros2_driver' and 'ros2_control' instead of 'webots_ros2_core'.
  • Add MoveIt2 example.
  • Upgrade the multi-robot example.
  • Remove non-useful simulations.

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node.

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2025.0.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/cyberbotics/webots_ros2.git
VCS Type git
VCS Version master
Last Updated 2025-03-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

Universal Robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

Documentation is available here.

Creation of the UR5e URDF file

The URDF file for the UR5e robot used in this package is a mix of the UR5e robot taken from UniversalRobots and the 3-fingers-gripper taken from robotiq. Some adaptations have been made in the files from the two repositories.

In order to reproduce a Xacro file that can generate this URDF file follow these steps:

  • Clone the repositories of UniversalRobots and robotiq in your package.
  • Create your own Xacro file to combine the robot and the gripper and add the <webots> plugin tag:
<?xml version="1.0"?>
<robot name="UR5e" xmlns:xacro="http://wiki.ros.org/xacro">
    <!--
        Custom mix of ur5e robot and robotiq 3f gripper for Webots.
        Based on https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver
        and https://github.com/ros-industrial/robotiq.
    -->

    <webots>
        <plugin type="webots_ros2_control::Ros2Control" />
    </webots>

    <!-- ur5e robot -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/Universal_Robots_ROS2_Driver/ur_description/urdf/ur.urdf.xacro" />

    <!-- robotiq 3f gripper -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/robotiq/robotiq_3f_gripper_visualization/cfg/robotiq-3f-gripper_articulated_macro.xacro" />
    <xacro:robotiq-3f-gripper_articulated prefix=""/>
</robot>

Steps on the UniversalRobots files:

The ur.urdf.xacro file:

  • Define the joint_limit_params, kinematics_params, physical_params and visual_params default arguments with the path to their corresponding .yaml files.
  • Update all the paths accordingly to your package.

The visual_parameters.yaml file:

  • Update all the paths accordingly to your package.

The ur_macro.xacro file:

  • Remove the 4 lines below <!-- Data files required by the UR driver -->.
  • Replace the tag <xacro:ur_ros2_control.../> below <!-- ros2 control instance --> by:
<xacro:ur_ros2_control
    name="WebotsControl" prefix="${prefix}"
    initial_positions="${initial_positions}" />

  • Update all the paths accordingly to your package.

The ur.ros2_control.xacro file:

  • Remove script_filename output_recipe_filename input_recipe_filename tf_prefix hash_kinematics robot_ip from the <xacro:macro...> tag.
  • Remove the <joint name="speed_scaling">, the <joint name="gpio">, the <joint name="resend_robot_program"> and the <joint name="system_interface"> tags.
  • Remove all the <command_interface name="velocity">...</command_interface> tags and all the <param...>...</param> tags from the <command_interface name="position">...</command_interface> tags
  • Replace the <hardware></hardware> tag by:
<hardware>
    <plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>

  • In order to also control the gripper, add after the <sensor name="tcp_fts_sensor">...</sensor> tag these tags:
<!-- ROBOTIQ 3F Gripper -->
<joint name="palm_finger_1_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="palm_finger_2_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>

Steps on the robotiq files:

The robotiq-3f-gripper_articulated_macro.xacro file:

  • Remove the <link name="${prefix}tool0"/> tag and replace the <joint name="${prefix}palm_tool0" type="fixed">...</joint> tags by:
<joint name="${prefix}tool0_palm" type="fixed">
    <parent link="${prefix}tool0"/>
    <child link="${prefix}palm"/>
    <origin xyz="0 0 0.045" rpy="1.5708 0 0"/>
</joint>

  • Update all the paths accordingly to your package.

The robotiq-3f-gripper_finger_articulated_macro.xacro file:

  • Update all the paths accordingly to your package.
CHANGELOG

Changelog for package webots_ros2_universal_robot

2023.1.3 (2024-08-07) ------------------* Fixed passing the [robot_description]{.title-ref} parameter to ros2_control.

2023.1.2 (2023-07-28) ------------------* Fixed errors showing up when launching moveit for ur5e.

2023.1.0 (2023-06-29) ------------------* Clean simulation reset in launch file. * Fixed JTC interpolation. * Fixed deprecated load_yaml() function. * Update driver node to new WebotsController node.

2023.0.4 (2023-05-23) ------------------* Start ros control nodes when Webots is ready.

2023.0.2 (2023-02-07) ------------------* Fixed URDF relative URLs to assets. * Updated supervisor launch.

2022.1.3 (2022-11-02) ------------------* Added macOS support.

2022.1.2 (2022-10-21) ------------------* Added WSL support.

2022.1.0 (2022-09-23) ------------------* The 'robot' and 'moveit_demo' scenarios now show a use case of the new URDF importer.

1.2.2 (2022-01-19)

  • Remove the 'moveit' dependency.

1.2.0 (2021-12-21)

  • Adapt the worlds to the new R2022a FLU convention.
  • Fix synchornosiation issue when the trajectory controller was receiving goals but was not ready to execute them.

1.1.2 (2021-11-03)

  • Utilize the 'webots_ros2_driver' and 'ros2_control' instead of 'webots_ros2_core'.
  • Add MoveIt2 example.
  • Upgrade the multi-robot example.
  • Remove non-useful simulations.

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node.

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.0.2
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/harshkakashaniya/soft_illusion.git
VCS Type git
VCS Version master
Last Updated 2020-10-26
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

webots_ros2_universal_robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

universal_robot Node

This node acts as a Webots robot controller. It publishes the /joint_states topic that represents the state of all the joints of the robot. And it provides the /follow_joint_trajectory action server that allows you to send joint trajectory action to the robot.

Samples Simulations

The following simulations are provided within this package:

universal_robot

This simulation can be started with the following launch file:

ros2 launch webots_ros2_universal_robot universal_robot.launch.py

Universal Robot Image This simulation contains one UR5e robot in a very simple environment.

universal_robot_rviz_dynamic

This simulation uses a new Webots feature to export URDF. Therefore, you will be able to change the robot model in Webots and to see the changes in RViz.

ros2 launch webots_ros2_universal_robot universal_robot_rviz_dynamic.launch.py

Note that the visual elements are still not supported, only the transforms will be shown.

universal_robot_multiple

This simulation can be started with the following launch file:

ros2 launch webots_ros2_universal_robot universal_robot_multiple.launch.py

Multiple Universal Robots This simulation contains a UR3e and a UR5e robot in a simple factory environment. This is a very good example showcasing how to use the multi-robots support with the Webots-ROS2 interface.

universal_robot_lidar

This world contains UR5e robot with 3D LiDAR.

ros2 launch webots_ros2_core robot_launch.py \
    executable:=webots_robotic_arm_node \
    world:=$(ros2 pkg prefix webots_ros2_universal_robot --share)/worlds/universal_robot_lidar.wbt

Interact with the Robot

Move the Robot

The /follow_joint_trajectory action server can be tested directly using the ROS2 action CLI interface to move the robot (if more than one robot is present in the simulation, the action name should be changed, e.g. /UR3e/follow_joint_trajectory):

ros2 action send_goal /follow_joint_trajectory control_msgs/action/FollowJointTrajectory "{
  trajectory: {
    joint_names: [shoulder_pan_joint, shoulder_lift_joint, elbow_joint, wrist_1_joint, wrist_2_joint, wrist_3_joint],
    points: [
      { positions: [3.02, -1.63, -1.88, 1.01, 1.51, 1.13], velocities: [0.1, 0.1, 0.1, 0.1, 0.1, 0.1], accelerations: [0.1, 0.1, 0.1, 0.1, 0.1, 0.1], time_from_start: { sec: 5, nanosec: 500 } },
      { positions: [-1.01, 0.38, -0.63, -0.88, 0.25, -1.63], velocities: [0.1, 0.1, 0.1, 0.1, 0.1, 0.1], accelerations: [0.1, 0.1, 0.1, 0.1, 0.1, 0.1], time_from_start: { sec: 6, nanosec: 500 } },
      { positions: [-1.01, 0.38, -0.63, -0.88, 0.25, 6.2], velocities: [0.1, 0.1, 0.1, 0.1, 0.1, 0.1], accelerations: [0.1, 0.1, 0.1, 0.1, 0.1, 0.1], time_from_start: { sec: 50, nanosec: 500 } }
    ]
  },
  goal_tolerance: [
    { name: shoulder_pan_joint, position: 0.01 },
    { name: shoulder_lift_joint, position: 0.01 },
    { name: elbow_joint, position: 0.01 },
    { name: wrist_1_joint, position: 0.01 },
    { name: wrist_2_joint, position: 0.01 },
    { name: wrist_3_joint, position: 0.01 }
  ]
}"

Display the Joint State

The joint state (/joint_states topic) can be displayed directly using the ROS2 topic CLI interface (if more than one robot is present in the simulation, the action name should be changed, e.g. /UR3e/joint_states):

ros2 topic echo /joint_states

CHANGELOG

Changelog for package webots_ros2_universal_robot

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 2025.0.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/cyberbotics/webots_ros2.git
VCS Type git
VCS Version master
Last Updated 2025-03-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

Universal Robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

Documentation is available here.

Creation of the UR5e URDF file

The URDF file for the UR5e robot used in this package is a mix of the UR5e robot taken from UniversalRobots and the 3-fingers-gripper taken from robotiq. Some adaptations have been made in the files from the two repositories.

In order to reproduce a Xacro file that can generate this URDF file follow these steps:

  • Clone the repositories of UniversalRobots and robotiq in your package.
  • Create your own Xacro file to combine the robot and the gripper and add the <webots> plugin tag:
<?xml version="1.0"?>
<robot name="UR5e" xmlns:xacro="http://wiki.ros.org/xacro">
    <!--
        Custom mix of ur5e robot and robotiq 3f gripper for Webots.
        Based on https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver
        and https://github.com/ros-industrial/robotiq.
    -->

    <webots>
        <plugin type="webots_ros2_control::Ros2Control" />
    </webots>

    <!-- ur5e robot -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/Universal_Robots_ROS2_Driver/ur_description/urdf/ur.urdf.xacro" />

    <!-- robotiq 3f gripper -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/robotiq/robotiq_3f_gripper_visualization/cfg/robotiq-3f-gripper_articulated_macro.xacro" />
    <xacro:robotiq-3f-gripper_articulated prefix=""/>
</robot>

Steps on the UniversalRobots files:

The ur.urdf.xacro file:

  • Define the joint_limit_params, kinematics_params, physical_params and visual_params default arguments with the path to their corresponding .yaml files.
  • Update all the paths accordingly to your package.

The visual_parameters.yaml file:

  • Update all the paths accordingly to your package.

The ur_macro.xacro file:

  • Remove the 4 lines below <!-- Data files required by the UR driver -->.
  • Replace the tag <xacro:ur_ros2_control.../> below <!-- ros2 control instance --> by:
<xacro:ur_ros2_control
    name="WebotsControl" prefix="${prefix}"
    initial_positions="${initial_positions}" />

  • Update all the paths accordingly to your package.

The ur.ros2_control.xacro file:

  • Remove script_filename output_recipe_filename input_recipe_filename tf_prefix hash_kinematics robot_ip from the <xacro:macro...> tag.
  • Remove the <joint name="speed_scaling">, the <joint name="gpio">, the <joint name="resend_robot_program"> and the <joint name="system_interface"> tags.
  • Remove all the <command_interface name="velocity">...</command_interface> tags and all the <param...>...</param> tags from the <command_interface name="position">...</command_interface> tags
  • Replace the <hardware></hardware> tag by:
<hardware>
    <plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>

  • In order to also control the gripper, add after the <sensor name="tcp_fts_sensor">...</sensor> tag these tags:
<!-- ROBOTIQ 3F Gripper -->
<joint name="palm_finger_1_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="palm_finger_2_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>

Steps on the robotiq files:

The robotiq-3f-gripper_articulated_macro.xacro file:

  • Remove the <link name="${prefix}tool0"/> tag and replace the <joint name="${prefix}palm_tool0" type="fixed">...</joint> tags by:
<joint name="${prefix}tool0_palm" type="fixed">
    <parent link="${prefix}tool0"/>
    <child link="${prefix}palm"/>
    <origin xyz="0 0 0.045" rpy="1.5708 0 0"/>
</joint>

  • Update all the paths accordingly to your package.

The robotiq-3f-gripper_finger_articulated_macro.xacro file:

  • Update all the paths accordingly to your package.
CHANGELOG

Changelog for package webots_ros2_universal_robot

2023.1.3 (2024-08-07) ------------------* Fixed passing the [robot_description]{.title-ref} parameter to ros2_control.

2023.1.2 (2023-07-28) ------------------* Fixed errors showing up when launching moveit for ur5e.

2023.1.0 (2023-06-29) ------------------* Clean simulation reset in launch file. * Fixed JTC interpolation. * Fixed deprecated load_yaml() function. * Update driver node to new WebotsController node.

2023.0.4 (2023-05-23) ------------------* Start ros control nodes when Webots is ready.

2023.0.2 (2023-02-07) ------------------* Fixed URDF relative URLs to assets. * Updated supervisor launch.

2022.1.3 (2022-11-02) ------------------* Added macOS support.

2022.1.2 (2022-10-21) ------------------* Added WSL support.

2022.1.0 (2022-09-23) ------------------* The 'robot' and 'moveit_demo' scenarios now show a use case of the new URDF importer.

1.2.2 (2022-01-19)

  • Remove the 'moveit' dependency.

1.2.0 (2021-12-21)

  • Adapt the worlds to the new R2022a FLU convention.
  • Fix synchornosiation issue when the trajectory controller was receiving goals but was not ready to execute them.

1.1.2 (2021-11-03)

  • Utilize the 'webots_ros2_driver' and 'ros2_control' instead of 'webots_ros2_core'.
  • Add MoveIt2 example.
  • Upgrade the multi-robot example.
  • Remove non-useful simulations.

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node.

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2025.0.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/cyberbotics/webots_ros2.git
VCS Type git
VCS Version master
Last Updated 2025-03-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

Universal Robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

Documentation is available here.

Creation of the UR5e URDF file

The URDF file for the UR5e robot used in this package is a mix of the UR5e robot taken from UniversalRobots and the 3-fingers-gripper taken from robotiq. Some adaptations have been made in the files from the two repositories.

In order to reproduce a Xacro file that can generate this URDF file follow these steps:

  • Clone the repositories of UniversalRobots and robotiq in your package.
  • Create your own Xacro file to combine the robot and the gripper and add the <webots> plugin tag:
<?xml version="1.0"?>
<robot name="UR5e" xmlns:xacro="http://wiki.ros.org/xacro">
    <!--
        Custom mix of ur5e robot and robotiq 3f gripper for Webots.
        Based on https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver
        and https://github.com/ros-industrial/robotiq.
    -->

    <webots>
        <plugin type="webots_ros2_control::Ros2Control" />
    </webots>

    <!-- ur5e robot -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/Universal_Robots_ROS2_Driver/ur_description/urdf/ur.urdf.xacro" />

    <!-- robotiq 3f gripper -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/robotiq/robotiq_3f_gripper_visualization/cfg/robotiq-3f-gripper_articulated_macro.xacro" />
    <xacro:robotiq-3f-gripper_articulated prefix=""/>
</robot>

Steps on the UniversalRobots files:

The ur.urdf.xacro file:

  • Define the joint_limit_params, kinematics_params, physical_params and visual_params default arguments with the path to their corresponding .yaml files.
  • Update all the paths accordingly to your package.

The visual_parameters.yaml file:

  • Update all the paths accordingly to your package.

The ur_macro.xacro file:

  • Remove the 4 lines below <!-- Data files required by the UR driver -->.
  • Replace the tag <xacro:ur_ros2_control.../> below <!-- ros2 control instance --> by:
<xacro:ur_ros2_control
    name="WebotsControl" prefix="${prefix}"
    initial_positions="${initial_positions}" />

  • Update all the paths accordingly to your package.

The ur.ros2_control.xacro file:

  • Remove script_filename output_recipe_filename input_recipe_filename tf_prefix hash_kinematics robot_ip from the <xacro:macro...> tag.
  • Remove the <joint name="speed_scaling">, the <joint name="gpio">, the <joint name="resend_robot_program"> and the <joint name="system_interface"> tags.
  • Remove all the <command_interface name="velocity">...</command_interface> tags and all the <param...>...</param> tags from the <command_interface name="position">...</command_interface> tags
  • Replace the <hardware></hardware> tag by:
<hardware>
    <plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>

  • In order to also control the gripper, add after the <sensor name="tcp_fts_sensor">...</sensor> tag these tags:
<!-- ROBOTIQ 3F Gripper -->
<joint name="palm_finger_1_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="palm_finger_2_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>

Steps on the robotiq files:

The robotiq-3f-gripper_articulated_macro.xacro file:

  • Remove the <link name="${prefix}tool0"/> tag and replace the <joint name="${prefix}palm_tool0" type="fixed">...</joint> tags by:
<joint name="${prefix}tool0_palm" type="fixed">
    <parent link="${prefix}tool0"/>
    <child link="${prefix}palm"/>
    <origin xyz="0 0 0.045" rpy="1.5708 0 0"/>
</joint>

  • Update all the paths accordingly to your package.

The robotiq-3f-gripper_finger_articulated_macro.xacro file:

  • Update all the paths accordingly to your package.
CHANGELOG

Changelog for package webots_ros2_universal_robot

2023.1.3 (2024-08-07) ------------------* Fixed passing the [robot_description]{.title-ref} parameter to ros2_control.

2023.1.2 (2023-07-28) ------------------* Fixed errors showing up when launching moveit for ur5e.

2023.1.0 (2023-06-29) ------------------* Clean simulation reset in launch file. * Fixed JTC interpolation. * Fixed deprecated load_yaml() function. * Update driver node to new WebotsController node.

2023.0.4 (2023-05-23) ------------------* Start ros control nodes when Webots is ready.

2023.0.2 (2023-02-07) ------------------* Fixed URDF relative URLs to assets. * Updated supervisor launch.

2022.1.3 (2022-11-02) ------------------* Added macOS support.

2022.1.2 (2022-10-21) ------------------* Added WSL support.

2022.1.0 (2022-09-23) ------------------* The 'robot' and 'moveit_demo' scenarios now show a use case of the new URDF importer.

1.2.2 (2022-01-19)

  • Remove the 'moveit' dependency.

1.2.0 (2021-12-21)

  • Adapt the worlds to the new R2022a FLU convention.
  • Fix synchornosiation issue when the trajectory controller was receiving goals but was not ready to execute them.

1.1.2 (2021-11-03)

  • Utilize the 'webots_ros2_driver' and 'ros2_control' instead of 'webots_ros2_core'.
  • Add MoveIt2 example.
  • Upgrade the multi-robot example.
  • Remove non-useful simulations.

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node.

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2025.0.0
License Apache License 2.0
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/cyberbotics/webots_ros2.git
VCS Type git
VCS Version master
Last Updated 2025-03-13
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

Universal Robot ROS2 interface for Webots.

Additional Links

Maintainers

  • Cyberbotics

Authors

No additional authors.

Universal Robot

This package provides an interface between ROS2 and the UR3e, UR5e and UR10e simulation models of the Universal Robots running in Webots. It includes several simulations of these robots.

Documentation is available here.

Creation of the UR5e URDF file

The URDF file for the UR5e robot used in this package is a mix of the UR5e robot taken from UniversalRobots and the 3-fingers-gripper taken from robotiq. Some adaptations have been made in the files from the two repositories.

In order to reproduce a Xacro file that can generate this URDF file follow these steps:

  • Clone the repositories of UniversalRobots and robotiq in your package.
  • Create your own Xacro file to combine the robot and the gripper and add the <webots> plugin tag:
<?xml version="1.0"?>
<robot name="UR5e" xmlns:xacro="http://wiki.ros.org/xacro">
    <!--
        Custom mix of ur5e robot and robotiq 3f gripper for Webots.
        Based on https://github.com/UniversalRobots/Universal_Robots_ROS2_Driver
        and https://github.com/ros-industrial/robotiq.
    -->

    <webots>
        <plugin type="webots_ros2_control::Ros2Control" />
    </webots>

    <!-- ur5e robot -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/Universal_Robots_ROS2_Driver/ur_description/urdf/ur.urdf.xacro" />

    <!-- robotiq 3f gripper -->
    <xacro:include filename="$(find webots_ros2_universal_robot)/resource/robotiq/robotiq_3f_gripper_visualization/cfg/robotiq-3f-gripper_articulated_macro.xacro" />
    <xacro:robotiq-3f-gripper_articulated prefix=""/>
</robot>

Steps on the UniversalRobots files:

The ur.urdf.xacro file:

  • Define the joint_limit_params, kinematics_params, physical_params and visual_params default arguments with the path to their corresponding .yaml files.
  • Update all the paths accordingly to your package.

The visual_parameters.yaml file:

  • Update all the paths accordingly to your package.

The ur_macro.xacro file:

  • Remove the 4 lines below <!-- Data files required by the UR driver -->.
  • Replace the tag <xacro:ur_ros2_control.../> below <!-- ros2 control instance --> by:
<xacro:ur_ros2_control
    name="WebotsControl" prefix="${prefix}"
    initial_positions="${initial_positions}" />

  • Update all the paths accordingly to your package.

The ur.ros2_control.xacro file:

  • Remove script_filename output_recipe_filename input_recipe_filename tf_prefix hash_kinematics robot_ip from the <xacro:macro...> tag.
  • Remove the <joint name="speed_scaling">, the <joint name="gpio">, the <joint name="resend_robot_program"> and the <joint name="system_interface"> tags.
  • Remove all the <command_interface name="velocity">...</command_interface> tags and all the <param...>...</param> tags from the <command_interface name="position">...</command_interface> tags
  • Replace the <hardware></hardware> tag by:
<hardware>
    <plugin>webots_ros2_control::Ros2ControlSystem</plugin>
</hardware>

  • In order to also control the gripper, add after the <sensor name="tcp_fts_sensor">...</sensor> tag these tags:
<!-- ROBOTIQ 3F Gripper -->
<joint name="palm_finger_1_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_1_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="palm_finger_2_joint">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_2_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_1">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_2">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>
<joint name="finger_middle_joint_3">
    <state_interface name="position"/>
    <command_interface name="position"/>
</joint>

Steps on the robotiq files:

The robotiq-3f-gripper_articulated_macro.xacro file:

  • Remove the <link name="${prefix}tool0"/> tag and replace the <joint name="${prefix}palm_tool0" type="fixed">...</joint> tags by:
<joint name="${prefix}tool0_palm" type="fixed">
    <parent link="${prefix}tool0"/>
    <child link="${prefix}palm"/>
    <origin xyz="0 0 0.045" rpy="1.5708 0 0"/>
</joint>

  • Update all the paths accordingly to your package.

The robotiq-3f-gripper_finger_articulated_macro.xacro file:

  • Update all the paths accordingly to your package.
CHANGELOG

Changelog for package webots_ros2_universal_robot

2023.1.3 (2024-08-07) ------------------* Fixed passing the [robot_description]{.title-ref} parameter to ros2_control.

2023.1.2 (2023-07-28) ------------------* Fixed errors showing up when launching moveit for ur5e.

2023.1.0 (2023-06-29) ------------------* Clean simulation reset in launch file. * Fixed JTC interpolation. * Fixed deprecated load_yaml() function. * Update driver node to new WebotsController node.

2023.0.4 (2023-05-23) ------------------* Start ros control nodes when Webots is ready.

2023.0.2 (2023-02-07) ------------------* Fixed URDF relative URLs to assets. * Updated supervisor launch.

2022.1.3 (2022-11-02) ------------------* Added macOS support.

2022.1.2 (2022-10-21) ------------------* Added WSL support.

2022.1.0 (2022-09-23) ------------------* The 'robot' and 'moveit_demo' scenarios now show a use case of the new URDF importer.

1.2.2 (2022-01-19)

  • Remove the 'moveit' dependency.

1.2.0 (2021-12-21)

  • Adapt the worlds to the new R2022a FLU convention.
  • Fix synchornosiation issue when the trajectory controller was receiving goals but was not ready to execute them.

1.1.2 (2021-11-03)

  • Utilize the 'webots_ros2_driver' and 'ros2_control' instead of 'webots_ros2_core'.
  • Add MoveIt2 example.
  • Upgrade the multi-robot example.
  • Remove non-useful simulations.

1.0.0 (2020-09-01)

  • Use the webots_ros2_core::webots_robotic_arm_node node.

0.0.3 (2020-06-15)

  • Added an 'universal_robot_multiple' simulation and launch file.
  • Added an 'universal_robot_rviz' simulation and launch file.
  • Added support for the goal tolerance in the action server.
  • Fixed the action server that was never reaching the [SUCCESSFUL]{.title-ref} state.

0.0.2 (2019-09-23)

  • Initial version

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged webots_ros2_universal_robot at Robotics Stack Exchange

No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.