Skip to main content

Universal Robots e-Series control toolkit built on ur_rtde

Project description

URKit

URKit is a Python toolkit for Universal Robots e-Series robots that makes the common stuff simple and gets out of the way for everything else.

Built on ur_rtde, it packages the operations you reach for most: connecting, moving to named points, gripper control, telemetry, and I/O, while exposing the raw RTDE interfaces for anything deeper. It doesn't try to replace ur_rtde; it sits on top of it so you can use both in tandem.

Installation

pip install urkit

Requires Python 3.8+ and a Universal Robots e-Series (UR3e to UR30).

Robotiq Grippers (optional)

If you're using a Robotiq gripper, install the Robotiq Gripper Control URCap:

  1. Download from robotiq.com/support.
  2. Copy the .urcap file to a USB drive and mount it on the robot.
  3. SettingsSystemURCaps → Install from USB.
  4. Activate and follow the on-screen instructions.

Robot Setup (one-time)

  1. Network: SystemNetwork: set the robot's IP and subnet. Make sure your PC is on the same network.
  2. Remote Control: SystemRemote Control: Enable. Press the remote/local button on the pendant.
  3. Security: SecurityServices: enable RTDE and disable EtherNet/IP, PROFINET, or MODBUS if they're claiming RTDE registers. Save and restart.

That's it. No .urp files to run, no extra programs needed.


The Workflow

The typical workflow with URKit is simple:

  1. Teach points: Use the interactive CLI to position the robot and save named waypoints.
  2. Write code: Create a robot, move to points by name, apply offsets, run sequences.
  3. Iterate: Add more points in the CLI, tweak your code, repeat.
from urkit import URRobot, ROBOTIQ_HAND_E

# Connect: validates network, remote mode, powers on, sets gripper TCP/payload
robot = URRobot(ip="172.31.1.200", points="points.db", gripper=ROBOTIQ_HAND_E)

# Activate the gripper (required before open/close)
robot.gripper.activate()

# Move to a saved point
robot.move_to("home")

# Apply an offset — 5cm above the pick point
robot.move_to("pick", offset=[0, 0, 0.05, 0, 0, 0])
robot.gripper.close()
robot.move_to("place")
robot.gripper.open()

Teaching Points (Interactive CLI)

URKit provides two CLI tools: teach for interactive robot control, and points for browsing saved waypoints.

Teach Mode

The interactive teach pendant for moving the robot, saving points, and checking telemetry:

urkit teach 172.31.1.200              # with robot IP
urkit teach                           # reads IP from config.yaml

Flags:

Flag Description
ip Robot IP address (positional, overrides config)
--gripper Gripper preset: 2f-85, 2f-140, hand-e, digital
--gripper-pin Digital gripper output pin (default: 0)
--gripper-force Robotiq force 0-100
--gripper-speed Robotiq speed 0-100
--gripper-close-on-high Digital polarity: true or false
--points Path to points.db file (overrides config)
-v, --verbose Show verbose output (debug connection issues)
urkit teach 172.31.1.200 --gripper hand-e --points /path/to/points.db
urkit teach --gripper digital --gripper-pin 3
urkit teach -v                        # verbose mode

Points Explorer

Browse saved waypoints with real-time search filtering — no robot connection needed:

urkit points                          # uses default points.db
urkit points test_points.db           # use specific database

Features:

  • Type to search — Real-time substring filtering
  • Fuzzy matching — Type pk to find pick_1 (>60% match)
  • Smart sorting — Exact prefix matches first, then substring, then fuzzy
  • Spatial sorting — Points ordered by proximity to "home" point (XYZ distance)
  • Theme-aware — Automatically adapts colors for light/dark terminals
  • Arrow keys — Scroll through results
  • ESC — Quit

Try urkit points, type pick to filter, press ESC to exit.

Key Map

All movement and orientation keys support hold-to-repeat — hold a key down for continuous motion.

Movement Orientation
KeyAction
W / S+X / -X
A / D+Y / -Y
Q / E+Z / -Z
KeyAction
U / ORoll - / +
I / KPitch - / +
J / LYaw - / +
Step Size Gripper
KeyAction
1Set linear step (mm)
2Set angular step (deg)
.Reset defaults (5 mm / 2°)
KeyAction
XOpen
CClose
VSet position (mm)
Points Controls
KeyAction
BSave current position
GGo to saved point
HDelete saved point
POpen points explorer
RRename saved point
KeyAction
FFreedrive (OFF → ALL → XYZ)
MToggle frame (BASE / TOOL)
NGo To mode (Cartesian / Joint)
TOrient TCP down (180°)
ESCExit

Position the robot (keys or freedrive), press B to save, and the point is stored in your points.db. Load that same file in your code and you're ready to go.


Connecting to the Robot

Direct

from urkit import URRobot, ROBOTIQ_HAND_E

robot = URRobot(ip="172.31.1.200", points="points.db", gripper=ROBOTIQ_HAND_E)

Set default motion speeds or RTDE frequency:

robot = URRobot(
    ip="172.31.1.200",
    points="points.db",
    gripper=ROBOTIQ_HAND_E,
    default_vel=0.5,    # m/s
    default_acc=0.3,    # m/s²
    rtde_frequency=500, # Hz (default: 125)
)

From Config

Store your config in a config.yaml:

robot_ip: 172.31.1.200
points_path: points.db
gripper: hand-e
default_vel: 0.5
default_acc: 0.3
rtde_frequency: 125

Then load it:

robot = URRobot.from_config("config.yaml")
robot = URRobot.from_config("config.yaml", ip="10.0.0.50")  # override IP

Gripper Presets

Three built-in presets: pick one and it handles mass, CoG, TCP offset, and backend:

Preset Description
ROBOTIQ_HAND_E Robotiq 2F-140-E (Hand-E series)
ROBOTIQ_2F_85 Robotiq 2F-85
ROBOTIQ_2F_140 Robotiq 2F-140

Or look up presets programmatically:

from urkit import PRESETS

preset = PRESETS["HAND-E"]  # GripperPreset object

Call activate() before using the gripper: it resets and calibrates. You decide when:

robot.gripper.activate()  # required before open/close (Robotiq only)
robot.gripper.is_activated()  # check activation state (Robotiq only)

robot.gripper.open()              # fully open (blocking by default)
robot.gripper.close()             # fully closed, stops on contact
robot.gripper.open(wait=False)    # non-blocking return
robot.gripper.set_position(20)    # 20mm open (Robotiq only, 0 = closed)
robot.gripper.set_force(50)       # grip force: 0-100
robot.gripper.set_speed(80)       # movement speed: 0-100
robot.gripper.deactivate()        # deactivate (Robotiq only)

Override preset values for custom fingers:

robot = URRobot(ip="172.31.1.200", points="points.db", gripper=ROBOTIQ_HAND_E, max_mm=120)

Digital I/O Grippers

For suction cups, solenoids, or custom actuators:

from urkit import URRobot, DigitalGripperConfig

# Digital grippers are on/off: no activate(), set_position(), or set_force()
robot = URRobot(
    ip="172.31.1.200",
    points="points.db",
    gripper=DigitalGripperConfig(pin=3),
)

robot.gripper.open()    # turn pin off (release)
robot.gripper.close()   # turn pin on (grab)

Working with Points

Points are managed through the robot object. Save positions with the teach pendant CLI, then reference them by name in your code.

The points database is optional — you can create a robot without one and set it later:

robot = URRobot(ip="172.31.1.200")  # no points database
robot.points_db = "points.db"       # attach later
robot.points_db = None              # or remove it

Without a points database, moving to raw poses (move_to([x, y, z, ...])) and telemetry still work. Calling move_to("name") or save_point() will raise PointError.

Moving to Points

# Linear move (default): straight line in Cartesian space
robot.move_to("pick")

# Joint move: faster, robot picks shortest path in joint space
robot.move_to("pick", linear=False)

# Override velocity (m/s) and acceleration (m/s²) for a single move
robot.move_to("pick", vel=1.0, acc=0.5)

Moving to Raw Poses

Skip the database and move to a raw TCP pose:

# [x, y, z, rx, ry, rz] in meters and radians
robot.move_to([0.5, 0, 0.3, 0, 0, 0])
robot.move_to([0.5, 0, 0.3, 0, 0, 0], linear=False)

Offsets

Apply an offset to any point without creating a new saved point:

# offset=[dx, dy, dz, droll, dpitch, dyaw]: meters and radians
robot.move_to("pick", offset=[0, 0, 0.05, 0, 0, 0])  # 5cm above pick
robot.move_to("pick", offset=[0.02, 0, 0.1, 0, 0, 0])  # 2cm forward, 10cm up

Coordinate Frame (BASE / TOOL)

Offsets and relative moves use a coordinate frame to determine the direction of movement. The robot has a default frame (BASE by default) that can be changed at any time:

from urkit import MoveFrame

# Set the default frame for all offsets and relative moves
robot.move_frame = MoveFrame.TOOL

# Offset is now relative to the tool's current orientation
robot.move_to("pick", offset=[0, 0, 0.05])  # 5cm along tool Z

# Override per-call
robot.move_to("pick", offset=[0, 0, 0.05], frame=MoveFrame.BASE)
  • BASE (default): offset/delta is relative to the robot base. +X always moves along the base X axis.
  • TOOL: offset/delta is relative to the TCP orientation. +X moves along the tool's local X axis.

Point Management

# Save the current position
robot.save_point("here")

# List all saved points
names = robot.point_names()  # ["home", "pick", "place"]

# Rename a point
robot.rename_point("old", "new")

# Delete a point
robot.delete_point("old")

# Export / import points as JSON
robot.export_points("backup.json")
robot.import_points("backup.json")

# Access the points database directly
robot.points_db  # Points object (read-only)
robot.points_db = "other.db"  # swap to a different database

Relative Moves

Move relative to the current position:

# [dx, dy, dz, droll, dpitch, dyaw] in meters and radians
robot.move_relative([0, 0.01, 0, 0, 0, 0])  # 1cm along Y (base frame)
robot.move_relative([0, 0, 0.05], frame=MoveFrame.TOOL)  # 5cm along tool Z

Sequences with Blending

Move through multiple waypoints with corner blending:

# Move through waypoints, stopping at each one
robot.move_sequence(["a", "b", "c"])

# blend_radius rounds corners (in meters): robot doesn't stop at intermediate points
robot.move_sequence(["a", "b", "c"], blend_radius=0.02)

# Joint-space sequence with blending
robot.move_sequence(["a", "b", "c"], linear=False, blend_radius=0.05)

Advanced Motion

Contact Detection

Move until force contact is detected (Ctrl+C to stop):

# Move down at 20mm/s until force changes by 5N (default threshold)
robot.move_until_contact([0, 0, -0.02, 0, 0, 0])

# Higher threshold for heavier contact
robot.move_until_contact([0, 0, -0.02, 0, 0, 0], threshold=10.0)

Velocity Control

Move at a constant velocity for a given duration:

# Move at constant velocity for a given duration (speedL under the hood)
robot.move_velocity([0, 0, -0.02, 0, 0, 0], duration=1.0)  # down at 20mm/s for 1s

Freedrive Mode

Enable manual robot manipulation:

from urkit import FreedriveMode

# Freedrive lets you manually push the robot: motion commands won't work while active
robot.enable_freedrive()              # all 6 axes free
robot.enable_freedrive(FreedriveMode.XYZ)      # linear axes only
robot.enable_freedrive(FreedriveMode.ROTATION) # rotation only
robot.disable_freedrive()             # always disable before sending motion commands

# Check if freedrive is active
robot.is_freedrive_active

Speed Control

# Emergency stop: halt all motion immediately
robot.speed_stop()

# Set speed slider (0.0–1.0): hardware-level velocity multiplier
robot.set_speed_slider(0.5)  # all motions run at 50% of their programmed speed

The speed slider is a hardware-level multiplier applied by the UR controller itself — it's the same mechanism as the physical slider on the teach pendant.

  • Velocity is scaled: actual_velocity = vel * slider_factor
  • Acceleration is NOT independently scaled — the raw acc value is passed through, but the controller constrains ramp-up to the capped velocity ceiling
  • Global & persistent — stays until you change it or the robot faults/resets
  • Affects all motion commands: moveJ, moveL, trajectory, delta moves, velocity control
# Example: 0.5 slider × 1.0 m/s movej = 0.5 m/s actual speed
robot.set_speed_slider(0.5)
robot.movej([-1.0, -1.5, 1.5, -1.0, 1.0, 0.0], vel=1.0, acc=0.5)
# Inverse kinematics: pose → joint angles
joints = robot.inverse_kinematics([0.5, 0, 0.3, 0, 0, 0])

Telemetry

# Read real-time robot state
pose = robot.get_tcp_pose()           # [x, y, z, rx, ry, rz]: meters/radians
joints = robot.get_joint_positions()  # [j0..j5]: radians
force = robot.get_tcp_force()         # [fx, fy, fz, mx, my, mz]: Newtons/Nm
mode = robot.get_robot_mode()         # "REMOTE_CONTROL", "SERVOING", etc.
scaling = robot.get_speed_scaling()   # actual vs programmed speed (0.0-1.0)
payload = robot.get_payload()         # configured payload mass (kg)
robot.is_protective_stopped()         # bool: robot hit something or was pushed
robot.is_emergency_stopped()          # bool: e-stop pressed

# Get current pose + joints as a dict
pos = robot.current_point()
print(pos["pose"])    # [x, y, z, rx, ry, rz]
print(pos["joints"])  # [j0, j1, j2, j3, j4, j5]

Digital I/O

# Set a single output (pins 0-7 standard, 8-15 configurable)
robot.set_digital_output(0, True)

# Set multiple outputs at once, or clear all
robot.set_digital_outputs({0: True, 1: False, 8: True})
robot.set_digital_outputs(False)

# Read inputs (pins 0-17, including tool pins 16-17)
robot.get_digital_input(0)
robot.get_analog_input(0)
robot.get_tool_input(0)

# Read outputs
robot.get_digital_output(0)
robot.get_analog_output(0)
robot.get_tool_output(0)

# Block until a digital input changes (useful for limit switches, sensors)
if not robot.wait_for_input(0, True, timeout=10.0):
    raise TimeoutError("Limit switch not triggered")

Advanced: Raw RTDE Access

URKit doesn't try to wrap everything. For advanced features like forceMode, servoJ, getActualCurrent, and more, access the raw ur_rtde interfaces:

# rtde_control and rtde_receive give you the full ur_rtde API
robot.rtde_control.moveUntilContact([0, 0, -0.02, 0, 0, 0])
robot.rtde_control.forceMode(...)
robot.rtde_control.servoJ(...)

# Read robot current, temperature, or anything ur_rtde exposes
robot.rtde_receive.getActualCurrent()

Full ur_rtde documentation: https://sdurobotics.gitlab.io/ur_rtde/


Connection Lifecycle

# Check if RTDE connection dropped
robot.connection_lost

# Reconnect RTDE after a drop
robot.reconnect_rtde()

# Disconnect and clean up
robot.disconnect()

Error Handling

from urkit import URKitError, RobotNotInRemoteModeError, RtdeRegisterConflictError

try:
    robot = URRobot(ip="172.31.1.200", points="points.db")
except RobotNotInRemoteModeError:
    print("Enable remote control on the teach pendant!")
except RtdeRegisterConflictError:
    print("Disable EtherNet/IP, PROFINET, or MODBUS!")
except URKitError as e:
    # Catch-all for any urkit error (connection, motion, gripper, etc.)
    print(f"Error: {e}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

urkit-0.1.0.tar.gz (83.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

urkit-0.1.0-py3-none-any.whl (76.9 kB view details)

Uploaded Python 3

File details

Details for the file urkit-0.1.0.tar.gz.

File metadata

  • Download URL: urkit-0.1.0.tar.gz
  • Upload date:
  • Size: 83.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for urkit-0.1.0.tar.gz
Algorithm Hash digest
SHA256 8b3d1ab3dde97a7eabe0455268da6daf0a0d5b79a6c8429a99931dc249e7de31
MD5 0483f36cf5ea882fa73d13d02a11fddd
BLAKE2b-256 de451acc08a72c0fa2568d3904ba766648c916415ac3a30693d99ce0e0cb265d

See more details on using hashes here.

Provenance

The following attestation bundles were made for urkit-0.1.0.tar.gz:

Publisher: publish.yml on rodolfo-verde/urkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file urkit-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: urkit-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for urkit-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 770e40c58c4890e7678ae725bad73dbaf1dcbb37e8740eb3d68199b854113f3a
MD5 88b2cfb401a80d4e8fb2d3df65ea5b7d
BLAKE2b-256 38885dea08519b2938364789b0a3d710b3f41743e07a94a4103bf99976fc10d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for urkit-0.1.0-py3-none-any.whl:

Publisher: publish.yml on rodolfo-verde/urkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page