7.2.10. ROS2 Joint Control: Extension Python Scripting

7.2.10.1. Learning Objectives

In this tutorial, we will interact with a manipulator, the Franka Emika Panda Robot. We will

  • Add a ROS2 Joint State publisher and subscriber via UI

  • Add a ROS2 Joint State publisher and subscriber using the OmniGraph python API using the script editor.

7.2.10.2. Getting Started

Important

Make sure to source your ROS 2 installation from the terminal before running Isaac Sim. If sourcing ROS 2 is a part of your bashrc then Isaac Sim can be run directly.

Prerequisite

  • Completed Isaac Sim Workflows to understand the Extension Workflow.

  • Appropriate ros2_ws is sourced (foxy_ws or humble_ws) was sourced in the terminal that will be running python scripts.

  • FASTRTPS_DEFAULT_PROFILES_FILE environmental variable is set prior to launching sim, and ROS2 bridge is enabled.

7.2.10.3. Add Joint States in UI

  1. Go to Content tab below the viewport, and open Isaac/Robots/Franka/franka_alt_fingers.usd.

  2. Go to Create -> Visual Scripting -> Action Graph to create an Action graph.

  3. Add the following OmniGraph nodes into the Action graph:

  • On Playback Tick node to execute other graph nodes every simulation frame.

  • Isaac Read Simulation Time node to retrieve current simulation time.

  • ROS2 Publish Joint State node to publish ROS2 Joint States to the /joint_states topic.

  • ROS2 Subscribe Joint State node to subscribe to ROS2 Joint States from the /joint_command topic.

  • Articulation Controller node to move the robot articulation according to commands received from the subscriber node.

  1. Select ROS2 Publish Joint State node and add the /panda robot articulation to the targetPrim.

  2. Select Articulation Controller node and add the /panda robot articulation to the targetPrim. Additionally make sure to uncheck `usePath`.

  3. Connect the Tick output of the On Playback Tick node to the Execution input of the ROS2 Publish Joint State, ROS2 Subscribe JointState and Articulation Controller nodes.

  4. Connect the Simulation Time output of the Isaac Read Simulation Time node to the Timestamp input of the ROS2 Publish Joint State node. Setup other connections between nodes as shown in the image below:

    ROS2 Joint State Action Graph
  5. Press Play to start publishing joint states to the /joint_states topic and subscribing commands on the /joint_command topic.

  6. To test out the ROS2 bridge, use the provided python script to publish joint commands to the robot. In a ROS2-sourced terminal:

    ros2 run isaac_tutorials ros2_publisher.py
    
  7. While the robot is moving, open a ROS2-sourced terminal and check the joint state rostopic by running:

7.2.10.4. Add Joint States in Extension

The same action done via UI can also be done using python script. More details regarding the different workflow of using Omniverse Isaac Sim can be found Isaac Sim Workflows.

  1. Go to Content tab below the viewport, and open Isaac/Robots/Franka/franka_alt_fingers.usd.

  2. Open Script Editor in Window -> Script Editor and copy paste the following code into it. This is the equivalent to Steps 2-7 of the previous section. If the robot appears other than /panda on the stage tree, make sure to match the Articulation Controller and Publish Joint State nodes’ targets to the robot’s prim path (line 30 and 36).

     1import omni.graph.core as og
     2
     3og.Controller.edit(
     4    {"graph_path": "/ActionGraph", "evaluator_name": "execution"},
     5    {
     6        og.Controller.Keys.CREATE_NODES: [
     7            ("OnPlaybackTick", "omni.graph.action.OnPlaybackTick"),
     8            ("PublishJointState", "omni.isaac.ros2_bridge.ROS2PublishJointState"),
     9            ("SubscribeJointState", "omni.isaac.ros2_bridge.ROS2SubscribeJointState"),
    10            ("ArticulationController", "omni.isaac.core_nodes.IsaacArticulationController"),
    11            ("ReadSimTime", "omni.isaac.core_nodes.IsaacReadSimulationTime"),
    12        ],
    13        og.Controller.Keys.CONNECT: [
    14            ("OnPlaybackTick.outputs:tick", "PublishJointState.inputs:execIn"),
    15            ("OnPlaybackTick.outputs:tick", "SubscribeJointState.inputs:execIn"),
    16            ("OnPlaybackTick.outputs:tick", "ArticulationController.inputs:execIn"),
    17
    18            ("ReadSimTime.outputs:simulationTime", "PublishJointState.inputs:timeStamp"),
    19
    20            ("SubscribeJointState.outputs:jointNames", "ArticulationController.inputs:jointNames"),
    21            ("SubscribeJointState.outputs:positionCommand", "ArticulationController.inputs:positionCommand"),
    22            ("SubscribeJointState.outputs:velocityCommand", "ArticulationController.inputs:velocityCommand"),
    23            ("SubscribeJointState.outputs:effortCommand", "ArticulationController.inputs:effortCommand"),
    24        ],
    25        og.Controller.Keys.SET_VALUES: [
    26            # Providing path to /panda robot to Articulation Controller node
    27            # Providing the robot path is equivalent to setting the targetPrim in Articulation Controller node
    28            ("ArticulationController.inputs:usePath", True),
    29            ("ArticulationController.inputs:robotPath", "/panda"),
    30            ("PublishJointState.inputs:targetPrim", "/panda")
    31        ],
    32    },
    33)
    
  3. Press Run in the Script Editor and the Action Graph with all required nodes should be added. You can find the corresponding ActionGraph in the Stage Tree.

Note

This script should only be run once. It is assuming there is no ActionGraph that already exist on stage. You may need to start a new stage if you wish to run it again.

  1. Same as the previous section, test out the ROS2 bridge using the provide ROS2 python node to publish joint commands to the robot. In a ROS2-sourced terminal run the following command:

    ros2 run isaac_tutorials ros2_publisher.py
    
  2. Check the joint state with ros2 topic echo while it’s moving:

    ros2 topic echo /joint_states
    

7.2.10.5. Position and Velocity Control Modes

The joint state subscriber currently supports position and velocity control. Each joint can only be controlled by a single mode at a time, but different joints on the same articulation tree can be controlled by different modes. Make sure each joint’s stiffness and damping parameters are setup appropriately for the desired control mode (position control: stiffness >> damping, velocity control: stiffness = 0).

The snippet is an example of how to command a robot using both position and velocity controls by grouping joints that use the same mode into one message, and create two different messages for position control joints and velocity controlled joints. Separating them is for organization and potentially sending them at different rates. They can be combined into a single message if desired.

import threading

import rclpy
from sensor_msgs.msg import JointState

rclpy.init()
node = rclpy.create_node('position_velocity_publisher')
pub = node.create_publisher(JointState, 'joint_command', 10)

# Spin in a separate thread
thread = threading.Thread(target=rclpy.spin, args=(node, ), daemon=True)
thread.start()

joint_state_position = JointState()
joint_state_velocity = JointState()

joint_state_position.name = ["joint1", "joint2","joint3"]
joint_state_velocity.name = ["wheel_left_joint", "wheel_right_joint"]
joint_state_position.position = [0.2,0.2,0.2]
joint_state_velocity.velocity = [20.0, -20.0]

rate = node.create_rate(10)
try:
    while rclpy.ok():
        pub.publish(joint_state_position)
        pub.publish(joint_state_velocity)
        rate.sleep()
except KeyboardInterrupt:
    pass
rclpy.shutdown()
thread.join()

7.2.10.6. Summary

This tutorial covered adding a ROS2 Joint State publisher and subscriber via both UI and Extension scripting.

7.2.10.6.1. Next Steps

Continue on to the next tutorial in our ROS2 Tutorials series, MoveIt 2 to learn how to connect the manipulator up with MoveIt 2.