#include <LiquidCrystal_I2C.h>
#define I2C_ADDR 0x27
#define LCD_COLUMNS 20
#define LCD_LINES 4
LiquidCrystal_I2C lcd(I2C_ADDR, LCD_COLUMNS, LCD_LINES);
void setup() { // Init
lcd.init();
lcd.backlight();
// put your setup code here, to run once:
lcd.setCursor(0, 0);
lcd.print("Hello, Saya Hensem");
lcd.setCursor(0, 1);
lcd.print("Saya Taken,tak gay");
lcd.setCursor(0, 2);
lcd.print("UNIKL MIIT ");
lcd.setCursor(0, 3);
lcd.print("Mat Stopa");
}
void loop() {
// put your main code here, to run repeatedly:
}