Skip to content
Johnny Willemsen edited this page Dec 28, 2023 · 5 revisions

Welcome to the daikin_residential_altherma wiki!

Example automations

Lower tank setpoint when it is hot outside to prevent heating with the BUH

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
Clone this wiki locally