Summary of Basics of the I2C Communication Protocol
This article provides an overview of the I2C (Inter-Integrated Circuit) communication protocol, highlighting its use in projects involving devices like OLED displays, sensors, and accelerometers. I2C enables multiple slave devices to connect to a single master and supports multiple masters controlling slaves. It uses just two wires: SDA for data transfer and SCL for the clock signal, allowing synchronous serial communication. Data is transferred in messages comprising an address frame and one or more data frames, with the master controlling the clock signal.
Parts used in the I2C Communication Protocol Overview:
- OLED displays
- Barometric pressure sensors
- Gyroscope/accelerometer modules
- Microcontrollers
- Memory cards (for data logging)
- LCD displays
So far, we’ve talked about the basics of SPI communication and UART communication, so now let’s go into the final protocol of this series, the Inter-Integrated Circuit, or I2C.
You’ll probably find yourself using I2C if you ever build projects that use OLED displays, barometric pressure sensors, or gyroscope/accelerometer modules.
I2C combines the best features of SPI and UARTs. With I2C, you can connect multiple slaves to a single master (like SPI) and you can have multiple masters controlling single, or multiple slaves. This is really useful when you want to have more than one microcontrollers logging data to a single memory card or displaying text to a single LCD.
Like UART communication, I2C only uses two wires to transmit data between devices:
SDA (Serial Data) – The line for the master and slave to send and receive data.
SCL (Serial Clock) – The line that carries the clock signal.
I2C is a serial communication protocol, so data is transferred bit by bit along a single wire (the SDA line).
Like SPI, I2C is synchronous, so the output of bits is synchronized to the sampling of bits by a clock signal shared between the master and the slave. The clock signal is always controlled by the master.
How I2C Works
With I2C, data is transferred in messages. Messages are broken up into frames of data. Each message has an address frame that contains the binary address of the slave, and one or more data frames that contain the data being transmitted.
For More Details: Basics of the I2C Communication Protocol