#include <LiquidCrystal.h>
//initialize the library with the number of the interface pins
LiquidCrystal lcd (10,8,3,2,1,0);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
//print a massage to the LCD
lcd.print("WEL COME");
lcd.begin(16,2);
lcd.print("FRIEND");
}
void loop() {
// set the cursor to column 0,line 1
//(note: line 1 is the second row, since counting begins with 0)
lcd.setCursor(0,1);
//print the number of second since reser:
lcd.print(millis()/ 1000);
}