#include <LiquidCrystal_I2C.h>
// Set the LCD address and dimensions
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
// Initialize the LCD
lcd.begin(16, 2);
// Turn on the backlight
lcd.backlight();
// Print the word on the LCD
lcd.print("Hello, Yossef");
}
void loop() {
// No need for anything in the loop for this example
}