mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
parent
e89861f4e3
commit
605c2b0fe2
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-rbe",
|
"name" : "node-red-node-rbe",
|
||||||
"version" : "0.1.12",
|
"version" : "0.1.13",
|
||||||
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
|
"description" : "A Node-RED node that provides report-by-exception (RBE) and deadband capability.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -54,7 +54,7 @@ module.exports = function(RED) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (Math.abs(n - node.previous[t]) > node.gap) {
|
else if (Math.abs(n - node.previous[t]) > node.gap) {
|
||||||
if (this.func === "deadband") {
|
if (this.func === "deadband" || this.func === "deadbandEq") {
|
||||||
if (node.inout === "out") { node.previous[t] = n; }
|
if (node.inout === "out") { node.previous[t] = n; }
|
||||||
node.send(msg);
|
node.send(msg);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user