#include <LiquidCrystal_I2C.h>
int kolon(20);
int baris(4);
LiquidCrystal_I2C lcd(0x27, kolon, 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:
int i;
lcd.setCursor(0,0);
lcd.print("VIVA LA FIGA");
for(i = 0 ; i < 20; i++);
{
lcd.scrollDisplayRight();
delay(200);
}
}