#include <LiquidCrystal_I2C>
// put your setup code here, to run once:
int kolon = 16;
int baris = 2;
LiquidCrystal_I2C lcd(0x27, kolon, baris);
void setup() {
//run once
lcd.init();
lcd.backlight();
}
void loop() {
//run repeately
int i;
lcd.setCursor(0,0);
lcd.print("ciao");
lcd.setCursor(0,1);
lcd.print("papa");
for(1 = 0; i<16; i++)(
delay(200);
}
}