diff --git a/function/rbe/README.md b/function/rbe/README.md index e7475bf5..c9a5da06 100644 --- a/function/rbe/README.md +++ b/function/rbe/README.md @@ -18,6 +18,9 @@ Usage A simple node to provide report by exception (RBE) and deadband function - only passes on data if it has changed. +This works on a per **msg.topic** basis. This means that a single rbe node can +handle multiple topics at the same time. + ###RBE mode Outputs the **msg** if the **msg.payload** is different to the previous one. diff --git a/function/rbe/package.json b/function/rbe/package.json index 5add0be8..a0dde101 100644 --- a/function/rbe/package.json +++ b/function/rbe/package.json @@ -1,6 +1,6 @@ { "name" : "node-red-node-rbe", - "version" : "0.0.4", + "version" : "0.0.5", "description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.", "dependencies" : { }, diff --git a/function/rbe/rbe.html b/function/rbe/rbe.html index 2476fa95..9788b4b7 100644 --- a/function/rbe/rbe.html +++ b/function/rbe/rbe.html @@ -38,6 +38,8 @@ different to the previous one. Works on numbers and strings.

In deadband mode the incoming payload should contain a parseable number and is output only if greater than + or - the band gap away from the previous output.

+

Note: This works on a per msg.topic basis. This means that a single rbe node can +handle multiple topics at the same time.