Tag Archives: string

Arduino reading and writing string to EEPROM

The arduino and ESP8266 EEPROM library only provides functions to read and write one byte at a time from the internal EEPROM. Note that EEPROM has limited number of writes.

In this tutorial I will provide some functions to store string to EEPROM and Read back to String variable. String is basically character array terminated with null (0x00).

Continue reading Arduino reading and writing string to EEPROM