Home | History | Annotate | Download | only in java

Lines Matching full:byte

44     i2c.address((byte)0x77);
45 i2c.writeByte((byte)0xd0);
48 byte[] data = new byte[1];
52 i2c.writeReg((byte)0xf4, (byte)0x2e);
54 if (i2c.readReg((byte)0xd0) != 0x55) {
59 i2c.writeReg((byte)0xf4, (byte)0x2e);
63 System.out.println(i2c.readWordReg((byte)0xf6));
65 byte[] buf = new byte[2];
66 buf[0] = (byte)0xf4;
67 buf[1] = (byte)0x2e;
70 i2c.writeByte((byte)0xf6);
71 int d = i2c.readReg((byte)2);