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
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.