#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd (0x27, 16, 2);
void setup(){
lcd.init();
lcd.backlight();
// put your setup code here, to run once:
lcd.setCursor(2,0);
lcd.print("ADITYA SAPUTRA ");
lcd.setCursor(4,1);
lcd.print("TJKT 2");
delay(4000);
lcd.clear();
}
void loop(){
lcd.setCursor(2,0);
lcd.print("TES LCD I2C");
lcd.setCursor(1,1);
lcd.print("KELAS IOT MUSKA");
delay(400);
}