Hi,
I want make test with the volumio’s websocket server.
I install volumio on raspberry pi B, the pi is in a local network on 192.168.xx.xx.
i want run a python script to connect to the volumio websocket server.
import socketio
# standard Python
sio = socketio.Client()
@sio.event
def connect():
print("I'm connected!")
sio.connect('http://192.168.xx.xx:3000')
sio.wait()
when I run script, I have an error with connection.
i read WebSocket APIs - Volumio Documentation, but i didn’t found the information about connection.
could you help me?