Reference.EEPROM History
Hide minor edits - Show changes to output
October 26, 2010, at 11:02 AM
by David A. Mellis -
Added lines 5-6:
The microcontrollers on the various Arduino boards have different amounts of EEPROM: 1024 bytes on the ATmega328, 512 bytes on the ATmega168 and ATmega8, 4 KB (4096 bytes) on the ATmega1280 and ATmega2560.
October 26, 2010, at 10:59 AM
by David A. Mellis -
Changed lines 3-4 from:
The microcontroller on the Arduino board has 512 bytes of EEPROM: memory whose values are kept when the board is turned off (like a tiny hard drive). This library enables you to read and write those bytes.
to:
The microcontroller on the Arduino board has EEPROM: memory whose values are kept when the board is turned off (like a tiny hard drive). This library enables you to read and write those bytes.
September 07, 2008, at 05:09 AM
by David A. Mellis - removing data types from function list
Changed lines 7-8 from:
* byte [[EEPROMRead | EEPROM.read]](address)
* [[EEPROMWrite | EEPROM.write]](address, value)
to:
* [[EEPROMRead | read()]]
* [[EEPROMWrite | write()]]
March 04, 2007, at 12:03 PM
by David A. Mellis -
Changed lines 7-8 from:
* byte [[EEPROM_read | EEPROM.read]](address)
* [[EEPROM_write | EEPROM.write]](address, value)
to:
* byte [[EEPROMRead | EEPROM.read]](address)
* [[EEPROMWrite | EEPROM.write]](address, value)
March 04, 2007, at 12:03 PM
by David A. Mellis -
Added lines 1-8:
!!EEPROM Library
The microcontroller on the Arduino board has 512 bytes of EEPROM: memory whose values are kept when the board is turned off (like a tiny hard drive). This library enables you to read and write those bytes.
!!!!Functions
* byte [[EEPROM_read | EEPROM.read]](address)
* [[EEPROM_write | EEPROM.write]](address, value)