#include <LiquidCrystal_I2C.h>
const int cool = 16;
const int row = 2;
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
lcd.init();
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("fak kata gue teh");
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}