In this tutorial, we are going to control Christie Widget Designer link with python udp messaging protocol.
Note for user
As there are not official support for Open Sound Control (OSC) in Widget Designer. The resources in this tutorial will leverage on UDP messaging as a workaround. Communication between OSC and UDP can still be maintain with some translate to embed/de-embed OSC/UDP messages.
graph LR
A[Raspberry Pi<br>or<br>Computer] --LAN--> B[Christie Widget Designer]
B --> C[Christie Pandora Box]
- Edit the IP Address / Port Number to the respective Widget designer Host Computer (
line 5 and 6
) inudpmessage.py
UDP_IP = "192.168.0.100"
UDP_PORT = 10066
- Edit the message to embed (
line 11
) inudpmessage.py
MESSAGE= "Hello There!"
- Run python file
python udpmessage.py
or
python3 udpmessage.py
- Edit the port number for the UDP server to listen to (
line 6
) inudpserver.py
server_port = 10096
- Run
udpserver.py
python udpserver.py
or
python3 udpserver.py