@@ -877,7 +877,8 @@ class ControlMode(SelectionBase):
877
877
0 : "Off" , # System value is used
878
878
1 : "Setpoint" , # Setpoint register value is used
879
879
2 : "Offset" , # System values + offset register value is used
880
- 3 : "Level" ,
880
+ 3 : "Level" , # System values + smart-home-interface-settings
881
+ # register value is used
881
882
}
882
883
883
884
@@ -887,9 +888,9 @@ class LpcMode(SelectionBase):
887
888
datatype_class = "selection"
888
889
889
890
codes = {
890
- 0 : "No-Limit " ,
891
- 1 : "Soft-Limit " ,
892
- 2 : "Hard-Limit " ,
891
+ 0 : "No limit " ,
892
+ 1 : "Soft limit " ,
893
+ 2 : "Hard limit " ,
893
894
}
894
895
895
896
@@ -899,8 +900,8 @@ class LockMode(SelectionBase):
899
900
datatype_class = "selection"
900
901
901
902
codes = {
902
- 0 : "Unlocked / Off" ,
903
- 1 : "Locked / On" ,
903
+ 0 : "Off" , # Function is not locked
904
+ 1 : "On" , # Function is locked
904
905
}
905
906
906
907
class OnOffMode (SelectionBase ):
@@ -920,9 +921,15 @@ class LevelMode(SelectionBase):
920
921
921
922
codes = {
922
923
0 : "Normal" , # No correction
923
- 1 : "Increased" , # Increase the temperature by the values within the SHI-settings
924
- 2 : "Increased" , # Increase the temperature by the values within the SHI-settings
925
- 3 : "Decreased" , # Decrease the temperature by the values within the SHI-settings
924
+ 1 : "Increased" , # Increase the temperature by the values
925
+ # within the smart-home-interface-settings
926
+ # TODO: Function unknown – requires further analysis
927
+ 2 : "Increased2" , # Increase the temperature by the values
928
+ # within the smart-home-interface-settings
929
+ # TODO: Function unknown – requires further analysis
930
+ 3 : "Decreased" , # Decrease the temperature by the values
931
+ # within the smart-home-interface-settings
932
+ # TODO: Function unknown – requires further analysis
926
933
}
927
934
928
935
class PowerLimit (ScalingBase ):
0 commit comments