Ubiquiti mFI mPower Project – Part 1
This year I upgraded the home monitoring suite in my house from a Wattson to a Splunk dashboard running on a tablet in the kitchen. The primary reason for doing this was that after getting the Tesla Powerwall, Wattson no longer was able to correctly state how much power was being imported/exported from the home until the battery was completely charged. The downside of getting rid of Wattson was that we relied on the Optiplugs to run the immersion and a radiator when there was excess power being sent to the grid. So I needed another solution to running the immersion on the rare days when the Powerwall will be completely charged and we’re exporting to the grid.
After a fair amount of time searching for a wireless plug with an API, I found the following plug https://wifiplug.co.uk/ that ticked all the boxes, but being the little bit paranoid I am, I didn’t really want a plug that could theorietically be controlled by anyone from the internet. Also, if that company went bust, how would I control the plug without their API gateway?
I then spent another handful of hours searching and came across the following blog https://blog.linitx.com/ubiquiti-mfi-mpower/ which happened to use a wifi plug that doesn’t rely on an internet connection and is from the same company that I use for my WiFi access points! The only problem is that unlike the wifiplug, this one doesn’t have an official API and there isn’t a UK plug version… But what the heck, at least it’d be an interesting project!
So I bought the European single socket version from wifi-stock.co.uk/. The next day I got a call from wifi-stock to check “I hand’t made a mistake and that I did realise it wasn’t a UK power socket” – that was nice and a good idea! 🙂
I also needed a UK to European adaptor and a European to UK adaptor to be able to use it in a UK socket and power a UK device. This makes the plug stick out quite far from the socket, but it is secure and doesn’t drop over time.
A couple of days later my plug arrived and I set about logging into the device as mentioned on the blog using ssh. That was suprisingly easy as it uses the default username and password that’s used on some of the other Ubiquiti devices – username:ubnt, password:ubnt. I spent a couple of hours poking around on the file system, making the lights blink on and off and tested out that it was possible to turn the plug on and off by echoing 1/0 to the relay
on
echo 1 > /proc/power/relay1
off
echo 0 > /proc/power/relay1
I also found the code for the web GUI on the plug /usr/www/mfi/power.cgi (the code behind this: http:///mfi/power.cgi). And that got me thinking…
I was originally going to control the plug from my server via the home monitoring application using ssh, but that means the Java app will have to invoke the ssh command and I’d prefer to have an API on the plug that I could call. I could write another cgi file like the power.cgi file, remove the session aspect and control the plug as Ubiquiti have done, but why bother! Ubiquiti has done all the leg work – I can just use their web app! 🙂
So I began playing with the power GUI and found that it was making POST and GET requests from the GUI to http:///sensors/1/ to fetch the current status and turn the plug on and off. Well that’s easy to control! After a bit of experimentation, these are the four curl commands I need.
Login
curl -v \
http://device-ip/login.cgi \
-d "uri=/sensors/1/&username=ubnt&password=ubnt&Submit=Login" \
-H "Content-Type: application/x-www-form-urlencoded;"
You will get an AIROS_SESSIONID back which needs to be put in as a cookie header in the following curl requests.
Get plug data
curl -v \
http://device-ip/sensors/1/ \
-H "Cookie: AIROS_SESSIONID=015152b0143a0267f8f0ae30fcb42f6f"
Plug off
{
"sensors": [{
"state": {
"output":1,
"power":0.0,
"energy":0.0,
"enabled":0,
"current":0.0,
"voltage":0.0,
"powerfactor":0.0,
"relay":0,
"lock":0
}
}],
"status":"success"
}
Plug on
{
"sensors": [{
"state": {
"output":1,
"power":0.0,
"energy":0.0,
"enabled":0,
"current":0.0,
"voltage":0.0,
"powerfactor":0.0,
"relay":1,
"lock":0
}
}],
"status":"success"
}
Switch the plug off
curl -v \
-X PUT \
http://device-ip/sensors/1/ \
-H "Cookie: AIROS_SESSIONID=015152b0143a0267f8f0ae30fcb42f6f" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "output=0"
{"status":"success"}
Switch the plug on
curl -v \
-X PUT \
http://device-ip/sensors/1/ \
-H "Cookie: AIROS_SESSIONID=015152b0143a0267f8f0ae30fcb42f6f" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "output=1"
{"status":"success"}
Output and enabled on
The above is only controlling the output field but on the GUI you will notice there are two fields, output and enabled. Switching enabled on gives stats about the plugs energy usage but it’s not required to control the device.
To switch the plug on with output and enabled on, simply run
curl -v \
-X PUT \
http://device-ip/sensors/1/ \
-H "Cookie: AIROS_SESSIONID=015152b0143a0267f8f0ae30fcb42f6f" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "output=1&enabled=1"
{"status":"success"}
If you then request the plug data…
curl -v \
http://device-ip/sensors/1/ \
-H "Cookie: AIROS_SESSIONID=015152b0143a0267f8f0ae30fcb42f6f"
… you would get something similar to the following response:
{
"sensors": [{
"state": {
"output": 1,
"power":958.341251254,
"energy":44.0625,
"enabled":1,
"current":4.023638963,
"voltage":238.905914783,
"powerfactor":0.99695206,
"relay":1,
"lock":0
}
}],
"status":"success"
}
In the next part I’ll go through how I controled the plug from Java using the APIs above.
Please enable the Disqus feature in order to add comments