Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | Apache-2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ifra-cranfield/ros2_simrealrobotcontrol.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2025-04-01 |
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
Additional Links
Maintainers
- Mikel Bueno Viso
Authors
- Mikel Bueno Viso
ROS2 Sim-to-Real Robot Control: ros2srrc_data
The ros2srrc_data package contains all different ROS2 data structures that are required to execute the Source Code defined in the ros2srrc_execution package.
Robot Movement execution
ROS2 .action
In ros2_SimRealRobotControl, individual Robot Movements contained in a single ROS2 Node (ROS2 Action Server, move.cpp), and are executed by calling a single action, called, “Move”.
Move.action:
- Input: Action(string), Speed (float64), MoveJ (joints), MoveR (joint), MoveL (xyz), MoveXYZW (xyzypr), MoveXYZ (xyz), MoveYPR (ypr), MoveROT (ypr), MoveRP (xyzypr), MoveG (float64).
- Output: result(string), feedback(string).
ROS2 .msg
Every single Robot Movement type (MoveJ, MoveR, MoveL…) is defined on a specific ROS2 MSG format:
Joints.msg:
- Data: joint1(float64), joint2(float64), joint3(float64), joint4(float64), joint5(float64), joint6(float64), joint7(float64).
Joint.msg:
- Data: joint(string), value(float64).
Xyz.msg:
- Data: x(float64), y(float64), z(float64).
Xyzypr.msg:
- Data: x(float64), y(float64), z(float64), yaw(float64), pitch(float64), roll(float64).
Ypr.msg:
- Data: yaw(float64), pitch(float64), roll(float64).
Sequence execution
ROS2 .action
The sequences/programs are executed by calling the single ROS2 Action “Sequence”, which contains an array with Robot Movements (defined in “Action.msg”) that are executed one after the other. Instead of having to call the ROS2 Action “Move” for every single step**, the whole sequence is passed to sequence.cpp, and movements are executed one by one using MoveGroupInterface.
Sequence.action:
- Input: Sequence(action[]), robot(string), endeffector(string), environment(string).
- Output: result(string), feedback(string).
ROS2 .msg
All possible Robot Movements have been put into the “Action” ROS2 message, in order to be able to generate an array containing the whole sequence.
Action.msg:
- Data: Action(string), Speed (float64), MoveJ (joints), MoveR (joint), MoveL (xyz), MoveXYZW (xyzypr), MoveXYZ (xyz), MoveYPR (ypr), MoveROT (ypr), MoveRP (xyzypr), MoveG (float64), Attach(string), Detach(string).
</br> </br>
** This method is used in ros2_RobotSimulation, which includes a small delay between steps due to the ROS2 Action call which needs to be done before every step.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
rosidl_default_generators | |
ament_cmake | |
rosidl_default_runtime | |
ament_lint_auto | |
ament_lint_common | |
action_msgs | |
rclcpp | |
rclcpp_action | |
std_msgs |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
ros2srrc_execution |