Data logging on EEPROM
morris4019
Posts: 145
I've seen the SD card used as a data logger, but it is possible to write data to the EEPROM correct? Say a small amount of data containing a previous BEACON ID, or any ERROR information from last run?
-Mike
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
======
······ I'll try everything once [noparse]:)[/noparse]
-Mike
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
======
······ I'll try everything once [noparse]:)[/noparse]
Comments
You can either write data to the (unused) end of EEPROM or you can write it to the same address as that of your variable and have it appear there when your program starts up (if you have a long variable FOO, you'd write a 4 byte value to location @FOO in EEPROM and FOO would have that value when the program starts up next time).