Core functionality to implementation communications with Nefit/Bosch backend.
Unless you're implementing a client yourself, this library is probably not what you're looking for.
$ npm i nefit-easy-core
The Nefit Easy™ smart thermostat is sold in The Netherlands by Nefit, a company owned by Robert Bosch GmbH.
The Easy can be controlled through apps for Android and iOS, which communicate with a Bosch-hosted backend using the XMPP protocol. This library aims to implement the communication protocol used between the apps and the backend.
Devices related to the Nefit Easy, like the Worcester Wave, the Junkers Control, the Buderus Logamatic TC100 and the Bosch Greenstar CT100, are probably also supported.
This library requires Node.js 4.0.0 or later.
$ npm install nefit-easy-core
$ git clone https://github.com/robertklep/nefit-easy-core
$ cd nefit-easy-core
$ npm install
nefit-easy-http-server
: an HTTP-to-XMPP bridge that allow projects that can't implement this library directly (for instance, if they aren't written in Javascript) to communicate, using an HTTP-based interface, with the Nefit Easynefit-easy-cli
: a command line interface tool to communicate with the Nefit Easybosch-xmpp
: a similar library that can be used to communicate with other Bosch devices (it supports the Nefit Easy, but also IVT, Junkers Bosch, Buderus and probably any Bosch EasyRemote-compatible controller)node-red-contrib-nefit-easy2
: a Node RED node to interact with the Nefit Easy (fork ofnode-red-contrib-nefit-easy
, which doesn't work anymore and its author has abandoned the project)
The implementation of this library is based on reverse-engineering the communications between the apps and the backend, plus various other bits and pieces of information. It is not based on any official information given out by Nefit/Bosch, and therefore there are no guarantees whatsoever regarding the safety of your devices and/or their settings, or the accuracy of the information provided.
All (asynchronous) methods return a promise that resolves to a plain object.
nefit-easy-core
uses debug
to provide some debug logging:
$ env DEBUG=nefit-easy-core node your-app.js
const Client = require('nefit-easy-core');
const client = Client({
serialNumber : NEFIT_SERIAL_NUMBER,
accessKey : NEFIT_ACCESS_KEY,
password : NEFIT_PASSWORD,
[ retryTimeout : Number ]
[ maxRetries : Number ]
});
A request is retried a few times (because the backend can only handle one request at a time, requests may get dropped when more than one client is active). The default is to retry every 2000 milliseconds (retryTimeout
) for a maximum of 15 times (maxRetries
).
client.get(uri : String) : Promise
This allows retrieving specific URI's from the backend.
A non-exhaustive list of URI's can be found here. And @marcelrv has done a great job of documenting a lot of endpoints, the results of which can be found here.
client.put(uri : String, data) : Promise
This allows writing values to specific URI's.