ioBroker integrates different smart home protocols into a single easy interface
Automation with JavaScript
You can read and write ioBroker objects manually, but you can also automate the process. ioBroker has three strategies for automation: Scenes (please do not confuse these with KNX scenes), Flows in Node-RED [5], and JavaScript. I'll focus on the most powerful of the three alternatives: writing your own small JavaScript programs.
The Scripts
tab takes you to the built-in JavaScript development environment in ioBroker. Pressing the New Script
icon creates an empty text file named Script1
in the common directory
. You can rename this file as desired. Before saving the empty file, check the Help output
box. In the built-in editor, you can start automating. To familiarize yourself with the JavaScript's ioBroker-specific extension, take a look at the documentation on GitHub [6].
The implementation of the previous automation example (TV button on remote control triggers the KNX Television
scene, which in turn switches an additional Hue light) is shown in Listing 1. Line 1 contains the most important component: The on()
statement defines a callback function that is used whenever the state of the harmony.0.Harmony-Hub.activities.currentActivity
object changes. The object's complete path specification results from the hierarchical arrangement in the object tree. The specified string can be obtained in the Object
view using the clipboard symbol above an object name.
Listing 1
KNX Television Scene
The function then determines the value of the currentActivity
object and displays it on the console together with its previous value for demonstration purposes. The switch()
statement in Line 12 considers different values of the activity, and Line 16 finally triggers the KNX Television
scene by writing to the corresponding ioBroker object using the setState()
function. The value 0
represents the KNX scene with the number 1 (the value is the scene number minus one). For the adapter to actually set the value, you first need to set a third parameter to false
. This sounds a bit illogical at first, but you'll find a detailed explanation on the ioBroker Wiki [7].
In the group monitor of the ETS software, you can see how the TV scene was triggered on the KNX side. The scene object with the KNX group address 15/4/8 receives the value 0
, which means that the program retrieves scene 1.
The second on()
statement in Line 21 also switches on the Hue pendant_lamp_front
when someone activates the KNX Television
scene. Of course, you could have packed the setState()
function call from Line 28 directly under the first setState()
call from the Harmony callback function. However, a separate callback function (as in Listing 1) has the advantage that the Hue lamp is switched on even if the KNX scene was not triggered via ioBroker.
Conclusions
With even a little knowledge of JavaScript, almost any smart home subsystem can be integrated into a larger whole via the ioBroker platform. This integration is possible because the ioBroker system provides a large number of available adapters and an ingenious object database. ioBroker is a top-ranking solution for cost-effective smart home networking within your own four walls.
Infos
- Project website: http://www.iobroker.net
- ioBroker SD images: http://www.iobroker.net/docu/?page_id=2563&lang=de
- KNX ETS software: https://www.knx.org/knx-de/software/uebersicht/index.php
- Philips Hue developers website: https://developers.meethue.com/documentation/core-concepts
- Node-RED homepage: http://www.nodered.org
- ioBroker JavaScript: https://github.com/IO-Broker/IO-Broker.javascript/blob/master/doc/en/javascript.md
- ioBroker status: https://github.com/IO-Broker/IO-Broker/wiki/Adapter-Development-Documentation#commands-and-statuses
« Previous 1 2 3
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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more and more Linux systems are getting targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.