Magic RDS 4 > Configuration Options and Possibilities
Magic RDS 4 task scheduler comamnds
(1/1)
davidmb:
Hello,
I have a question regarding task scheduler commands in Magic RDS 4.
(Encoder connected via UECP)
1. What is the correct command to update specific data to encoder - I can set it but cant seem to update it to encoder)
2. What is the correct command to change data set from 1 to 2 in the encoder?
Thanks you very much for your help in advance and br,
David
Jan:
This is a good and relevant question because the Task scheduler help is not finished yet.
The Magic RDS 4 supports several communication protocols and multiple connections. On the other side, it supports common control as well. As the result, is uses common ASCII equivalent commands for all models incl. UECP.
In your example (Data set change to 2) type following as the Task line:
--- Code: ---send connection:"*" command:"PROGRAM=2"
--- End code ---
This command will be translated to appropriate protocol for each connection (encoder). For the UECP, the output will be
<FE><00><00><00><02><1C><02><F9><D3><FF>
that's effectively MEC 1C ("Data set select") with value of 0x02.
You may specify Encoder address and Site address as well:
--- Code: ---send connection:"*" command:"PROGRAM=2" adr:3 site:4
--- End code ---
or if you want to send that to a specific connection (not to all):
--- Code: ---send connection:"connection_name" command:"PROGRAM=2"
--- End code ---
etc.
Complete list of commands is now available in the Terminal window under the "Set" button on the left side. We accept feature requests for the Task scheduler.
davidmb:
Hi.
Yes, that is exactly what I was looking for.
It works like a charm. :)
Thanks for your help and br, David
multiradio:
Hi Jan,
I'm successfully trying Magic RDS4 (with Thimeo ST encoder), but I have a problem I can't solve, despite reading nearly all of the information in the PDF help files.
I use In-House command to control some switch interfaces we use at the repeaters (send connection:"*" command:"IH=000000002002").
The interfaces need the command to be repeated 3 times within 10 seconds to be accepted and executed.
How can I send the command 3 times in a row with a single time trigger on the scheduler?
Thank you very much!
LB
Jan:
There are some methods:
To send three commands immediately
--- Code: ---send connection:"*" command:"IH=000000002002" command:"IH=000000002002" command:"IH=000000002002"
--- End code ---
To send three commands in 1 second interval
--- Code: ---send connection:"*" command:"IH=000000002002" delay:0
send connection:"*" command:"IH=000000002002" delay:1
send connection:"*" command:"IH=000000002002" delay:2
--- End code ---
Navigation
[0] Message Index
Go to full version