##################################################################### # RTSENSORS CONFIG FILE: # # Most options are self-explanatory, # # Do NOT change the order of settings # # Do NOT comment settings if its not explicitly allowed # # Check the README file for more info. # ##################################################################### #Hardware monitor #Accepts wildcards, see 'sensors --help' for more info #Comment this setting is safe if you only have a single hardware monitor CHIP_NAME = w83697hf-* #CPU TEMPERATURE CPU_TEMPERATURE = temp2 #BOX TEMPERATURE BOX_TEMPERATURE = temp1 ##################################################################### # CPU SECTION: # # This section applies to all parameters that affect CPU Temp. # ##################################################################### #CPU FAN CPU_FAN = fan1 #CPU FANS DIVISOR CPU_FAN_DIV = 0x04 #CPU FANS PWM CLOCK SELECT/DIVISOR CPU_FAN_PWMCLK = 0x20 #Maximum Temperature #At this temperature, fans will be at maximum speed CPU_TEMP_MAX = 55 #Sensor resolution (0.5 degrees is the usual value) CPU_TEMP_RES = 0.5 #Put the maximum and minimum speed here. #Maximum should be nominal speed of your fan (1500,2500,3500,4500,...) #In some systems minimum cant be 0. It must be higher to maintain sense system voltage. #A good minimum value to start is "nominal speed/2". #Difference should be at least 100 rpm CPU_RPM_MAX = 2500 CPU_RPM_MIN = 1500 #RPM control constant. #Decrease it if the RPM reference oscilates too much. #Only int values are valid. CPU_RPM_K = 3 #RPM Tolerance. #Increase it if the FAN speed oscilates too much #Only int values are valid. CPU_PWM_TOL = 50 #Use 1 for fuzzy control, 0 for constant speed CPU_CONTROL = 1 #If CPU_CONTROL = 0, this will be the desired constant fan speed CPU_CONTROL_CONSTANT = 2000 ##################################################################### # BOX SECTION: # # This section applies to all parameters that affect BOX Temp. # ##################################################################### #BOX FAN BOX_FAN = fan2 #CPU FANS DIVISOR BOX_FAN_DIV = 0x04 #CPU FANS PWM CLOCK SELECT/DIVISOR BOX_FAN_PWMCLK = 0x20 #Maximum Temperature #At this temperature, fans will be at maximum speed BOX_TEMP_MAX = 45 #Sensor resolution (0.5 degrees is the usual value) BOX_TEMP_RES = 0.5 #Put the desired maximum and minimum speed here. #Difference should be at least 100 rpm BOX_RPM_MAX = 2500 BOX_RPM_MIN = 1550 #RPM control constant. #Decrease it if the RPM reference oscilates too much. #Only int values are valid. BOX_RPM_K = 2 #RPM Tolerance. #Increase it if the FAN speed oscilates too much #Only int values are valid. BOX_PWM_TOL = 50 #Use 1 for fuzzy control, 0 for constant speed BOX_CONTROL = 1 #If CPU_CONTROL = 0, this will be the desired constant fan speed BOX_CONTROL_CONSTANT = 2000