#include <LiquidCrystal_I2C.h>
#include <Wire.h>
LiquidCrystal_I2C lcd (0x27, 16, 2);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setBacklight(HIGH);
lcd.clear();
lcd.setCursor(1,0);
lcd.print("LOPEP");
lcd.setCursor(1,1);
lcd.print("BOYS");
delay(1000);
lcd.setBacklight(HIGH);
delay(1000);
lcd.setBacklight(HIGH);
lcd.clear();
lcd.setCursor(1,2);
lcd.print("SENGGOL");
lcd.setCursor(1,3);
lcd.print("DONGG");
delay(1000);
lcd.setBacklight(HIGH);
delay(1000);
}