11 lines
151 B
Python
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
|
|
})) |