No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

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

TODO: Package description

Additional Links

No additional links.

Maintainers

  • xtark

Authors

No additional authors.
[简体中文](https://github.com/RealManRobot/ros2_rm_robot/blob/humble/rm_driver/README_CN.md)|[English](https://github.com/RealManRobot/ros2_rm_robot/blob/humble/rm_driver/README.md)
# RealMan Robot rm_driver User Manual V1.3 RealMan Intelligent Technology (Beijing) Co., Ltd. Revision History: |No. | Date | Comment | | :---: | :----: | :---: | |V1.0 | 2/7/2024 | Draft | |V1.1 | 7/8/2024 | Amend(Add GEN72 adapter files) | |V1.2 | 9/10/2024 | Amend(Add ECO63 adapter files) | |V1.2.1 | 10/31/2024| Amend(Add dexterous hand udp topic) | |V1.3 | 12/25/2024| Amend(Add UDP reporting adaptation) |

Content

  • 1.rm_driver package description
  • 2.rm_driver package use
  • 2.1 Basic use of the package
  • 2.2 Advanced use of the package
  • 3.rm_driver package architecture description
  • 3.1 Overview of Package Files
  • 4.rm_driver topic description

1. rm_driver package description

rm_driver package is very important in the ROS2 robotic arm package. This package realizes the function of controlling the robotic arm through communication between ROS and the robotic arm. The package will be introduced in detail in the following text through 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.

    2. rm_driver package use

    2.1 Basic use of the package

    First, after configuring the environment and completing the connection, we can directly start the node and control the robotic arm through the following command. The current control is based on the fact that we have not changed the IP of the robotic arm, which is still 192.168.1.18. rm@rm-desktop:~$ ros2 launch rm_driver rm__driver.launch.py In practice, the above needs to be replaced by the actual model of the robotic arm. The available models of the robotic arm are 65, 63, eco65、eco63, gen72 and 75. The following screen will appear if the underlying driver is successfully started. ![image](doc/rm_driver1.png)

    2.2 Advanced use of the package

    When our robotic arm’s IP is changed, our start command is invalid. If we use the above command directly, we cannot successfully connect to the robotic arm. We can re-establish the connection by modifying the following configuration file. The configuration file is located in the config folder under our rm_driver package. image

The contents of the configuration file are as follows:

rm_driver: 
  ros__parameters:
    #robot param
    arm_ip: "192.168.1.18"        # Set the IP address for the TCP connection
    tcp_port: 8080#               # Set the port for the TCP connection
    
    arm_type: "RM_65"             # set the robotic arm model       
    arm_dof: 6                    # Set the degree of freedom of the robotic arm

    udp_ip: "192.168.1.10"        # set the udp active reporting IP address
    udp_cycle: 5                  # the active reporting cycle of UDP, which needs to be a multiple of 5.  
    udp_port: 8089                # Set the udp active reporting port   
    udp_force_coordinate: 0       # Set the base coordinate of the six-axis force when the system is forced, where 0 is the sensor coordinate system, 1 is the current work coordinate system, and 2 is the current tool coordinate system

    trajectory_mode: 0            #When the high following mode is set, multiple modes are supported, including 0- complete transparent transmission mode, 1- curve fitting mode and 2- filtering mode.
    radio: 50                     #Set the smoothing coefficient in curve fitting mode and filtering mode, ranging from 0 to 100. The larger the value, the better the smoothing effect.

There are mainly the following parameters.

  • arm_ip: This parameter represents the current IP of the robotic arm
  • tcp_port: set the port when TCP is connected.
  • arm_type: This parameter represents the current model of the robotic arm. The parameters that can be selected are RM_65 (65 series), RM_eco65 (ECO65 series), RM_eco63 (ECO63 series), RM_63 (63 series),GEN_72 (GEN72 series) and RM_75 (75 series).
  • arm_dof: set the degree of freedom of the robotic arm. 6 is 6 degrees of freedom, and 7 is 7 degrees of freedom.
  • udp_ip: set the udp active reporting IP address.
  • udp_cycle: the active reporting cycle of UDP, which needs to be a multiple of 5.
  • udp_port: set the udp active reporting port.
  • udp_force_coordinate: set the base coordinate of the six-axis force when the system is forced, where 0 is the sensor coordinate system (original data), 1 is the current work coordinate system, and 2 is the current tool coordinate system.
  • trajectory_mode:When the high following mode is set, multiple modes are supported, including 0- complete transparent transmission mode, 1- curve fitting mode and 2- filtering mode.
  • radio:Set the smoothing coefficient in curve fitting mode and filtering mode, ranging from 0 to 100. The larger the value, the better the smoothing effect.
  • In practice, we choose the corresponding launch file to start, which will automatically select the correct model. If there are special requirements, you can modify the corresponding parameters here. After modification, recompile the configuration in the workspace directory, and then the modified configuration will take effect. Run the colcon build command in the workspace directory.
rm@rm-desktop: ~/ros2_ws$ colcon build

After successful compilation, follow the above commands to start the package.

3. rm_driver package architecture description

3.1 Overview of package files

The current rm_driver package is composed of the following files.

├── CMakeLists.txt                # compilation rule file
├── config                        # config folder
│   ├── rm_63_config.yaml         # 63 configuration file
│   ├── rm_65_config.yaml         # 65 configuration file
│   ├── rm_75_config.yaml         # 75 configuration file
│   ├── rm_eco65_config.yaml      # eco65 configuration file
│   ├── rm_eco63_config.yaml      # eco63 configuration file
│   └── rm_gen72_config.yaml      # gen72 configuration file
├── doc
│   ├── RealMan Robotic Arm rm_driver Topic Detailed Description (ROS2).md
│   ├── rm_driver1.png
│   ├── rm_driver2.png
│   ├── rm_driver3.png
│   ├── rm_driver4.png
│   └── 睿尔曼机械臂ROS2rm_driver话题详细说明.md
├── include                       # dependency header file folder
│   └── rm_driver
│       ├── cJSON.h                # API header file
│       ├── constant_define.h      # API header file
│       ├── rman_int.h             # API header file
│       ├── rm_base_global.h       # API header file
│       ├── rm_base.h              # API header file
│       ├── rm_define.h            # API header file
│       ├── rm_driver.h            # rm_driver.cpp header file
│       ├── rm_praser_data.h       # API header file
│       ├── rm_queue.h             # API header file
│       ├── rm_service_global.h    # API header file
│       ├── rm_service.h           # API header file
│       └── robot_define.h         # API header file
├── launch
│   ├── rm_63_driver.launch.py     # 63 launch file
│   ├── rm_65_driver.launch.py     # 65 launch file
│   ├── rm_75_driver.launch.py     # 75 launch file
│   ├── rm_eco65_driver.launch.py  # eco65 launch file
│   ├── rm_eco63_driver.launch.py  # eco63 launch file
│   └── rm_gen72_driver.launch.py  # gen72 launch file
├── lib
│   ├── libRM_Service.so -> libRM_Service.so.1.0.0        # API library file
│   ├── libRM_Service.so.1 -> libRM_Service.so.1.0.0      # API library file
│   ├── libRM_Service.so.1.0 -> libRM_Service.so.1.0.0    # API library file
│   ├── libRM_Service.so.1.0.0                            # API library file
│   ├── linux_arm_service_release_v4.3.7.t7.tar.bz2       # API library file
│   └── linux_x86_service_release_v4.3.7.t7.tar.bz2       # API library file
├── package.xml                                           # dependency declaration file
├── README_CN.md
├── README.md
└── src
    └── rm_driver.cpp                                     # driver code source file

4. rm_driver topic description

rm_driver has many topics, and you can learn about the topic information through the following commands. image image
It is mainly for the application of API to achieve some of the robotic arm functions; for a more complete introduction and use, please see the special document “RealMan Robotic Arm ROS2 Topic Detailed Description”.

CHANGELOG
No CHANGELOG found.

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.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged rm_driver 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.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
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.