Save String in a EEprom

There are Strings (String objects spelled with a capital S) and strings(null terminated character arrays or c-strings). You can not store a String object in eeprom, as it a pointer to other memory. Character arrays, or c-strings can be stored in eeprom. Use the eeprom.put() and eeprom.get() library functions in EEPROM.h to handle variables which are not single bytes.