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.
- 26 Forums
- 2,700 Topics
- 63.3 K Posts
- 1,710 Online
- 7,107 Members
Join Us!
Installer Finder
Degrees of Separation
Latest Posts
-
Can DNO change a G99 export allowance once approved?
I have a Solar/battery system with an approved G99 expo...
By AndrewJ , 2 hours ago
-
RE: Electricity price predictions
Chinese manufacturing has the ability to be very good q...
By Majordennisbloodnok , 6 hours ago
-
RE: Air source heat pump roll call – what heat pump brand and model do you have?
Forum Handle: GotGordon Manufacturer: Samsun...
By Gotgordon , 17 hours ago
-
RE: Summer heat is becoming the new winter cold in the UK. What are you doing about it?
@ian33a I am not easy with sleep either unfortunately…....
By MK4 , 18 hours ago
-
RE: Renewables uptake near you
In a village of under 40 houses...Conservation Area. I'...
By Tim441 , 1 day ago
-
RE: Home Alone with Home Assistant (previously A Beginner's Guide to ASHP Monitoring)
Great news, @bontwoody.
By Majordennisbloodnok , 1 day ago
-
Haier R290 Super Aqua Monobloc. Output capacity tables.
As I mentioned in my introduction post, I've been consi...
By Singlespeed , 1 day ago
-
RE: Air to air bus grant installer anywhere
I am consistently told by aircon folks (ie air/air) tha...
By EtchedPixels , 2 days ago
-
RE: What is possible with FIT, SEG, Hate Pumps and Batteries?
Thank you, everyone, for your replies. Our FIT provid...
By ian33a , 2 days ago
-
@mk4 And of course, the panels are less productive due ...
By Toodles , 2 days ago
-
RE: GivEnergy inverter tripping due to over-voltage?
I'm trying to get clarity on exactly when the inverter ...
By Tim441 , 2 days ago
-
RE: Samsung Heat Pump – Can't Activate TW2 Pipe Sensor (for Delta T Control)
Autocorrupt seems to be working overtime.
By Majordennisbloodnok , 2 days ago
-
RE: Vehicle-to-Home with a Heat Pump: Is the Technology Ready and Which EV Should I Buy?
I looked into that wallbox a bit more off the back of t...
By Majordennisbloodnok , 3 days ago
-
RE: Say hello and introduce yourself
@jandp awesome system I hope it works out well.
By Judith , 3 days ago




