Joining the Renewable Heating Hub forums is completely free and only takes a minute. By registering you’ll be able to ask questions, join discussions, follow topics you’re interested in, bookmark useful threads and receive notifications when someone replies. Non-registered members also do not have access to our AI features. When choosing your username, please note that it cannot be changed later, so we recommend avoiding brand or product names. Before registering, please take a moment to read the Forum Rules & Terms of Use so we can keep the community helpful, respectful and informative for everyone. Thanks for joining!
Daikin Altherma Heating Controls using Onecta Integration via Home Assistant
Ok so likely not setting the world on fire here for revolutionary controls but it may help some, especially here in the UK, where Octopus are installing a lot of these Dainkin units.
so they have 2 modes, LWT which runs and balances temps of a heat curve and ignores internal temps. It’s very efficient but doesn’t balance internal comfort without a lot of tinkering.
Then Madoka mode that uses the internal thermostat and constantly messes about with the heat pump, is not great at efficiency but does do comfort well.
So, behold. LWT with some internal reference for the best of both.
\
alias: Heat Pump - Adjust Heat Curve Offset based on Room Temp
triggers:
- minutes: /30
trigger: time_pattern
conditions: - condition: numeric_state
entity_id: sensor.altherma_heat_pump_climatecontrol_room_temperature
above: 0
actions: - variables:
room_temp: >
{{ states(‘sensor.altherma_heat_pump_climatecontrol_room_temperature’) |
float(21) }}
current_counter: |
{{ states(‘input_number.heat_curve_offset_counter’) | float(0) }} - choose:
- conditions:
- condition: numeric_state
entity_id: sensor.altherma_heat_pump_climatecontrol_room_temperature
above: 21.5 - condition: numeric_state
entity_id: sensor.altherma_heat_pump_climatecontrol_leaving_water_temperature
above: 30
sequence: - variables:
new_value: |
{% set next = current_counter - 1 %} {% if next < -5 %}
-5
{% else %}
{{ next | int }}
{% endif %} - target:
entity_id: input_number.heat_curve_offset_counter
data:
value: “{{ new_value }}”
action: input_number.set_value
- condition: numeric_state
- conditions:
- condition: numeric_state
entity_id: sensor.altherma_heat_pump_climatecontrol_room_temperature
below: 20.5
sequence: - variables:
new_value: |
{% set next = current_counter + 1 %} {% if next > 5 %}
5
{% else %}
{{ next | int }}
{% endif %} - target:
entity_id: input_number.heat_curve_offset_counter
data:
value: “{{ new_value }}”
action: input_number.set_value
- condition: numeric_state
- conditions:
- condition: numeric_state
entity_id: sensor.altherma_heat_pump_climatecontrol_room_temperature
above: 20.5 - condition: numeric_state
entity_id: sensor.altherma_heat_pump_climatecontrol_room_temperature
below: 21.5
sequence: - target:
entity_id: input_number.heat_curve_offset_counter
data:
value: 0
action: input_number.set_value
- condition: numeric_state
- conditions:
- target:
entity_id: climate.heating_leaving_water_offset
data:
temperature: “{{ states(‘input_number.heat_curve_offset_counter’) | int }}”
action: climate.set_temperature
mode: single
\\
This automation will reference the internal thermostat every 30 minutes and then tweak the flow temperature by 1 up or down to help keep the room temp within the ideal mark of 20.5 and 21.5 degrees C.
Its max adjustment is +/- 5 to the flow temperature.
It also needs a helper to track that adjustment value which you can drop into your configuration.yaml
\
input_number:
heat_curve_offset_counter:
name: Heat Curve Offset Counter
min: -5
max: 5
step: 1
mode: box
initial: 0
\\
This has been keeping my house warm now for a good few weeks and stopping the house over heating whilst keeping the heat pump running slow and steady. Give it a look if you’re interested.
- 27 Forums
- 2,767 Topics
- 65.1 K Posts
- 1,684 Online
- 7,169 Members
Join Us!
Installer Finder
Degrees of Separation
Latest Posts
-
RE: Next steps on my ASHP journey: Radiators and Pipework
If you are considering phasing the project, then I woul...
By GrahamF , 5 hours ago
-
RE: Siting of the external sensor on a heatpump
Of course had the heat source been a heat pump it would...
By JamesPa , 7 hours ago
-
Never assume, it makes an ass of u and me! OK, tha...
By JamesPa , 7 hours ago
-
RE: Recommendations in Ely (Cambs) area for Full setup checks on Nibe HP setup for House.
In fairness all heating has cost a lot to run in recent...
By JamesPa , 9 hours ago
-
RE: Is it the house or the equipment?
@springswood We have two Daikin single split A2A syst...
By Rob of York , 10 hours ago
-
RE: Navigating the World of Refrigerants In Heat Pumps: A Guide for Homeowners
Indeed we are invvestigating AC at present and are havi...
By Toodles , 2 days ago
-
No, but the heat pump must be capable of delivering a S...
By JamesPa , 2 days ago
-
RE: Daikin ESPAltherma and Home Assistant installation
It's laziness lol The PV system is very chatty, meter...
By bobflux , 2 days ago
-
RE: Problems with sizing a replacement for a Viessmann Vitocal 200-S
R (The R Project for Statistical Computing, I use it wi...
By cathodeRay , 2 days ago
-
RE: Vaillant Arotherm Plus 7KW need a service on it
booked it with Vaillant. will use them until i can find...
By AdamK , 2 days ago
-
RE: Adventures in heat loss calculations
I have seen it stated that the declared calorific value...
By JamesPa , 3 days ago
-
RE: Two heating zones to one zone
@transparent Many thanks. The garage is fairly well ...
By Profzarkov , 4 days ago
-
RE: Vaillant Aurotherm - Heater Wire Position
Ah, good point. I need to check if this was installed i...
By Batpred , 4 days ago
-
@batpred thanks for getting a copy. Appreciate the supp...
By Mars , 4 days ago
Members Online
No online members at the moment



