dewenni / ESP_Buderus_KM271

Control your Buderus Logamatic 2107 or HS-2105 with MQTT or Home Assistant
MIT License
54 stars 10 forks source link

Sollwerte Heizkreise #66

Closed floschad closed 5 months ago

floschad commented 5 months ago

Hi,

es wäre toll, wenn man auch den Sollwert der Heizkreise für Tag und Nacht einstellen könnte. Hier sind die Werte alle von Rudolf König zu finden: (https://github.com/mhop/fhem-mirror/blob/master/fhem/contrib/km271.pl) Danach Raumsollwert.

dewenni commented 5 months ago

Hallo,

die FHEM Implementierung war zum Großteil auch meine Vorlage zu Umsetzung. Die Sollwerte für Tag und Nach jeweils für HK1 und HK2 kann man per MQTT einstellen. Die habe ich nur nicht in der WebOberfläche implementiert.

command:    heating circuit 1: hc1_day_setpoint
topic:      {"setvalue/hk1_tag_soll", setvalue/hc1_day_setpoint"}
payload:    Resolution: 0.5 [°C] - Range: 10 .. 30 [°C] 

command:    heating circuit 2: hc2_day_setpoint
topic:      {"setvalue/hk2_tag_soll", setvalue/hc2_day_setpoint"}
payload:    Resolution: 0.5 [°C] - Range: 10 .. 30 [°C] 

command:    heating circuit 1: hc1_night_setpoint
topic:      {"setvalue/hk1_nacht_soll", setvalue/hc1_night_setpoint"}
payload:    Resolution: 0.5 [°C] - Range: 10 .. 30 [°C] 

command:    heating circuit 2: hc2_night_setpoint
topic:      {"setvalue/hk2_nacht_soll", setvalue/hc2_night_setpoint"}
payload:    Resolution: 0.5 [°C] - Range: 10 .. 30 [°C] 

command:    heating circuit 1: hc1_holiday_setpoint
topic:      {"setvalue/hk1_ferien_soll", setvalue/hc1_holiday_setpoint"}
payload:    Resolution: 0.5 [°C] - Range: 10 .. 30 [°C] 

command:    heating circuit 2: hc2_holiday_setpoint
topic:      {"setvalue/hk2_ferien_soll", setvalue/hc2_holiday_setpoint"}
payload:    Resolution: 0.5 [°C] - Range: 10 .. 30 [°C] 

Wenn du es auf deutsch eingestellt hast, dann wäre z.B. der Sollwert Tag für HK1 wie folgt:

Topic:    setvalue/hk1_tag_soll
payload:  Auflösung: 0.5 [°C] - Bereich: 10 .. 30 [°C] 
floschad commented 5 months ago

Top, vielen Dank!