// include the library code:
#include <LiquidCrystal.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
lcd.begin(16, 2);
lcd.print("Ing. Carlitos!");
}
void loop() {
for (int positionCounter = 17; positionCounter >0; positionCounter --){
lcd.setCursor (positionCounter , 0);
lcd.print(millis()/1000);
delay(500);
lcd.setCursor(0, 1);
lcd.print(millis() / 1000);
}
}