Toggle switch as trigger in Node-Red

Hi, I’m using Home Assistant with Z-wave devices. I would like to transfer my automations from yaml to Node Red but get stuck on something relatively small I think :slight_smile:

I have a physical push-button triggering a Fibaro switch, a second S2 toggle switch available on a dimmer. This S2 switch has an entity_id (in my case ligh.lamp_spot_links_2_5) and different event id’s for pressing 1x, 2x, etc. Pressing 1 time gives an entry in my log as event 26. Pressing twice is event 24.

In Node Red I would like such an event to turn lights on and off. For example; pressing 1x (event 26) and a few lights turn on. pressing the physical button twice (event 24) triggers a completely different scene.

Any idea how to get this trigger setup in Node Red?
Thnx for helping out and your advice!

Paul

I haven’t yet worked with it by myself, but as far as I know, you can use events from homeassistant as a trigger in node red…

Isn’t that what you need?
grafik

Is the event ids actually listed in the switch entity or do they just show in the log?
If it is listed on the switch entity, then you can use a events: state node.
If not then it is on the HA event bus and you need to catch it with an events: all node

Set the node up and set a debug node with output set to complete msg object to see what is coming in.

You probably need to limit the events on the events: all node to a specific event type.
You can see some of the event type in the right side of the HA Developer Tools → Events

1 Like

Thnx for this. The event is nog listed in the switch entity. But with the ‘listen to events’ as you describe, I was able to catch the event;

event_type: zwave_js_value_notification
data:
domain: zwave_js
node_id: 15
home_id: 3936270206
endpoint: 0
device_id: 83189e7efd0bb52de731951b17abcfa0
command_class: 43
command_class_name: Scene Activation
label: null
property: sceneId
property_name: sceneId
property_key: null
property_key_name: null
value: 24
value_raw: 24
origin: LOCAL
time_fired: “2022-10-31T14:56:52.007886+00:00”
context:
id: 01GGQ8Q6S7QXHX0EWB8P293EM9
parent_id: null
user_id: null

Now I need to see how to get this into the Node Red ‘Events all’ :sweat_smile:

I hoped it was as easy as this;

image

Just listen for all Z-Wave events and then filter them first for the Node, followed by a filter for the actual button pressed or held. This is my flow for 2 Aeon Minimotes:

[{"id":"517fdee9.58db","type":"tab","label":"Aeon Minimote Buttons","disabled":false,"info":""},{"id":"7db58cb4.41ff04","type":"server-events","z":"517fdee9.58db","name":"Listen for Any ZWave Scene Activated","server":"8be923df.d66f9","version":2,"eventType":"zwave_js_value_notification","exposeToHomeAssistant":false,"haConfig":[{"property":"name","value":""},{"property":"icon","value":""}],"waitForRunning":true,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"eventData"},{"property":"topic","propertyType":"msg","value":"$outputData(\"eventData\").event_type","valueType":"jsonata"},{"property":"event_type","propertyType":"msg","value":"$outputData(\"eventData\").event_type","valueType":"jsonata"}],"x":170,"y":20,"wires":[["b843a8bb.69f7d8"]]},{"id":"b843a8bb.69f7d8","type":"switch","z":"517fdee9.58db","name":"Filter on Node 13 (Minimote 1) or Node 40 (Minimote 2)","property":"payload.event.node_id","propertyType":"msg","rules":[{"t":"eq","v":"13","vt":"str"},{"t":"eq","v":"40","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":270,"y":75,"wires":[["e81e566f.0c0b18","77891b7.90936e4","fc5c90ed.4dccf","26eb5dc4.e794b2"],["77891b7.90936e4","e81e566f.0c0b18","fc5c90ed.4dccf","26eb5dc4.e794b2"]]},{"id":"e81e566f.0c0b18","type":"switch","z":"517fdee9.58db","name":"Filter on button 2 (3=pressed & 4=held)","property":"payload.event.value","propertyType":"msg","rules":[{"t":"eq","v":"3","vt":"str"},{"t":"eq","v":"4","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":220,"y":235,"wires":[["85edac88.31705"],["2f9e5919.b5fc26"]]},{"id":"85edac88.31705","type":"api-call-service","z":"517fdee9.58db","name":"Lamp 2 Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.lamp_2_on_off"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":640,"y":240,"wires":[[]]},{"id":"77891b7.90936e4","type":"switch","z":"517fdee9.58db","name":"Filter on button 1 (1=pressed & 2=held)","property":"payload.event.value","propertyType":"msg","rules":[{"t":"eq","v":"1","vt":"str"},{"t":"eq","v":"2","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":220,"y":160,"wires":[["6d287a15.0cd1a4"],["c9a8aea3.f6408"]]},{"id":"6d287a15.0cd1a4","type":"api-call-service","z":"517fdee9.58db","name":"Lamp 1 Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.lamp_1_on_off"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":640,"y":120,"wires":[[]]},{"id":"fc5c90ed.4dccf","type":"switch","z":"517fdee9.58db","name":"Filter on button 3 (5=pressed & 6=held)","property":"payload.event.value","propertyType":"msg","rules":[{"t":"eq","v":"5","vt":"str"},{"t":"eq","v":"6","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":220,"y":375,"wires":[["7348ba72.7f3f64"],["d0985322.4a32a"]]},{"id":"26eb5dc4.e794b2","type":"switch","z":"517fdee9.58db","name":"Filter on button 4 (7=pressed & 8=held)","property":"payload.event.value","propertyType":"msg","rules":[{"t":"eq","v":"7","vt":"str"},{"t":"eq","v":"8","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":220,"y":435,"wires":[["7a295e39.13b1d"],["7c84b496.2c080c"]]},{"id":"7348ba72.7f3f64","type":"api-call-service","z":"517fdee9.58db","name":"Lamp 3 Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.lamp_3_on_off"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":640,"y":360,"wires":[[]]},{"id":"7a295e39.13b1d","type":"api-call-service","z":"517fdee9.58db","name":"Wall Sconce Lights Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.wall_sconces"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":670,"y":460,"wires":[[]]},{"id":"2f9e5919.b5fc26","type":"api-call-service","z":"517fdee9.58db","name":"Lamp 2 Brightness=100","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_2_on_off"],"data":"{\"entity_id\":\"light.lamp_2_on_off\",\"brightness_pct\":100}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":670,"y":280,"wires":[[]]},{"id":"c9a8aea3.f6408","type":"api-call-service","z":"517fdee9.58db","name":"Lamp 1 Brightness=100","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_1_on_off"],"data":"{\"entity_id\":\"light.lamp_1_on_off\",\"brightness_pct\":100}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":670,"y":180,"wires":[[]]},{"id":"d0985322.4a32a","type":"api-call-service","z":"517fdee9.58db","name":"Lamp 3 Brightness=100","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_3_on_off"],"data":"{\"entity_id\":\"light.lamp_3_on_off\",\"brightness_pct\":100}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":670,"y":420,"wires":[[]]},{"id":"7c84b496.2c080c","type":"api-call-service","z":"517fdee9.58db","name":"Wall Sconce Lights Brightness=100","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.wall_sconces"],"data":"{\"entity_id\":\"light.wall_sconces\",\"brightness_pct\":100}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":700,"y":520,"wires":[[]]},{"id":"8be923df.d66f9","type":"server","name":"homeassistant","version":5,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"","connectionDelay":false,"cacheJson":false,"heartbeat":false,"heartbeatInterval":"","areaSelector":"friendlyName","deviceSelector":"friendlyName","entitySelector":"friendlyName","statusSeparator":"at: ","statusYear":"hidden","statusMonth":"short","statusDay":"numeric","statusHourCycle":"h23","statusTimeFormat":"h:m","enableGlobalContextStore":true}]

Here’s another take on it using a switch node for Ikea zigbee remotes:

[{"id":"2a98f4071b357f84","type":"tab","label":"Ikea Remotes","disabled":false,"info":"","env":[]},{"id":"79997cf870cf6a5b","type":"comment","z":"2a98f4071b357f84","name":"Ikea Remotes","info":"","x":90,"y":40,"wires":[]},{"id":"9501fd83.119498","type":"server-events","z":"2a98f4071b357f84","name":"ZHA Events","server":"8be923df.d66f9","version":2,"eventType":"zha_event","exposeToHomeAssistant":false,"haConfig":[{"property":"name","value":""},{"property":"icon","value":""}],"waitForRunning":true,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"eventData"},{"property":"topic","propertyType":"msg","value":"$outputData(\"eventData\").event_type","valueType":"jsonata"},{"property":"event_type","propertyType":"msg","value":"$outputData(\"eventData\").event_type","valueType":"jsonata"}],"x":90,"y":180,"wires":[["1a32b491.3ad05b"]]},{"id":"1a32b491.3ad05b","type":"function","z":"2a98f4071b357f84","name":"IKEA Remotes","func":"var payload = msg.payload.event.command;\nvar device = msg.payload.event.device_ieee;\nvar eventarg = msg.payload.event.args[0];\n\nif (device == \"84:2e:14:ff:fe:18:5a:b9\" || \"0c:43:14:ff:fe:f6:b9:8c\" ){\n    if(payload == \"toggle\"){\n        msg.payload = \"power_button\";\n        return [msg];\n    }\n    if(payload == \"step_with_on_off\"){\n        msg.payload = \"up_button\";\n        return [msg];\n    }\n    if(payload == \"step\"){\n        msg.payload = \"down_button\";\n        return [msg];\n    }\n    if(eventarg == \"256\"){\n        msg.payload = \"right_button\";\n        return [msg];\n    }    \n    if(eventarg == \"257\"){\n        msg.payload = \"left_button\";\n        return [msg];\n    }    \n        if(payload == \"move_with_on_off\"){\n        msg.payload = \"up_button_hold\";\n        return [msg];\n    }\n    if(payload == \"move\"){\n        msg.payload = \"down_button_hold\";\n        return [msg];\n    }\n    if(eventarg == \"3328\"){\n        msg.payload = \"right_button_hold\";\n        return [msg];\n    }    \n    if(eventarg == \"3329\"){\n        msg.payload = \"left_button_hold\";\n        return [msg];\n    }\n        if(payload == \"release\"){\n        msg.payload = \"release\";\n        return [msg];\n    }\n    \n}else{\n    return;\n}\n\nreturn;\n\n\n\n\n","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":280,"y":180,"wires":[["c3aa5382.2ddda"]]},{"id":"c3aa5382.2ddda","type":"switch","z":"2a98f4071b357f84","name":"Routing","property":"payload","propertyType":"msg","rules":[{"t":"eq","v":"power_button","vt":"str"},{"t":"eq","v":"up_button","vt":"str"},{"t":"eq","v":"down_button","vt":"str"},{"t":"eq","v":"right_button","vt":"str"},{"t":"eq","v":"left_button","vt":"str"},{"t":"eq","v":"up_button_hold","vt":"str"},{"t":"eq","v":"down_button_hold","vt":"str"},{"t":"eq","v":"right_button_hold","vt":"str"},{"t":"eq","v":"left_button_hold","vt":"str"},{"t":"eq","v":"release","vt":"str"}],"checkall":"true","repair":false,"outputs":10,"x":460,"y":180,"wires":[["3b16e0a7f5831ee1"],["35dd60e9356aca5e"],["80656617dad6041d"],["5ee3f1eacf45fcf4"],["e3cd898034db92ac"],["e90101dab5fe7571"],["940cb00e1bfb4358"],["09cc393416dae089"],["4bdbc53bd8180b38"],[]],"inputLabels":["Command In"],"outputLabels":["Power Button","Up Button","Down Button","Right Button","Left Button","","","","",""]},{"id":"35dd60e9356aca5e","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 1 Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.lamp_1_on_off"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":680,"y":120,"wires":[[]]},{"id":"80656617dad6041d","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 3 Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.lamp_3_on_off"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":680,"y":180,"wires":[[]]},{"id":"5ee3f1eacf45fcf4","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 2 Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.lamp_2_on_off"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":680,"y":240,"wires":[[]]},{"id":"e3cd898034db92ac","type":"api-call-service","z":"2a98f4071b357f84","name":"Wall  Sconces Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"toggle","areaId":[],"deviceId":[],"entityId":["light.wall_sconces"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":700,"y":300,"wires":[[]]},{"id":"3b16e0a7f5831ee1","type":"api-call-service","z":"2a98f4071b357f84","name":"LR Fan Toggle","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"fan","service":"toggle","areaId":[],"deviceId":[],"entityId":["fan.living_room_fan_fan"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":680,"y":60,"wires":[[]]},{"id":"4827dfcc56bf4dfe","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 1 Step Up Brightness 20%","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_1_on_off"],"data":"{\"brightness_step_pct\":20}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":890,"y":480,"wires":[[]]},{"id":"e90101dab5fe7571","type":"api-current-state","z":"2a98f4071b357f84","name":"Lamp1 On?","server":"8be923df.d66f9","version":3,"outputs":2,"halt_if":"on","halt_if_type":"str","halt_if_compare":"is","entity_id":"light.lamp_1_on_off","state_type":"str","blockInputOverrides":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"entityState"},{"property":"data","propertyType":"msg","value":"","valueType":"entity"}],"for":"0","forType":"num","forUnits":"minutes","override_topic":false,"state_location":"payload","override_payload":"msg","entity_location":"data","override_data":"msg","x":670,"y":360,"wires":[["812fac0a245631ab"],[]]},{"id":"812fac0a245631ab","type":"switch","z":"2a98f4071b357f84","name":"","property":"data.attributes.brightness","propertyType":"msg","rules":[{"t":"gt","v":"250","vt":"num"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":670,"y":420,"wires":[["1075d480b3efbbd5"],["4827dfcc56bf4dfe"]]},{"id":"1075d480b3efbbd5","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 1 Set Brightness to 5","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_1_on_off"],"data":"{\"brightness\":5}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":880,"y":420,"wires":[[]]},{"id":"09cc393416dae089","type":"api-current-state","z":"2a98f4071b357f84","name":"Lamp 2 On?","server":"8be923df.d66f9","version":3,"outputs":2,"halt_if":"on","halt_if_type":"str","halt_if_compare":"is","entity_id":"light.lamp_2_on_off","state_type":"str","blockInputOverrides":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"entityState"},{"property":"data","propertyType":"msg","value":"","valueType":"entity"}],"for":"0","forType":"num","forUnits":"minutes","override_topic":false,"state_location":"payload","override_payload":"msg","entity_location":"data","override_data":"msg","x":670,"y":540,"wires":[["0df6a4e6fa0a099e"],[]]},{"id":"0df6a4e6fa0a099e","type":"switch","z":"2a98f4071b357f84","name":"","property":"data.attributes.brightness","propertyType":"msg","rules":[{"t":"gt","v":"250","vt":"num"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":670,"y":600,"wires":[["fb50d7ed1dfa78f1"],["d578e7d44ed95dac"]]},{"id":"fb50d7ed1dfa78f1","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 2 Set Brightness to 5","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_2_on_off"],"data":"{\"brightness\":5}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":880,"y":600,"wires":[[]]},{"id":"d578e7d44ed95dac","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 2 Step Up Brightness 20%","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_2_on_off"],"data":"{\"brightness_step_pct\":20}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":890,"y":660,"wires":[[]]},{"id":"940cb00e1bfb4358","type":"api-current-state","z":"2a98f4071b357f84","name":"Lamp 3 On?","server":"8be923df.d66f9","version":3,"outputs":2,"halt_if":"on","halt_if_type":"str","halt_if_compare":"is","entity_id":"light.lamp_3_on_off","state_type":"str","blockInputOverrides":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"entityState"},{"property":"data","propertyType":"msg","value":"","valueType":"entity"}],"for":"0","forType":"num","forUnits":"minutes","override_topic":false,"state_location":"payload","override_payload":"msg","entity_location":"data","override_data":"msg","x":670,"y":700,"wires":[["f626f1519f45a1ff"],[]]},{"id":"f626f1519f45a1ff","type":"switch","z":"2a98f4071b357f84","name":"","property":"data.attributes.brightness","propertyType":"msg","rules":[{"t":"gt","v":"250","vt":"num"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":670,"y":760,"wires":[["8d83438cdad5a272"],["07e1bdf6b76d4be5"]]},{"id":"8d83438cdad5a272","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 3 Set Brightness to 5","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_3_on_off"],"data":"{\"brightness\":5}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":880,"y":760,"wires":[[]]},{"id":"07e1bdf6b76d4be5","type":"api-call-service","z":"2a98f4071b357f84","name":"Lamp 3 Step Up Brightness 20%","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.lamp_2_on_off","light.lamp_3_on_off"],"data":"{\"brightness_step_pct\":20}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":890,"y":820,"wires":[[]]},{"id":"4bdbc53bd8180b38","type":"api-current-state","z":"2a98f4071b357f84","name":"Wall Sconces On?","server":"8be923df.d66f9","version":3,"outputs":2,"halt_if":"on","halt_if_type":"str","halt_if_compare":"is","entity_id":"light.wall_sconces","state_type":"str","blockInputOverrides":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"entityState"},{"property":"data","propertyType":"msg","value":"","valueType":"entity"}],"for":"0","forType":"num","forUnits":"minutes","override_topic":false,"state_location":"payload","override_payload":"msg","entity_location":"data","override_data":"msg","x":690,"y":880,"wires":[["62b74be981662aaf"],[]]},{"id":"62b74be981662aaf","type":"switch","z":"2a98f4071b357f84","name":"","property":"data.attributes.brightness","propertyType":"msg","rules":[{"t":"gt","v":"250","vt":"num"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":670,"y":940,"wires":[["28749fc24b8be90f"],["976189e9379589c7"]]},{"id":"28749fc24b8be90f","type":"api-call-service","z":"2a98f4071b357f84","name":"Wall Sconce Set Brightness to 5","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.wall_sconces"],"data":"{\"brightness\":5}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":890,"y":920,"wires":[[]]},{"id":"976189e9379589c7","type":"api-call-service","z":"2a98f4071b357f84","name":"Wall Sconces Step Up Brightness 20%","server":"8be923df.d66f9","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.wall_sconces"],"data":"{\"brightness_step_pct\":20}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":910,"y":980,"wires":[[]]},{"id":"8be923df.d66f9","type":"server","name":"homeassistant","version":5,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"","connectionDelay":false,"cacheJson":false,"heartbeat":false,"heartbeatInterval":"","areaSelector":"friendlyName","deviceSelector":"friendlyName","entitySelector":"friendlyName","statusSeparator":"at: ","statusYear":"hidden","statusMonth":"short","statusDay":"numeric","statusHourCycle":"h23","statusTimeFormat":"h:m","enableGlobalContextStore":true}]
1 Like

Yeah, I catch all my RF remotes with the Events: all node, then the next node split the flow out on my different remotes and the following node splits the flow out into buttons.

mightybosstone; your Minimotes flow did the trick!! I completely missed the approach on listening and filtering within Node Red. Many thanks!