2015-01-23 14:34:10 +01:00
|
|
|
node-red-node-rbe
|
|
|
|
=================
|
|
|
|
|
2015-02-14 18:56:29 +01:00
|
|
|
A <a href="http://nodered.org" target="_new">Node-RED</a> node that provides
|
|
|
|
provides report-by-exception (RBE) and deadband capability.
|
2015-01-23 14:34:10 +01:00
|
|
|
|
|
|
|
Install
|
|
|
|
-------
|
|
|
|
|
|
|
|
Run the following command in the root directory of your Node-RED install
|
|
|
|
|
|
|
|
npm install node-red-node-rbe
|
|
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
2015-02-14 18:56:29 +01:00
|
|
|
A simple node to provide report by exception (RBE) and deadband function
|
|
|
|
- only passes on data if it has changed.
|
2015-01-23 14:34:10 +01:00
|
|
|
|
|
|
|
###RBE mode
|
|
|
|
|
2015-02-14 18:56:29 +01:00
|
|
|
Outputs the **msg** if the **msg.payload** is different to the previous one.
|
|
|
|
Works on numbers and strings. Useful for filtering out repeated messages of the
|
|
|
|
same value. Saves bandwidth, etc...
|
2015-01-23 14:34:10 +01:00
|
|
|
|
|
|
|
###Deadband mode
|
|
|
|
|
|
|
|
In deadband mode the incoming payload should contain a parseable *number* and is
|
2015-02-14 18:56:29 +01:00
|
|
|
output only if greater than + or - the *band gap* away from the previous output.
|
2015-01-23 14:34:10 +01:00
|
|
|
|
2015-02-14 18:56:29 +01:00
|
|
|
Will accept numbers, or parseable strings like "18.4 C" or "$500"
|