Skip to content

Print Joint States

Example 5

In this example, we will review a Python script that prints out the positions of a selected group of Stretch joints. This script is helpful if you need the joint positions after you teleoperated Stretch with the Xbox controller or physically moved the robot to the desired configuration after hitting the run stop button.

If you are looking for a continuous print of the joint states while Stretch is in action, then you can use the rostopic command-line tool shown in the Internal State of Stretch Tutorial.

Begin by starting up the stretch driver launch file.

roslaunch stretch_core stretch_driver.launch

You can then hit the run-stop button (you should hear a beep and the LED light in the button blink) and move the robot's joints to a desired configuration. Once you are satisfied with the configuration, hold the run-stop button until you hear a beep. Then run the following command to execute the joint_state_printer.py which will print the joint positions of the lift, arm, and wrist. In a new terminal, execute:

cd catkin_ws/src/stretch_tutorials/src/
python3 joint_state_printer.py

Your terminal will output the position information of the previously mentioned joints shown below.

name: ['joint_lift', 'wrist_extension', 'joint_wrist_yaw']
position: [0.6043133175850597, 0.19873586673129257, 0.017257283863713464]

Note

Stretch's arm has four prismatic joints and the sum of their positions gives the wrist_extension distance. The wrist_extension is needed when sending joint trajectory commands to the robot. Further, you can not actuate an individual arm joint. Here is an image of the arm joints for reference:

The Code

#!/usr/bin/env python3

import rospy
import sys
from sensor_msgs.msg import JointState

class JointStatePublisher():
    """
    A class that prints the positions of desired joints in Stretch.
    """
    def __init__(self):
        """
        Function that initializes the subscriber.
        :param self: The self reference.
        """
        self.sub = rospy.Subscriber('joint_states', JointState, self.callback)

    def callback(self, msg):
        """
        Callback function to deal with the incoming JointState messages.
        :param self: The self reference.
        :param msg: The JointState message.
        """
        self.joint_states = msg

    def print_states(self, joints):
        """
        print_states function to deal with the incoming JointState messages.
        :param self: The self reference.
        :param joints: A list of string values of joint names.
        """
        joint_positions = []
        for joint in joints:
            if joint == "wrist_extension":
                index = self.joint_states.name.index('joint_arm_l0')
                joint_positions.append(4*self.joint_states.position[index])
                continue
            index = self.joint_states.name.index(joint)
            joint_positions.append(self.joint_states.position[index])
        print("name: " + str(joints))
        print("position: " + str(joint_positions))
        rospy.signal_shutdown("done")
        sys.exit(0)

if __name__ == '__main__':
    rospy.init_node('joint_state_printer', anonymous=True)
    JSP = JointStatePublisher()
    rospy.sleep(.1)
    joints = ["joint_lift", "wrist_extension", "joint_wrist_yaw"]
    #joints = ["joint_head_pan","joint_head_tilt", joint_gripper_finger_left", "joint_gripper_finger_right"]
    JSP.print_states(joints)
    rospy.spin()

The Code Explained

Now let's break the code down.

#!/usr/bin/env python3

Every Python ROS Node will have this declaration at the top. The first line makes sure your script is executed as a Python3 script.

import rospy
import sys
from sensor_msgs.msg import JointState

You need to import rospy if you are writing a ROS Node. Import sensor_msgs.msg so that we can subscribe to JointState messages.

self.sub = rospy.Subscriber('joint_states', JointState, self.callback)

Set up a subscriber. We're going to subscribe to the topic joint_states, looking for JointState messages. When a message comes in, ROS is going to pass it to the function "callback" automatically

def callback(self, msg):
    self.joint_states = msg

This is the callback function where the JointState messages are stored as self.joint_states. Further information about this message type can be found here: JointState Message

def print_states(self, joints):
    joint_positions = []

This is the print_states() function which takes in a list of joints of interest as its argument. the is also an empty list set as joint_positions and this is where the positions of the requested joints will be appended.

for joint in joints:
  if joint == "wrist_extension":
    index = self.joint_states.name.index('joint_arm_l0')
    joint_positions.append(4*self.joint_states.position[index])
    continue
  index = self.joint_states.name.index(joint)
  joint_positions.append(self.joint_states.position[index])

In this section of the code, a for loop is used to parse the names of the requested joints from the self.joint_states list. The index() function returns the index of the name of the requested joint and appends the respective position to the joint_positions list.

rospy.signal_shutdown("done")
sys.exit(0)

The first line of code initiates a clean shutdown of ROS. The second line of code exits the Python interpreter.

rospy.init_node('joint_state_printer', anonymous=True)
JSP = JointStatePublisher()
rospy.sleep(.1)

The next line, rospy.init_node(NAME, ...), is very important as it tells rospy the name of your node -- until rospy has this information, it cannot start communicating with the ROS Master. NOTE: the name must be a base name, i.e. it cannot contain any slashes "/".

Declare object, JSP, from the JointStatePublisher class.

The use of the rospy.sleep() function is to allow the JSP class to initialize all of its features before requesting to publish joint positions of desired joints (running the print_states() method).

joints = ["joint_lift", "wrist_extension", "joint_wrist_yaw"]
#joints = ["joint_head_pan","joint_head_tilt", joint_gripper_finger_left", "joint_gripper_finger_right"]
JSP.print_states(joints)

Create a list of the desired joints that you want positions to be printed. Then use that list as an argument for the print_states() method.

rospy.spin()

Give control to ROS with rospy.spin(). This will allow the callback to be called whenever new messages come in. If we don't put this line in, then the node will not work, and ROS will not process any messages.