Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/realmanrobot/ros2_rm_robot.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2025-01-09 |
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
- rm
Authors
Content
- 1.rm_bringup Package Description
- 2.rm_bringup Package Use
- 2.1moveit2 Controlling Real Robotic Arm
- 2.2Gazebo control of robotic arm
- 3.rm_bringup Package Architecture Description
- 3.1Overview of Package Files
- 4.rm_bringup Topic Description
rm_bringup_Package_Description
rm_bringup is a function package for realizing the simultaneous running of multiple launch files. Using this package, a command can be used to launch complex functions combining multiple nodes. This package is introduced in detail in the following aspects.
- 1.Package use.
- 2.Package architecture description.
- 3.Package topic description.
Through the introduction of the three parts, it can help you: - 1.Understand the package use.
- 2.Familiar with the file structure and function of the package.
- 3.Familiar with the topic related to the package for easy development and use.
Source code address: https://github.com/RealManRobot/ros2_rm_robot.git。
rm_bringup_Package_Use
moveit2_Controlling_Real_Robotic_Arm
First, after configuring the environment and completing the connection, we can directly launch the node and run the launch.py file in the rm_bringup package through the following command.
rm@rm-desktop:~$ ros2 launch rm_bringup rm_<arm_type>_bringup.launch.py
In practice, the above
rm@rm-desktop:~$ ros2 launch rm_bringup rm_<arm_type>_6f_bringup.launch.py
The command to start the integrated six-axis force version of the manipulator is :
rm@rm-desktop:~$ ros2 launch rm_bringup rm_<arm_type>_6fb_bringup.launch.py
For example, the launch command of 65 robotic arm:
rm@rm-desktop:~$ ros2 launch rm_bringup rm_65_bringup.launch.py
The following screen appears in the interface after a successful node launch.
The launch file launches the function of moveit2 to control the real robotic arm. Then, you can control the robotic arm movement by dragging the control ball. For details, please refer to “rm_moveit2_config Detailed Description”.
Gazebo_control_of_robotic_arm
We can run the launch.py file in the rm_bringup package through the following command, and directly launch the gzaebo simulation node.
rm@rm-desktop:~$ ros2 launch rm_bringup rm_<arm_type>_gazebo.launch.py
In practice, the above
The command to start the six-axis force version of the manipulator is (note: eco63 is not available):
rm@rm-desktop:~$ ros2 launch rm_bringup rm_<arm_type>_6f_gazebo.launch.py
The command to start the integrated six-axis force version of the manipulator is :
rm@rm-desktop:~$ ros2 launch rm_bringup rm_<arm_type>_6fb_gazebo.launch.py
For example, the launch command of 65 robotic arm:
rm@rm-desktop:~$ ros2 launch rm_bringup rm_65_gazebo.launch.py
The following screen appears in the interface after a successful node launch.
Then, we use the following command to launch moveit2 to control the simulation robot arm in Gazebo.
rm_bringup_Package_Architecture_Description
Overview_of_Package_Files
The current rm_driver package is composed of the following files.
├── CMakeLists.txt # compilation rule file
├── doc # Supporting documents,pictures
│ ├── rm_bringup1.png # pictures1
│ ├── rm_bringup2.png # pictures2
│ └── rm_bringup3.png # pictures3
├── launch
│ ├── rm_63_6f_bringup.launch.py # 63 arm six-axis force moveit2 launch file
│ ├── rm_63_6f_gazebo.launch.py # 63 arm six-axis force gazebo launch file
│ ├── rm_63_6fb_bringup.launch.py # 63 arm integrated six-axis force moveit2 launch file
│ ├── rm_63_6fb_gazebo.launch.py # 63 arm integrated six-axis force gazebo launch file
│ ├── rm_63_bringup.launch.py # 63 arm moveit2 launch file
│ ├── rm_63_gazebo.launch.py # 63 arm gazebo launch file
│ ├── rm_65_6f_bringup.launch.py # 65 arm six-axis force moveit2 launch file
│ ├── rm_65_6f_gazebo.launch.py # 65 arm six-axis force gazebo launch file
│ ├── rm_65_6fb_bringup.launch.py # 65 arm integrated six-axis force moveit2 launch file
│ ├── rm_65_6fb_gazebo.launch.py # 65 arm integrated six-axis force gazebo launch file
│ ├── rm_65_bringup.launch.py # 65 arm moveit2 launch file
│ ├── rm_65_gazebo.launch.py # 65 arm gazebo launch file
│ ├── rm_75_6f_bringup.launch.py # 75 arm six-axis force moveit2 launch file
│ ├── rm_75_6f_gazebo.launch.py # 75 arm six-axis force gazebo launch file
│ ├── rm_75_6fb_bringup.launch.py # 75 arm integrated six-axis force moveit2 launch file
│ ├── rm_75_6fb_gazebo.launch.py # 75 arm integrated six-axis force gazebo launch file
│ ├── rm_75_bringup.launch.py # 75 arm moveit2 launch file
│ ├── rm_75_gazebo.launch.py # 75 arm gazebo launch file
│ ├── rm_eco63_6fb_bringup.launch.py # eco63 arm integrated six-axis force moveit2 launch file
│ ├── rm_eco63_6fb_gazebo.launch.py # eco63 arm integrated six-axis force gazebo launch file
│ ├── rm_eco63_bringup.launch.py # eco63 arm moveit2 launch file
│ ├── rm_eco63_gazebo.launch.py # eco63 arm gazebo launch file
│ ├── rm_eco65_6f_bringup.launch.py # eco65 arm six-axis force moveit2 launch file
│ ├── rm_eco65_6f_gazebo.launch.py # eco65 arm six-axis force gazebo launch file
│ ├── rm_eco65_6fb_bringup.launch.py # eco65 arm integrated six-axis force moveit2 launch file
│ ├── rm_eco65_6fb_gazebo.launch.py # eco65 arm integrated six-axis force gazebo launch file
│ ├── rm_eco65_bringup.launch.py # eco65 arm moveit2 launch file
│ ├── rm_eco65_gazebo.launch.py # eco65 arm gazebo launch file
│ ├── rm_gen72_bringup.launch.py # gen72 arm moveit2 launch file
│ └── rm_gen72_gazebo.launch.py # gen72 arm gazebo launch file
├── package.xml
├── README_CN.md
└── README.md
rm_bringup_Topic_Description
This package currently does not have its topic. It is mainly to call other packages. For the topics related to moveit2, please refer to “rm_moveit2_config Detailed Description”.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common |