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

Repository Summary

Checkout URI https://github.com/bdaiinstitute/spot_ros2.git
VCS Type git
VCS Version main
Last Updated 2025-04-03
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

Package for using ROS 2 control to use Spot's joint control API

Additional Links

No additional links.

Maintainers

  • AI Institute

Authors

No additional authors.

spot_ros2_control

This is a ROS 2 package designed to communicate with Spot’s joint control API through ROS 2 control. It uses the hardware interface provided in the spot_hardware_interface package to connect to the robot (and also supports a mock hardware interface that forwards commands directly to state). By default, it loads a standard joint state broadcaster and forward position controller provided from ros2_control. Alternative controllers from spot_controllers that forwards position, velocity, effort, and gain commands at the same time are also available.

On-robot

If your parameters for authenticating with your robot are set in the environment variables BOSDYN_CLIENT_USERNAME, BOSDYN_CLIENT_PASSWORD, and SPOT_IP, run:

ros2 launch spot_ros2_control spot_ros2_control.launch.py hardware_interface:=robot

[!IMPORTANT] When taking control of Spot with the tablet, make sure to release control back, or spot_ros2_control will not be able to command the robot.

Login information can also be set in a configuration file, the same as in the spot_driver launchfile. For example, if you have a config file spot_ros.yaml containing the following information:

/**:
  ros__parameters:
    username: "username"
    password: "password"
    hostname: "00.00.00.00"

You can then run the launchfile with the following command:

ros2 launch spot_ros2_control spot_ros2_control.launch.py hardware_interface:=robot config_file:=path/to/spot_ros.yaml

If you wish to launch these nodes in a namespace, add the argument spot_name:=<Robot Name> (note that this will also prefix the joints).

This hardware interface will stream the joint angles of the robot at 333 Hz onto the topic /<Robot Name>/low_level/joint_states.

By default, the ros2 control stack will launch using forward_position_controller. This uses a built-in ROS 2 controller for streaming joint level commands on the topic /<Robot Name>/forward_position_controller/commands. This will forward position commands directly to the joint control API through the hardware interface. The controller expects the command array to contain the list of positions to forward for each joint on the robot (12 elements for robots without an arm, and 19 for robots with an arm).

An alternative feed-forward controller provided by the spot_controllers package can be used to specify the position, velocity, and effort of all joints at the same time. To bring up this controller, add the launch argument robot_controller:=forward_state_controller. Commands can then be sent on the topic /<Robot Name>/forward_state_controller/commands. This controller expects the ordering of the command array to be [<positions for each joint>, <velocities for each joint>, <efforts for each joint>] (36 elements for robots without an arm, and 57 for robots with an arm).

Finally, the custom controller spot_joint_controller is also provided for the ability to stream position, velocity, effort, k_q_p, and k_qd_p for any subset of joints. To enable this controller, add the launch argument robot_controller:=spot_joint_controller. This controller accepts commands on the topic /<Robot Name>/spot_joint_controller/joint_commands. Unlike the previous controllers, you do not need to set a value for every single joint, but instead can select the joints by name you wish to control in the joint_commands message – all other joints that are not specified will be left unchanged. More details on this controller can be found on the spot_controllers README.

[!CAUTION] When using these available controllers, there is no safety mechanism in place to ensure smooth motion. Specifically, for the forward position and state controllers, the ordering of the command must match the ordering of the joints specified in the controller configuration file (here for robots with an arm or here for robots without an arm), and the robot can move in unpredictable and dangerous ways if this is not set correctly. Make sure to keep a safe distance from the robot when working with these controllers and ensure the e-stop can easily be pressed if needed.

IMU data from the robot state stream is exposed on the topic /<Robot Name>/imu_sensor_broadcaster/imu.

Feet contact data from the robot state stream is exposed on the topic /<Robot Name>/foot_state_broadcaster/feet.

Additionally, the state publisher node, object synchronization node, and image publisher nodes from spot_driver will get launched by default when running on the robot to provide extra information such as TF, odometry, and camera feeds. To turn off the image publishers (which can cause problems with bandwidth), add the launch argument launch_image_publishers:=false.

Setting Gains

As mentioned above, joint level gains can be streamed to the robot while using spot_joint_controller. If you are using a different controller, but still want to set the initial value of each of these gains, joint level gains can also be specified in the config_file under the parameter names k_q_p and k_qd_p. If you do not specify these parameters, the default gains from the spot-sdk joint control examples are used during command streaming. The example below shows a valid configuration for a robot with an arm as each list contains 19 elements. More information on how these gains are used by Spot can be found here.

/**:
  ros__parameters:
    k_q_p: [624.0, 936.0, 286.0,  624.0, 936.0, 286.0, 624.0, 936.0, 286.0, 624.0, 936.0, 286.0, 1020.0, 255.0, 204.0, 102.0, 102.0, 102.0, 16.0]
    k_qd_p: [5.20, 5.20, 2.04, 5.20, 5.20, 2.04, 5.20, 5.20, 2.04, 5.20, 5.20, 2.04, 10.2, 15.3, 10.2, 2.04, 2.04, 2.04, 0.32]

Mock

To use a mock hardware interface, run:

ros2 launch spot_ros2_control spot_ros2_control.launch.py hardware_interface:=mock

By default, this will load a robot with no arm. If you want your mock robot to have an arm, add the launch argument mock_arm:=True.

Examples

Examples are provided to replicate these joint control examples from Boston Dynamics. They are designed to show how you can send commands to the robot using the built in forward_position_controller, and can be run in mock mode or on the real robot.

Run the following commands to test these examples after launching spot_ros2_control.launch.py. If your robot does not have an arm:

ros2 launch spot_ros2_control noarm_squat.launch.py

Or, if your robot does have an arm:

ros2 launch spot_ros2_control wiggle_arm.launch.py

Add the launch argument spot_name:=<namespace> if the ros2 control stack was launched in a namespace.

An alternate example using the spot_joint_controller is provided to demonstrate how to stream position and gains at the same time. First launch spot_ros2_control.launch.py with the launch argument robot_controller:=spot_joint_controller. Next, run

ros2 run spot_ros2_control set_grippper_gains

Include the argument --robot <namespace> if the ros2 control stack was launched in a namespace. This demo will repeatedly open and close the gripper, and after each motion, will take user input on new k_q_p and k_qd_p values to use next.

Additional Arguments

  • controllers_config: If this argument is unset, a general purpose controller configuration will be loaded containing a forward position controller and a joint state publisher, that is filled appropriately based on whether or not the robot used (mock or real) has an arm. The forward state controller and spot joint controller are also specified here. If you wish to load different controllers, this can be set here.
  • robot_controller: This is the name of the robot controller that will be started when the launchfile is called. The default is the simple forward position controller. The name must match a controller in the controllers_config file.
  • launch_rviz: If you do not want rviz to be launched, add the argument launch_rviz:=False.
  • auto_start: If you do not want hardware interfaces and controllers to be activated on launch, add the argument auto_start:=False.

Mixed Level API

It is possible to use both the joint level control and traditional high level control (as used by spot_driver). To do this in your script, you can still use the spot_driver services as usual such as the claim, power_on, stand, etc. services. To activate the joint level control activate the hardware interface, load and configure the controller(s), and activate the controller(s) using the corresponding services from controller_manager_msgs. We have provided forward joint and forward state controllers as examples in spot_controllers but other controllers can also be used. For safe and clean shutdown, remember to also deactivate and unload the controller(s) and deactivate the hardware interface at the end.

from controller_manager_msgs.srv import (
    ConfigureController,
    LoadController,
    SetHardwareComponentState,
    SwitchController,
    UnloadController,
    ListParameters,
    GetParameters,
)

More documentation can be found about these services here.

A subscriber can fetch the joint states and any other sensor/state broadcasted information, and you can use a publisher to update the commanded setpoints to send to the robot.

from sensor_msgs.msg import JointState

self._joint_states_subscription = self.node.create_subscription(JointState, self.robot_name + "/low_level/joint_states", 1)
self._joint_position_command_publisher = self.node.create_publisher(Float64MultiArray, self.robot_name + "/forward_position_controller/commands", 1)
self._joint_configuration = [ """Ordered list of joints"""] # Can be accessed through controller_manager_msgs services ListParameters and GetParameters

tf_prefix = self.robot_name 
# Get initial joint positions
current_joint_states = unwrap_future(self._joint_states_subscription.latest_update, timeout_sec=5.0)
initial_joint_positions = dict(
    zip(
        map(lambda name: name.removeprefix(tf_prefix), current_joint_states.name),
        current_joint_states.position,
        strict=True,
    )
)

# Update joint setpoints
joint_setpoints = {
    name: ( """values""" )
    for name in initial_joint_positions
}
# Convert into a Float64MultiArray compatible message
data = list(joint_setpoints)
for i, joint in enumerate(joints):
  if joint in joint_setpoints:
      data[i] = joint_setpoints[joint]
# Send joint commands to command stream publisher
self._joint_position_command_publisher.publish(Float64MultiArray(data=data))

[!IMPORTANT] Before running your script, be sure to launch the driver with an additional controllable argument to start the driver in full controllable mode.

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