#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD(0X27, 16, 2);
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
LCD.init();
LCD.setCursor(0,0);
LCD.print("Haruna Suale");
delay(3000);
//LCD.clear();
LCD.setCursor(0,1);
LCD.print("He is a good boy");
delay(1000);
LCD.clear();
}