Commit a5003bf3 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

set max cpu temp to 90

parent 72dd6bd8
...@@ -32,11 +32,11 @@ from posix import EX_OSFILE, F_OK ...@@ -32,11 +32,11 @@ from posix import EX_OSFILE, F_OK
DEBUG = 0 DEBUG = 0
""" Set temperature when the fan should be turned on. """ """ Set temperature when the fan should be turned on. """
TEMP_FAN_ON = 55.0 TEMP_FAN_ON = 65.0
""" Set temperature when the system should be turned off. """ """ Set temperature when the system should be turned off. """
TEMP_SHUTDOWN = 80.0 TEMP_SHUTDOWN = 90.0
""" Temperature hysteresis in degrees. """ """ Temperature hysteresis in degrees. """
TEMP_HYSTERESIS = 2.0 TEMP_HYSTERESIS = 3.0
""" Temperature sampling time in seconds. This constant may be a floating point value. """ """ Temperature sampling time in seconds. This constant may be a floating point value. """
SAMPLING_TIME = 1 SAMPLING_TIME = 1
""" Temperature scaling factor. """ """ Temperature scaling factor. """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment