Node Red group trigger

I am moving all my rules to NodeRed but have difficulties with one of them: group Items.

rule "Status change"
when
	Member of gStatus changed
then
	logInfo("Status Change Rule","Item Member " + triggeringItem.name + " changed to " + triggeringItem.state)
end

I’ve found an example in this forum but I cannot get them to work.
The members of gStatus are all string items that contain either Online or Offline.

I don’t have to log the result as in above example (debug is good enough).

Also I have tried both OpenHAB NodeRED nodes ( they differ slightly ) .

Any help greatly appreciated.

-ben

What was the example you tried? Was it this?

1 Like

I tried to use this : Node-RED as Alternative Rule Engine
Followed the example and changed the payload state to Online, output is in debug but no resuls.