Configuration Help #91
-
|
Describe your desired configuration I just want the stadard TT RGB temperature configuration & fans to change speed as well based on current temps I.e. the fans change colour based on temp (I have 6 fans) Current configuration {
"Profiles": [
{
"Name": "Default",
"Ports": [
[9802, 8101, 1]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 75],
[75, 100]
],
"Sensors": ["/intelcpu/0/temperature/8"],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SensorEffect",
"Config": {
"Sensors": ["/intelcpu/0/temperature/8"],
"ColorGradient": [
[40, [16, 16, 128]],
[60, [16, 16, 16]],
[86, [128, 16, 16]]
],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [
{
"StateType": "Shutdown",
"Ports": [
[9802, 8103, 1]
],
"Speed": 35,
"Colors": {
"Full": [255, 0, 0]
}
}
],
"PortConfigs": [
{
"Ports": [[9802, 8103, 1]],
"Config": {
"Name": "Top Fan",
"ColorModifiers": [
{
"Type": "RotateLedColorModifier",
"Config": {
"Rotation": 11
}
},
{
"Type": "ReverseLedColorModifier",
"Config": {
"Reverse": true
}
}
]
}
}
],
"SensorConfigs": [
{
"Sensors": ["/intelcpu/0/temperature/8"],
"Config": {
"CriticalValue": 90
}
}
]
} |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments
-
|
The config you posted pretty much does what you want, you just needed to add correct port identifiers. {
"Profiles": [
{
"Name": "Default",
"Ports": [
[9802, 8103, 1],
[9802, 8103, 2],
[9802, 8103, 3],
[9802, 8103, 4],
[9802, 8103, 5],
[9802, 8102, 4]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 75],
[75, 100]
],
"Sensors": ["/intelcpu/0/temperature/8"],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SensorEffect",
"Config": {
"Sensors": ["/intelcpu/0/temperature/8"],
"ColorGradient": [
[40, [16, 16, 128]],
[60, [16, 16, 16]],
[86, [128, 16, 16]]
],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
]
}You have to change |
Beta Was this translation helpful? Give feedback.
-
|
so would i change "SenorEffect" to something else if I want it to do something else basically, does this run at boot or is it something I have to manually click? (sorry if this isnt exactly a configuration question cool seems to be working! |
Beta Was this translation helpful? Give feedback.
-
Yes but you also need to change the
If you install it then yes it runs at boot, before you even login to your account.
Hmm, that does seem to match the color from the config I posted above. Did you change them? |
Beta Was this translation helpful? Give feedback.
-
|
Yea I used what you posted Tbh the original i had was just the 1 on the example page I would have made more an effort however I spent 20 hours diagnosing why I was getting bsods to check tt rgb last :( appreciate the help my man I may recommend on this thread tomorrow however I think this should do it! |
Beta Was this translation helpful? Give feedback.
-
|
Just to be sure, run in console mode (stop the service if its running, select console mode from menu) and check that the sensor is getting correct temperature and the fans are responding correctly. You will see the data printed every 5s. |
Beta Was this translation helpful? Give feedback.
-
|
00:19:29.8450: Sensor "/intelcpu/0/temperature/8" value: 32.23256 |
Beta Was this translation helpful? Give feedback.
-
|
Ok, so that seems correct, only the color was incorrect. Try changing the gradient to this: "ColorGradient": [
[20, [16, 16, 128]],
[40, [16, 16, 16]],
[60, [128, 16, 16]]
],It will go:
|
Beta Was this translation helpful? Give feedback.
-
|
ok cool cheers man! once the service is running do I need to keep any of these files? if so I'll just move em to a secure location and save this thread |
Beta Was this translation helpful? Give feedback.
-
|
Yes, dont move or delete any files or the service will fail to start. It uses the same executable as the one you use to install/uninstall etc. |
Beta Was this translation helpful? Give feedback.

The config you posted pretty much does what you want, you just needed to add correct port identifiers.
{ "Profiles": [ { "Name": "Default", "Ports": [ [9802, 8103, 1], [9802, 8103, 2], [9802, 8103, 3], [9802, 8103, 4], [9802, 8103, 5], [9802, 8102, 4] ], "SpeedControllers": [ { "Type": "PwmSpeedController", "Config": { "CurvePoints": [ [30, 30], [45, 50], [55, 60], [65, 75], [75, 100] ], "Sensors": ["/intelcpu/0/temperature/8"], "Trigger": { "Type": "Alw…