mirror of
https://github.com/Makuna/NeoPixelBus.git
synced 2025-08-06 20:34:27 +02:00
Created LedSegment enum (markdown)
17
LedSegment-enum.md
Normal file
17
LedSegment-enum.md
Normal file
@@ -0,0 +1,17 @@
|
||||
The LedSegment represents a readable index into the segments on a SevenSegDigit object. The names follow the standard naming practices for seven segment displays.
|
||||
|
||||
```
|
||||
enum LedSegment
|
||||
{
|
||||
LedSegment_A,
|
||||
LedSegment_B,
|
||||
LedSegment_C,
|
||||
LedSegment_D,
|
||||
LedSegment_E,
|
||||
LedSegment_F,
|
||||
LedSegment_G,
|
||||
LedSegment_Decimal, // maybe jumpered to alternate custom segment
|
||||
LedSegment_Custom, // generally not used but maybe connected to a custom segment
|
||||
LedSegment_COUNT
|
||||
};
|
||||
```
|
Reference in New Issue
Block a user