Microcontroller › Arduino › Arduino › Hi thereYou can make use of
December 19, 2016 at 4:30 pm
#14279
Participant
Hi there
You can make use of EEPROM.read(add) which requires an address parameter to be passed to it. Arduinos can store upto 512 bytes of data in their EEPROMs, so the parameter 'add' ranges from 0 to 511. This function returns an integer/ASCII value for each byte read. For further understanding you can check it out on "arduino.cc"
Hope this helps