#include <LiquidCrystal.h>
LiquidCrystal lcd (10,9,5,4,3,2) ;
void setup() {
Serial.begin(9600);
lcd.begin(16,2);
// put your setup code here, to run once:
}
void loop() {
for (int i=0; i>10 ; i++){
lcd.setCursor (0,0);
lcd.print ("My Timer");
lcd.setCursor (0,1);
lcd.print(i);
lcd.setCursor (3,1);
Serial.println(i);
}
}
// put your main code here, to run repeatedly: