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.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/2b-t/myactuator_rmd_ros.git
VCS Type git
VCS Version main
Last Updated 2025-01-10
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

ROS 2 control hardware interface for MyActuator RMD-X-series actuators

Additional Links

No additional links.

Maintainers

  • Tobit Flatscher

Authors

No additional authors.

MyActuator RMD X-series Hardware

Author: Tobit Flatscher (2024)

License: MIT

Overview

This package holds the ros2_control integration for the MyActuator RMD-X actuator series in the form of a hardware component. The hardware interface is based on the C++ driver that I have written for these actuators.

For using it add the following lines to your URDF refering to the joint of interest joint_name:

<ros2_control name="${some_name}" type="actuator">
  <hardware>
    <plugin>myactuator_rmd_hardware/MyActuatorRmdHardwareInterface</plugin>
    <param name="ifname">${ifname}</param>
    <param name="actuator_id">${actuator_id}</param>
    <param name="torque_constant">${torque_constant}</param>
    <!-- Optional: Low-pass filters for velocity and effort (0 < alpha <= 1); defaults to no filter -->
    <param name="velocity_alpha">0.1</param>
    <param name="effort_alpha">0.1</param>
    <!-- Optional: Cycle time of the asynchronous thread; defaults to 1ms (1000Hz) -->
    <param name="cycle_time">1</param>
  </hardware>
  <joint name="${joint_name}">
    <command_interface name="position"/>
    <command_interface name="velocity"/>
    <command_interface name="effort"/>
    <state_interface name="position"/>
    <state_interface name="velocity"/>
    <state_interface name="effort"/>
  </joint>
</ros2_control>

The ifname has to correspond to the name of the CAN interface as shown by $ ifconfig (e.g. can0) and the actuator_id to the ID of the actuator (e.g. 1). The torque_constant is required for controlling the actuator over its effort interface and depends on the actuator type. Furthermore optional low-pass filters (by means of the filter coefficient alpha) for the read velocity and effort can be activated. The correlation between the ratio of sample (in our case the update rate of the hardware interface) and cut-off frequency is given by sample_frequency/cutoff_frequency = (1-alpha)*2*pi/alpha. For alpha = 0.07 this ratio corresponds to 125, meaning if the hardware interface is running at 1000 Hz any oscillations with a higher frequency than around 8 Hz will be filtered out.

Without low pass filter (corresponds to alpha = 1.0) With low pass filter (alpha = 0.07)
Effort and velocity without low-pass filter Effort and velocity with low-pass filter

Similarly the cycle-time for the asynchronous thread interfacing the actuator through CAN can be specified. For examples refer to the myactuator_rmd_description package.

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

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged myactuator_rmd_hardware 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.