Mastering a power outage in the smart home
Another Sensor
On Amazon, I found another Z-Wave sensor by seven7express (Figure 10) that reports power outages very efficiently. It is implemented as a door sensor and reports closed
if the power is on and open
if not. It is connected to a power outlet via a charger/adapter, whereas the sensor itself has an internal battery that allows it to send signals to the hub via Z-Wave if the wall socket stops supplying power.

The device worked right off the bat. The Groovy script in Listing 2 implements the logic for controlling it. In the preferences
section, the hub looks for sensors with the capability.contactSensor
property and offers the user the newly installed power sensor, among other things, to select from when you launch the app. Line 26 obtains a subscription to the contact
event, which the hub triggers each time the sensor transitions from open
to closed
and vice versa. The script thus notices power outages with only one- or two-second delays and logs them in lines 31 and 33.
Listing 2
power-sensor.groovy
Hello User!
Once the SmartApp determines that the power has gone, it uses the Prowl Web API, as described in a previous article [7], to notify the user who has installed the Prowl app on their cell phone. Listing 3 plants the API key required by Prowl, which registered users can pick up from the website [8] after purchasing the app for $3.
Listing 3
prowl.groovy
The prowl()
function expects a message (Power outage!
or Power back!
) passed in, sets the event field with it, and adds the name of the sending app and a short explanation so the receiver knows where the message came from. In the try
block, httpGet
then issues the web request and checks whether the outcome is good or bad, and log.debug
logs the message for later error analysis. Prowl is a simple and efficient service that works both on iOS and Android (Figure 11).
Web Access
If you enable the slightly hidden OAuth section when setting up the SmartApp on the SmartThings website, you will receive an OAuth token after an OAuth token dance (e.g., via the CPAN OAuth::Cmdline module; Figure 12); you can then access the running SmartApp from the Internet via a web API. The mappings
section of the SmartApp code in Listing 4 defines the entry points of the web API and the actions assigned to them. The checkPower()
function defined in lines 9-13 then reads the current state of the sensor on demand and returns the result as a map, which the web API then returns to the web client in JSON format.
Listing 4
webapi.groovy
Figure 13 shows the query using a curl
client at the command line. First, it asks for the location of the endpoints
stating the API token (i.e., the complete URL under which a registered user can find their SmartApps). Armed with this URL, the client can access the entry points defined in the code (in this example, /power
) and receive JSON-formatted output in return (e.g., the value in the power
field is ok
or not ok
).
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.