openhab-docs/developers/development/bindings.md

7.5 KiB

layout title
developersguide Developing bindings

{% include base.html %}

Developing a Binding for openHAB 2

This page describes the necessary steps in order to implement a new binding for openHAB 2.

Note: Please note that in contrast to openHAB 1.x, openHAB 2 is based on the Eclipse SmartHome project. So the APIs and concepts have changed, so please read this documentation carefully, if you are coming from openHAB 1.x development.

For information about code style and naming conventions, please see the coding guidelines.

Choosing a Namespace

As a first step, you need to decide in which namespace you want to develop your binding - assuming that you want to contribute it back to the community, you have two options:

  • You can choose org.eclipse.smarthome, if you want to directly contribute it to the Eclipse SmartHome project. The advantage of this option is that you make it available to a wider audience as your binding will also be available for other solutions than openHAB that are based on Eclipse SmartHome. The disadvantage is that the contribution process is stricter as it involves intellectual property checks and in general makes it harder or even impossible to include third-party libraries with copy-left licenses such as LGPL or code that you have written by reverse engineering some protocol.
  • You can choose org.openhab, if you want it to be used for openHAB only. This is the better option, if your binding is not interesting for other solutions, requires special libraries or has technical dependencies on openHAB specific things (although this should be avoided as much as possible).

Creating a Skeleton

For the openHAB namespace: Choose the option "openHAB 2 Add-ons" in your IDE setup, and go ahead and create a skeleton for your binding. For this, go into your git repository under git/openhab2-addons/addons/binding and call the script create_openhab_binding_skeleton.sh with a single parameter, which is your binding name in camel case (e.g. 'ACMEProduct' or 'SomeSystem'). When prompted, enter your name as author and hit "Y" to start the skeleton generation.

For the Eclipse SmartHome namespace: Choose the option "Eclipse SmartHome Extensions" in your IDE setup, and go ahead and create a skeleton for your binding. For this, go to git/smarthome/tools/archetypeand run mvn install in order to install the archetype definition in your local Maven repo. Now go to git/smarthome/extensions/binding and call the script create_esh_binding_skeleton.sh with a single parameter, which is your binding name in camel case (e.g. 'ACMEProduct' or 'SomeSystem'). When prompted, enter your name as author and hit "Y" to start the skeleton generation.

Now switch in Eclipse and choose File->Import->General->Existing Projects into Workspace, enter the folder of the newly created skeleton as the root directory and press "Finish".

Note: Here you can find a screencast of the binding skeleton creation.

Implement the Binding

The skeleton should give you an easy starting point for your developments. To learn about the internal structure and the concepts of a binding, please see the Eclipse tutorial on binding development.

Please especially note our coding guidelines, which must be respected for having pull requests approved. If you have any special dependencies of your code, please check the library recommendations at Eclipse SmartHome. This will ensure that everyone uses the same libraries for e.g. JSON and XML processing or for HTTP and websocket communication.

Setup and Run the Binding

To setup the binding you need to configure at least one Thing and link an Item to it. In your workspace in demo-resources/src/main/resources/things, you can define and configure Things in file with a *.things extensions. The following file defines a thing for the Yahoo Weather binding:

yahooweather:weather:berlin     [ location="638242" ]

In this example a Thing of the ThingType yahooweather:weather is defined with a configuration for the location.

Next you need to create Items and link them to the Channel of your binding. Here is the example of the Yahoo Weather binding:

Number Berlin_Temperature       "Temperature in Berlin [%.1f °C]"   { channel="yahooweather:weather:berlin:temperature" }
Number Berlin_Humidity          "Humidity in Berlin [%d %%]"        { channel="yahooweather:weather:berlin:humidity" }

The syntax for a channel link is { channel = "<binding-id>:<thing-type-id>:<thing-id>:<channel-id>" }.

If you start the openHAB runtime including the binding now (make sure that your binding is checked in the launch configuration dialog!), the code inside your ThingHandler implementation is executed.

Include the Binding in the Build and the Distro

Once you are happy with your implementation, you need to integrate it in the Maven build and add it to the official distro. For the Maven build, please add a new line in the binding pom.xml at the alphabetically correct position. To have the binding being picked up by the distro, you furthermore need to add it to the feature.xml, again at the alphabetically correct position. If you have a dependency on some transport bundle (e.g. upnp, mdns or serial), make sure to add a line for this dependency as well (see the other bindings as an example).

Before you create a pull request on Github, you should now run

mvn clean install

from the repository root to ensure that the build works smoothly. If it does, it is time to contribute your work!

Static code analysis

The Build includes Tooling for static code analysis that will validate your code against the openHAB Coding Guidelines and some additional best practices. Information about the checks can be found here.

The tool will generate an idividual report for each binding that you can find in .../your_binding_directory/target/code-analysis/report.html file and a report for the whole build that contains links to the individual reports in the ../openhab2-addons/target/summary_report.html. The tool categorizes the found issues by priority: 1(error),2(warning) or 3(info). If any error is found within your code the Maven build will end with failure. You will receive detailed information (path to the file, line and message) listing all problems with Prioriry 1 on the console:

...
[ERROR] Failed to execute goal org.openhab.tools:static-code-analysis:0.0.4:report (default) on project org.openhab.binding.example: Code Analysis Tool has found 1 error(s)!
[ERROR] Please fix the errors and rerun the build.
[ERROR] Errors list:
[ERROR] ERROR found by checkstyle: .binding.example.test/about.html:0 Missing about.html file.
[ERROR] Detailed report can be found at: file////path_to_openhab/openhab2-addons/addons/binding/org.openhab.binding.example/target/code-analysis/report.html
...

Please fix all the Priority 1 issues and all issues with Priority 2 and 3 that are relevant (if you have any doubt don't hesitate to ask). Re-run the build to confirm that the checks are passing.