Hello to everybody, my name is Pietro and I’m from Italy. I’m a newbie on Home Assistant and I’ve lurked the forum for a while before deciding to ask for help.
What I’m trying to do:
I have 4 thermostatic valves (Meross) connected to 4 radiators and one wifi thermostat (BeOk) that controls the boiler.
My target is to have the thermostat working following its own schedule (12345,67) but being able to be turned to heating mode if it is not already heating (sorry for the joke) and one of the thermostatic valve goes to heating mode.
I tried to do by using automations. Trigger and action part are tested and working. What I honestly don’t know how to test are the conditions. My idea is to make trigger start the action following these conditions:
- BeOk thermostat is not doing anything else (I assume this means it is in idle)
AND - ( We are during the week between 5AM - 8AM- OR
We are during the week between 5PM - 11PM- OR
We are on the weekend)
The following is my YAML config for conditions…can you confirm that is ok?
condition: and
conditions:
- condition: state
entity_id: climate.termostato_salotto
state: idle
attribute: hvac_action
- condition: or
conditions:
- condition: time
after: '5:00'
before: '8:00'
weekday:
- mon
- tue
- wed
- thu
- fri
- condition: time
after: '17:00'
before: '23:00'
weekday:
- mon
- tue
- wed
- thu
- fri
- condition: time
weekday:
- sat
- sun
Thank you very much!!!
Is there any tool on the web that allows to test automations? I think could be a good tool.
Thank you again and have a nice day.
Pietro.