Hi @all, i have follwing issue and i dont the reason why my automation hangs
I have a LG Heatpump connect by ThinQ. In SuperVisor i see all data i need.
So i wanted to make an automatoin doing following:
- set HVAC to cool
- wait for trigger <19° <<< not working - when trigger arrived power on thermostate for floor cooling
- after 3h power off thermostate and switch HVAC back to Auto mode
i tried 2 different ways and both not working
- platform: template
value_template: "{{ (states('sensor.pumpe_out_water_temperature') | float) < 19 }}"
timeout: "00:22:00"
- platform: numeric_state
entity_id: sensor.pumpe_out_water_temperature
below: 19
timeout: "00:22:00"
In versions it simple hangs and never see the <19° from sensor.pumpe_out_water_temperature
What can i make false here?