#include #include // initialize the library with the numbers of the interface pins int RS=8, EN=9, D4=10, D5=11, D6=12, D7=13; LiquidCrystal lcd(RS, EN, D4, D5, D6, D7); void main() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.clear(); lcd.print("hello, world!"); while(1){ // 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 seconds since reset: lcd.print(1); }; }