31#if defined(ARDUINO) && ARDUINO >= 100 
   34#elif defined(PARTICLE) 
   57      for (uint i = 0; i < EEPROM.length(); i++)
 
 
   73      if (address < EEPROM.length())
 
   76        EEPROM.write(address, value);
 
   78        EEPROM.update(address, value);
 
 
 
#define UNSET_VALUE
Defines the default value used when clearing the EEPROM memory.
Provides the ability to clear the EEPROM memory.
void clearEEPROM(uint value=UNSET_VALUE)
Resets the contents of EEPROM to the value specified.
void updateEEPROM(uint address, byte value)
Provides a unified method od writing to the EEPROM on multiple platforms.alignas.