- This topic has 1 reply, 2 voices, and was last updated 8 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
|
Microcontroller › Arduino › Arduino
How to read a sensor value out the EEPROM of then arduino.
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