2015-01-04 22:46:19 +01:00
|
|
|
node-red-contrib-heatmiser
|
|
|
|
==========================
|
|
|
|
|
|
|
|
A <a href="http://nodered.org" target="_new">Node-RED</a> node to control and poll a <a href="http://www.heatmiser.com/">HeatMiser</a> thermostat.
|
|
|
|
|
|
|
|
Install
|
|
|
|
-------
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
Run the following command in your Node-RED user directory - typically `~/.node-red`
|
2015-01-04 22:46:19 +01:00
|
|
|
|
|
|
|
npm install node-red-contrib-heatmiser
|
|
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
### Input node
|
2015-01-04 22:46:19 +01:00
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
Expects a `msg.payload` with a JSON object that contains settings for the Heatmiser thermostat
|
2015-01-04 22:46:19 +01:00
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
`msg.payload` can currently be either a heating boost option, or a run mode, as below:
|
2015-01-04 22:46:19 +01:00
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
#### Heating boost
|
2015-01-04 22:46:19 +01:00
|
|
|
|
|
|
|
{heating: {target: TARGET_TEMPERATURE, hold: MINUTES_TO_STAY_ON_FOR}}
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
#### Run mode
|
2015-01-04 22:46:19 +01:00
|
|
|
|
|
|
|
{runmode:"frost"}
|
|
|
|
{runmode:"heating"}
|
|
|
|
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
### Output node
|
2015-01-04 22:46:19 +01:00
|
|
|
|
|
|
|
Will read and send a status update at a configurable time interval. This is set to every 30 minutes by default.
|