#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // set the LCD address to 0x27 for a 16x2 LCD
void setup() {
lcd.init(); // initialize the LCD
lcd.backlight(); // turn on backlight
}
void loop() {
lcd.setCursor(0, 0); // set cursor to first row, first column
lcd.print("Hello Iam YOUCEF"); // print "Hello World!" on LCD
delay(100); // wait for 1 second
lcd.clear(); // clear LCD screen
}