Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | BSD-3-Clause |
Build type | AMENT_PYTHON |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/j3soon/ros2-essentials.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-02-20 |
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
- Luke Schmitt
Authors
- Solomon Wiznitzer
interbotix_xs_modules
Overview
This package contains Python and MATLAB modules meant to work with any of our Interbotix X-Series platforms. It is what allows users with minimal ROS experience to get started with our platforms. Example demo scripts that build from these modules can be found in the python_demos or matlab_demos directories in any repository that depends on this one.
For now, only X-Series manipulators are compatible with the ROS/MATLAB API, but more platform support is planned.
Structure
For these modules to work, the launch file located in any interbotix_XXXXX_control package must first be started. Additionally, the desired module must also be imported or added to the path from your script. A brief description of each module is shown below.
Python
-
mr_descriptions - contains the Screw axes (as defined in Modern Robotics by Kevin Lynch) for each Interbotix arm; these are necessary to do inverse kinematics via the Product of Exponentials approach.
-
core - known as InterbotixRobotXSCore, this is the ‘base’ Python module that can be used to control any X-Series robot platform; it contains ROS Service clients for every ROS Service server advertised from the xs_sdk node, subscribes to the joint states published by the xs_sdk node, and has a ROS publisher interface for each topic the xs_sdk node subscribes to; every X-Series module (arm, gripper, hexapod, turret, locobot) builds up from this one.
-
gripper - allows easy PWM or Current control of an Interbotix X-Series gripper; it contains the InterbotixRobotXSCore and InterbotixGripperXSInterface submodules.
-
arm - contains an inverse kinematics solver to allow end-effector control in Cartesian space for any Interbotix X-Series manipulator; it contains the InterbotixRobotXSCore, InterbotixManipulatorXSInterface, and InterbotixGripperXSInterface submodules. To import, write
from interbotix_xs_modules.arm import InterbotixManipulatorXS
at the top of your Python script. -
turret - contains a small API that simplifies controlling any Interbotix X-Series Turret platform; it contains the InterbotixRobotXSCore and InterbotixTurretXSInterface submodules. To import, write
from interbotix_xs_modules.turret import InterbotixTurretXS
at the top of your Python script. -
locobot - a locobot is composed of a turret (to control the camera motion), a Kobuki base, and potentially an arm and gripper. As such, it contains the InterbotixRobotXSCore, InterbotixTurretXSInterface, InterbotixManipulatorXSInterface, InterbotixGripperXSInterface, and the InterbotixKobukiInterface submodules. To import, write
from interbotix_xs_modules.locobot import InterbotixLocobotXS
at the top of your Python script. -
hexapod - contains inverse kinematics and gait solvers to move any Interbotix X-Series Hexapod; it contains the InterbotixRobotXSCore, InterbotixHexapodXSInterface, and InterbotixRpiPixelInterface (see the interbotix_rpi_modules ROS package for details) submodules. To import, write
from interbotix_xs_modules.hexapod import InterbotixHexapodXS
at the top of your Python script.
MATLAB
-
mr_descriptions.m - contains the Screw axes (as defined in Modern Robotics by Kevin Lynch) for each Interbotix arm; these are necessary to do inverse kinematics via the Product of Exponentials approach.
-
InterbotixRobotXSCore.m - this is the ‘base’ MATLAB module that can be used to control any X-Series robot platform; it contains ROS Service clients for every ROS Service server advertised from the xs_sdk node, subscribes to the joint states published by the xs_sdk node, and has a ROS publisher interface for each topic the xs_sdk node subscribes to; every X-Series module (arm, gripper, hexapod, turret, locobot) builds up from this one.
-
InterbotixArmXSInterface.m - contains an inverse kinematics solver to allow end-effector control in Cartesian space for any Interbotix X-Series manipulator.
-
InterbotixManipulatorXS.m - contains the InterbotixRobotXSCore, InterbotixManipulatorXSInterface, and InterbotixGripperXSInterface submodules; use this object in your scripts if you want to control an Interbotix X-Series Arm.
-
InterbotixGripperXSInterface.m - allows easy PWM or Current control of an Interbotix X-Series gripper.
-
InterbotixGripperXS.m - contains the InterbotixRobotXSCore and InterbotixGripperXSInterface submodules; use this object in your scripts if you want to control an Interbotix X-Series gripper.
Usage
As mentioned above, to use any X-Series module, you first must start the launch file in a given interbotix_XXXXX_control ROS package. Only then can you run your script. For more info, check out the python_demos or matlab_demos directory in any of the supported repositories.
Notes
Note that for some of the Python modules, there are two classes defined. Both have the same name, but one includes ‘Interface’ as well. The one without ‘Interface’ in it is just a collection of various ‘Interface’ objects which make up a robot platform. That is the one which should be imported in Python scripts. The ‘Interface’ one though is what actually defines the functionality for a given object. This should only be imported when designing a new robot platform. To clarify that point, here’s an example. The Hexapod module contains both the ‘InterbotixHexapodXS’ class and the ‘InterbotixHexapodXSInterface’ class. The Interface class defines how desired movements should be converted into joint commands, and is just one of three objects within the InterbotixHexapodXS class. The other two include an instance of the InterbotixRobotXSCore class (see below) and an instance of the InterbotixRpiPixelInterface class (used to control the NeoPixels on an RPi4 board). Together, these three Interface modules (yeah - ok, the InterbotixRobotXSCore class doesn’t have ‘Interface’ tacked on to the end of it, but that’s the only exception) define what an Interbotix X-Series Hexapod is. It’s not just something you can walk around using just the Hexpod interface, but you can also use the Core class to get access to individual or groups of motors, or the Pixel class to flash the LEDs.
Note that when using the MATLAB modules, you may see the error incoming connection failed: unable to receive data from sender, check sender's logs for details
. This is just a result from how MATLAB constructs its rosservice objects and can be safely ignored.