4
LedSegment enum
Michael Miller edited this page 2023-04-20 10:59:45 -07:00

The LedSegment represents a readable index into the segments on a SevenSegDigit object. The names follow the standard naming practices for seven segment displays. See wikipedia.org segment names image.

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