Software:OpenHAB

From HandWiki

}}

open Home Automation Bus (openHAB)
OpenHAB logo 2.svg
Initial release2011
Repositorygithub.com/openhab
Written inJava
Operating systemLinux, Windows, Mac OS X, Unix, Solaris, OpenBSD, FreeBSD
TypeHome automation
LicenseEclipse Public License
Websitewww.openhab.org

open Home Automation Bus (openHAB) is an open source home automation software written in Java. It is deployed on premises and connects to devices and services from different vendors. As of 2019, close to 300 bindings are available as OSGi modules.[1] Actions, such as switching on lights, are triggered by rules, voice commands, or controls on the openHAB user interface. The openHAB project started in 2010. In 2013, the core functionality became an official project of the Eclipse Foundation under the name Eclipse SmartHome.[2] openHAB is based on Eclipse SmartHome and remains the project for the development of bindings. According to Black Duck Open Hub, it is developed by one of the largest open-source teams in the world.[3] It also has an active user community.[4]

Features

Installation and runtime

OpenHAB requires a JVM and can be deployed on servers running various operating systems, a dedicated Raspberry Pi instance, or some network-attached storage systems.[5][6] The required bindings can be added at runtime via OSGi. OpenHAB supports a number of persistence backends for storing and querying the smart home data, including relational and time series databases. By default openHAB uses rrd4j for persistence.[7]

Discovery and configuration

After installation, openHAB scans the local network and discovers devices that can be included in the smart home solution.[8] Users can provide credentials and meaningful device names via an administration user interface.

Things and Items

Since major version 2 of openHAB the connections to physical devices is split in 2 levels. "Things" are the interface elements to a specific physical device (e.g. an interface to a home automation network like KNX, Z-Wave or Zigbee). Within these things, one or more "Items" can then be defined or discovered. These "Items" correspond to one specific component like a relay controlling a light, the desired temperature of a heating system or a dimmer percentage.

Sitemaps

Sitemaps allow the user to determine how the devices in the smart home are arranged. A sitemap groups devices by floor and room and determines how they are visualized and controlled. The following example illustrates what a typical sitemap definition might look like:

sitemap demo label="My home automation" {
    Frame label="Date" {
        Text item=Date
    }
    Frame label="Demo" {
        Switch item=Lights icon="light"
        Text item=LR_Temperature label="Livingroom [%.1f °C]"
        Group item=Heating
        Text item=LR_Multimedia_Summary label="Multimedia [%s]" icon="video" {
            Selection item=LR_TV_Channel mappings=[0="off", 1="DasErste", 2="BBC One", 3="Cartoon Network"]
            Slider item=LR_TV_Volume
        }
    }
}

User interface

Once the system is configured, openHAB users can view data and perform actions using a number of user interfaces. These include a browser based interface as well as apps for Android, Windows 10, and iOS.[9][10][11] All of these UIs are defined by the sitemap mechanism.

Rules

An event, condition, action rule-based system is used to automate the smart home. The following example turns off a light once the sun rises at the configured location.

rule "Start wake up light on sunrise"
when
    Channel "astro:sun:home:rise#event" triggered
then
    switch(receivedEvent.getEvent()) {
        case "START": {
            Light.sendCommand(OFF)
        }
    }
end

openHAB Cloud

OpenHAB Cloud is a companion cloud service and backend for openHAB. It provides secure remote access and enables openHAB users to remotely monitor, control and steer their homes through the internet. The openHAB foundation provides a demo system without SLA guarantees.[12]

Version 3 improvements

In 2020, the code was forked for a major rework, separating to 2.5 version from the upcoming 3.0 branch.[13] Apart from some technical code changes (e.g. use of java 11), several functional improvements are foreseen:

  • the UI is unified, and pages (previously managed in sitemaps) are now managed in the openHAB designer.
  • User and group management will be available to control who can use specific parts of the UI.
  • Rules and scripts are extended and can be edited directly in the openHAB designer.

The main drawback is that backward compatibility to openHAB add-ons for version 1 is dropped.

Version 3.0 has been released as of 21 December 2020.[14]

Security

Many security and privacy concerns have been raised with home automation and IoT in general. OpenHAB's on-premises engine and open source character are answers to these concerns.[15] However, it was criticized for its use of default configurations.[16]

Reception

OpenHAB won the IoT Challenge 2013[17] and the JavaOne Duke's Choice Award 2013.[18] It was nominated for the JAX Innovation Award 2014[19] and was the People's Choice Winner at the Postscapes IoT Awards 2014/15.[20]

See also

References

  1. "openHAB Add-on Reference". openHAB Foundation e.V.. https://www.openhab.org/addons/. Retrieved 26 November 2019. 
  2. "Eclipse SmartHome - A Flexible Framework for the Smart Home". https://www.eclipse.org/smarthome/. Retrieved 26 November 2019. 
  3. "Project Summary: Factoids - Open Hub". Black Duck Software, Inc.. https://www.openhub.net/p/openhab/factoids. Retrieved 26 November 2019. 
  4. "About - openHAB Community". openHAB Foundation e.V.. https://community.openhab.org/about. Retrieved 26 November 2019. 
  5. "PINE A64 is a $15, 'high-performance' take on the Raspberry Pi". Engadget, Verizon Media. https://www.engadget.com/2015/12/09/pine-a64-64-bit-4k-maker-board/. Retrieved 26 November 2019. 
  6. "How to install openHAB 2 on Synology Diskstation". Smarthome Training. 8 March 2019. https://smarthome-training.com/en/how-to-install-openhab-2-on-synology-diskstation/. Retrieved 26 November 2019. 
  7. "Persistence" (in en-US). https://www.openhab.org/docs/tutorial/persistence.html#default-persistence. 
  8. "Thing Discovery" (in en-US). https://www.openhab.org/docs/concepts/discovery.html#background-discovery. 
  9. "openHAB - Apps on Google Play". Google Corporation. https://play.google.com/store/apps/details?id=org.openhab.habdroid&hl=en_US. Retrieved 26 November 2019. 
  10. "openHAB on the App Store". Apple Corporation. https://apps.apple.com/us/app/openhab/id492054521. Retrieved 26 November 2019. 
  11. "Get openHAB - Microsoft Store". Microsoft Corporation. https://www.microsoft.com/en-us/p/openhab/9nmq39ctwxgt?activetab=pivot:overviewtab. Retrieved 26 November 2019. 
  12. "Welcome to myopenHAB". openHAB Foundation e.V.. https://www.myopenhab.org/. Retrieved 26 November 2019. 
  13. Development of openHAB 3.0.0 and 2.5.x
  14. "openHAB 3.0 Release". openHAB Foundation e.V.. https://www.openhab.org/blog/2020-12-21-openhab-3-0-release.html. 
  15. "Smart-Home Gadgets Need a Translator Real Bad—Here's How to Get One". Wired. May 2016. https://www.wired.com/2016/05/smart-home-hubs-apps/. Retrieved 26 November 2019. 
  16. "1990s technology exposes 32,000 smart homes, businesses to exploit". ZDNet. August 2018. https://www.zdnet.com/article/32000-smart-homes-businesses-are-at-risk-of-data-leaks-due-to-flawed-mqtt-protocol/. 
  17. "Announcement: The winner of the IoT Challenge 2013!!". Jakajima B.V.. June 4, 2013. https://iotevent.eu/application-2/announcement-the-winner-of-the-iot-challenge-2013/. 
  18. "2013 Duke's Choice Awards". Archived from the original on 2014-01-13. https://web.archive.org/web/20140113160305/https://www.java.net//dukeschoice. Retrieved 2014-01-13. 
  19. "JAX Innovation Award Nomination". Software & Support Media GmbH. http://jaxenter.com/jax-innovation-awards-2014-spotlight-openhab-50089.html. Retrieved 26 November 2019. 
  20. "Postscapes IoT Awards 2014/15". Archived from the original on 2016-03-09. https://web.archive.org/web/20160309203723/http://postscapes.com/internet-of-things-award/2014/iot-open-source-project. Retrieved 2016-05-31. 

External links