thermald: lower threshold to exit red band

This commit is contained in:
Adeeb Shihadeh
2023-06-09 20:15:13 -07:00
committed by GitHub
parent 838346d8a3
commit a77d226f33
+1 -1
View File
@@ -41,7 +41,7 @@ HardwareState = namedtuple("HardwareState", ['network_type', 'network_info', 'ne
THERMAL_BANDS = OrderedDict({
ThermalStatus.green: ThermalBand(None, 80.0),
ThermalStatus.yellow: ThermalBand(75.0, 96.0),
ThermalStatus.red: ThermalBand(80.0, 107.),
ThermalStatus.red: ThermalBand(88.0, 107.),
ThermalStatus.danger: ThermalBand(94.0, None),
})