Get Target Joint Velocities
SUMMARY
Get Target Joint Velocities returns the joint-velocity setpoint the controller is currently commanding (deg/s, base to wrist).
Reads from the manipulator state - live controller setpoint when connected, zero-filled offline.
SUPPORTED ROBOTS
Available on all supported manipulators in offline mode. Live hardware readings are currently supported only on Universal Robots.
UNITS
Returns target joint velocities in deg/s, ordered base to wrist.
The Skill
qd_target = robot.get_target_joint_velocities()The Code
"""
Read target (commanded) joint velocities example for the Synapse SDK.
Returns the manipulator's target/commanded joint velocities [deg/s]. With
``--ip``, reads live hardware state. Without ``--ip``, reads from the
internal commanded cache (no connection made) and logs a warning.
Illustrated using Universal Robots (UR10e), supported on all robots.
Usage:
python get_target_joint_velocities.py [--ip <ROBOT_IP>]
"""
import argparse
from loguru import logger
from telekinesis.synapse.robots.manipulators import universal_robots
def main(ip: str | None = None):
"""Log the current target joint velocities [deg/s]."""
robot = universal_robots.UniversalRobotsUR10E()
if ip is not None:
robot.connect(ip=ip)
else:
logger.warning(
"No --ip provided; reading offline commanded-cache state, "
"not live hardware readings."
)
try:
logger.success(f"target_joint_velocities [deg/s]: {robot.get_target_joint_velocities()}")
finally:
if ip is not None:
robot.disconnect()
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Read target joint velocities Synapse example")
parser.add_argument("--ip", type=str, default=None, help="UR robot IP address (optional)")
args = parser.parse_args()
main(ip=args.ip)The Explanation of the Code
from telekinesis.synapse.robots.manipulators import universal_robots
robot = universal_robots.UniversalRobotsUR10E()Create the robot. UR10e is used here for illustration; the same pattern works for every supported brand.
if ip is not None:
robot.connect(ip=ip)Connect to the robot at the given IP. When no --ip is passed, no connection is made and the getter returns from the offline commanded-cache (zero-filled) instead of the live controller setpoint.
logger.success(f"target_joint_velocities [deg/s]: {robot.get_target_joint_velocities()}")Read the controller-commanded joint-velocity setpoint in deg/s, ordered base to wrist. When connected this is the live setpoint, distinct from the measured get_joint_velocities; offline the cache is zero-filled.
finally:
if ip is not None:
robot.disconnect()Always release the controller link in a finally block so a failure mid-read still cleans up the connection.
Return Value
| Type | Description |
|---|---|
list[float] | Controller-commanded joint velocities in deg/s, one value per joint, ordered base to wrist. Zero-filled offline. |
Where to Use the Skill
- Velocity tracking analysis - Compare against measured velocities from Get Joint Velocities.
- Feedforward control design - Read the commanded velocity profile during motion for controller tuning.
When Not to Use the Skill
- You need the measured joint velocities - use Get Joint Velocities instead.

