Skip to content

ROS2 Control

The ROS2 Foxy package we use to interface with the robot can be found here. This may be ported to a newer version of ROS2 in the future, but there are currently no plans for this.

ROS vs. ROS1 vs. ROS2

In this document you will see the acronym ROS. Unless specified otherwise ROS will refer to ROS2, specifically ROS2 Foxy. ROS version 1 will be written as ROS1.

TLDR

Requirements:

  • ROS_DOMAIN_ID = 0
  • RMW_IMPLEMENTATION = rmw_cyclonedds_cpp
  • CycloneDDS version 0.10.2

If you are using WiFi, configure CycloneDDS to use the wireless interface and then connect to the Go2's hotspot with the password hotspot123. You should then see the SDK topics.

If you are using Ethernet, configure CycloneDDS to use the wired interface and connect to the Go2. You must have a static IPv4 of 192.168.123.222.

The Go2 SDK automatically starts when the robot is turned on. You should now be able to interact with the robot using ROS2 by running your ROS code on your computer.

System Layout

At present, the system contains three compute units:

  • The internal MCU
  • The Nvidia Jetson
  • Your PC

Internal MCU

The internal MCU is locked by Unitree and is inaccessible. Unitree have been contacted but they did not give me the password >:(.

Nvidia Jetson

The Jetson is where the Go2 SDK runs and can be accessed. For most applications, you should not need to log into the Jetson. The SDK and general setup of the Jetson can be somewhat temperamental. If you make minor changes (e.g. running an additional service), revert them when you are finished. If you need to make major changes, email Toby Godfrey (t.godfrey ~at~ soton.ac.uk) and describe the changes in detail to ensure the Go2 will remain operational.

To access the Jetson over Ethernet using SSH, run the command

    ssh -X unitree@192.168.123.18

The password for the Jetson is 123. Note that -X is an optional argument to enable X11 forwarding.

Using Your PC

With the SDK running on the Go2 (which should happen automatically) and your computer connected to the Go2, either via Ethernet or WiFi, you should be able to run your ROS2 code and interact with the topics from the Go2.

You must have a matching configuration to that of the Jetson:

  • ROS_DOMAIN_ID = 0
  • RMW_IMPLEMENTATION = rmw_cyclonedds_cpp
  • CycloneDDS version 0.10.2

To install ROS2 Foxy, follow the tutorial here. If you don't want to install it, or you have an incompatible setup, we have a Docker container which should work out of the box. Download the Dockerfile and follow the instructions on Running with Docker.

The Jetson and internal MCU use CycloneDDS 0.10.2 as the ROS2 middleware vendor. Communication may not work if you use a different version of CycloneDDS. If you are not using the Docker container, we must install the correct version of CycloneDDS. To do so, follow the instructions on Running without Docker.

Connecting Over Ethernet

To use ROS over Ethernet, simply connect your PC and the Jetson with an Ethernet cable and set the wired IPv4 address of your PC to 192.168.123.222. The Go2 does not support DHCP and we have observed strange behaviour when we do not have this static IPv4 address set. If you can successfully ping 192.168.123.18, you are connected to the robot and can start interacting with it.

Connecting Over WiFi

To use ROS over WiFi, the USB WiFi adapter has to be connected before the Go2 is powered up. A minute or two after the robot has stood up, you should see a WiFi network called go2. Connect to this network with the password hotspot123. You should now be connected to the robot. To test, check if you can successfully ping the network gateway. You can now interface with the robot.

ROS Usage

General Control

If using the Go2 over Ethernet, you will have access to all topics from both the Jetson and the internal MCU. If using WiFi, you will only have access to the SDK topics (from the Jetson). The topics from the SDK should be sufficient.

To move the robot, publish a Twist message to the /cmd_vel topic. This allows you to specify a desired linear and angular velocity for the robot.

A Word of Warning

The robot will move as soon as you publish to /cmd_vel. Ensure there is adequate space around the robot and all people are out the way. When using /cmd_vel there is no inbuilt collision avoidance so use caution. You are responsible so ensure neither the robot nor the lab are damaged during your experiments.

Robot pose data can be retrieve by subscribing to the /odom topic. This returns Odometry messages. These messages can provide a 3 dimensional position vector (relative to the position of the robot when ROS was started) and a quaternion for the orientation of the robot.

To retrieve data from the robot's LiDAR, subscribe to the /scan topic. This returns a LaserScan message. This topic requires a different QoS policy than most, if you cannot receive messages from it, try using a ReliabilityPolicy of RMW_QOS_POLICY_RELIABILITY_RELIABLE.

For low level joint information, subscribe to the /joint_states topic.

There are other topics which are more niche in their uses.

Success

We have successfully integrated an Intel RealSense D435i RGBD camera. See here for more information.

Bug

We also have a Livox MID-360 LiDAR which is yet to be integrated with the robot. See here for more information.

Pre-Defined Actions

The Go2 has many pre-defined actions (listed on the controller), e.g. sitting or jumping. These are accessible using ROS, simply run

    ros2 service call /mode go2_interfaces/srv/Mode "mode: '<MODE>'"

The options for <MODE> are:

  • damp — lock all motor joints (this is high priority and can be used for emergency stops)
  • balance_stand — unlock all joints and move into balance stand mode, the attitude and height of the torso will always remain balanced independent of terrain
  • stop_move — stop any current motion
  • stand_up — stand up if it is laying down
  • stand_down — lay down on its chest (this is useful to put it in a safe state before turning it off)
  • sit — sit down
  • rise_sit — rise from being sat down
  • hello — wave
  • stretch — typical dog-like stretch
  • wallowDO NOT RUN THIS MODE, the robot will throw itself sideways onto it's back
  • scrape
  • front_flipDO NOT RUN THIS MODE, the robot will do a front flip and may get damaged
  • front_jump — jump forward
  • front_pounce
  • dance1 — fun dance
  • dance2 — fun dance
  • finger_heart — sit on its back legs and draw a heart

Using these Modes

These modes are more of a gimmick and unlikely to be useful for your research. It is strongly recommended, if you do want to see these actions, to use the wireless controller to do so. Instructions on how to do that are printed on the controller. If you use ROS, it is very easy to run a new action which could damage the robot.

Go2 ROS2 SDK

Accessing the SDK

The typical user should not have to interact with the SDK. This section is mainly included for completeness.

Unitree support for ROS2 is poor and so we do not use the default SDK. The SDK we use is here which is a fork of this.

systemd Service

The SDK runs as a systemd service on the Jetson and should start automatically at boot. To check this run

    systemctl status go2-sdk.service

If you want to run the SDK manually (e.g. for debugging), make sure to stop the service.

    sudo systemctl stop go2-sdk.service

Building from Source

In order to build from source, ensure that the ros2_ws directory has not been sourced. You will likely need to comment out the line source ~/ros2_ws/install/setup.bash in the file ~/.ros2_env. Restart the shell then proceed to the next steps.

As the package already exists, we must remove it. It is good practice to clean the workspace too.

    cd ~/ros2_ws
    rm -r log/ install/ build/      # Clean the workspace
    rm -r src/go2_robot             # Remove the SDK package

The src directory will also have a package called HesaiLidar_ROS_2.0. This package is required by the SDK even though we do not have this LiDAR. There are plans to remove this requirement in the future but for now leave the package untouched.

We can then gather our sources for the SDK.

    cd ~/ros2_ws/src
    git clone https://github.com/tgodfrey0/go2_robot.git        # Clone the SDK
    RUN git clone https://github.com/nlohmann/json.git          # Clone a required library
    mv json/include/nlohmann go2_robot/go2_driver/include/      # Move the library to the ROS package
    rm -rf json                                                 # Remove the library repository

Now we can build it.

    cd ~/ros2_ws
    rosdep update 
    rosdep install --from-paths src --ignore-src -r -y --rosdistro $ROS_DISTRO --include-eol-distros 
    colcon build --symlink-install 
    source install/setup.bash 

If all packages build successfully we can now use the Go2 with ROS2.

To start the SDK, run

    ros2 launch go2_bringup go2.launch.py

Once this is working, remember to uncomment the line to source the ROS workspace in ~/.ros2_env.