I2c - Overview

Data is sent in 8-bit bytes, most significant bit first, with each byte followed by an ACK/NACK bit.

The slave device with the matching address responds with an Acknowledge (ACK) bit (low), signaling it is ready, or a Not Acknowledge (NACK) bit (high). I2C Overview

I2C (Inter-Integrated Circuit), often pronounced "eye-squared-see" or "eye-two-see," is a popular, synchronous, multi-master/multi-slave communication protocol invented in 1982 by Philips Semiconductors (now NXP). It is used for short-distance, intra-board communication between a processor and low-speed peripherals such as sensors, LCDs, and memory chips. Its hallmark is using only two wires for communication, making it highly efficient for managing multiple devices on a single bus. Data is sent in 8-bit bytes, most significant

Multiple masters can control the same slave, and multiple slaves can reside on the same bus. I2C communication is master-controlled

I2C communication is master-controlled. The master initiates, manages, and terminates communication, generating the clock signal.