The rbe node has a mode "block if value change greater than".
(It also as a similar "greater or equal" mode, but here I am referring explicitly to the "greater than" mode only, without any "or equal" addition.)
I want to use it to let only messages pass that contain the same value as the previous incoming message. Therefore I configure the rbe node to "block if value change greater than" 0 "compared to last input value".
The effect is that the rbe node does not let any message pass, at all.
If I change the comparison for the value change from 0 to e.g. 0.000000000001, then it works as intended.
edit:
This is a minimal example demonstrating the problem, pasted as suggested below:
[{"id":"480ae6de.258fb","type":"tab","label":"Flow 2","disabled":false,"info":""},{"id":"5f7764b8.b5ffb4","type":"inject","z":"480ae6de.258fb","name":"","topic":"","payload":"0.5","payloadType":"num","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":90,"y":80,"wires":[["b852b54b.f343c8"]]},{"id":"b3b69bb1.4fa6","type":"inject","z":"480ae6de.258fb","name":"","topic":"","payload":"2.5","payloadType":"num","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":91.08332824707031,"y":139.41665649414062,"wires":[["b852b54b.f343c8"]]},{"id":"dc7c3ce7.aeed48","type":"debug","z":"480ae6de.258fb","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","x":430,"y":180,"wires":[]},{"id":"b852b54b.f343c8","type":"rbe","z":"480ae6de.258fb","name":"Block if value change > 0.0000000000000000000000001","func":"narrowband","gap":"0.0000000000000000000000001","start":"2.5","inout":"in","property":"payload","x":407.00001525878906,"y":111.83334350585938,"wires":[["dc7c3ce7.aeed48"]]},{"id":"d111d796.eca5b","type":"inject","z":"480ae6de.258fb","name":"","topic":"","payload":"0.5","payloadType":"num","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":90,"y":240,"wires":[["ed07bc1a.acaa38"]]},{"id":"ef05fc10.d1b778","type":"inject","z":"480ae6de.258fb","name":"","topic":"","payload":"2.5","payloadType":"num","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":91.08332824707031,"y":299.4166564941406,"wires":[["ed07bc1a.acaa38"]]},{"id":"ed07bc1a.acaa38","type":"rbe","z":"480ae6de.258fb","name":"Block if value change > 0","func":"narrowband","gap":"0","start":"2.5","inout":"in","property":"payload","x":307.00001525878906,"y":271.8333435058594,"wires":[["dc7c3ce7.aeed48"]]},{"id":"1f1f8b99.67968c","type":"comment","z":"480ae6de.258fb","name":"Blocks messages unless payload is the same as in previous received message","info":"","x":390,"y":40,"wires":[]},{"id":"dbef54fd.73e498","type":"comment","z":"480ae6de.258fb","name":"Should behave the same but does not","info":"","x":310,"y":320,"wires":[]}]
Is this a bug in the rbe node?