Saving Cellnumber in EEPROM

Hi,

How can I save a cellnumber for ex 27456985213 to
the EEPROM.

Tx

use the EEPROM class

for example: save it in a char array:

char cellNumber[32] = "27456985213"

EEPROM.put(0, cellNumber); // save it

EEPROM.get(0, cellNumber);  // retrieve it
2 Likes

Thanks a lot