//FAB ACADMEY 2022 //Mr. Kiran Wakchaure @ //Library version:1.1 #include #include LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 16 chars and 2 line display void setup() { lcd.init(); // initialize the lcd lcd.backlight(); lcd.setCursor(3,0); lcd.print("Hello, world!"); lcd.setCursor(2,1); lcd.print("I am Kiran "); delay(2000); lcd.clear(); lcd.setCursor(0,0); lcd.print("FAB Academy 2022"); lcd.setCursor(0,1); lcd.print("@ Vigyan Ashram Pabal "); delay(2000); lcd.clear(); } void loop() { }