#include <LiquidCrystal.h>
const int RS = 11 ;
const int EN = 12 ;
const int D4 = 2 ;
const int D5 = 3 ;
const int D6 = 4 ;
const int D7 = 5 ;
LiquidCrystal lcd(RS,EN,D4,D5,D6,D7);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("Hello");
lcd.setCursor(2,1);
lcd.print("My name is lcd");
}
void loop() {
// put your main code here, to run repeatedly:
}