Configuration Help #72
-
|
Describe your desired configuration I have two Pure Plus 12 fans connected to an official controller, they work on the TTRGB Plus software, which I despise. Current configuration {
"Profiles": [
{
"Name": "Zonic",
"Ports": [
[9802, 8101, 1],[9802, 8101, 2]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 77
}
}
],
"Effects": [
{
"Type": "Spectrum_Slow"
}
]
}
]
}When I run the service in console mode I get the following output: What do I need to do to setup the config correctly to allow for easy static speed and effect changes? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I think the error is pretty self explanatory and the docs have a few examples so you should be able to fix your config as you were pretty close. {
"Profiles": [
{
"Name": "Zonic",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 77,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
]
}Note that each time you edit the |
Beta Was this translation helpful? Give feedback.
-
|
thank you very much for this and your continued support :) |
Beta Was this translation helpful? Give feedback.
I think the error is pretty self explanatory and the docs have a few examples so you should be able to fix your config as you were pretty close.
{ "Profiles": [ { "Name": "Zonic", "Ports": [ [9802, 8101, 1], [9802, 8101, 2] ], "SpeedControllers": [ { "Type": "StaticSpeedController", "Config": { "Speed": 77, "Trigger": { "Type": "AlwaysTrigger" } } } ], "Effects": [ { "Type": "SpectrumEffect", "Config": { "Saturation": 1, "Brightness": 1, "HueStep": 1, "Trigger": …