arduino library for managing data inside EEPROM.
a very simple data format implemented, further improvement required. inside EEPROM data are looke like this :
[variable name][space][2 byte integer start][space][2 byte integer end][space][data sequence]
to use the library simply include the header file, and declare an instance
#include <EEPROMvariables.h>
EEPROMvariables eevars;
the library helps to write and edit the data using very simple functions.
clear entire content of EEPROM
eevars.clear();
declaring a variable with name identification and desired data length
eevars.declare("ip", 15);
writing string to a variable.
eevars.write("ip","192.168.101.191");
read the content of variable from the EEPROM
String data = eevars.read("ip");
output all content of EEPROM to serial. Don't forget to call Serial.begin(9600);
eevars.dump();