#include <LCD_I2C.h>
LCD_I2C lcd(0x27,16,2);
int a;
int b;
void setup() {
// put your setup code here, to run once:
lcd.begin();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
for(a=0; a<16; a++){
for(b=15; b>0; b--){
lcd.setCursor(a,0);
lcd.print("TEKNIK");
lcd.setCursor(b,1);
lcd.print("ELEKTRONIKA");
delay(200);
lcd.clear();
}
}
}