#include <LiquidCrystal_I2C.h>
#define I2C_ADDR 0x27
#define LCD_COLUMNS 20
#define LCD_LINES 3
LiquidCrystal_I2C lcd(I2C_ADDR, LCD_COLUMNS, LCD_LINES);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
lcd.setCursor(3, 0);
lcd.print("Selamat Pagi");
lcd.setCursor(5, 1);
lcd.print("A B C D");
lcd.setCursor(1, 2);
lcd.print("0 1 2 3 4 5 6 7 8 9");
}
void loop() {
// put your main code here, to run repeatedly:
}