Configuration Help #88
-
|
First, thank you very much for your efforts on this project, please let me know if I can donate somehow. I honestly don't understand why TT can't make some decent software for their great RGB fans. I'm having difficulty understanding how to get started, if you can set me up with a basic config as a starting point I will be very grateful! Desired Configuration Hardware info Current configuration |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
|
If you need more help, check the docs, they explain a little bit what each parameter does. This should do it: {
"Profiles": [
{
"Name": "Default",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4],
[9802, 8101, 5],
[9802, 8801, 1],
[9802, 8801, 2],
[9802, 8801, 3],
[9802, 8801, 4]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 75],
[75, 100]
],
"Sensors": ["/intelcpu/0/temperature/4"],
"MinimumChange": 4,
"MaximumChange": 8
}
}
],
"Effects": [
{
"Type": "AuroraEffect",
"Config": {
"Step": 0.003,
"Length": 64,
"Mirror": false,
"Brightness": 1,
"Saturation": 1,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
]
} |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for your quick response, this worked great! Just one thing, though I am not sure this is possible. when using TTRGBplus software, setting Aurora makes the colour-change progress from one fan to the next, so the gradient changes in series, making it look like the "aurora" is moving down the fans. Is this effect possible with TTController? |
Beta Was this translation helpful? Give feedback.
-
|
Yes, there is {
"Type": "AuroraEffect",
"Config": {
"ColorGenerationMethod": "SpanPorts",
"Step": 0.003,
"Length": 64,
"Mirror": false,
"Brightness": 1,
"Saturation": 1,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}You might want to also try setting |
Beta Was this translation helpful? Give feedback.
-
|
Super, that worked too. Last issue, it seems the fan control is not working, they are stuck at 60 fan speed (1100RPM) I tested this by attempting to configure them all at 0 or 100 and neither seemed to affect fan speed. |
Beta Was this translation helpful? Give feedback.
-
|
Oh whoops sorry, I forgot to add a trigger to the speed controller: {
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 75],
[75, 100]
],
"Sensors": ["/intelcpu/0/temperature/4"],
"MinimumChange": 4,
"MaximumChange": 8,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
} |
Beta Was this translation helpful? Give feedback.
-
|
Brilliant, thanks Moshi, I've played around and got some nice effects working thanks to your assistance! |
Beta Was this translation helpful? Give feedback.
Oh whoops sorry, I forgot to add a trigger to the speed controller:
{ "Type": "PwmSpeedController", "Config": { "CurvePoints": [ [30, 30], [45, 50], [55, 60], [65, 75], [75, 100] ], "Sensors": ["/intelcpu/0/temperature/4"], "MinimumChange": 4, "MaximumChange": 8, "Trigger": { "Type": "AlwaysTrigger" } } }