#include <LiquidCrystal.h>
int seconds = 0;
LiquidCrystal lcd_1(12, 11, 5, 4, 3, 2);
void setup()
{
lcd_1.begin(16, 2)
}
void loop()
{
lcd_1.setCursor(1, 0);
lcd_1.print("EURO AMERICAN COLLEGE");
lcd_1.setCursor(1, 1);
lcd_1.print("Nada más natural que aprender");
lcd_1.scrollDisplayLeft();
delay(100);
}