#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 20);
void setup() {
lcd.init();
// put your setup code here, to run once:
}
void loop() {
lcd.setCursor(0,0);
lcd.print("ALWAN SETIAWAN");
lcd.setCursor(0,1);
lcd.print("PERSIB BANDUNG");
// put your main code here, to run repeatedly:
}