Wave Effect
Format
{
"Type": "WaveEffect",
"Config": {
"TickInterval": <int>,
"Color": <LedColorProvider>,
"ColorGenerationMethod": <enum>,
"Trigger": <Trigger>
}
}
Variables
TickInterval
Number of updates before the wave advances to the next led.
Required: No
Default value:
3
Example:
"TickInterval": 2
Color
A Led Color Provider object.
Required: Yes
Default value:
Example:
{
"Gradient": [
[0, [255, 0, 0]],
[0.5, [0, 255, 0]],
[1.0 [255, 0, 0]]
]
}
ColorGenerationMethod
Tells the effect how to generate colors for multiple devices. The actual behaviour is depended on the effect implementation.
Allowed values:
"PerPort"
- Duplicates the effect on each device."SpanPorts"
- Treats multiple devices as one.
Required: No
Default value:
"PerPort"
Example:
"ColorGenerationMethod": "SpanPorts"
Trigger
Instance of a Trigger plugin.
Required: Yes
Default value:
Example:
"Trigger": {
"Type": "AlwaysTrigger"
}
Example