node-red-contrib-openhab-v2

2.0.3 • Public • Published

Build Status Known Vulnerabilities

node-red-contrib-openhab-v2

Table of contents

alt text

Important

28-03-2020: The node-red-contrib-openhab-v2 node has been completely rebuilt. Several annoying bugs were squashed, obsolute and redundant code was removed and the configuration UI has had an overhaul. As a result this version (2.0.0 and upwards) is not backwards compatible with your existing flows. Keep this in mind when you upgrade and always make backups of your existing flows and configuration.

Description

Nodes facilitating automation of OpenHAB ( http://www.openhab.org ) items with Node-RED ( http://nodered.org ).

Installation

You can install this NodeRED node via the NPM repository using the NodeRED admin interface (Manage palelette >> Install).

These steps are required for a manual installation:

$ cd ~/.node-red
$ npm install node-red-contrib-openhab-v2

Development

To develop or contribute to this repository please perform the folowing steps. *

$ docker run -d -p 1880:1880 --name nodered -v <PWD>:/data nodered/node-red
$ mkdir -p ./nodes
$ cd ./nodes
$ git clone https://github.com/QNimbus/node-red-contrib-openhab-v2.git # !! If you want to submit a PR - use your forked repository here !!
$ docker exec -it --user root --workdir /data/nodes/node-red-contrib-openhab-v2 nodered yarn install **
$ docker restart nodered

* This guide assumes running NodeRED as a Docker container
** On windows you may need to escape the '/' character by prepending another (e.g. '//'). When using Git Bash also add winpty before the Docker command

Nodes

openhab-v2-controller

Configuration node for communication with an OpenHAB controller.

Configuration:

  • Name : Specify a name for the configuration node
  • Protocol : "http" or "https"
  • Host : Specify the hostname or ip address
  • Port : (Optionally) Specify the ip port
  • Path : (Optionally) Specify the additional base path
  • Username : (Optionally) Specify the username to authenticate
  • Password : (Optionally) Specify the password to authenticate
  • Raw events : Enables/disabled the emitting of raw events (currently disabled, see issue #1)
openhab-v2-in

Listens to state changes of a selected OpenHAB Item. Will only watch for selected event types for the 1st output channel. The 2nd channel (Raw events) are all passed into the flow without filtering for specific event types.

Configuration:

  • Name : (Optionally) Specify a name
  • Controller : OpenHAB controller to use for monitoring item(s)
  • Item name : Item to monitor
  • Even types : Listen to the selected event types.
  • Startup output : Whether or not to emit state at start of flow.
  • Store state : Store the item state in the flow context

Messages injected in NodeRED flows (2 output channels):

Output 1 (StateEvent):

  • msg.item : Item name
  • msg.topic : "StateEvent"
  • msg.payload : New state of the selected item

Output 2 (RawEvent):

  • msg.item : Item name
  • msg.topic : "RawEvent"
  • msg.payload : Raw (unprocessed) event of the selected item
openhab-v2-out

Output a message to the openab-v2-controller. Can use an incomming message which can be overridden by the configured parameters on the node itself.

Configuration:

  • Name : (Optionally) Specify a name
  • Controller : Select OpenHAB controller
  • Item name : (Optionally) Item to send message to
  • Topic : (Optionally) Topic to use for message (e.g. ItemCommand or ItemUpdate)
  • Payload : (Optionally) Payload to use for message (e.g. ON, OFF, 50, etc)

Messages injected in NodeRED flows (1 input channel):

Input:

  • msg.item : Item name
  • msg.topic : (Optionally) "ItemCommand" or "ItemUpdate"
  • msg.payload : (Optionally) State to send to the item
openhab-v2-trigger

To do....

Readme

Keywords

Package Sidebar

Install

npm i node-red-contrib-openhab-v2

Weekly Downloads

4

Version

2.0.3

License

MIT

Unpacked Size

251 kB

Total Files

55

Last publish

Collaborators

  • qnimbus