#include <LiquidCrystal.h>
//*************** LCD hardware
const int rs = A0, en = A1, d4 = A2, d5 = A3, d6 = A4, d7 = A5;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// put your setup code here, to run once:
/* start of LCD set up*/
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Dr Anil Kumar :");
lcd.setCursor(0, 1);
lcd.print("9902037956");
delay(2000);
lcd.clear();
}