Config Help #132
-
Hi Moshi! I stumbled across your project while regretting the download of my TT software. However I am really bad at coding and I can't make anything work with the cofig, so I was wondering if you could help me? My report looks like this:
I really just want the fans to have a set rpm depending on the cpu temp. ie if the cpu <30 then fans =10% fan, 31<50=20%, 50<70=30%, 70<=40% fan speed. I also just want the default lighting if thats possible. The 6 fans are riing duos even though they show up as trios? I think you mentioned in another discussion that its just down to the controller. I'd be grateful for any help, and thank you in advance. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Minimum fan speed is 20%
Not sure what default means but I used aurora effect Try this: {
"Profiles": [
{
"Name": "Default",
"Ports": [
[9802, 8501, 1],
[9802, 8501, 2],
[9802, 8501, 3],
[9802, 8502, 1],
[9802, 8502, 2],
[9802, 8502, 3],
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[50, 20],
[70, 30],
[80, 50],
[85, 75],
[90, 100]
],
"Sensors": ["/intelcpu/0/temperature/6"],
"MinimumChange": 4,
"MaximumChange": 8,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "AuroraEffect",
"Config": {
"Step": 0.003,
"Length": 64,
"Mirror": false,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"PortConfigs": [
{
"Ports": [
[9802, 8501, 1],
[9802, 8501, 2],
[9802, 8501, 3],
[9802, 8502, 1],
[9802, 8502, 2],
[9802, 8502, 3],
],
"Config": {
"DeviceType": "RiingTrio"
}
}
]
} |
Beta Was this translation helpful? Give feedback.
Minimum fan speed is 20%
Not sure what default means but I used aurora effect
Try this: