Seven Segments Displays Agnostic Library for ESP32 (Arduino) v3.3.0
A library that provides a class that models a Seven Segment Display and provides an unified API through it's members independently of the display technology.
|
Models a Seven Segment display hardware using a Max7219 display controller component More...
#include <SevenSegDispHw.h>
Public Member Functions | |
SevenSegMax7219 () | |
Default class constructor. | |
SevenSegMax7219 (uint8_t *ioPins, uint8_t dspDigits) | |
Class constructor. | |
~SevenSegMax7219 () | |
Class destructor. | |
bool | begin (uint32_t updtLps=0) |
Sets up the hardware display to work, and starts the display activities. | |
bool | end () |
Ends the active mode of the display by shutting it off. | |
virtual bool | getIsOn () |
Returns a value indicating if the display controller is in working/On or shutdown/Off mode. | |
virtual void | ntfyUpdDsply () |
See SevenSegDispHw::ntfyUpdDsply() for description. | |
virtual bool | setBrghtnssLvl (const uint8_t &newBrghtnssLvl) |
Sets the brightness level for the display module. | |
virtual void | turnOff () |
Turns the display module off. | |
virtual void | turnOn () |
Turns the display module on. | |
virtual void | turnOn (const uint8_t &newBrghtnssLvl) |
Turns the display module on. | |
Public Member Functions inherited from SevenSegDispHw | |
SevenSegDispHw () | |
Default class constructor. | |
SevenSegDispHw (uint8_t *ioPins, uint8_t dspDigits=4, bool commAnode=true, uint8_t dspDigitsQtyMax=0) | |
Class constructor. | |
virtual | ~SevenSegDispHw () |
Class destructor. | |
virtual uint8_t | getBrghtnssLvl () |
Returns the current display brightness level setting for the display. | |
virtual uint8_t | getBrghtnssMaxLvl () |
Returns the maximum display brightness level setting allowed for the display. | |
virtual uint8_t | getBrghtnssMinLvl () |
Returns the minimum display brightness level setting for the display. | |
bool | getCommAnode () |
Returns a value indicating if the display module component of the display hardware uses a common anode or a common cathode led wiring. | |
uint8_t * | getDspBuffPtr () |
Returns a pointer to the display buffer. | |
uint8_t | getHwDspDigitsQty () |
Returns the quantity of digits of the display module. | |
uint8_t * | getxcdDspBuffPtr () |
Returns a pointer to an array holding the contents for the digits/ports available from the display controller but not used for plain digits display. | |
virtual bool | setDigitsOrder (uint8_t *newOrderPtr) |
Sets a mapping to relate the display buffer positions to the display port assigned to exhibit it's contents. | |
void | setDspBuffPtr (uint8_t *newDspBuffPtr) |
Sets the pointer to the Display Buffer memory area. |
Protected Attributes | |
uint8_t * | _lclDspBuffPtr {nullptr} |
Pointer to an array of size equal to _dspDigitsQty, the local buffer differs from the shared _dspBuffPtr because it holds the data of the _dspBuffPtr formatted and ready to be sent to the display controller. | |
Protected Attributes inherited from SevenSegDispHw | |
uint8_t | _allLedsOff {} |
Value to set in the display port to set all leds off (a "space"), dependent of _commAnode. | |
uint8_t | _brghtnssLvl {0} |
Current display brightness level. | |
uint8_t | _brghtnssLvlMax {0} |
Maximum display brightness level. | |
uint8_t | _brghtnssLvlMin {0} |
Minimum display brightness level. | |
uint8_t * | _dspBlankBuffPtr {nullptr} |
Pointer to a display buffer filled with _allLedsOff ("spaces") to use as display buffer while in "Off State". | |
uint8_t * | _dspBuffPtr {nullptr} |
Pointer to the display buffer, will be provided by the SevenSegDisplays object when it's instantiated. | |
uint8_t * | _dspBuffPtrBkp {nullptr} |
Pointer to the display buffer, copy of the original _dspBuffPtr to be used as backup. | |
bool | _isOn {false} |
Current display status: On/Off. | |
uint8_t * | _xcdDspBuffPtr {nullptr} |
A pointer to a buffer the size of the exceeding digits used to control display specific amenities. | |
uint8_t | _xcdDspDigitsQty {} |
Number of unused available display ports, its the difference (_dspDigitsQtyMax - _dspDigitsQty), being the size of the array pointed by _xcdDspBuffPtr. |
Models a Seven Segment display hardware using a Max7219 display controller component
The Max7219 is a seven segment 8 digits (maximum) display controller that shares most of it's characteristics with the Max7221. The main difference is that the Max7219 is not completely compliant with the SPI communications protocol standard as the Max7221 is, so a software line handling solution must be provided.
The Max72xx defines it's messages as 16-bit units. Each 16-bit message includes data and address sections. The address space is separated into two sections:
|F|E|D|C|B|A|9|8||7|6|5|4|3|2|1|0|
| | MSb | LSb | | Data | Address N/C
0xX0 | NOP | N/A 0xX1~X8| Digit 0~7 content| 0x00~0xFF with DpABCDEFG bit order 0xX9 | Decode Mode | 0x00 NO decode of any kind (0x01, 0x0F, 0xFF valid options) 0xXA | Brightness level | 0xX0~0xXF (min to max, turns on at minimum) 0xXB | Used digits Qty. | 0xX0~0xX7 (1 to 7 digits, turns on at 1) 0xXC | Shutdown Register| 0x00: Shutdown, 0x01: normal operation 0xXD | N/C | 0x0E | N/C | 0x0F | Display test | 0xX0: Normal operation, 0xX1: Test all leds ON
SevenSegMax7219::SevenSegMax7219 | ( | uint8_t * | ioPins, |
uint8_t | dspDigits ) |
Class constructor.
ioPins | A pointer to an array holding the identifiers for the 3 GPIO pins required to send the data to the Seven Segment display hardware to be displayed. The correlation between the array positions and the pin function is given as in-class defined constants: 0->clk, 1->din, 2->cs. |
dspDigits | Quantity of digits/ports of the display. This parameter for this subclass must be in the range 1 <= dspDigits <= 8. |
|
virtual |
Sets up the hardware display to work, and starts the display activities.
For the Max72XX display controllers this setup includes:
Reimplemented from SevenSegDispHw.
|
virtual |
Ends the active mode of the display by shutting it off.
While the control module will keep receiving and updating it's registers, while the display controller is in shutdown mode the display module will be turned off and no activity will be executed in the corresponding led powering lines.
Reimplemented from SevenSegDispHw.
|
virtual |
Returns a value indicating if the display controller is in working/On or shutdown/Off mode.
true | The display controller is in working/On mode. |
false | The display controller is in shutdown/Off mode. |
Reimplemented from SevenSegDispHw.
|
virtual |
Sets the brightness level for the display module.
See SevenSegTM163X::setBrghtnssLvl(const uint8_t &) for details.
Reimplemented from SevenSegDispHw.
|
virtual |
Turns the display module off.
The display module will be cleared and will keep that status until a turnOn(), or turnOn(const uint8_t &) is invoked.
Reimplemented from SevenSegDispHw.
|
virtual |
Turns the display module on.
The display module will be turned on and it's content displayed, and will keep that status until a turnOff() is invoked.
Reimplemented from SevenSegDispHw.
|
virtual |
Turns the display module on.
The display module will be turned on, it's brightness level set to the requested level, it's content displayed, and will keep that status until a turnOff() is invoked.
newBrghtnssLvl | The new brightness level for the display. The value must be in the range getBrghtnssMinLvl() <= newBrghtnssLvl <= getBrghtnssMaxLvl() |
Reimplemented from SevenSegDispHw.