Set color i.a.w. CPU temp #8
-
With this hardware
I would like to implement the same function TT software offers, to set the color of the water pump and my two fans (ID 0 and 1,2) from blue to red i.a.w. the current CPU temperature. Any hints how to do this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think this should do what you want: {
"Profiles": [
{
"Name": "Fans",
"Guid": "5212f5c7-a69e-49fd-86c0-ef7412eea6f0",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 20],
[40, 25],
[50, 40],
[60, 75],
[70, 100]
],
"Sensors": ["/intelcpu/0/temperature/4"],
"MinimumChange": 4,
"MaximumChange": 8,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "TemperatureEffect",
"Config": {
"Sensors": ["/intelcpu/0/temperature/4"],
"ColorGradient": [
[30, [0, 0, 255]],
[60, [255, 0, 0]]
],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [
{
"StateType": "Shutdown",
"Ports": [
[9802, 8101, 2],
[9802, 8101, 3]
],
"Speed": 50
}
],
"CriticalTemperature": {
"/intelcpu/0/temperature/4": 70
},
"PortConfig": []
} You can configure the The color gradient can be configured in |
Beta Was this translation helpful? Give feedback.
-
Works like a charm... now I can deactivate the TT software. THANKS! |
Beta Was this translation helpful? Give feedback.
I think this should do what you want: