#include <LiquidCrystal_I2C.h>
String name= "HAPPY BIRTHDAY!";
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);
lcd.print("Dear Papa");
lcd.setCursor(1,1);
delay(20);
lcd.print("Have fun all day");
lcd.setCursor(2,2);
for (int i=0; i<name.length(); i++){
lcd.print(name[i]);
delay(200);
}
lcd.setCursor(3,3);
lcd.print("Enjoy the gifts!");
}
void loop() {
// put your main code here, to run repeatedly:
}