#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(39, 16,2);
void setup() {
// put your setup code here, to run once:
pinMode(6, OUTPUT);
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.home();
lcd.print("ahmed orabi");
digitalWrite(6, HIGH);
delay(1000);
digitalWrite(6, LOW);
delay(1000);
}