// LCD display with desired position
#include <LiquidCrystal.h>
const int RS=2, E=3, D4=4, D5=5, D6=6, D7=7;
LiquidCrystal lcd (RS, E, D4, D5, D6, D7);
// LiquidCrystal lcd (2, 3, 4, 5, 6, 7);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setCursor(3,0); // (column, row)
lcd.print("WELCOME TO");
lcd.setCursor(4,1);
lcd.print("EMBEDDING");
}
void loop() {
// put your main code here, to run repeatedly:
/* lcd.setCursor(1,0); // (column, row)
lcd.print("WELCOME TO IoT");
delay(500);
lcd.clear();
lcd.setCursor(3,0);
lcd.print("\"Have Fun\"");
delay(500);
lcd.clear(); */
}