#include <Wire.h>
#include <LiquidCrystal_I2C.h>
int kolom = 18;
int baris = 2;
LiquidCrystal_I2C lcd(0x27, kolom, baris);
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,1);
lcd.print("UNDANGAN PERNIKAN RIO DAN RAISSA");
}