extEEPROM Library Read Page

I Am New To Arduino And C++ In General, I Am Designing A Lock Device That Uses An EEPROM, Specifically the 24LC256 From Microchip And The extEEPROM Library To Read Data, The Examples Included Are Useful For Single Byte Writing, However I Need To Read And Write A Page At A Time. Is There A Function I Could Use.

--Hardware--
24LC256
Arduino UNO R3

However I Need To Read And Write A Page At A Time. Is There A Function I Could Use.

extEEPROM::write(unsigned long addr, byte *values, unsigned int nBytes)

The library by Jack Christensen which you have chosen is a very good one, and will handle both the Wire Library buffer size and the eeprom page boundaries issues. You can write arbitrarily sized blocks of data.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.