Or function with current state node

I do have a flow in Nodered cheking who is at home by the current state node and device-tracker entitie:

There are more then one devicetracker per person. one from mobile app and one from my router.
Sometimes one off the two is not recognizing somebody is home.
Is it possible to do a “or” test with current state on both device-trackers?
So if one device tracker says home, the person is known as home?

I usually make “or” as a parallell lines then put a limit node after.

So add as many current state nodes as you like and connect them all to the same inject node, then connect all current state nodes to one delay node and set it up to something like this:


(I forgot to tick the “Drop intermediate messages” box)

This will make sure only one message passes the delay node.

That way if one or more of the current state nodes is “true”, then only one message will pass the delay node.

Thanks, A smart solution