Getting started

EN KO

Windows setup

Create and activate a virtual environment:

py -3 -m venv .venv
./.venv/Scripts/Activate.ps1
python -m pip install --upgrade pip
pip install -r ./backend/requirements.txt

Start the web interface:

python ./run_dashboard.py

Open the browser UI:

http://127.0.0.1:8008

Single-source configuration

Edit only app_config.py for the robot IP and the default RTDE setup.

ROBOT_HOST = "192.168.163.128"
ROBOT_FREQUENCY_HZ = 125.0
ROBOT_MODEL = "ur5e"
ROBOT_FIELDS = [
    "timestamp",
    "actual_q",
    "actual_TCP_pose",
]