Configuration Help #81
-
Describe your desired configuration "Failed to start the service... Hardware info
Current configuration {
"Profiles": [
{
"Name": Pump",
"Ports": [
[9802, 8501, 1]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 100,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": AlwaysTrigger"
}
}
}
]
}
{
"Name": Radiator",
"Ports": [
[9802, 8501, 2],
[9802, 8501, 3],
[9802, 8501, 4]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 75],
[75, 100]
],
"Sensors": ["/intelcpu/0/temperature/17"],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": AlwaysTrigger"
}
}
}
]
}
{
"Name": 140mm",
"Ports": [
[9802, 8501, 5]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 40,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [],
"PortConfigs": [
{
"Ports": [
[9802, 8501, 1]
],
"Config": {
"DeviceType": "FloeRiing",
"IgnoreColorCache": true
}
{
"Ports": [
[9802, 8501, 2],
[9802, 8501, 3],
[9802, 8501, 4],
[9802, 8501, 5]
],
"Config": {
"DeviceType": "RiingDuo",
"IgnoreColorCache": true
}
}
]
}
"SensorConfigs": []
} |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
You pretty much configured it how you want just had minor errors. Its best to test in console mode, it will show you the log in real time so you can see what is happening and more detailed errors. The service was probably crashing while the console was waiting for it to start, so it timed out.
Yea you have to have the service running for the fan curve and other effects to work. It runs as system account so it will start in the background before you login, you dont have to have any windows open or apps in tray. This config should work: {
"Profiles": [
{
"Name": "Pump",
"Ports": [
[9802, 8501, 1]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 100,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
{
"Name": "Radiator",
"Ports": [
[9802, 8501, 2],
[9802, 8501, 3],
[9802, 8501, 4]
],
"SpeedControllers": [
{
"Type": "PwmSpeedController",
"Config": {
"CurvePoints": [
[30, 30],
[45, 50],
[55, 60],
[65, 75],
[75, 100]
],
"Sensors": ["/intelcpu/0/temperature/17"],
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
},
{
"Name": "140mm",
"Ports": [
[9802, 8501, 5]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 40,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "SpectrumEffect",
"Config": {
"Saturation": 1,
"Brightness": 1,
"HueStep": 1,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"PortConfigs": [
{
"Ports": [
[9802, 8501, 1]
],
"Config": {
"DeviceType": "FloeRiing"
}
},
{
"Ports": [
[9802, 8501, 2],
[9802, 8501, 3],
[9802, 8501, 4],
[9802, 8501, 5]
],
"Config": {
"DeviceType": "RiingDuo"
}
}
]
} |
Beta Was this translation helpful? Give feedback.
-
If you want to keep the boot effect all the time I guess you could remove all effects from the above config. |
Beta Was this translation helpful? Give feedback.
-
That seems to have done it, thank you very much. I sent you a tip on Paypal, you should get it today or tomorrow. |
Beta Was this translation helpful? Give feedback.
You pretty much configured it how you want just had minor errors. Its best to test in console mode, it will show you the log in real time so you can see what is happening and more detailed errors. The service was probably crashing while the console was waiting for it to start, so it timed out.
IgnoreColorCache
is only needed if your controller goes to the default rainbow when it does not receive any colors for some time. I think only Riing Quad controllers do this.