Package ilcd
Class EEPROM

Public Method write

static void write(int address, int data)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Range Description
address 0 ... EEPROM size - 1 address of the byte to write to
data 0 ... 255 data to write

Writes data to the EEPROM at the location specified by address.

Note


Example

EEPROM.write(23, 5);

Writes the value of 5 (data) into the EEPROM at location 23 (address).

See also:

EEPROM
EEPROM.read(int)
EEPROM.getSize()