This commit is contained in:
chk
2026-03-09 19:29:46 +01:00
commit 0cd5c16ae2
583 changed files with 72518 additions and 0 deletions

11
pythonExample/example.py Normal file
View File

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