EEPROM-Storage Library
The EEPROM Storage library provides the ability to access variables stored in EEPROM just as if they were stored in RAM.
 
Loading...
Searching...
No Matches
EEPROMDisplayClass Class Reference

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.
 

Detailed Description

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.

Member Function Documentation

◆ begin()

void EEPROMDisplayClass::begin ( )
inline

Sets default behavior for the Arduino Debug Utils library.

Definition at line 69 of file EEPROM-Display.h.

◆ displayEEPROM()

void EEPROMDisplayClass::displayEEPROM ( )
inline

Displays the contents of the EEPROM.

Definition at line 93 of file EEPROM-Display.h.

◆ displayHeader()

void EEPROMDisplayClass::displayHeader ( )
inline

Display a header that can be used for listing variable properties.

Definition at line 174 of file EEPROM-Display.h.

◆ displayPaddedHexByte()

void EEPROMDisplayClass::displayPaddedHexByte ( byte  value,
bool  showPrefix = true 
)
inline

Print a byte value in HEX with leading 0x.

Definition at line 78 of file EEPROM-Display.h.

◆ displayVariable()

template<typename T >
void EEPROMDisplayClass::displayVariable ( const char *  name,
EEPROMBase< T >  value 
)
inline

Display the properties of a variable.

Parameters
nameThe name of the variable.
Template Parameters
valueThe value of the variable.

Definition at line 165 of file EEPROM-Display.h.


The documentation for this class was generated from the following file: