Provides methods to display EEPROM data for debugging. More...
#include <EEPROM-Display.h>
Public Member Functions | |
void | begin () |
Sets default behavior for the Arduino Debug Utils library. | |
void | displayPaddedHexByte (byte value, bool showPrefix=true) |
Print a byte value in HEX with leading 0x. | |
void | displayEEPROM () |
Displays the contents of the EEPROM. | |
template<typename T > | |
void | displayVariable (const char *name, EEPROMBase< T > value) |
Display the properties of a variable. | |
void | displayHeader () |
Display a header that can be used for listing variable properties. | |
Provides methods to display EEPROM data for debugging.
This class provides methods to display the contents of EEPROM, the properties of an EEPROM variable and other useful option for debugging code related to using this library.
Definition at line 63 of file EEPROM-Display.h.
|
inline |
Sets default behavior for the Arduino Debug Utils library.
Definition at line 69 of file EEPROM-Display.h.
|
inline |
Displays the contents of the EEPROM.
Definition at line 93 of file EEPROM-Display.h.
|
inline |
Display a header that can be used for listing variable properties.
Definition at line 174 of file EEPROM-Display.h.
|
inline |
Print a byte value in HEX with leading 0x.
Definition at line 78 of file EEPROM-Display.h.
|
inline |
Display the properties of a variable.
name | The name of the variable. |
value | The value of the variable. |
Definition at line 165 of file EEPROM-Display.h.