Edimax SP-1101W

Hi there,

i am trying to get my Edimax Switches (WiFi Power-plugs) working with Roomie Remote.

There is a way to switch them via HTTP post message. The device could be powered on by url (smartplug.cgi) and the following XML script:

<?xml version="1.0" encoding="utf-8"?>

<Device.System.Power.State>ON</Device.System.Power.State>

So i tried to write this custom device script looking like:

brand
Edimax
cat
Switch
codes

POWERON
POST /smartplug.cgi

<?xml version="1.0" encoding="utf-8"?> ON .AUTH 1 FORMAT Username .AUTH 2 FORMAT Password method http type 1

But it does not work.
Could you please help me getting able to run this in Roomie Remote?!

Thanks in advance
Bastian

Looks like you’re missing a blank line before the XML header. Everything without a line before is going to become a header not body.

Thank you.

Thanks for your help!

Now it works with the following syntax:
PLUGON
POST /smartplug.cgi

        <?xml version="1.0"?>
        <SMARTPLUG id="edimax">
        <CMD id="setup">
        <Device.System.Power.State>ON</Device.System.Power.State>
        </CMD>
        </SMARTPLUG>
        </string>