2010-07-07 07:06 AM
i2c 7 bit addressing question when device needs 8 bit
2011-05-17 04:57 AM
I2C device addresses are either 7-bits or 10-bits. In 7-bit mode the LSB of the sent byte is the R/W flag. All I2C transfers are in multiples of 8-bits (byte).
Thus in your code you have to shift the physical device address (0xA0) right by one bit (0x50) when you send it.2011-05-17 04:57 AM