-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integration of HASmartThermostat with Homematic IP Thermostats and Zigbee Outlet #224
Comments
Hello, you can't set an entity id as target temperature. You need to create an automation in HA that will sync he target temperature between Homematic thermostat and the smart thermostat. Example: alias: Example sync thermostats
description: ""
trigger:
- platform: state
entity_id:
- climate.netatmo_couloir
attribute: temperature
id: Physical change
- platform: state
entity_id:
- climate.salle_de_bain
attribute: temperature
id: Smart change
condition: []
action:
- choose:
- conditions:
- condition: trigger
id:
- Physical change
- condition: template
value_template: >-
{{ (state_attr('climate.netatmo_couloir', 'temperature') | float)
!= (state_attr('climate.salle_de_bain', 'temperature') | float )}}
sequence:
- service: climate.set_temperature
metadata: {}
data:
temperature: "{{ state_attr('climate.netatmo_couloir', 'temperature') }}"
target:
entity_id: climate.salle_de_bain
- conditions:
- condition: trigger
id:
- Smart change
- condition: template
value_template: >-
{{ (state_attr('climate.netatmo_couloir', 'temperature') | float)
!= (state_attr('climate.salle_de_bain', 'temperature') | float )}}
sequence:
- service: climate.set_temperature
metadata: {}
data:
temperature: "{{ state_attr('climate.salle_de_bain', 'temperature') }}"
target:
entity_id: climate.netatmo_couloir
mode: single
You may also add more triggers and choices to sync the presets, or on/off. And of course, the physical thermostat should not control directly the heating. |
I have the same challenge and I am a newbie to HA: Homematic (IP) with desired_temp and actual_temp should control (one-way only) this Smart Thermostat for PID control of floor heating. I only need the temperatures and modes Auto/Off. Do you mind sharing your working solution? |
I make it like this, but only kleines Bad runs. Automation.yaml I have an Error, i can not find the solution. |
Could you help me with my Problem? Mit freundlichen GrüßenAndy Ziegler Andy ZieglerLindenstraße 1006785 Oranienbaum-WörlitzAm 20.10.2024 um 09:48 schrieb Oliver S ***@***.***>:
Hej,
I got my first Homematic IP Thermostat -> HA Smart Thermostat -> Floor heating working fine:
Bildschirmfoto.2024-10-20.um.09.43.59.png (view on web)
It's running since three days and has still not adjusted fully to good PID values. I struggled to get the sensors for internal values to show correctly, so I am not sure how I get:
Better PID starting values based on the learning process
A better visualisation (like the one on this project).
Thanks, -MN
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Hej @Andykakau I have documented my solution here: I think your issue is with the sensors, but I am not sure - I am using HA since few months only and have not understood everything in detail. Good luck. |
Hy Oliver,
thnx for the link. I am going to test it next weekend. If I need help I am going to write again.
Oliver S schrieb am 22.10.2024 10:14 (GMT +02:00):
… Hej @Andykakau <https://github.com/Andykakau>
I have documented my solution here:
https://github.com/JarlMorgennebel/homelab/blob/main/Home%20Assistant/Smart%20Thermostat%20(PID)/HowTo%20+%20Homematic%20+%20Homematic%20IP.md <https://github.com/JarlMorgennebel/homelab/blob/main/Home%20Assistant/Smart%20Thermostat%20(PID)/HowTo%20+%20Homematic%20+%20Homematic%20IP.md>
I think your issue is with the sensors, but I am not sure - I am using HA since few months only and have not understood everything in detail. Good luck.
—
Reply to this email directly, view it on GitHub <#224 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/BGCLX6O3FPMOW7NEEXBTKX3Z4YCPHAVCNFSM6AAAAABKDYGA5SVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRYGU3TEOBXGE> .
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Hy Oliver,
I am going to build my Thermostat this weekeend. Ich have two questions:
If I use HM-TC-IT-WM-W-EU Wahll Thermostat I didn´t need helpers, is this right?
The secound question the new Autmations I have to do in the automation.yaml is this correct.
Thx for a answer.
Andy
Oliver S schrieb am 22.10.2024 10:14 (GMT +02:00):
… Hej @Andykakau <https://github.com/Andykakau>
I have documented my solution here:
https://github.com/JarlMorgennebel/homelab/blob/main/Home%20Assistant/Smart%20Thermostat%20(PID)/HowTo%20+%20Homematic%20+%20Homematic%20IP.md <https://github.com/JarlMorgennebel/homelab/blob/main/Home%20Assistant/Smart%20Thermostat%20(PID)/HowTo%20+%20Homematic%20+%20Homematic%20IP.md>
I think your issue is with the sensors, but I am not sure - I am using HA since few months only and have not understood everything in detail. Good luck.
—
Reply to this email directly, view it on GitHub <#224 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/BGCLX6O3FPMOW7NEEXBTKX3Z4YCPHAVCNFSM6AAAAABKDYGA5SVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRYGU3TEOBXGE> .
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
@Andykakau I have updated my documentation as my last bugs were solved this morning 1:30am... |
Hi everyone,
I’m looking to integrate HASmartThermostat 2 into Home Assistant to control my heating. I have Homematic IP thermostats providing the set and actual temperatures. I want to use these with the HASmartThermostat integration to control a Zigbee outlet.
Here is the code I tried:
How can I adjust it to properly read values from the thermostat and make it work? Any ideas?
Thanks!
The text was updated successfully, but these errors were encountered: