// LCD1602 to Arduino Uno connection example
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup() {
lcd.begin(16, 2);
// you can now interact with the LCD, e.g.:
// lcd.print("Pavan");
// lcd.setCursor(0,1);
// lcd.print("Pavan");
lcd.setCursor(0, 0);
lcd.print("Hello, All!");
lcd.setCursor(0, 1); //Column first then row
lcd.print(" To Arduino Lab");
delay(2000);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("and Simulator");
lcd.setCursor(0, 1);
lcd.print(" Enjoy!");
}
void loop() {
// Print something
}