From 1a0471657355604c48592dbc5b35b965846c6b9f Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Tue, 17 Mar 2026 20:58:18 +0100 Subject: [PATCH 1/5] Add a datatype for Energy with a scaling factor of 0.01 --- luxtronik/datatypes.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/luxtronik/datatypes.py b/luxtronik/datatypes.py index d2819bd8..abbad9a8 100755 --- a/luxtronik/datatypes.py +++ b/luxtronik/datatypes.py @@ -588,6 +588,14 @@ class Energy(ScalingBase): scaling_factor = 0.1 +class Energy2(ScalingBase): + """Energy datatype, converts from and to Energy.""" + + datatype_class = "energy" + datatype_unit = "kWh" + scaling_factor = 0.01 + + class Voltage(ScalingBase): """Voltage datatype, converts from and to Voltage.""" From d7b9b02eae02c4ca5c7bee4cf81f0ff08bf2faa4 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Tue, 17 Mar 2026 20:59:49 +0100 Subject: [PATCH 2/5] Change the scaling factor of 'ID_Waermemenge' parameters from 0.1 to 0.01 --- luxtronik/definitions/parameters.py | 38 ++++++++++++++--------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/luxtronik/definitions/parameters.py b/luxtronik/definitions/parameters.py index 65423395..faebd544 100644 --- a/luxtronik/definitions/parameters.py +++ b/luxtronik/definitions/parameters.py @@ -16,7 +16,7 @@ AccessLevel, Bool, Count, - Energy, + Energy2, Kelvin, Celsius, CoolingMode, @@ -8571,10 +8571,10 @@ "index": 852, "count": 1, "names": ['ID_Waermemenge_Seit'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { @@ -8591,10 +8591,10 @@ "index": 854, "count": 1, "names": ['ID_Waermemenge_Hz'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { @@ -8831,20 +8831,20 @@ "index": 878, "count": 1, "names": ['ID_Waermemenge_BW'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { "index": 879, "count": 1, "names": ['ID_Waermemenge_SW'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { @@ -10641,20 +10641,20 @@ "index": 1059, "count": 1, "names": ['ID_Waermemenge_ZWE'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { "index": 1060, "count": 1, "names": ['ID_Waermemenge_Reset'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { @@ -11561,10 +11561,10 @@ "index": 1136, "count": 1, "names": ['HEAT_ENERGY_INPUT'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { @@ -11577,10 +11577,10 @@ "index": 1137, "count": 1, "names": ['DHW_ENERGY_INPUT'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { @@ -11603,10 +11603,10 @@ "index": 1139, "count": 1, "names": ['COOLING_ENERGY_INPUT'], - "type": Energy, + "type": Energy2, "writeable": False, "datatype": 'UINT32', - "unit": 'kWh/10', + "unit": 'kWh/100', "description": '', }, { From 40e0c47a87f6ba13b1bccea802bc59be1abf88c8 Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Tue, 17 Mar 2026 21:02:58 +0100 Subject: [PATCH 3/5] Change the scaling factor of the voltage data type to 0.01 --- luxtronik/datatypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luxtronik/datatypes.py b/luxtronik/datatypes.py index abbad9a8..a90d28d6 100755 --- a/luxtronik/datatypes.py +++ b/luxtronik/datatypes.py @@ -601,7 +601,7 @@ class Voltage(ScalingBase): datatype_class = "voltage" datatype_unit = "V" - scaling_factor = 0.1 + scaling_factor = 0.01 class Hours(ScalingBase): From fc879806c4260297e6c93484b3ce93afbd1a849a Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Tue, 17 Mar 2026 21:08:20 +0100 Subject: [PATCH 4/5] Update the CHANGELOG.md --- CHANGELOG.md | 1234 +++++++++++++++++++++++++------------------------- 1 file changed, 618 insertions(+), 616 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38187e45..89dd5191 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ is required for this. See README for further information. [#190] of in a separate queue. [#221, #237] - The field objects now provide `datatype_class` and `datatype_unit` instead of `measurement_type` +- Change the scaling factor of 'ID_Waermemenge' parameters from 0.1 to 0.01 [#198] +- Change the scaling factor of the voltage data type to 0.01 [#198] ### Removed @@ -32,1237 +34,1237 @@ like `parameters.parameters`. [TODO] ### Parameters - Type of `ID_Einst_HzMK1E_akt` (index `14`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK1ANH_akt` (index `15`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK1ABS_akt` (index `16`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_LGST_akt` (index `47`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Sollwert_TLG_max` (index `84`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_TRBegr_akt` (index `87`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HRHyst_akt` (index `88`) changed -from `Unknown`to `Kelvin` +from `Unknown` to `Kelvin` - Type of `ID_Einst_TRErhmax_akt` (index `89`) changed -from `Unknown`to `Kelvin` +from `Unknown` to `Kelvin` - Type of `ID_Einst_ZWEFreig_akt` (index `90`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_TAmax_akt` (index `91`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_TAmin_akt` (index `92`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_TWQmin_akt` (index `93`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_THGmax_akt` (index `94`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_TV2VDBW_akt` (index `96`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_Zugangscode` (index `107`) changed -from `Unknown`to `AccessLevel` +from `Unknown` to `AccessLevel` - Type of `ID_Einst_TAbsMin_akt` (index `111`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK2E_akt` (index `141`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK2ANH_akt` (index `142`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK2ABS_akt` (index `143`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_SuHkr_akt` (index `222`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuHkrW0_zeit_0_0` (index `223`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrW0_zeit_0_1` (index `224`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrW0_zeit_1_0` (index `225`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrW0_zeit_1_1` (index `226`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrW0_zeit_2_0` (index `227`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrW0_zeit_2_1` (index `228`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_0_0` (index `229`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_0_1` (index `230`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_1_0` (index `231`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_1_1` (index `232`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_2_0` (index `233`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_2_1` (index `234`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_0_2` (index `235`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_0_3` (index `236`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_1_2` (index `237`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_1_3` (index `238`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_2_2` (index `239`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkr25_zeit_2_3` (index `240`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_0` (index `241`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_1` (index `242`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_0` (index `243`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_1` (index `244`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_0` (index `245`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_1` (index `246`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_2` (index `247`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_3` (index `248`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_2` (index `249`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_3` (index `250`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_2` (index `251`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_3` (index `252`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_4` (index `253`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_5` (index `254`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_4` (index `255`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_5` (index `256`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_4` (index `257`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_5` (index `258`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_6` (index `259`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_7` (index `260`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_6` (index `261`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_7` (index `262`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_6` (index `263`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_7` (index `264`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_8` (index `265`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_9` (index `266`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_8` (index `267`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_9` (index `268`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_8` (index `269`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_9` (index `270`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_10` (index `271`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_11` (index `272`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_10` (index `273`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_11` (index `274`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_10` (index `275`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_11` (index `276`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_12` (index `277`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_0_13` (index `278`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_12` (index `279`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_1_13` (index `280`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_12` (index `281`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuHkrTG_zeit_2_13` (index `282`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1_akt` (index `283`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuMk1W0_zeit_0_0` (index `284`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1W0_zeit_0_1` (index `285`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1W0_zeit_1_0` (index `286`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1W0_zeit_1_1` (index `287`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1W0_zeit_2_0` (index `288`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1W0_zeit_2_1` (index `289`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_0_0` (index `290`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_0_1` (index `291`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_1_0` (index `292`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_1_1` (index `293`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_2_0` (index `294`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_2_1` (index `295`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_0_2` (index `296`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_0_3` (index `297`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_1_2` (index `298`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_1_3` (index `299`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_2_2` (index `300`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk125_zeit_2_3` (index `301`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_0` (index `302`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_1` (index `303`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_0` (index `304`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_1` (index `305`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_0` (index `306`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_1` (index `307`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_2` (index `308`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_3` (index `309`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_2` (index `310`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_3` (index `311`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_2` (index `312`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_3` (index `313`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_4` (index `314`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_5` (index `315`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_4` (index `316`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_5` (index `317`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_4` (index `318`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_5` (index `319`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_6` (index `320`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_7` (index `321`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_6` (index `322`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_7` (index `323`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_6` (index `324`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_7` (index `325`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_8` (index `326`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_9` (index `327`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_8` (index `328`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_9` (index `329`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_8` (index `330`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_9` (index `331`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_10` (index `332`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_11` (index `333`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_10` (index `334`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_11` (index `335`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_10` (index `336`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_11` (index `337`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_12` (index `338`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_0_13` (index `339`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_12` (index `340`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_1_13` (index `341`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_12` (index `342`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk1TG_zeit_2_13` (index `343`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2_akt2` (index `344`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuMk2Wo_zeit_0_0` (index `345`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Wo_zeit_0_1` (index `346`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Wo_zeit_1_0` (index `347`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Wo_zeit_1_1` (index `348`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Wo_zeit_2_0` (index `349`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Wo_zeit_2_1` (index `350`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_0_0` (index `351`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_0_1` (index `352`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_1_0` (index `353`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_1_1` (index `354`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_2_0` (index `355`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_2_1` (index `356`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_0_2` (index `357`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_0_3` (index `358`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_1_2` (index `359`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_1_3` (index `360`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_2_2` (index `361`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk225_zeit_2_3` (index `362`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_0` (index `363`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_1` (index `364`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_0` (index `365`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_1` (index `366`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_0` (index `367`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_1` (index `368`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_2` (index `369`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_3` (index `370`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_2` (index `371`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_3` (index `372`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_2` (index `373`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_3` (index `374`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_4` (index `375`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_5` (index `376`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_4` (index `377`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_5` (index `378`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_4` (index `379`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_5` (index `380`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_6` (index `381`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_7` (index `382`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_6` (index `383`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_7` (index `384`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_6` (index `385`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_7` (index `386`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_8` (index `387`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_9` (index `388`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_8` (index `389`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_9` (index `390`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_8` (index `391`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_9` (index `392`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_10` (index `393`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_11` (index `394`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_10` (index `395`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_11` (index `396`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_10` (index `397`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_11` (index `398`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_12` (index `399`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_0_13` (index `400`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_12` (index `401`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_1_13` (index `402`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_12` (index `403`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk2Tg_zeit_2_13` (index `404`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SUBW_akt2` (index `405`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuBwWO_zeit_0_0` (index `406`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_0_1` (index `407`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_1_0` (index `408`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_1_1` (index `409`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_2_0` (index `410`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_2_1` (index `411`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_3_0` (index `412`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_3_1` (index `413`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_4_0` (index `414`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwWO_zeit_4_1` (index `415`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_0_0` (index `416`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_0_1` (index `417`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_1_0` (index `418`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_1_1` (index `419`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_2_0` (index `420`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_2_1` (index `421`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_3_0` (index `422`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_3_1` (index `423`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_4_0` (index `424`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_4_1` (index `425`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_0_2` (index `426`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_0_3` (index `427`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_1_2` (index `428`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_1_3` (index `429`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_2_2` (index `430`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_2_3` (index `431`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_3_2` (index `432`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_3_3` (index `433`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_4_2` (index `434`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBw25_zeit_4_3` (index `435`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_0` (index `436`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_1` (index `437`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_0` (index `438`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_1` (index `439`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_0` (index `440`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_1` (index `441`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_0` (index `442`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_1` (index `443`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_0` (index `444`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_1` (index `445`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_2` (index `446`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_3` (index `447`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_2` (index `448`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_3` (index `449`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_2` (index `450`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_3` (index `451`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_2` (index `452`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_3` (index `453`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_2` (index `454`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_3` (index `455`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_4` (index `456`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_5` (index `457`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_4` (index `458`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_5` (index `459`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_4` (index `460`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_5` (index `461`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_4` (index `462`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_5` (index `463`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_4` (index `464`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_5` (index `465`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_6` (index `466`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_7` (index `467`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_6` (index `468`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_7` (index `469`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_6` (index `470`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_7` (index `471`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_6` (index `472`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_7` (index `473`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_6` (index `474`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_7` (index `475`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_8` (index `476`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_9` (index `477`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_8` (index `478`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_9` (index `479`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_8` (index `480`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_9` (index `481`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_8` (index `482`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_9` (index `483`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_8` (index `484`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_9` (index `485`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_10` (index `486`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_11` (index `487`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_10` (index `488`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_11` (index `489`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_10` (index `490`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_11` (index `491`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_10` (index `492`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_11` (index `493`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_10` (index `494`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_11` (index `495`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_12` (index `496`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_0_13` (index `497`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_12` (index `498`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_1_13` (index `499`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_12` (index `500`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_2_13` (index `501`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_12` (index `502`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_3_13` (index `503`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_12` (index `504`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuBwTG_zeit_4_13` (index `505`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP_akt` (index `506`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuZIPWo_zeit_0_0` (index `507`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_0_1` (index `508`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_1_0` (index `509`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_1_1` (index `510`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_2_0` (index `511`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_2_1` (index `512`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_3_0` (index `513`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_3_1` (index `514`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_4_0` (index `515`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPWo_zeit_4_1` (index `516`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_0_0` (index `517`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_0_1` (index `518`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_1_0` (index `519`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_1_1` (index `520`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_2_0` (index `521`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_2_1` (index `522`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_3_0` (index `523`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_3_1` (index `524`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_4_0` (index `525`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_4_1` (index `526`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_0_2` (index `527`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_0_3` (index `528`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_1_2` (index `529`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_1_3` (index `530`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_2_2` (index `531`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_2_3` (index `532`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_3_2` (index `533`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_3_3` (index `534`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_4_2` (index `535`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIP25_zeit_4_3` (index `536`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_0` (index `537`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_1` (index `538`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_0` (index `539`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_1` (index `540`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_0` (index `541`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_1` (index `542`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_0` (index `543`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_1` (index `544`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_0` (index `545`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_1` (index `546`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_2` (index `547`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_3` (index `548`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_2` (index `549`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_3` (index `550`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_2` (index `551`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_3` (index `552`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_2` (index `553`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_3` (index `554`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_2` (index `555`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_3` (index `556`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_4` (index `557`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_5` (index `558`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_4` (index `559`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_5` (index `560`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_4` (index `561`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_5` (index `562`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_4` (index `563`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_5` (index `564`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_4` (index `565`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_5` (index `566`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_6` (index `567`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_7` (index `568`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_6` (index `569`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_7` (index `570`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_6` (index `571`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_7` (index `572`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_6` (index `573`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_7` (index `574`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_6` (index `575`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_7` (index `576`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_8` (index `577`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_9` (index `578`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_8` (index `579`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_9` (index `580`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_8` (index `581`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_9` (index `582`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_8` (index `583`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_9` (index `584`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_8` (index `585`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_9` (index `586`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_10` (index `587`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_11` (index `588`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_10` (index `589`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_11` (index `590`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_10` (index `591`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_11` (index `592`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_10` (index `593`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_11` (index `594`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_10` (index `595`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_11` (index `596`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_12` (index `597`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_0_13` (index `598`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_12` (index `599`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_1_13` (index `600`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_12` (index `601`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_2_13` (index `602`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_12` (index `603`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_3_13` (index `604`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_12` (index `605`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuZIPTg_zeit_4_13` (index `606`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb_akt` (index `607`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuSwbWo_zeit_0_0` (index `608`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbWo_zeit_0_1` (index `609`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbWo_zeit_1_0` (index `610`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbWo_zeit_1_1` (index `611`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbWo_zeit_2_0` (index `612`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbWo_zeit_2_1` (index `613`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_0_0` (index `614`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_0_1` (index `615`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_1_0` (index `616`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_1_1` (index `617`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_2_0` (index `618`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_2_1` (index `619`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_0_2` (index `620`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_0_3` (index `621`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_1_2` (index `622`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_1_3` (index `623`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_2_2` (index `624`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwb25_zeit_2_3` (index `625`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_0` (index `626`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_1` (index `627`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_0` (index `628`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_1` (index `629`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_0` (index `630`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_1` (index `631`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_2` (index `632`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_3` (index `633`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_2` (index `634`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_3` (index `635`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_2` (index `636`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_3` (index `637`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_4` (index `638`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_5` (index `639`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_4` (index `640`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_5` (index `641`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_4` (index `642`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_5` (index `643`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_6` (index `644`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_7` (index `645`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_6` (index `646`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_7` (index `647`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_6` (index `648`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_7` (index `649`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_8` (index `650`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_9` (index `651`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_8` (index `652`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_9` (index `653`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_8` (index `654`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_9` (index `655`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_10` (index `656`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_11` (index `657`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_10` (index `658`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_11` (index `659`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_10` (index `660`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_11` (index `661`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_12` (index `662`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_0_13` (index `663`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_12` (index `664`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_1_13` (index `665`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_12` (index `666`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuSwbTg_zeit_2_13` (index `667`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Zaehler_BetrZeitWP` (index `668`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitVD1` (index `669`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitVD2` (index `670`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitZWE1` (index `671`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitZWE2` (index `672`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitZWE3` (index `673`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitImpVD1` (index `674`) changed -from `Unknown`to `Count` +from `Unknown` to `Count` - Type of `ID_Zaehler_BetrZeitImpVD2` (index `675`) changed -from `Unknown`to `Count` +from `Unknown` to `Count` - Type of `ID_Ba_Hz_MK1_akt` (index `695`) changed -from `Unknown`to `MixedCircuitMode` +from `Unknown` to `MixedCircuitMode` - Type of `ID_Ba_Hz_MK2_akt` (index `696`) changed -from `Unknown`to `MixedCircuitMode` +from `Unknown` to `MixedCircuitMode` - Type of `ID_Zaehler_BetrZeitHz` (index `728`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitBW` (index `729`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Zaehler_BetrZeitKue` (index `730`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Einst_HzMK3E_akt` (index `774`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK3ANH_akt` (index `775`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_HzMK3ABS_akt` (index `776`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_SuMk3_akt2` (index `788`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuMk3Wo_zeit_0_0` (index `789`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Wo_zeit_0_1` (index `790`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Wo_zeit_1_0` (index `791`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Wo_zeit_1_1` (index `792`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Wo_zeit_2_0` (index `793`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Wo_zeit_2_1` (index `794`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_0_0` (index `795`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_0_1` (index `796`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_1_0` (index `797`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_1_1` (index `798`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_2_0` (index `799`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_2_1` (index `800`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_0_2` (index `801`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_0_3` (index `802`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_1_2` (index `803`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_1_3` (index `804`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_2_2` (index `805`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk325_zeit_2_3` (index `806`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_0` (index `807`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_1` (index `808`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_0` (index `809`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_1` (index `810`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_0` (index `811`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_1` (index `812`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_2` (index `813`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_3` (index `814`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_2` (index `815`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_3` (index `816`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_2` (index `817`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_3` (index `818`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_4` (index `819`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_5` (index `820`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_4` (index `821`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_5` (index `822`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_4` (index `823`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_5` (index `824`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_6` (index `825`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_7` (index `826`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_6` (index `827`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_7` (index `828`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_6` (index `829`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_7` (index `830`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_8` (index `831`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_9` (index `832`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_8` (index `833`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_9` (index `834`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_8` (index `835`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_9` (index `836`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_10` (index `837`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_11` (index `838`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_10` (index `839`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_11` (index `840`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_10` (index `841`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_11` (index `842`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_12` (index `843`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_0_13` (index `844`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_12` (index `845`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_1_13` (index `846`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_12` (index `847`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Einst_SuMk3Tg_zeit_2_13` (index `848`) changed -from `Unknown`to `TimeOfDay` +from `Unknown` to `TimeOfDay` - Type of `ID_Waermemenge_Seit` (index `852`) changed -from `Unknown`to `Energy` +from `Unknown` to `Energy2` - Type of `ID_Waermemenge_Hz` (index `854`) changed -from `Unknown`to `Energy` +from `Unknown` to `Energy2` - Type of `ID_Zaehler_BetrZeitSW` (index `859`) changed -from `Unknown`to `Seconds` +from `Unknown` to `Seconds` - Type of `ID_Einst_Popt_Nachlauf_akt` (index `864`) changed -from `Unknown`to `Minutes` +from `Unknown` to `Minutes` - Type of `ID_Waermemenge_BW` (index `878`) changed -from `Unknown`to `Energy` +from `Unknown` to `Energy2` - Type of `ID_Waermemenge_SW` (index `879`) changed -from `Unknown`to `Energy` +from `Unknown` to `Energy2` - Type of `ID_Waermemenge_Datum` (index `880`) changed -from `Unknown`to `Timestamp` +from `Unknown` to `Timestamp` - Type of `ID_Einst_SuLuf_akt` (index `895`) changed -from `Unknown`to `TimerProgram` +from `Unknown` to `TimerProgram` - Type of `ID_Einst_SuLufWo_zeit_0_0_0` (index `896`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufWo_zeit_0_1_0` (index `897`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufWo_zeit_0_2_0` (index `898`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_0_0_0` (index `899`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_0_1_0` (index `900`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_0_2_0` (index `901`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_0_0_2` (index `902`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_0_1_2` (index `903`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_0_2_2` (index `904`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_0` (index `905`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_0` (index `906`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_0` (index `907`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_2` (index `908`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_2` (index `909`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_2` (index `910`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_4` (index `911`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_4` (index `912`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_4` (index `913`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_6` (index `914`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_6` (index `915`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_6` (index `916`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_8` (index `917`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_8` (index `918`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_8` (index `919`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_10` (index `920`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_10` (index `921`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_10` (index `922`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_0_12` (index `923`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_1_12` (index `924`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_0_2_12` (index `925`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufWo_zeit_1_0_0` (index `926`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufWo_zeit_1_1_0` (index `927`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufWo_zeit_1_2_0` (index `928`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_1_0_0` (index `929`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_1_1_0` (index `930`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_1_2_0` (index `931`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_1_0_2` (index `932`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_1_1_2` (index `933`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLuf25_zeit_1_2_2` (index `934`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_0` (index `935`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_0` (index `936`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_0` (index `937`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_2` (index `938`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_2` (index `939`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_2` (index `940`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_4` (index `941`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_4` (index `942`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_4` (index `943`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_6` (index `944`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_6` (index `945`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_6` (index `946`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_8` (index `947`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_8` (index `948`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_8` (index `949`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_10` (index `950`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_10` (index `951`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_10` (index `952`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_0_12` (index `953`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_1_12` (index `954`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_SuLufTg_zeit_1_2_12` (index `955`) changed -from `Unknown`to `TimeOfDay2` +from `Unknown` to `TimeOfDay2` - Type of `ID_Einst_Minimale_Ruecklaufsolltemperatur` (index `979`) changed -from `Unknown`to `Celsius` +from `Unknown` to `Celsius` - Type of `ID_Einst_Freigabe_Zeit_ZWE` (index `992`) changed -from `Unknown`to `Minutes` +from `Unknown` to `Minutes` - Type of `ID_Einst_Warmwasser_Nachheizung` (index `994`) changed -from `Unknown`to `Bool` +from `Unknown` to `Bool` - Type of `ID_Einst_WW_Nachheizung_max` (index `1020`) changed -from `Unknown`to `Hours2` +from `Unknown` to `Hours2` - Type of `ID_Waermemenge_ZWE` (index `1059`) changed -from `Unknown`to `Energy` +from `Unknown` to `Energy2` - Type of `ID_Waermemenge_Reset` (index `1060`) changed -from `Unknown`to `Energy` +from `Unknown` to `Energy2` - Add `SILENT_MODE` (index `1087`) of type `OnOffMode` - Add `ID_Einst_SuSilence` (index `1092`) of type `TimerProgram` - Add `ID_Einst_SilenceTimer_0` (index `1093`) of type `TimeOfDay2` From 3fd13793b86ae164fddee36f3c7a72461c218dad Mon Sep 17 00:00:00 2001 From: Guzz-T Date: Tue, 17 Mar 2026 21:19:02 +0100 Subject: [PATCH 5/5] Adapt pytest to new scaling factors --- tests/test_compatibility.py | 7 ++++--- tests/test_datatypes.py | 41 ++++++++++++++++++++++++++++++++----- 2 files changed, 40 insertions(+), 8 deletions(-) diff --git a/tests/test_compatibility.py b/tests/test_compatibility.py index 100aaf5f..9d76fb9b 100644 --- a/tests/test_compatibility.py +++ b/tests/test_compatibility.py @@ -25,6 +25,7 @@ CoolingMode, Count, Energy, + Energy2, Errorcode, Flow, Frequency, @@ -1256,12 +1257,12 @@ def test_compatibilities(self): "Unknown_Parameter_1134": (1134, Unknown), "Unknown_Parameter_1135": (1135, Unknown), "Unknown_Parameter_1136": (1136, Unknown), - "HEAT_ENERGY_INPUT": (1136, Energy), + "HEAT_ENERGY_INPUT": (1136, Energy2), "Unknown_Parameter_1137": (1137, Unknown), - "DHW_ENERGY_INPUT": (1137, Energy), + "DHW_ENERGY_INPUT": (1137, Energy2), "Unknown_Parameter_1138": (1138, Unknown), "Unknown_Parameter_1139": (1139, Unknown), - "COOLING_ENERGY_INPUT": (1139, Energy), + "COOLING_ENERGY_INPUT": (1139, Energy2), "Unknown_Parameter_1140": (1140, Unknown), "SECOND_HEAT_GENERATOR_AMOUNT_COUNTER": (1140, Unknown), "Unknown_Parameter_1141": (1141, Unknown), diff --git a/tests/test_datatypes.py b/tests/test_datatypes.py index 56ece266..871bd240 100644 --- a/tests/test_datatypes.py +++ b/tests/test_datatypes.py @@ -24,6 +24,7 @@ Power, PowerKW, Energy, + Energy2, Voltage, Hours, Hours2, @@ -871,6 +872,36 @@ def test_energy_to_heatpump(self): assert Energy.to_heatpump("g") is None +class TestEnergy2: + """Test suite for Energy datatype""" + + def test_init(self): + """Test cases for initialization""" + + a = Energy2("energy") + assert a.name == "energy" + assert a.datatype_class == "energy" + assert a.datatype_unit == "kWh" + + def test_energy_from_heatpump(self): + """Test cases for from_heatpump function""" + + assert Energy2.from_heatpump(None) is None + + assert Energy2.from_heatpump(10) == 0.1 + assert Energy2.from_heatpump(11) == 0.11 + + def test_energy_to_heatpump(self): + """Test cases for to_heatpump function""" + + assert Energy2.to_heatpump(1) == 100 + assert Energy2.to_heatpump(1.1) == 110 + + assert Energy2.to_heatpump(None) is None + assert Energy2.to_heatpump("5") == 500 + assert Energy2.to_heatpump("g") is None + + class TestVoltage: """Test suite for Voltage datatype""" @@ -887,17 +918,17 @@ def test_voltage_from_heatpump(self): assert Voltage.from_heatpump(None) is None - assert Voltage.from_heatpump(10) == 1 - assert Voltage.from_heatpump(11) == 1.1 + assert Voltage.from_heatpump(10) == 0.1 + assert Voltage.from_heatpump(11) == 0.11 def test_voltage_to_heatpump(self): """Test cases for to_heatpump function""" - assert Voltage.to_heatpump(1) == 10 - assert Voltage.to_heatpump(1.1) == 11 + assert Voltage.to_heatpump(1) == 100 + assert Voltage.to_heatpump(1.1) == 110 assert Voltage.to_heatpump(None) is None - assert Voltage.to_heatpump("6") == 60 + assert Voltage.to_heatpump("6") == 600 assert Voltage.to_heatpump("h") is None