Lines Matching defs:read
46 // Read the last byte of the EEPROM area
49 short read = nfcTag.readByte(addr);
50 System.out.println("Read: " + read);
53 read = (short) (~read & 0xff);
54 nfcTag.writeByte(addr, read);
55 System.out.println("Wrote: " + read);
57 // Now read it back
58 read = nfcTag.readByte(addr);
59 System.out.println("Read: " + read);