CadencePattern Enumeration |
Cadence patterns for blinking LEDs.
Cadences are based on 32-bit unsigned integers, such that the ordinal value
of each item represents a bit mask that can be used directly in an update routine.
Namespace: ASCOM.ControlsAssembly: ASCOM.Controls (in ASCOM.Controls.dll) Version: 7.0.0-rc.0+0
Syntaxpublic enum CadencePattern
Public Enumeration CadencePattern
public enum class CadencePattern
MembersMember name | Value | Description |
---|
SteadyOff | 0 |
Permanently off,
appropriate for indication of a non-critical inactive state.
|
Strobe | 1 |
Strobe is mostly off but with an occasional short blip on,
appropriate for indicating non-critical ongoing steady idle state.
|
BlinkAlarm | 3,435,973,836 |
Very fast blink,
appropriate for drawing attention to urgent conditions that require operator intervention.
Usage example: Rain detected
|
BlinkFast | 4,042,322,160 |
Fast blink,
appropriate for indicating a state of hightened but non-critical alert.
Usage example: during movement of robotic equipment.
|
BlinkSlow | 4,278,255,360 |
Slow blink,
appropriate for non-critical persistent conditions.
Usage example: image exposure in progress.
|
Wink | 4,294,967,294 |
Wink (mostly on with occasional short wink-off),
appropriate for indicating non-critical ongoing steady active state.
|
SteadyOn | 4,294,967,295 |
Permanently on,
appropriate for indication of a non-critical active state.
|
See Also