-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f681c2
commit 651b7a8
Showing
2 changed files
with
69 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,70 @@ | ||
dbPath: "fan2go.db" | ||
#tempSensorPollingRate: 1000ms | ||
#rollingWindowSize: 20 | ||
# The path of the database file. | ||
dbPath: "/etc/fan2go/fan2go.db" | ||
# The rate to poll temperature sensors at. | ||
tempSensorPollingRate: 200ms | ||
# The number of sensor items to keep in a rolling window array. | ||
rollingWindowSize: 100 | ||
# The rate to poll fan RPM input sensors at. | ||
rpmPollingRate: 1s | ||
# The rate to update fan speed targets at. | ||
controllerAdjustmentTickRate: 200ms | ||
|
||
# A list of sensors to monitor. | ||
sensors: | ||
# A user defined ID, which is used to reference a | ||
# a sensor in a fan configuration (see below) | ||
- id: cpu_package | ||
# The controller platform as displayed by `sensors`, f.ex.: | ||
# If sensors displays a group with the title "nouveau-pci-0100", | ||
# the platform would be "nouveau" | ||
platform: coretemp | ||
# The index of this sensor as displayed by `sensors`. | ||
index: 1 | ||
# The minimum target temp for this sensor. | ||
# If the sensor falls below this value, a fan configured | ||
# for it will run at minimum PWM value. | ||
min: 50 | ||
# The maximum target temp for this sensor. | ||
# If the sensor falls below this value, a fan configured | ||
# for it will run at maximum PWM value. | ||
max: 75 | ||
|
||
- id: mainboard | ||
platform: it8620 | ||
index: 3 # Intel PECI | ||
min: 50 | ||
max: 80 | ||
|
||
- id: sata_ssd | ||
platform: acpitz | ||
index: 1 | ||
min: 30 | ||
max: 40 | ||
|
||
# A list of fans to control. | ||
fans: | ||
# An user defined ID. | ||
# Used for logging only. | ||
- id: in_front | ||
# The platform of the controller which is | ||
# connected to this fan (see sensor.platform above). | ||
platform: it8620 | ||
# The index of this fan as displayed by `sensors`. | ||
fan: 3 # HDD Cage (Front) | ||
#pwmLineStart: 100 | ||
#pwmLineEnd: 240 | ||
neverStop: yes | ||
# Indicates whether this fan is allowed to fully stop. | ||
neverStop: no | ||
# The sensor ID (defined above) that should be used to determine the | ||
# speed of this fan. | ||
sensor: sata_ssd | ||
|
||
- id: in_bottom | ||
platform: it8620 | ||
fan: 4 # Power Supply (Bottom) | ||
#pwmLineStart: 100 | ||
#pwmLineEnd: 240 | ||
neverStop: yes | ||
sensor: mainboard | ||
|
||
- id: in_top_double | ||
platform: it8620 | ||
fan: 5 # Radiator (Top) | ||
#pwmLineStart: 100 | ||
#pwmLineEnd: 240 | ||
neverStop: yes | ||
sensor: cpu_package |