Updated SevenSegDigit object API (markdown)

Michael Miller
2023-04-05 11:15:50 -07:00
parent 1517b51edc
commit a101c4a4cf

@@ -1,7 +1,7 @@
SevenSegDigit represents a color object that is represented by A, B, C, D, E, F, G, decimal, and special component values; which represent the names of the segments of a seven segment display. SevenSegDigit represents a color object that is represented by A, B, C, D, E, F, G, decimal, and special component values; which represent the names of the segments of a seven segment display.
## Properties ## Properties
There is one property that represent the component values of the segments. The values in each location range from 0 to 255. Black or off would 0,0,0 and white or full on would be 255,255,255. The index can be addressed by [LedSegment enum](https://github.com/Makuna/NeoPixelBus/wiki/LedSegment-enum)`. There is one property that represent the component values of the segments. The values in each location range from 0 to 255. Black or off would 0 and white or full on would be 255. The index can be addressed by [LedSegment enum](https://github.com/Makuna/NeoPixelBus/wiki/LedSegment-enum)`.
``` ```
uint8_t Segment[Count]; uint8_t Segment[Count];
``` ```