#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,3);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(1,0);
lcd.print("H.A. Berlian P.P");
lcd.blink();
delay(1000);
lcd.setCursor(2,1);
lcd.print("suka marah");
lcd.noBlink();
delay(500);
lcd.setCursor(3,2);
lcd.print("cantikkkkkkk;)");
lcd.noBlink();
delay(1000);
lcd.setCursor(0,3);
lcd.print("cewe ibra ganteng:)");
lcd.noBlink();
delay(1500);
}