Hi James, Thank you for replying.
What I want to do it watch for specific tallies turning on and off, and when those tallies change state, I want to issue a rosstalk string.
What I meant by 'loads of keys' is that at the moment, I have a single key, that will wait for a tally to be triggered, issue the 'tally-on' command, wait for the tally to clear, and then issue the 'tally-off' command, so I have a proof of concept, but it's not something I can nicely expand.
So as an example of what i want to achieve:
Tally 1 Red On: rosstalk.sendMessage("$IP1", $PORT1, "MONITOR $AB:\nBorder: red\n\n", null);
Tally 1 Red Off: rosstalk.sendMessage("$IP1", $PORT1, "MONITOR $AB:\nBorder: none\n\n", null);
Tally 2 Red On: rosstalk.sendMessage("$IP2", $PORT2, "MONITOR $AB:\nBorder: red\n\n", null);
Tally 2 Red Off: rosstalk.sendMessage("$IP2", $PORT2, "MONITOR $AB:\nBorder: none\n\n", null);
Tally 3 Red On: rosstalk.sendMessage("$IP3", $PORT3, "MONITOR $AB:\nBorder: red\n\n", null);
Tally 3 Red Off: rosstalk.sendMessage("$IP3", $PORT3, "MONITOR $AB:\nBorder: none\n\n", null);
I hope that makes sense.
Cheers
James
#DashBoard