I2C (using MCC)

I2C Address Set as right shifted byte address (excluding RW at bit 0).So 0b01101000 is set as (0x68 >> 1), not 0x68. We always specify I2C addresses as the normal byte address, so we would use (0x68 >> 1) when setting the address to be used. Example usage (without interrupts) How we use in our […]

Read More