RadioRa2
Your startup command should be:
username\x0D\x0Apassword\x0D\x0A#MONITORING,255,1\x0D\x0A?DEVICE,
1,109,9\x0D\x0A
Typical ra keypad command
#DEVICE,9,7,3\x0D\x0A
(device, integrationid,button,press)
Feedback for keypad (find led state of button 7 above, LED is the
button number +80)
~(?i)DEVICE,9,87,9,(.*)
Request feedback from a dimmer
?OUTPUT,6,1\x0D\x0A
Parse feedback from same dimmer (you could set this to set the value
of an analog slider
~OUTPUT,6,1,(.*)\..*
Set dimmer to a specific level (you could assign the value of an
analog slider [sliderval])
#OUTPUT,6,1,[sliderval]\x0D\x0A
To do a keypad dimmer action you are going to want to create a macro
press dimmer button
#DEVICE,9,19,3\x0D\x0A
second macro command (wait 300ms)
#DEVICE,9,19,4\x0D\x0A
Set the repeat delay on the button in your gui interface that triggers
this to repeat every 325 ms.
When you send commands in succession to your ra2 repeater you should
do it at 50ms intervals. The RA repeater will ignore an incoming
command until it is done parsing the current command. 50ms is enough
time between commands.