BRP069A78 (Altherma) - missing "leaving_water_offset" entity #383
Replies: 5 comments 4 replies
-
Click the wheel in the upper right corner, that should give a window with the entity id which you can use in your automation, for my Altherma this is |
Beta Was this translation helpful? Give feedback.
0 replies
-
the entity from the wheel is 'climate.leaving_water_setpoint'
I used it in an automation
alias: Evohome > vertrekwater
description: ""
triggers:
- trigger: numeric_state
entity_id:
- climate.keuken
attribute: temperature
below: 17.1
conditions: []
actions:
- action: notify.mobile_app_motog54wbe
metadata: {}
data:
message: Evohome vertrekwater -1
- action: input_number.decrement
metadata: {}
data: {}
target:
entity_id: climate.leaving_water_setpoint
mode: single
The automation is triggered however the offset doesn't change.
The plus and minus offset buttons on the Thermostat gauge work as expected.
…On Thu, Dec 19, 2024 at 1:49 PM Johnny Willemsen ***@***.***> wrote:
Click the wheel in the upper right corner, that should give a window with
the entity id which you can use in your automation, for my Altherma this is
climate.altherma_leaving_water_offset
—
Reply to this email directly, view it on GitHub
<#383 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARMVV4VKIBVGM6ALEJ6NA432GK6EXAVCNFSM6AAAAABT4VWD3CVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNRRG4YDMMA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
3 replies
-
when trying to decrement the temperature:
2024-12-19 15:20:15.905 WARNING (MainThread)
[homeassistant.helpers.service] Referenced entities
climate.leaving_water_setpoint_offset are missing or not currently available
2024-12-19 15:20:16.199 WARNING (MainThread)
[homeassistant.helpers.service] Referenced entities
climate.leaving_water_setpoint are missing or not currently available
But if I read your comments correctly there is no offset increment or
decrement available ?
I don't want change the setpoint as it's weather (outside temperature)
dependent.
…On Thu, Dec 19, 2024 at 3:19 PM Johnny Willemsen ***@***.***> wrote:
See https://github.com/jwillemsen/daikin_onecta/wiki for some examples,
offset if similar to room temperature
—
Reply to this email directly, view it on GitHub
<#383 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARMVV4SVA37KOQ3CUWBMS3T2GLIW5AVCNFSM6AAAAABT4VWD3CVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNRRHAYDIOA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
1 reply
-
I see !
Looking at the 'climate.leaving_water_setpoint' entity
It has an attribute 'temperature' that can be set, which is actually the
offset.
Now only find out how to automate setting this attribute 😁
Nog even prutsen dus !
…On Thu, Dec 19, 2024 at 3:34 PM Johnny Willemsen ***@***.***> wrote:
You could read the temperature attribute of the climate entity, and use
that to calculate a new one, see developer tools, states and search there
for offset to see the available attributes
—
Reply to this email directly, view it on GitHub
<#383 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARMVV4QCY2N4LZCSKGVBNQD2GLKP5AVCNFSM6AAAAABT4VWD3CVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNRRHAZDCOI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
We do have a lift off !
alias: Evohome > vertrekwater
description: ""
triggers:
- trigger: numeric_state
entity_id:
- climate.keuken
attribute: temperature
below: 17.1
conditions: []
actions:
- action: climate.set_temperature
target:
entity_id: climate.leaving_water_setpoint
data:
temperature: -4
mode: single
The automation works ! Thanks for your help 🖖🏻
…On Thu, Dec 19, 2024 at 3:56 PM Wim Berkhof ***@***.***> wrote:
I see !
Looking at the 'climate.leaving_water_setpoint' entity
It has an attribute 'temperature' that can be set, which is actually the
offset.
Now only find out how to automate setting this attribute 😁
Nog even prutsen dus !
On Thu, Dec 19, 2024 at 3:34 PM Johnny Willemsen ***@***.***>
wrote:
> You could read the temperature attribute of the climate entity, and use
> that to calculate a new one, see developer tools, states and search there
> for offset to see the available attributes
>
> —
> Reply to this email directly, view it on GitHub
> <#383 (reply in thread)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ARMVV4QCY2N4LZCSKGVBNQD2GLKP5AVCNFSM6AAAAABT4VWD3CVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNRRHAZDCOI>
> .
> You are receiving this because you authored the thread.Message ID:
> ***@***.***
> com>
>
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jwillemsen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using Alltherma 3 without Madoka, using 'leaving water temperature' with 'weather compensation'.
The 'climate.leaving_water_setpoint' gui working and I can control the 'offset' from it.
I'd like to control the 'climate.leaving_water_setpoint_offset' from a script (or automation).
The entity 'climate.leaving_water_setpoint_offset' is missing from the list with (59) entities.
What am I missing, how could I fix this ?
Beta Was this translation helpful? Give feedback.
All reactions