Hi James, maybe i missed this, but can i send tcp commands with vox ? For now i am using the EventGhost for do this, but will be awesome if i can send a tcp command directly using Vox.
In the EventGhost i am using the phyton code bellow:
import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("192.168.0.160", 4998))
s.send('sendir,5:3,1,39000,1,1,230,46,46,46,23,22,23,22,23,45,23,22,23,22,23,45,23,45,23,1152,115,45,46,46,23,22,23,22,23,45,23,22,23,22,23,45,23,45,23,1152,115,45,46,46,23,22,23,22,23,45,23,22,23,22,23,45,23,45,23,780"+"\r\n')
s.close()
I just need to send some commands for the GlobalCache, will be nice can do this using Vox(maybe setting the ip and port for each command, since this will depend of the device)
Thanks
Clayton