Problem for reading and writting I2C Eeprom 24c02 6

From the datasheet:

BYTE WRITE: A write operation requires an 8-bit data word address following the device address word and acknowledgment. Upon receipt of this address, the EEPROM will again respond with a zero and then clock in the first 8-bit data word. Following receipt of the 8-bit data word, the EEPROM will output a zero and the addressing device, such as a microcontroller, must terminate the write sequence with a stop condi- tion. At this time the EEPROM enters an internally timed write cycle, tWR, to the nonvolatile memory. All inputs are disabled during this write cycle and the EEPROM will not respond until the write is complete (see Figure 8 on page 11).

The way I read that, you send the low-order address and the data. You are sending two bytes of address and then the data.

Ditto for the read (see Figure 11). You should send one byte of address, then do a requestFrom.