Need help configuring and installing... #99
-
|
Hey all... I'm having serious issues with my riing trio fans especially when using TT RGB Plus so I thought I would try out this TT Controller; however, I'm not the greatest with coding and all that so I could definitely use some help. Moshi if we could quickly talk (phone/discord) and I could get a walkthrough, I'd very much appreciate it! Thanks for the help!
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
|
Please post the output of |
Beta Was this translation helpful? Give feedback.
-
~This is all I see so far...my main goal is to get something simple set up to accomplish these goals (again this is with 3 riing trio fans even though it seems to think I have riing quad fans): That's really all I am trying to configure but I'm really confused how this works. I could really use your guys help since I'm almost afraid to use my comp before I get these fans programmed correctly, and as you can see I'm also dealing with some pretty high end hardware 😆 I've seen many great things about your controller online and hope it'll work well for me too. I'd also be willing to donate over paypal towards your cause if this ends up working how I've heard it does. Also again if we could somehow talk to make things go faster and in case I have more questions that'd be amazing since I feel as if using github to type back and forth might hinder things a little...but whatever works for you. :) Thanks again!
|
Beta Was this translation helpful? Give feedback.
-
I think thermaltake started including riing quad controllers with older fans. Try this config: You have to tweak the pwm Otherwise it should work like you want. {
"Profiles": [
{
"Name": "Default",
"Ports": [
[9802, 8800, 1],
[9802, 8800, 2],
[9802, 8800, 3]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[20, 30],
[30, 50],
[50, 60],
[55, 75],
[65, 100]
],
"Sensors": ["/amdcpu/0/temperature/2"],
"MinimumChange": 4,
"MaximumChange": 8,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "StaticColorEffect",
"Config": {
"Color": {
"Full": [255, 0, 0]
},
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [
{
"StateType": "Shutdown",
"Ports": [
[9802, 8800, 1],
[9802, 8800, 2],
[9802, 8800, 3]
],
"Speed": 35
},
{
"StateType": "Boot",
"Ports": [
[9802, 8800, 1],
[9802, 8800, 2],
[9802, 8800, 3]
],
"Speed": 35
}
],
"PortConfigs": [
{
"Ports": [
[9802, 8800, 1],
[9802, 8800, 2],
[9802, 8800, 3]
],
"Config": {
"DeviceType": "RiingTrio",
"IgnoreColorCache": true
}
}
],
"SensorConfigs": [
{
"Sensors": ["/amdcpu/0/temperature/2"],
"Config": {
"CriticalValue": 80
}
}
]
} |
Beta Was this translation helpful? Give feedback.
-
Yes once you install it from the menu you cant move the files, but its always easy to uninstall, move the files and install again. Should be explained pretty well on the docs.
All into
Does not matter. |
Beta Was this translation helpful? Give feedback.
I think thermaltake started including riing quad controllers with older fans.
Try this config:
You have to tweak the pwm
"CurvePoints"to fit your pc, the left value is temperature, right value is fan speed.And set the
"CriticalValue"value for the sensor.Otherwise it should work like you want.
{ "Profiles": [ { "Name": "Default", "Ports": [ [9802, 8800, 1], [9802, 8800, 2], [9802, 8800, 3] ], "SpeedControllers": [ { "Type": "PwmSpeedController", "Config": { "CurvePoints": [ [20, 30], …