#include <LCD_I2C.h>
LCD_I2C lcd(0x27, 16 ,2);
void setup() {
lcd.begin();
lcd.backlight();
// put your setup code here, to run once:
}
void loop() {
lcd.print(" Rama ") ;
lcd. setCursor(4, 1) ;// Or setting the cursor in the d
lcd.print(" Qasaymeh");
delay (500);
// put your main code here, to run repeatedly:
}