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.
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.