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.Controls
Assembly:
ASCOM.Controls (in ASCOM.Controls.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntaxpublic enum CadencePattern
Public Enumeration CadencePattern
public enum class CadencePattern
Members|
| Member name | Value | Description |
|---|
| SteadyOff | 0 |
Permanently off,
appropriate for indication of a non-critical inactive state.
|
| SteadyOn | 4294967295 |
Permanently on,
appropriate for indication of a non-critical active state.
|
| BlinkFast | 4042322160 |
Fast blink,
appropriate for indicating a state of hightened but non-critical alert.
Usage example: during movement of robotic equipment.
|
| BlinkSlow | 4278255360 |
Slow blink,
appropriate for non-critical persistent conditions.
Usage example: image exposure in progress.
|
| BlinkAlarm | 3435973836 |
Very fast blink,
appropriate for drawing attention to urgent conditions that require operator intervention.
Usage example: Rain detected
|
| Strobe | 1 |
Strobe is mostly off but with an occasional short blip on,
appropriate for indicating non-critical ongoing steady idle state.
|
| Wink | 4294967294 |
Wink (mostly on with occasional short wink-off),
appropriate for indicating non-critical ongoing steady active state.
|
See Also