#include<Wire.h>
#include<LiquidCrystal_I2C.h>

liquidCrystal_12 lcd (0x27, 16,2);

void setup()
{
lcd.init();
ldc.backlight();
// initialize the lcd for 16 chars 2 lines, turn on backlightlcd.setCursor(2,0);
lcd.setCursor(2,0);
lcd.print("NURUL HIKMAH");
lcd.setCursor (4,1);
lcd print("SMAN 10 BONE");
delay(4000);
lcd.clear();
}

void loop()
{
lcd.setCursor (2,0);
lcd.print("SALAm PRAMUKA");
lcd.setCursor (1,1);
lcd.print("TETAP SEMANGAT");
delay(400);
}