#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:
lcd.clear();
for (a=0; a<16; a++)
for (b=10; b>0; b--)
{
lcd.setCursor(a,0);
lcd.print("ELIN");
lcd.setCursor(b,1);
lcd.print("SMALTHA");
delay(500);
lcd.clear();
}
}