#include <LiquidCrystal_I2C.h>

String name = "Adarsh Zode";
String IoT = "IoT EXPERT!";
String a = "Welcome to IoT!";
String b = "Age: 13 years";

LiquidCrystal_I2C lcd(0x27, 20, 4);

void setup() {
  // put your setup code here, to run once:
  lcd.init();
  lcd.backlight();
  Serial.begin(9600);

  lcd.setCursor(0, 0);
  for (int i = 0; i < a.length(); i++) {
    lcd.print(a[i]);
    delay(100);
  }

  lcd.setCursor(1, 1);
  for (int i = 0; i < b.length(); i++) {
    lcd.print(b[i]);
    delay(150);
  }

  lcd.setCursor(2, 2);
  for (int i = 0; i < name.length(); i++) {
    lcd.print(name[i]);
    delay(150);
  }

  lcd.setCursor(3, 3);

  for (int i = 0; i < IoT.length(); i++) {
    lcd.print(IoT[i]);
    delay(200);
  }


}

void loop() {
  // put your main code here, to run repeatedly:

}