#include <LiquidCrystal.h>
// use library in it.
const int rs=12, en=11, d4=5, d5=4, d6=3, d7=2;
// define the pin of lcd.
LiquidCrystal lcd(rs,en,d4,d5,d6,d7);
void setup() {
lcd.begin(16,2);
}
void loop(){
lcd.setCursor(3,0); //define the coordinate of lcd where to print.
lcd.print("HARSH JYOT");
lcd.setCursor(1,1);
lcd.print(millis()/1000);
lcd.setCursor(13,1);
lcd.print(micros()/1000000);
}