-
-
Notifications
You must be signed in to change notification settings - Fork 13
Home
Johnny Willemsen edited this page Jan 13, 2024
·
5 revisions
Welcome to the daikin_residential_altherma wiki!
At the moment the outside temperature as measured by the external unit is >= 25C the hot water tank can be heated up to 43C without usage of the backup heater which costs is not as efficient. As workaround this automation lowers the tank target temperature to 33C. You will need another automation to put the target tank temperature back to your normal setpoint at another time.
alias: LowerTankTemperature
description: Lower Alterma Tank temperature
trigger:
- platform: time_pattern
minutes: /10
condition:
- condition: numeric_state
entity_id: sensor.climatecontrol_outdoor_temperature
above: 24
- condition: numeric_state
entity_id: water_heater.altherma
below: 46
attribute: current_temperature
- condition: time
after: "10:00:00"
before: "23:00:00"
action:
- service: water_heater.set_temperature
data:
temperature: 33
target:
entity_id: water_heater.altherma
mode: single
Possible operating modes are:
- off
- heat_pump
- performance
You can change to heat_pump like so:
- service: water_heater.set_operation_mode
data:
operation_mode: heat_pump
target:
entity_id: water_heater.altherma