AceSegment
0.11.0
A library for rendering seven segment LED displays using the TM1637, TM1638, MAX7219, HT16K33, or 74HC595 controller chips
|
▼Nace_segment | |
CClockInterface | A utility class (all methods are static) that provides a layer of indirection to Arduino clock functions (millis() and micros()) |
CDirectFast4Module | An implementation of LedModule whose segment and digit pins are directly connected to the GPIO pins of the microcontroller |
CDirectModule | An implementation of LedModule whose segment and digit pins are directly connected to the GPIO pins of the microcontroller |
CGpioInterface | A utility lass that provides a thin layer of indirection to various GPIO functions |
CHc595Module | An implementation of LedModule class that supports an LED module using 2 74HC595 Shift Register chips |
CHt16k33Module | An implementation of LedModule using the HT16K33 chip |
CHybridModule | An implementation of LedModule class that supports an LED module using a single 74HC595 Shift Register chip on the segment pins |
CLedMatrixBase | Class that represents the abstraction of a particular LED display wiring, and knows how to turn off and turn on a specific group of LEDs with a specific pattern |
CLedMatrixDirect | An LedMatrixBase that whose group pins and element pins are wired directly to the MCU |
CLedMatrixDualHc595 | An LedMatrix that whose group pins are attached to one 74HC595 shift register and the element pins are attached to another 74HC595 shift register |
CLedMatrixSingleHc595 | An implementation of LedMatrixBase with an 74HC595 Shift Register chip on the segment pins, with the digit pins directly connected to the microcontroller |
CLedModule | General interface that represents a generic seven-segment LED module with multiple digits |
CMax7219Module | An implementation of LedModule using the MAX7219 chip |
CScanningModule | An implementation of LedModule for display modules which do not have hardware controller chips, so they require the microcontroller to perform the multiplexed scanning across the digits |
CTm1637Module | An implementation of LedModule using the TM1637 chip |
CTm1638Module | An implementation of LedModule using the TM1638 chip |