thermald: lower threshold to exit red band

pull/28478/head
Adeeb Shihadeh 2 years ago committed by GitHub
parent 838346d8a3
commit a77d226f33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      selfdrive/thermald/thermald.py

@ -41,7 +41,7 @@ HardwareState = namedtuple("HardwareState", ['network_type', 'network_info', 'ne
THERMAL_BANDS = OrderedDict({ THERMAL_BANDS = OrderedDict({
ThermalStatus.green: ThermalBand(None, 80.0), ThermalStatus.green: ThermalBand(None, 80.0),
ThermalStatus.yellow: ThermalBand(75.0, 96.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), ThermalStatus.danger: ThermalBand(94.0, None),
}) })

Loading…
Cancel
Save