#include <Wire.h>

The is a cornerstone of Arduino programming, acting as the fundamental interface for I2C (Inter-Integrated Circuit) communication [1]. Whether you are connecting sensors, displays, or motor drivers, this library allows your Arduino to talk to peripheral devices using only two pins (SDA and SCL).

void setup() Wire.begin(); // Join I2C bus // your setup code