Skip to content
Michael Miller edited this page Apr 20, 2023 · 4 revisions

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
};
Clone this wiki locally