Files
appRobotControlScara/pythonExample/example.py
2026-03-09 19:29:46 +01:00

11 lines
151 B
Python

import websocket
import json
ws = websocket.WebSocket()
ws.connect("wss://server:3000")
ws.send(json.dumps({
"type":"jog",
"axis":"x",
"value":10
}))