0.1.0 • Published 3 years ago

homebridge-deconz-security-sensors v0.1.0

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

homebridge-deconz-security-sensors

A Homebridge plugin to use deCONZ sensors and the homebridge-securitysystem plugin together

This plugin doesn't add any HomeKit accessories. It solely acts as a bridge between your deCONZ service and the homebridge-securitysystem Homebridge plugin.

Pre-requisites

Setup

$ npm install homebridge-deconz-security-sensors

Configuration

Parameters:

namedescription
platformMust be deCONZSecuritySensors. *Required
target.hostIP address (or hostname) of Security System server. *Required
target.portport of Security System server. *Required
target.codeauthentication pincode of Security System server. *Required
deconz.hostIP address (or hostname) of deCONZ rest-api. *Required
deconz.portport of deCONZ rest-api. *Required
sensorsShould contain one or more of the following keys: home, away or night,. *Required
sensors.homeIDs of the deCONZ sensors to trigger during home mode. *Optional
sensors.awayIDs of the deCONZ sensors to trigger during away mode. *Optional
sensors.nightIDs of the deCONZ sensors to trigger during night mode. *Optional

Configuration example:

{
  "platform": "deCONZSecuritySensors",
  "target": {
      "host": "192.168.0.7",
      "port": 8582,
      "code": 0123
  },
  "deconz": {
      "host": "192.168.0.7",
      "port": 443
  },
  "sensors": {
      "night": [
          23,
          24,
          27,
          28,
          32,
          33,
          34
      ],
      "away": [
          5,
          6,
          23,
          24,
          27,
          28,
          29,
          30,
          31,
          32,
          33,
          34
      ]
  }
}