I guess, being new to Home Assistant, I am doing something wrong.
I would like to start my Panasonic Heat Pump, based upon temperature, but only if the time is between 06.00 and 22.00 on all days of the week.
If I manually run the automation, it works. If the temp is above the trigger temp, the automation doesn’t do anything, if below, it starts the Heat Pump.
Heat pumps need time to start, so my next automation looks at the outlet temperature of my Aquarea (Panasonic) and above 28 degrees, should set the target temperature to 22 degrees and open a valve (which is done automatic once the target temperature is above the actual temperature)
Somehow, every Time triggered automation works, but all temperature triggered automations fail to start.
What am I doing wrong?
Please find a sample of a temperature based automation below:
‘’’
'id: ‘1646136852981’
alias: Panasonic CV aan op temp
description: Panasonic CV aan bij temp onder 21 graden
trigger:
- platform: numeric_state
entity_id: climate.living
attribute: current_temperature
below: ‘21’
condition: - condition: time
after: ‘06:00:00’
before: ‘22:00:00’
weekday:- mon
- tue
- wed
- thu
- fri
- sun
- sat
action:
- service: switch.turn_on
data: {}
target:
entity_id: switch.aquarea_main_power
mode: single
‘’’
The above code needs to switch oon the Aquarea main switch once a temperature of less than 21 degrees has been reached by the sensor called “living”
That sensor is shown in Lovelace
It seems that somehow my temperature is not read properly.
When I create a similar automation, based on Time, the automation starts without problems
Thanks for your kind help
2 posts - 2 participants