I've just changed my lighting over from Lutron to Rako and I'm looking at ways of controlling it. — Staff replied: “The samples for HTTP in the DDK provide a good template for commands like that to show you exactly what we point out here. In your case the issue is that you don't need any of the "GET //192.168.0.28:80" part.”
I've just changed my lighting over from Lutron to Rako and I'm looking at ways of controlling it. I've added and successfully have working custom command codes for RS232 and TCP but it's a bit long winded in that I have to pass several commands to change scene. Fortunately they allow control with HTTP which is a single command however I'm struggling to create the right custom commands as http is not my forte.
I'm coding it as;
<dict>
<key>codes</key>
<dict>
<key>CENTRES</key>
<string>GET //192.168.0.28:80/
rako.cgi?house=4&room=1&com=3</string>
<key>SEATING</key>
<string>GET //192.168.0.28:80/
rako.cgi?house=4&room=1&com=4</string>
<key>FADE SEATING</key>
<string>GET //192.168.0.28:80/
rako.cgi?house=4&room=1&com=5</string>
<key>OUTERS ONLY</key>
<string>GET //192.168.0.28:80/
rako.cgi?house=4&room=1&com=6</string>
<key>ALL OFF</key>
<string>GET //192.168.0.28:80/
rako.cgi?house=4&room=1&com=0</string>
</dict>
<key>method</key>
<string>http</string>
<key>brand</key>
<string>Rako</string>
<key>cat</key>
<string>Bridge</string>
<key>type</key>
<integer>12</integer>
</dict>
but it's not working. What have I missed or got drastically wrong?
Thanks
John