Vinasis from TT Forum #6
-
Describe your desired configuration Thanks. Hardware info
Current configuration If applicable, add contents of your current configuration here. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
Please use 0.5.1.0-dev or later because I found a small bug. I think this config should do what you want: {
"Profiles": [
{
"Name": "On",
"Guid": "73f9a2b2-cf11-40db-a052-844d0c8d6516",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4],
[9802, 8102, 1],
[9802, 8102, 2],
[9802, 8102, 3],
[9802, 8102, 4],
[9802, 8103, 1],
[9802, 8103, 2],
[9802, 8103, 4],
[9802, 8103, 5],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 75,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
{
"Name": "Off",
"Guid": "189c57ca-e5eb-4bd4-ae7f-37d169ad3ebb",
"Ports": [
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 0,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [],
"PortConfig": [],
"CriticalTemperature": {
"/amdcpu/0/temperature/0": 85
},
"TemperatureTimerInterval": 250,
"DeviceSpeedTimerInterval": 2500,
"DeviceRgbTimerInterval": 32
} To change the off fans, cut the desired ports from "On" profile and paste them to "Off" profile ports. Then restart the service to apply. |
Beta Was this translation helpful? Give feedback.
-
Hello, {
"Profiles": [
{
"Name": "On1",
"Guid": "73f9a2b2-cf11-40db-a052-844d0c8d6516",
"Ports": [
[9802, 8102, 1],
[9802, 8102, 2],
[9802, 8103, 1],
[9802, 8103, 2],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 75,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
"Name": "On2",
"Guid": "73f9a2b2-cf11-40db-a052-844d0c8d6516",
"Ports": [
[9802, 8103, 4],
[9802, 8103, 5],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 90,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
{
"Name": "Off",
"Guid": "189c57ca-e5eb-4bd4-ae7f-37d169ad3ebb",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4],
[9802, 8102, 3],
[9802, 8102, 4],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 0,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [],
"PortConfig": [],
"CriticalTemperature": {
"/amdcpu/0/temperature/0": 85
},
"TemperatureTimerInterval": 250,
"DeviceSpeedTimerInterval": 2500,
"DeviceRgbTimerInterval": 32
} |
Beta Was this translation helpful? Give feedback.
-
Yea pretty much, but you have some syntax errors (missing '{') and you also need to change the guid for each profile to be unique. Here is it corrected: {
"Profiles": [
{
"Name": "On1",
"Guid": "73f9a2b2-cf11-40db-a052-844d0c8d6516",
"Ports": [
[9802, 8102, 1],
[9802, 8102, 2],
[9802, 8103, 1],
[9802, 8103, 2],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 75,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
{
"Name": "On2",
"Guid": "9c28427d-0a7b-48cb-b935-70c068201eb5",
"Ports": [
[9802, 8103, 4],
[9802, 8103, 5],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 90,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
{
"Name": "Off",
"Guid": "189c57ca-e5eb-4bd4-ae7f-37d169ad3ebb",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4],
[9802, 8102, 3],
[9802, 8102, 4],
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 0,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [],
"PortConfig": [],
"CriticalTemperature": {
"/amdcpu/0/temperature/0": 85
},
"TemperatureTimerInterval": 250,
"DeviceSpeedTimerInterval": 2500,
"DeviceRgbTimerInterval": 32
} |
Beta Was this translation helpful? Give feedback.
-
Thanks a lot, appreciate your assistance <3 I will start testing different things, hope someday you can add a reload function for when the pc restarts, even if you don't add one it's so easy via manage services to do once on every restart. I am just glad that you're helping in ways thermaltake themselves aren't doing. Respect <3 |
Beta Was this translation helpful? Give feedback.
-
What do you mean by reload on restart? |
Beta Was this translation helpful? Give feedback.
-
Everything seems fine with it now, I did shut down my PC and started it the effects and speeds were at default but then again I shut > start again and it worked, tried 4-5 times full shut down and start after that and they were working fine. |
Beta Was this translation helpful? Give feedback.
-
It should always load the config when booting, after restart or after resume from sleep. Don't know why it didnt, maybe you had official software running or the old service? While developing I think I never encountered this problem. If it happens again please make a bug report issue. Since you have your config working I will close this. If you need any help with the config feel free to create another issue. |
Beta Was this translation helpful? Give feedback.
Yea pretty much, but you have some syntax errors (missing '{') and you also need to change the guid for each profile to be unique.
Here is it corrected: