Created LedSegment enum (markdown)

Michael Miller
2023-03-29 14:43:03 -07:00
parent 4d0724c824
commit 21b027b28b

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
};
```