Skip to content

Commit

Permalink
parameters: Handle MK2 parameters analogoues to MK1 and MK2
Browse files Browse the repository at this point in the history
This edits the heating curve parameters for `MK2` similar to `MK1` and `MK3`
by defining the parameters as datatype `Celsius` and making it safe to write.
  • Loading branch information
kbabioch committed Sep 29, 2023
1 parent 9470de3 commit a0bb4c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions luxtronik/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ def __init__(self, safe=True):
138: Unknown("ID_Einst_TV2VDSWB_akt"),
139: Unknown("ID_Einst_MinSwan_Time_akt"),
140: Unknown("ID_Einst_SuMk2_akt"),
141: Unknown("ID_Einst_HzMK2E_akt"),
142: Unknown("ID_Einst_HzMK2ANH_akt"),
143: Unknown("ID_Einst_HzMK2ABS_akt"),
141: Celsius("ID_Einst_HzMK2E_akt", True),
142: Celsius("ID_Einst_HzMK2ANH_akt", True),
143: Celsius("ID_Einst_HzMK2ABS_akt", True),
144: Unknown("ID_Einst_HzMK2Hgr_akt"),
145: Unknown("ID_Einst_HzFtMK2Vl_akt"),
146: Unknown("ID_Temp_THG_BwHD_saved"),
Expand Down

0 comments on commit a0bb4c0

Please sign in to comment.