#include <LiquidCrystal.h>
LiquidCrystal lcd(19, 18, 5, 4, 2, 15);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(0, 0);
lcd.print("Hello Rishav ?");
delay(1000);
}
void loop() {
lcd.setCursor(0, 0);
lcd.print(" ");
delay(500);
// Display the text again
lcd.setCursor(0, 0);
lcd.print("Hello Rishav ?");
delay(500);
}
/*#include <LiquidCrystal.h>
LiquidCrystal lcd(19,18,5,4,2,15);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,0);
lcd.print("Hello Rishav ?");
lcd.blink();
delay(500);
}
*/
//Rs- resistor select (19 port)
//R/w-Read and write (Gnd)
//E- Enable(18)
//D0-D1-D2-D3 - no connection
//D4-5
//D5-4
//D6-2
//D7-15
//A-Vce Backlight for Lcd
//K-GND Backlight for Lcd