Welche Parameter passen nicht? Es gibt Parameter wo mehrere Werte in eine Parameter zusammengestellt sein. Man kann das sehen wenn mehrere Parameter in die Liste dieselbe Adresse haben. Wann man diese Parameter liest mit die Länge der einzelne Parameter bekommt man eine Fehler 4 (Länge falsch). Ich benutze diese Liste der Datenpunkte mit Optolink Switch für meine Vitocal 300-G. Die meiste Parameter sollten auch für dene Anlage passen: ``` poll_items = [ # (Name, DpAddr, Len, Scale/Type, Signed) # Tabelle für Vitocal 300-G ("error", 0x0491, 1, 1, False), ("outside_temperature", 0x0101, 2, 0.1, True), ("hk1_mode", 0xB000, 1, 1, False), # betriebsart bit 4,5,6,7 comfort bit 1 spar bit 0 ("hk1_requested_temperature", 0xA406, 2, 0.01, False), ("hk1_normal_temperature", 0x2000, 2, 0.1, False), ("hk1_reduced_temperature", 0x2001, 2, 0.1, False), ("hk1_party_temperature", 0x2022, 2, 0.1, False), ("hk1_temperature", 0x0116, 2, 0.1, False), ("hk1_pump", 0x048D, 1, 1, False), ("hk1_supply_temperature", 0x010A, 2, 0.1, False), ("hk1_supply_target_temperature", 0x1800, 2, 0.1, False), ("hk2_mode", 0xB001, 1, 1, False), ("hk2_requested_temperature", 0xA446, 2, 0.01, False), ("hk2_normal_temperature", 0x3000, 2, 0.1, False), ("hk2_reduced_temperature", 0x3001, 2, 0.1, False), ("hk2_party_temperature", 0x3022, 2, 0.1, False), ("hk2_temperature", 0x0117, 2, 0.1, False), ("hk2_pump", 0x048E, 1, 1, False), ("hk2_supply_temperature", 0x0114, 2, 0.1, False), ("hk2_supply_target_temperature", 0x1801, 2, 0.1, False), ("buffer_temperature", 0x010B, 2, 0.1, False), ("nc_cooling", 0x0492, 1, 1, False), ("primary_supply_temperature", 0xB400, 3, 'b:0:1', 0.1, True), ("primary_return_temperature", 0xB401, 3, 'b:0:1', 0.1, True), ("secondary_supply_temperature", 0xB402, 3, 'b:0:1', 0.1, True), ("secondary_return_temperature", 0xB403, 3, 'b:0:1', 0.1, True), ("liquid_gas_temperature", 0xB404, 3, 0.1, 'b:0:1', True), ("evaporation_temperature", 0xB407, 3, 'b:0:1',0.1, True), ("condensation_temperature", 0xB408, 3, 0.1, 'b:0:1', True), ("suction_gas_temperature", 0xB409, 3, 0.1, 'b:0:1', True), ("hot_gas_temperature", 0xB40A, 3, 0.1, 'b:0:1', True), ("superheating_target", 0xB40B, 3, 0.1, 'b:0:1', True), ("suction_gas_pressure", 0xB410, 3, 0.1, 'b:0:1', True), ("hot_gas_pressure", 0xB411, 3, 0.1, 'b:0:1', True), ("primary_pump", 0xB420, 2, 1, False), ("secondary_pump", 0xB421, 2, 1, False), ("compressor", 0xB423, 2, 1, False), ("expansion_valve", 0xB424, 2, 1, False), ("nc_supply_temperature", 0x0119, 2, 0.1, False), ("nc_supply_target_temperature", 0x1804, 2, 0.1, False), ("thermal_energy", 0x1640, 4, 0.1, False), ("electrical_energy", 0x1660, 4, 0.1, False), ("thermal_power", 0x16A0, 4, 1, False), ("electrical_power", 0x16A4, 4, 1, False), ("cop", 0x1680, 1, 0.1, False) ] ```
... Mehr anzeigen