interbotix_xs_msgs

Overview
The interbotix_xs_msgs package defines and builds the common messages, services, and actions used by the Interbotix X-Series platforms. This guide details those interfaces relevant to the X-Series Arms.
Usage
Simply build this package and include any generated message in your own custom node or script. For example, if you wanted to reboot a servo in an X-Series manipulator, you would include the Reboot service in your program’s header.
C++
#include "interbotix_xs_msgs/Reboot.h"
Python
from interbotix_xs_msgs.srv import Reboot
Structure
Messages
JointGroupCommand
Command the joints in the specified joint group. Note that the commands are processed differently based on the group’s operating mode. For example, if a group’s operating mode is set to ‘position’, the commands are interpreted as positions in radians
JointSingleCommand
Command a desired joint. Note that the command is processed differently based on the joint’s operating mode. For example, if a joint’s operating mode is set to ‘position’, the command is interpreted as a position in radians
JointTrajectoryCommand
Command a joint trajectory to the desired joint(s). Note that the commands are processed differently based on the currently set operating mode. For example, if the operating mode is set to ‘position’, the commands are interpreted as positions in radians. This message wraps the trajectory_msgs/JointTrajectory message.
Services
TorqueEnable
Torque a joint or group of joints on/off.
Warning
The specified motors will torque off and the robot may collapse when this service is called. Make sure the robot is in its sleep pose or in a safe configuration before calling it.
Reboot
Reboot a joint or group of joints.
Warning
If a dual-joint is selected, both motors will be rebooted.
Warning
The specified motors will torque off and the robot may collapse when this service is called. Make sure the robot is in its sleep pose or in a safe configuration before calling it.
Warning
Only EEPROM registers will retain their values, but RAM registers will not. See details on the RAM and EEPROM Control Tables for your specific motors, for example, the XM430-W350.
RobotInfo
Get information about a joint, group of joints, or all joints on the robot.
Note
If a ‘gripper’ joint is specified, all information will be specified in terms of the ‘left_finger’ joint
OperatingModes
Used to set Operating Modes on a joint or group of joints.
To get familiar with the various operating modes, go to the DYNAMIXEL Workbench E-Manual page, click on a motor model, and scroll down to the ‘Operating Mode’ section.
There are 6 valid operating modes:
- “position” - allows up to 1 complete joint revolution (perfect for arm joints); units are in radians
- “ext_position” - allows up to 512 joint revolutions; units are in radians
- “velocity” - allows infinite number of rotations (perfect for wheeled robots); units are in rad/s
- “current” - allows infinite number of rotations (perfect for grippers); units are in milliamps
- “current_based_position” - allows up to 512 joint revolutions; units are in radians
- “pwm” - allows infinite number of rotations (perfect for grippers); units are in PWM
Note that the interbotix_xs_sdk offers one other ‘pseudo’ operating mode that can be useful in controlling Interbotix Grippers - called “linear_position”. Behind the scenes, it uses the “position” operating mode mentioned above. The main difference is that with this mode, a desired linear distance [m] between the two gripper fingers can be commanded. In the “position” mode though, only the angular position of the motor can be commanded.
There are 2 valid profile types - either ‘time’ or ‘velocity’. Depending on which is chosen, the following parameters behave differently.
- profile_velocity: acts as a pass-through to the Profile_Velocity register and operates in one of two ways. If ‘profile_type’ is set to ‘velocity’, this parameter describes the max velocity limit for the specified joint(s); for example, if doing ‘position’ control, setting this to ‘131’ would be equivalent to a limit of 3.14 rad/s; if ‘profile_type’ is set to ‘time’, this parameter sets the time span (in milliseconds) that it should take for the specified joint(s) to move; to have an ‘infinite’ max limit, set to ‘0’.
- profile_acceleration: acts as a pass-through to the Profile_Acceleration register and operates in one of two ways. If ‘profile_type’ is set to ‘velocity’, this parameter describes the max acceleration limit for the specified joint(s); for example, if doing ‘position’ or ‘velocity’ control, setting this to ‘15’ would be equivalent to a limit of 5.6 rad/s^2; if ‘profile_type’ is set to ‘time’, this parameter sets the time span (in milliseconds) that it should take for the specified joint(s) to accelerate; to have an ‘infinite’ max limit, set to ‘0’.
MotorGains
Used to set PID gains on a joint or group of joints.
To get familiar with the various PID gains, go to the DYNAMIXEL Workbench E-Manual page, click on a motor model, and scroll down to the ‘PID’ section.
RegisterValues
Used to set or get the register(s) value(s) from a joint or group of joints.
To get familiar with the register values, go to the DYNAMIXEL Workbench E-Manual page, click on a motor model, and scroll down to the ‘Control Table of RAM Area’ section.