I have 2 different devices (integrations) for my climate unit. One is via IR (via Tasmota) and another via local LAN. Is there a way to sync data between them- if I adjust e.g. temp in one of my device settings - can it be reflected in another one?
If it is possible at all I am willing share further details
TIA, Reps
It could be done with two automations. This will require the use of templates.
Automation 1:
triggers:
on change of state of climate 1 setpoint, fan, etc…
actions:
disable automation 2 (to prevent looping)
set climate 2 setpoint, fan, etc to climate 1 values.
enable automation 2
Automation 2:
triggers:
on change of state of climate 2 setpoint, fan, etc…
actions:
disable automation 1 (to prevent looping)
set climate 1 setpoint, fan, etc to climate 2 values.
enable automation 1
You might also be able to combine them both with a template climate controller, but I don’t know enough about it to say for sure.
Thanks, something about I was working on and concerned about looping etc. My humble hope was something simpler and direct Will investgate further
TIA, Reps
Now you have the solution to that.
Yeah that’s why I mentioned:
Hopefully someone else may have an idea how this can be done.