Configuration Help #29
-
Describe your desired configuration Hardware info
Current configuration {
"Profiles": [
{
"Name": "Default",
"Guid": "10af9207-7e67-4581-9d13-506cad5d53c1",
"Ports": [[9802, 8101, 1], [9802, 8101, 2], [9802, 8101, 3], [9802, 8101, 4]],
"PortConfigs": [{
"Ports": [[9802, 8101, 1], [9802, 8101, 2], [9802, 8101, 3], [9802, 8101, 4]],
"Config": {
"Name": "Top Left",
"LedCount": 12,
"LedCountHandling": "Wrap",
"LedRotation": 10,
"LedReverse": true
}
}],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 90,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "RippleEffect",
"Config": {
"Length": 20,
"Color": [0, 160, 255],
"TickInterval": 1,
"Trigger": {
"Type": "OneTimeTrigger"
}
}
}
],
"ComputerStateProfiles": [
{
"StateType": "boot",
"Ports": [
[9802, 8101, 1], [9802, 8101, 2], [9802, 8101, 3], [9802, 8101, 4]
],
"Speed": 35
},
{
"StateType": "Shutdown",
"Ports": [
[9802, 8101, 1], [9802, 8101, 2], [9802, 8101, 3], [9802, 8101, 4]
],
"Speed": 35
}
]
}
],
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I prepared the "PortConfig" section for you if you want to match where the effect starts/stops for each fan so it is a smoother transition. I based the config on what you posted but I assume that it did not fully work. You should use the latest v0.8.0.0-alpha release with this config. Let me know if you want help with configuring anything else, {
"Profiles": [
{
"Name": "Default",
"Guid": "10af9207-7e67-4581-9d13-506cad5d53d1",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4]
],
"SpeedControllers": [
{
"Type": "StaticSpeedController",
"Config": {
"Speed": 90,
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
],
"Effects": [
{
"Type": "RippleEffect",
"Config": {
"Length": 20,
"Color": [0, 160, 255],
"TickInterval": 1,
"ColorGenerationMethod": "SpanPorts",
"Trigger": {
"Type": "AlwaysTrigger"
}
}
}
]
}
],
"ComputerStateProfiles": [
{
"StateType": "Boot",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4]
],
"Speed": 35
},
{
"StateType": "Shutdown",
"Ports": [
[9802, 8101, 1],
[9802, 8101, 2],
[9802, 8101, 3],
[9802, 8101, 4]
],
"Speed": 35,
"EffectType": "Full",
"EffectColors": [
[255, 0, 0]
]
}
],
"PortConfigs": [
{
"Ports": [[9802, 8101, 1]],
"LedRotation": [0],
"LedReverse": [false]
},
{
"Ports": [[9802, 8101, 2]],
"LedRotation": [0],
"LedReverse": [false]
},
{
"Ports": [[9802, 8101, 3]],
"LedRotation": [0],
"LedReverse": [false]
},
{
"Ports": [[9802, 8101, 4]],
"LedRotation": [0],
"LedReverse": [false]
}
],
"SensorConfigs": [
{
"Sensors": ["/intelcpu/0/temperature/16"],
"Config": {
"CriticalValue": 90
}
}
]
} |
Beta Was this translation helpful? Give feedback.
It goes througt fans and fades until next loop starts when animation ends on last fan.
I dont know if I understand you correctly but if you want the ripple to first finish on one fan before advancing to the next, that is currently not possible and requires a new custom effect (I might add support for this tho). You can either have a copy of the ripple on each fan, or have the ripple smoothly traverse thru all of the fans. The latter is what I have configured below.
I prepared the "PortConfig" section for you if you want to match where the effect starts/stops for each fan so it is a smoother transition. I based the config on what you posted but I assume that it did not fully work.
edit: Al…