#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 20, 4);

String name = "Adarsh Zode is an";
String IoT = "IoT EXPERT!";
String a = "Welcome to IoT!";
String b = "My age is 13 years";

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);
    // Set the font style to your desired font

  }

  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:

}