-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
118 lines (118 loc) · 2.24 KB
/
Copy pathconfig.json.example
File metadata and controls
118 lines (118 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"sources": [
{
"name": "GPU",
"device id": "+pci:0000:03:00.0",
"sensors": [
{ "name": "edge" },
{ "name": "junction" },
{ "name": "mem" }
]
},
{
"name": "CPU",
"device id": "+pci:0000:00:18.3",
"sensors": [
{ "name": "Tctl" }
]
}
],
"custom sensors": [
{
"name": "test",
"type": "file",
"path": "/etc/cfans/fake_temp"
},
{
"name": "CPU/GPU Max",
"type": "max",
"sensors": [
{ "name": "Tctl" },
{ "name": "edge" },
{ "name": "junction", "offset": -10 },
{ "name": "mem", "offset": -10 }
]
}
],
"curves": [
{
"name": "Radiator",
"graph": [
[60, 0],
[70, 20],
[80, 55],
[85, 70],
[100, 100]
],
"sensor": "CPU/GPU Max",
"hysteresis": 3,
"response time": 2
},
{
"name": "Intake",
"graph": [
[60, 0],
[65, 10],
[70, 20],
[80, 50],
[90, 70],
[100, 100]
],
"sensor": "CPU/GPU Max",
"hysteresis": 3,
"response time": 2
},
{
"name": "Rear Exhaust",
"graph": [
[60, 0],
[65, 10],
[70, 20],
[80, 50],
[90, 70],
[100, 100]
],
"sensor": "CPU/GPU Max",
"hysteresis": 3,
"response time": 2
}
],
"fans": [
{
"name": "Radiator",
"device id": "+platform:nct6687.2592",
"pwm file": "pwm1",
"min pwm": 43,
"max pwm": 255,
"zero rpm": true,
"curve": "Radiator"
},
{
"name": "Rear Exhaust",
"device id": "+platform:nct6687.2592",
"pwm file": "pwm4",
"min pwm": 67,
"max pwm": 255,
"zero rpm": true,
"curve": "Rear Exhaust"
},
{
"name": "Bottom Intake",
"device id": "+platform:nct6687.2592",
"pwm file": "pwm3",
"min pwm": 58,
"max pwm": 255,
"zero rpm": true,
"curve": "Intake"
},
{
"name": "Side Intake",
"device id": "+platform:nct6687.2592",
"pwm file": "pwm5",
"min pwm": 58,
"max pwm": 255,
"zero rpm": true,
"curve": "Intake"
}
]
}