Package ilcd
Class EEPROM

Public Method read

static int read(int address)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Range Description
address 0 ... EEPROM size - 1 address of the byte to read

Reads the contents of the EEPROM at the location specified by address.

Returns Range Description
value 0 ... 255 contents of the EEPROM

Note

Example

EEPROM.read() == 0xFF;

If this expression evaluates to true, the EEPROM is written to its default value 0xFF and is therefore empty.

See also:

EEPROM
EEPROM.write(int, int)
EEPROM.getSize()