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.

interbotix_xs_modules package from ros2-essentials repo

interbotix_footswitch_driver interbotix_footswitch_msgs interbotix_ros_slate interbotix_slate_driver interbotix_slate_msgs dynamixel_workbench_toolbox interbotix_ros_xseries interbotix_xs_driver interbotix_xs_msgs interbotix_xs_sdk interbotix_ros_xsarms_examples interbotix_xsarm_diagnostic_tool interbotix_xsarm_dual interbotix_xsarm_dual_joy interbotix_xsarm_joy interbotix_xsarm_moveit_interface interbotix_xsarm_pid interbotix_xsarm_puppet interbotix_ros_xsarms interbotix_xsarm_control interbotix_xsarm_descriptions interbotix_xsarm_moveit interbotix_xsarm_perception interbotix_xsarm_ros_control interbotix_xsarm_sim interbotix_common_modules interbotix_common_sim interbotix_common_toolbox interbotix_landmark_modules interbotix_moveit_interface interbotix_moveit_interface_msgs interbotix_tf_tools interbotix_io_modules interbotix_io_toolbox interbotix_perception_modules interbotix_perception_msgs interbotix_perception_pipelines interbotix_perception_toolbox interbotix_rpi_modules interbotix_rpi_msgs interbotix_rpi_toolbox interbotix_xs_modules interbotix_xs_ros_control interbotix_xs_rviz interbotix_xs_toolbox moveit_visual_tools cartographer_demo multi_lidar_desp multi_lidar_gazebo aws_robomaker_hospital_world aws_robomaker_small_house_world aws_robomaker_small_warehouse_world citysim clearpath_playpen gazebo_launch turtlebot3_gazebo lms1xx husky_base husky_bringup husky_control husky_description husky_desktop husky_gazebo husky_msgs husky_navigation husky_robot husky_simulator husky_viz cmd_vel_mux ecl_command_line ecl_concepts ecl_containers ecl_converters ecl_core ecl_core_apps ecl_devices ecl_eigen ecl_exceptions ecl_filesystem ecl_formatters ecl_geometry ecl_ipc ecl_linear_algebra ecl_manipulators ecl_math ecl_mobile_robot ecl_mpl ecl_sigslots ecl_statistics ecl_streams ecl_threads ecl_time ecl_type_traits ecl_utilities ecl_config ecl_console ecl_converters_lite ecl_errors ecl_io ecl_lite ecl_sigslots_lite ecl_time_lite kobuki_core kobuki_keyop kobuki_node kobuki_ros kobuki_ros_interfaces sophus kobuki_control kobuki_description kobuki_gazebo kobuki_launch kobuki_navigation kobuki_rviz velodyne_description velodyne_gazebo_plugins velodyne_simulator rtabmap_sim minimal_pkg turtlebot3 turtlebot3_bringup turtlebot3_cartographer turtlebot3_description turtlebot3_example turtlebot3_navigation2 turtlebot3_node turtlebot3_teleop turtlebot3_cartographer_ex turtlebot3_fake_node turtlebot3_simulations vlp_cartographer

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

The interbotix_xs_modules package

Additional Links

No 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.

Working With The Interbotix Python API

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.

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.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

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