Commit 0b60982 1 parent 10dc16f commit 0b60982 Copy full SHA for 0b60982
File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,32 @@ def get_low_critical_threshold(self):
92
92
"""
93
93
raise NotImplementedError
94
94
95
+ def set_high_critical_threshold (self , temperature ):
96
+ """
97
+ Sets the critical high threshold temperature of thermal
98
+
99
+ Args :
100
+ temperature: A float number up to nearest thousandth of one degree Celsius,
101
+ e.g. 30.125
102
+
103
+ Returns:
104
+ A boolean, True if threshold is set successfully, False if not
105
+ """
106
+ raise NotImplementedError
107
+
108
+ def set_low_critical_threshold (self , temperature ):
109
+ """
110
+ Sets the critical low threshold temperature of thermal
111
+
112
+ Args :
113
+ temperature: A float number up to nearest thousandth of one degree Celsius,
114
+ e.g. 30.125
115
+
116
+ Returns:
117
+ A boolean, True if threshold is set successfully, False if not
118
+ """
119
+ raise NotImplementedError
120
+
95
121
def get_minimum_recorded (self ):
96
122
"""
97
123
Retrieves the minimum recorded temperature of thermal
You can’t perform that action at this time.
0 commit comments