Using Node-Red
A text message is generated by some event within the system.
I have a flow to controls when and who gets notification and by which notification methods.
The conditions are
- if input_boolean.alert_mode=true then continue the flow.
- else only continue if msg.emergency=true
- if input_boolean.cast_mode=true then send to personal assistants
- else skip personal assistants but send to “people” (a group of device trackers)
The issue I keep running into is that when I check the “input_boolean.alert_mode=true” (using the current state node), I loose the flow.
Any Ideas?