Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Velleman K8055 Binding

Thomas E.-E edited this page Jun 16, 2014 · 5 revisions

This binding allows to use a Velleman k8055 USB IO Board with OpenHab.

Pre-requisites

This binding makes use of JNI calls to the native k8055 library and thus requires that the native library is available. The binding has been tested on Linux with the open-source libk8055 library. In principle it should also work on Windows with the Velleman provided DLL as it has the same API, however this has not yet been tested.

For the binding to access the native library correctly, the following conditions must be met:

  • The library must be installed somewhere in the library search path (in Linux, a system lib directory is fine; on Windows\system32 folder.
  • The JVM being used to run openhab must be the same 'bitness' as the library (i.e. 32bit/64bit). If using the Velleman provided Windows DLL, this means running on a 32bit JVM.

Binding configuration

Before configuring single items, the global device configuration needs to be set up in the openhab.cfg file.

 ################################# Velleman K8055 Binding ######################################  

 # refresh interval in milliseconds (optional, defaults to 1000ms)
 #k8055:refresh=1000

 # Board Number.
 #k8055:boardno=0

The k8055:refresh value is how often the binding should read the state of the hardware inputs.

The k8055:boardno value is which board openhab should connect to. This must be specified to enable the binding. Currently the binding only supports connecting to a single board.

Item Binding Configuration

In order to bind an item to the device, you need to provide configuration settings. The easiest way to do so is to add some binding information in your item file (in the folder configurations/items`). The syntax of the binding configuration strings accepted is the following:

k8055="<IO-type>:<IO-number>"

Where

  • IO-type is one of:

  • DIGITAL_IN - Supports Contact Items

  • DIGITAL_OUT - Supports Switch Items

  • ANALOG_IN - Supports Number Items

  • ANALOG_OUT - Supports Dimmer Items

  • IO-number is the number (1-8) of the particular IO channel to bind to.

Examples

Switch Output1 "Digital Output 1" { k8055="DIGITAL_OUT:1"}
Switch Output2 "Digital Output 2" { k8055="DIGITAL_OUT:2"}

Dimmer K8055_ANOUT_1 "K8055 Analog Output 1"   { k8055="ANALOG_OUT:1"}
Dimmer K8055_ANOUT_2 "K8055  Analog Output 2"  { k8055="ANALOG_OUT:2"}

Number K8055_ANIN_1 "K8055 Analog Input 1" { k8055="ANALOG_IN:1" } 
Number K8055_ANIN_2 "K8055 Analog Input 2" { k8055="ANALOG_IN:2" }

Troubleshooting

On some Linux distribution the user openhab is running as may not have permissions to access the USB ports by default. It is worth checking that the standalone command-line program (k8055) that comes with libk8055 works as the relevant user before attempting to use the binding. (Particularly as the driver outputs little useful debugging information to the logs).

Installation


User Interfaces


Community

(link to openHAB forum)

Development



Misc


Samples

A good source of inspiration and tips from users gathered over the years. Be aware that things may have changed since they were written and some examples might not work correctly.

Please update the wiki if you do come across any out of date information.

Use case examples

Collections of Rules on a single page

Single Rules

Scripts


Release Notes

Clone this wiki locally