Overview
TheStaticValue generator sets a range of DMX channels to a fixed value. This is useful for testing, setting default values, or creating static lighting states.
Properties
The first channel in the range to set.Can be specified as:
- Global index:
0,512,1024 - Universe.Channel:
1.1,3.15 - Equation:
(2 * 512) + 5
The last channel in the range (inclusive).
The DMX value to set (0-255).Supports equations:
255, 128, (255 / 2)Implementation
From ~/workspace/source/Assets/Plugin/Generators/GeneratorStaticValue.cs:18-27:Configuration Example
Use Cases
Testing Serializers
Testing Serializers
Set all channels to a known value to verify your serializer is working correctly:
Default Lighting State
Default Lighting State
Provide a base lighting level before other generators or ArtNet data takes over:
Blackout
Blackout
Force all channels to zero:
Related
- Fade Generator - For time-based fading effects
- Remap Generator - For value transformations