Add Handabschaltung

add "Handabschaltung" to disable heating at summer time
This commit is contained in:
2018-05-14 22:03:48 +02:00
parent 89cdc61bae
commit 263559d8e9

View File

@@ -23,7 +23,7 @@ my %WKRCD4_gets = (
"Ww-Zeit-Ein" => "Ww-Zeit-Ein",
"Ww-Zeit-Aus" => "Ww-Zeit-Aus",
"Temp-WW-Soll" => "Temp-WW-Soll",
"Handabschaltung" => "Handabschaltung"
);
# list of Readings / values that can be written to the WP
@@ -33,7 +33,8 @@ my %WKRCD4_sets = (
"Hzg-KlSteilheit" => "Hzg-KlSteilheit",
"Ww-Zeit-Ein" => "Ww-Zeit-Ein",
"Ww-Zeit-Aus" => "Ww-Zeit-Aus",
"Temp-WW-Soll" => "Temp-WW-Soll"
"Temp-WW-Soll" => "Temp-WW-Soll",
"Handabschaltung" => "Handabschaltung"
);
# Definition of the values that can be read / written
@@ -60,6 +61,7 @@ my %frameReadings = (
'Temp-Saugleitung' => { addr => 0x0040, bytes => 0x0004, fmat => '%0.1f', unp => 'f<' },
'Druck-Verdampfer' => { addr => 0x0048, bytes => 0x0004, fmat => '%0.1f', unp => 'f<' },
'Druck-Kondensator' => { addr => 0x004C, bytes => 0x0004, fmat => '%0.1f', unp => 'f<' },
'Handabschaltung' => { addr => 0x00F3, bytes => 0x0001, unp => 'C', min => 0, max => 1 },
'Hzg-TempEinsatz' => { addr => 0x00F4, bytes => 0x0004, fmat => '%0.1f', unp => 'f<', min => 15.0, max => 20.0 },
'Hzg-TempBasisSoll' => { addr => 0x00F8, bytes => 0x0004, fmat => '%0.1f', unp => 'f<', min => 20.0, max => 24.0 },
'Hzg-KlSteilheit' => { addr => 0x00FC, bytes => 0x0004, fmat => '%0.1f', unp => 'f<', min => 15.0, max => 40.0 },