I’m trying to setup an automation to take care of my Thermostats. For the beginning I would like to start with something simple like changing temperature at some specific hours to achieve day and night mode.
My understanding is that I can trigger the automation twice a day simply using time platform and “or” in trigger section. Next should come Condition and finally an Action and here is where I’m having a problem. Is it possible to have two different actions executed (set_temp1 and set_temp2)base on given condition? From HA documentation I understand we can check either single condition either combinations with “or” nad “and”. What I’m missing here is something like “else” in other programming languages. This would allow me to execute second action in case Condition is giving FALSE result.
Her is what I’m trying to get:
Trigger: time_1 or time_2
Condition: if time = time_1 do this else do that
Any idea on how to handle it?