#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
lcd.clear();
//Setup Awal Ketika Running
}
void loop() {
lcd.setCursor(1,0);
lcd.print(" SELAMAT DATANG");
lcd.setCursor(1,1);
lcd.print(" Di ");
lcd.setCursor(1,2);
lcd.print(" WORKSHOP IT ");
}