squarefrog / homebridge-nefit-easy

Homebridge plugin for Nefit Easy™

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Homebridge Nefit Easy™ plugin

This is a plugin for Homebridge to allow controlling your Nefit Easy™ (aka Worcester Wave™, Junkers Control™) thermostat through iOS' HomeKit.

Uses the nefit-easy-commands module under the hood to communicate with the Nefit/Bosch backend.

Installation

This library requires Node.js 6.0.0 or later!

$ npm i homebridge-nefit-easy -g

Homebridge plugins need to be installed globally, so the -g is mandatory.

Configuration

First, you need a working Homebridge installation.

Once you have that working, edit ~/.homebridge/config.json and add a new accessory:

"accessories": [
    ...
    {
        "accessory" : "NefitEasy",
        "name"      : "thermostaat",
        "options"   : {
            "serialNumber" : "NEFIT_SERIAL_NUMBER",
            "accessKey"    : "NEFIT_ACCESS_KEY",
            "password"     : "NEFIT_PASSWORD"
        }
    }
]
  • The name will be the identifier that you can use, for example, in Siri commands;
  • Replace NEFIT_* with the correct values;
  • Any additional options get passed to the nefit-easy-core constructor.

Supported actions

  • Getting the current temperature
  • Getting the target temperature
  • Setting the target temperature

About

Homebridge plugin for Nefit Easy™


Languages

Language:JavaScript 100.0%