-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
63 lines (60 loc) · 1.78 KB
/
config.json
File metadata and controls
63 lines (60 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"settings": {
"refreshInterval": 500,
"oneSensorReadPerCycle": true
},
"tempSensors": [
{
"sensor": "CPU",
"path": "/sys/class/hwmon/hwmon3/temp1_input",
"deviceName": "k10temp",
"graph": [
{"temp": 48, "pwm": 85},
{"temp": 50, "pwm": 100},
{"temp": 60, "pwm": 130},
{"temp": 70, "pwm": 255}
]
},
{
"sensor": "GPU",
"path": "/sys/class/hwmon/hwmon6/temp1_input",
"deviceName": "amdgpu",
"graph": [
{"temp": 48, "pwm": 90},
{"temp": 50, "pwm": 100},
{"temp": 60, "pwm": 180},
{"temp": 70, "pwm": 255}
]
}
],
"fans": [
{
"fanControlPath": "/sys/class/hwmon/hwmon4/pwm4",
"fanRpmPath": "/sys/class/hwmon/hwmon4/fan4_input",
"deviceName": "nct6775",
"sensors": ["GPU", "CPU"],
"sensorFunction": "max",
"averageSampleSize" : 10,
"minPwm": 60,
"startPwm": 70,
"maxPwm": 255,
"overrideMax": false,
"proportionalFactor" : 0.05,
"hysteresis": 0.08
},
{
"fanControlPath": "/sys/class/hwmon/hwmon4/pwm1",
"fanRpmPath": "/sys/class/hwmon/hwmon4/fan1_input",
"deviceName": "nct6775",
"sensors": ["GPU", "CPU"],
"sensorFunction": "max",
"averageSampleSize" : 10,
"minPwm": 60,
"startPwm": 70,
"maxPwm": 255,
"overrideMax": false,
"proportionalFactor" : 0.05,
"hysteresis": 0.08
}
]
}