// include the library code;
#include <LiquidCrystal.h>
// intialize the library with the numbers of the interface pins LiquidCrystal lcd (12, 11, 5, 4, 3, 2,);
LiquidCrystal lcd (12, 11, 5 , 4, 3, 2);
void setup() {
lcd.begin(16,2);
lcd.print("kamhu nanyeea?");
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(7,1);
lcd.print(millis() / 10);
}