We control a KIPRO with the following code in Dashboard tasks:
Play:
ogscript.asyncPost("http://" + params.getValue('kiPro1_IPAddress', 0) + "/config?action=set¶mid=eParamID_TransportCommand&value=1", null, null);
Stop:
ogscript.asyncPost("http://" + params.getValue('kiPro1_IPAddress', 0) + "/config?action=set¶mid=eParamID_TransportCommand&value=4", null, null);
Cue:
ogscript.asyncPost("http://" + params.getValue('kiPro1_IPAddress', 0) + "/config?action=set¶mid=eParamID_GoToClip&value=PredProRes2160.mov", null, null);
We have a param called "kiPro1_IPAddress" with the IP address of our kiPro. You could just type in the address directly instead.
If the HELO is similar, you'll probably just have to change the actual commands being sent.
#DashBoard