Shelly Control #1137
-
|
Hi Everybody, Before I knew about Nixie, I turned on/off my pool heater via a Wifi Shelly Relay using Google Home. I am now setting up Nixie and was wondering that I could "avoid" rewiring the heater control with a Relay Hat if Nixie could control Shelly. Shelly has extensive control via Http/ MqTT etc. For example these/ commands operate the relay via Http. Can you guys point me in the right direction as far as doing this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
|
You can do custom http/mqtt bindings. |
Beta Was this translation helpful? Give feedback.
-
|
Awesome. Thanks Much!. Just added the Shelly Interface. I am guessing I need to add a Heater with an Http Connection. Am I supposed to see the Shelly Interface here? |
Beta Was this translation helpful? Give feedback.
-
|
Working Good! Thanks and Happy Thanksgiving!
|
Beta Was this translation helpful? Give feedback.


Yup!
Shelly Heater Control Binding
Automatically controls a Shelly relay based on your pool heater status. When the pool controller turns the heater ON, the Shelly relay turns ON. When the heater turns OFF, the relay turns OFF.
Quick Setup
1. Create the Binding File
shellyHeaterControl.json{ "context": { "name": "shellyHeaterControl", "options": { "method": "GET", "path": "@bind=vars.useShellyGen2 ? `/rpc/Switch.Set?id=${vars.shellyRelayChannel}&on=${data.heatStatus.val > 0}` : `/relay/${vars.shellyRelayChannel}?turn=${data.heatStatus.val > 0 ? 'on' : 'off'}`;", "headers": {} }, "vars":…