Zigbee2mqtt Philips Hue dial music and light remote
A great flow to control music playback and volume as well as brightness of lights with a Philips Hue Tap Dial switch. As demonstrated in this video: https://youtu.be/Ujoe9kHXYUk?si=ge89olyDpl3-DbyP (deCONZ version)
As can be seen, the beauty of this flow is that it uses the detailed sensor data from the hue dial switch to dynamically change volume and brightness. The faster you twist the dial, the more the volume/brightness changes.
Here's what the flow looks like:
When the volume is 0 % the music will auto-pause, and when the volume is turned up, the music will auto-play. To avoid any unpleasant surprises, the volume will always start at 8 % if you twist the dial while no music is currently playing. For the same reason the maximum volume increase on a single twist is set to 9 %. Turning down the volume is a bit faster as well.
As for the buttons: 1 dot = previous track, 2 dots = next track, 3 dots (triangle) = play/pause, 4 dots = change to brightness mode (hold to switch between radio and playlist).
When the remote is in "brightness mode" it will auto-revert to volume mode after 3 seconds with no adjustment.
The inject node resets the volume and source every night at 4 am (without starting playback)
The flow is tested with Sonos media players but might also work with others, at least for volume, play/pause and next/prev control.
This flow uses Home Assistant nodes so make sure these are installed (see the pallette) in Node-RED first.
Copy the flow below to your clipboard and then import into Node-RED using the Import From > Clipboard (Ctrl-I) menu option.
Then double click all the blue nodes and select your own Home Assistant server and media player. Leave all other settings unchanged.
I also made a similar flow to be used with deCONZ which can be found here
[{"id":"4811fa7037540bc3","type":"tab","label":"Hue dial switch","disabled":false,"info":"","env":[]},{"id":"83f28b15867a2320","type":"comment","z":"4811fa7037540bc3","name":"Philips Hue dial smart home control","info":"","x":170,"y":50,"wires":[]},{"id":"85854c771204c3f6","type":"switch","z":"4811fa7037540bc3","name":"sort input","property":"payload.button_action","propertyType":"msg","rules":[{"t":"eq","v":"button_1_press","vt":"str"},{"t":"eq","v":"button_2_press","vt":"str"},{"t":"eq","v":"button_3_press","vt":"str"},{"t":"eq","v":"button_4_press","vt":"str"},{"t":"eq","v":"button_4_hold","vt":"str"},{"t":"eq","v":"button_4_press_release","vt":"str"},{"t":"eq","v":"brightness_step_up","vt":"str"},{"t":"eq","v":"brightness_step_down","vt":"str"}],"checkall":"true","repair":false,"outputs":8,"x":130,"y":480,"wires":[["83c7ac588f0485e7"],["b5f3834868628d05"],["b47025cce7be1064"],["a2d7754fa04daf7b"],["61f2f73321618894"],["415ebd7f9ec7e64e","602bfc1a6bdcfaaf"],["13af800fa3a2feb1"],["13af800fa3a2feb1"]]},{"id":"bff75141b81ab678","type":"switch","z":"4811fa7037540bc3","name":"last played?","property":"lastplayed","propertyType":"flow","rules":[{"t":"eq","v":"Discover Weekly","vt":"str"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":410,"y":530,"wires":[["5cfaf24a050c2b8b","84020607765c172f"],["803e0827309a1257","5d89436b20d8fbfd"]]},{"id":"fae0e929ec84953b","type":"switch","z":"4811fa7037540bc3","name":"playing?","property":"playerstate","propertyType":"flow","rules":[{"t":"neq","v":"playing","vt":"str"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":360,"y":810,"wires":[["a6965520ed8d58ca"],["d782cbdedf8850f9"]]},{"id":"d782cbdedf8850f9","type":"function","z":"4811fa7037540bc3","name":"rotation -> volume","func":"var currentVolume = flow.get(\"volume\")||0.08 //msg.media.attributes.volume_level\n\nvar volumeStep = msg.payload.action_step_size ||8\n\nif (msg.payload.button_action == \"brightness_step_up\")\n {\n if (Math.round((volumeStep)/15)+1 > 9)\n {\n volumeStep = 0.09\n }\n else\n {\n volumeStep = (Math.round((volumeStep)/15)+0)/100\n }\n \n msg.payload = currentVolume + volumeStep\n\n }\n \nelse if (msg.payload.button_action == \"brightness_step_down\")\n {\n volumeStep = (Math.round((volumeStep)/15)+1)/100\n \n msg.payload = currentVolume - volumeStep\n }\n\nif (msg.payload < 0.01) \n{\n msg.payload = 0\n}\n\nreturn msg;","outputs":1,"timeout":"","noerr":0,"initialize":"","finalize":"","libs":[],"x":420,"y":860,"wires":[["6374dde392f6fa8f"]]},{"id":"5cfaf24a050c2b8b","type":"change","z":"4811fa7037540bc3","name":"","rules":[{"t":"set","p":"lastplayed","pt":"flow","to":"Smooth Jazz","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":620,"y":460,"wires":[[]]},{"id":"803e0827309a1257","type":"change","z":"4811fa7037540bc3","name":"","rules":[{"t":"set","p":"lastplayed","pt":"flow","to":"Discover Weekly","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":620,"y":600,"wires":[[]]},{"id":"68f24dc0899b0f13","type":"inject","z":"4811fa7037540bc3","name":"Reset source and volume","props":[],"repeat":"","crontab":"00 04 * * *","once":false,"onceDelay":0.1,"topic":"","x":170,"y":120,"wires":[["1c5fc347588e62b7"]]},{"id":"982b1144872424d3","type":"api-call-service","z":"4811fa7037540bc3","name":"Adjust brightness living room lights","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["light.kokken_spisestue"],"data":"{\"brightness_step\": {{payload}}}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"light","service":"turn_on","output_location":"","output_location_type":"none","x":690,"y":760,"wires":[[]]},{"id":"b1f60afe82c04b63","type":"trigger","z":"4811fa7037540bc3","name":"","op1":"light","op2":"volume","op1type":"str","op2type":"str","duration":"3","extend":true,"overrideDelay":false,"units":"s","reset":"","bytopic":"all","topic":"topic","outputs":1,"x":370,"y":710,"wires":[["5ec87270a09da2ae"]]},{"id":"5ec87270a09da2ae","type":"change","z":"4811fa7037540bc3","name":"","rules":[{"t":"set","p":"mode","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":550,"y":710,"wires":[[]]},{"id":"ec5537301404aa0b","type":"api-call-service","z":"4811fa7037540bc3","name":"toggle living room lights","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["light.kokken_spisestue"],"data":"{\"brightness_step\": -150, \"transition\": 0.5}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"light","service":"turn_on","output_location":"","output_location_type":"none","x":640,"y":650,"wires":[["39d4d36bea58c50f"]]},{"id":"574492d74f57182f","type":"api-call-service","z":"4811fa7037540bc3","name":"toggle living room lights","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["light.kokken_spisestue"],"data":"{\"brightness_step\": 155, \"transition\": 0.5}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"light","service":"turn_on","output_location":"","output_location_type":"none","x":1040,"y":650,"wires":[[]]},{"id":"415ebd7f9ec7e64e","type":"delay","z":"4811fa7037540bc3","name":"","pauseType":"rate","timeout":"5","timeoutUnits":"seconds","rate":"1","nbRateUnits":"2","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":true,"allowrate":false,"outputs":1,"x":390,"y":650,"wires":[["ec5537301404aa0b","b1f60afe82c04b63"]]},{"id":"84020607765c172f","type":"api-call-service","z":"4811fa7037540bc3","name":"\"Playing Smooth Jazz radio\"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"message\":\"Playing smooth Jazz radio\",\"language\":\"en-GB\"}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"meta","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"tts","service":"cloud_say","output_location":"","output_location_type":"none","x":650,"y":500,"wires":[["3b5b97d2455ce003"]]},{"id":"5d89436b20d8fbfd","type":"api-call-service","z":"4811fa7037540bc3","name":"\"Playing Discover Weekly on Spotify\"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"message\":\"Playing Discover Weekly on Spotify\",\"language\":\"en-GB\"}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"meta","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"tts","service":"cloud_say","output_location":"","output_location_type":"none","x":680,"y":550,"wires":[["0c0fa02a1831c64d"]]},{"id":"a8848da73d8bc7f5","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"volume_level\": {{payload}}}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"meta","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"volume_set","output_location":"","output_location_type":"none","x":770,"y":860,"wires":[["fab880673cccb57f"]]},{"id":"fab880673cccb57f","type":"trigger","z":"4811fa7037540bc3","name":"","op1":"","op2":"","op1type":"nul","op2type":"payl","duration":"1","extend":true,"overrideDelay":false,"units":"s","reset":"","bytopic":"all","topic":"topic","outputs":1,"x":970,"y":860,"wires":[["a3b8996d8e21d306"]]},{"id":"a3b8996d8e21d306","type":"switch","z":"4811fa7037540bc3","name":"if volume 0","property":"volume","propertyType":"flow","rules":[{"t":"lte","v":"0","vt":"num"}],"checkall":"true","repair":false,"outputs":1,"x":1130,"y":860,"wires":[["76a2555b18806e8a"]]},{"id":"76a2555b18806e8a","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"meta","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"media_pause","output_location":"","output_location_type":"none","x":1350,"y":860,"wires":[[]]},{"id":"b47025cce7be1064","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"media_play_pause","output_location":"","output_location_type":"none","x":430,"y":360,"wires":[[]]},{"id":"190c1bb53f5d0796","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"volume_level\": 0.08}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"meta","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"volume_set","output_location":"","output_location_type":"none","x":770,"y":810,"wires":[["940e45cd5d4a54ad"]]},{"id":"940e45cd5d4a54ad","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"meta","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"media_play","output_location":"","output_location_type":"none","x":1020,"y":810,"wires":[[]]},{"id":"83c7ac588f0485e7","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"media_previous_track","output_location":"","output_location_type":"none","x":440,"y":260,"wires":[[]]},{"id":"b5f3834868628d05","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[{"property":"payload","propertyType":"msg","value":"","valueType":"data"}],"queue":"none","domain":"media_player","service":"media_next_track","output_location":"","output_location_type":"none","x":430,"y":310,"wires":[[]]},{"id":"0c0fa02a1831c64d","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"source\":\"Discover Weekly\"}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"select_source","output_location":"","output_location_type":"none","x":970,"y":550,"wires":[["216dd061b98a0d26"]]},{"id":"216dd061b98a0d26","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"media_play","output_location":"","output_location_type":"none","x":1220,"y":550,"wires":[["85fbefba83d7021f"]]},{"id":"85fbefba83d7021f","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"shuffle\": true}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"shuffle_set","output_location":"","output_location_type":"none","x":1260,"y":600,"wires":[[]]},{"id":"3b5b97d2455ce003","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"source\":\"Smooth Jazz 24/7\"}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"select_source","output_location":"","output_location_type":"none","x":910,"y":500,"wires":[["50cf9bd58a708e45"]]},{"id":"50cf9bd58a708e45","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"media_play","output_location":"","output_location_type":"none","x":1170,"y":500,"wires":[[]]},{"id":"5ea04d96ad830156","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"volume_level\": 0.08}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"volume_set","output_location":"","output_location_type":"none","x":690,"y":120,"wires":[["72c1a796c5eaf7d9"]]},{"id":"72c1a796c5eaf7d9","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"media_pause","output_location":"","output_location_type":"none","x":940,"y":120,"wires":[["f8b6354838320d1e"]]},{"id":"1c5fc347588e62b7","type":"api-call-service","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"debugenabled":false,"areaId":[],"deviceId":[],"entityId":["media_player.spisestue"],"data":"{\"source\":\"Discover Weekly\"}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","domain":"media_player","service":"select_source","output_location":"","output_location_type":"none","x":440,"y":120,"wires":[["5ea04d96ad830156"]]},{"id":"f8b6354838320d1e","type":"change","z":"4811fa7037540bc3","name":"","rules":[{"t":"set","p":"lastplayed","pt":"flow","to":"Discover Weekly","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":1170,"y":120,"wires":[[]]},{"id":"39d4d36bea58c50f","type":"delay","z":"4811fa7037540bc3","name":"","pauseType":"delay","timeout":"0.3","timeoutUnits":"seconds","rate":"1","nbRateUnits":"1","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":false,"allowrate":false,"outputs":1,"x":840,"y":650,"wires":[["574492d74f57182f"]]},{"id":"5569a14bbdf272c1","type":"change","z":"4811fa7037540bc3","name":"save volume and playing state","rules":[{"t":"set","p":"volume","pt":"flow","to":"media.new_state.attributes.volume_level","tot":"msg"},{"t":"set","p":"playerstate","pt":"flow","to":"media.new_state.state","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":480,"y":170,"wires":[[]]},{"id":"b9420f3d4ed48c9e","type":"server-state-changed","z":"4811fa7037540bc3","name":"","server":"83669b94.30d108","version":5,"outputs":1,"exposeAsEntityConfig":"","outputInitially":true,"stateType":"str","ifState":"","ifStateType":"str","ifStateOperator":"is","outputOnlyOnStateChange":false,"for":"0","forType":"num","forUnits":"minutes","ignorePrevStateNull":false,"ignorePrevStateUnknown":false,"ignorePrevStateUnavailable":false,"ignoreCurrentStateUnknown":true,"ignoreCurrentStateUnavailable":true,"outputProperties":[{"property":"media","propertyType":"msg","value":"","valueType":"eventData"}],"entityId":"media_player.spisestue","entityIdType":"exact","x":180,"y":170,"wires":[["5569a14bbdf272c1"]]},{"id":"a6965520ed8d58ca","type":"delay","z":"4811fa7037540bc3","name":"","pauseType":"rate","timeout":"5","timeoutUnits":"seconds","rate":"1","nbRateUnits":"1","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":true,"allowrate":false,"outputs":1,"x":570,"y":810,"wires":[["190c1bb53f5d0796"]]},{"id":"6374dde392f6fa8f","type":"delay","z":"4811fa7037540bc3","name":"limit","pauseType":"rate","timeout":"5","timeoutUnits":"seconds","rate":"1","nbRateUnits":"0.1","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":true,"allowrate":false,"outputs":1,"x":580,"y":860,"wires":[["a8848da73d8bc7f5"]]},{"id":"61f2f73321618894","type":"delay","z":"4811fa7037540bc3","name":"","pauseType":"rate","timeout":"5","timeoutUnits":"seconds","rate":"1","nbRateUnits":"2","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":true,"allowrate":false,"outputs":1,"x":380,"y":490,"wires":[["bff75141b81ab678"]]},{"id":"039048e4ad78778d","type":"mqtt in","z":"4811fa7037540bc3","name":"","topic":"zigbee2mqtt/hue dial","qos":"2","datatype":"auto-detect","broker":"","nl":false,"rap":true,"rh":0,"inputs":0,"x":130,"y":230,"wires":[["47bae2e8ce220eb3"]]},{"id":"13af800fa3a2feb1","type":"switch","z":"4811fa7037540bc3","name":"dial mode","property":"mode","propertyType":"flow","rules":[{"t":"eq","v":"light","vt":"str"},{"t":"eq","v":"blinds","vt":"str"},{"t":"eq","v":"block","vt":"str"},{"t":"else"}],"checkall":"true","repair":false,"outputs":4,"x":170,"y":720,"wires":[["b1f60afe82c04b63","89f14f2714d346e6"],[],[],["fae0e929ec84953b"]]},{"id":"89f14f2714d346e6","type":"function","z":"4811fa7037540bc3","name":"rotation -> brightness","func":"var Step = msg.payload.action_step_size ||8\n\nif (Math.round((Step)/2)+1 > 65)\n {\n Step = 65\n }\n else\n {\n Step = Math.round((Step)/2)-2\n }\n\nif (msg.payload.button_action == \"brightness_step_up\")\n {\n msg.payload = Step\n } \nelse if (msg.payload.button_action == \"brightness_step_down\")\n {\n msg.payload = - Step\n }\n\nreturn msg;","outputs":1,"timeout":"","noerr":0,"initialize":"","finalize":"","libs":[],"x":410,"y":760,"wires":[["982b1144872424d3"]]},{"id":"c697627a4b232614","type":"comment","z":"4811fa7037540bc3","name":"<- insert the zigbee2mqtt/friendly_name_of_your_hue_dial_switch","info":"","x":510,"y":230,"wires":[]},{"id":"a2d7754fa04daf7b","type":"trigger","z":"4811fa7037540bc3","name":"","op1":"block","op2":"volume","op1type":"str","op2type":"str","duration":"1","extend":true,"overrideDelay":false,"units":"s","reset":"","bytopic":"all","topic":"topic","outputs":1,"x":360,"y":410,"wires":[["60fbb7cee06d1919"]]},{"id":"60fbb7cee06d1919","type":"change","z":"4811fa7037540bc3","name":"block dial inputs","rules":[{"t":"set","p":"mode","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":530,"y":410,"wires":[[]]},{"id":"602bfc1a6bdcfaaf","type":"change","z":"4811fa7037540bc3","name":"","rules":[{"t":"set","p":"reset","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":380,"y":450,"wires":[["a2d7754fa04daf7b"]]},{"id":"47bae2e8ce220eb3","type":"change","z":"4811fa7037540bc3","name":"","rules":[{"t":"move","p":"payload.action","pt":"msg","to":"payload.button_action","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":140,"y":300,"wires":[["85854c771204c3f6"]]},{"id":"83669b94.30d108","type":"server","name":"Home Assistant local","version":5,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"y|yes|true|on|home|open","connectionDelay":true,"cacheJson":false,"heartbeat":false,"heartbeatInterval":"30","areaSelector":"friendlyName","deviceSelector":"friendlyName","entitySelector":"friendlyName","statusSeparator":"at: ","statusYear":"hidden","statusMonth":"short","statusDay":"numeric","statusHourCycle":"h23","statusTimeFormat":"h:m","enableGlobalContextStore":true}]