// Include the LiquidCrystal_I2C library to control the LCD
#include <LiquidCrystal_I2C.h>
// Create an object of the LiquidCrystal_I2C class
// Parameters: I2C address (0x27), number of columns (16), number of rows (2)
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
// Initialize the LCD
lcd.init();
// Turn on the backlight of the LCD
lcd.backlight();
}
void loop() {
// Set the cursor to column 0, row 0
lcd.setCursor(0, 0);
// Print "Headstart" to the LCD at the current cursor position
lcd.println("Headstart");
}