thermald: lower threshold to exit red band

old-commit-hash: a77d226f33
beeps
Adeeb Shihadeh 2 years ago committed by GitHub
parent 0541586636
commit ab538d21f9
  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