#include <LiquidCrystal_I2C.h>
String name = "gballi";
LiquidCrystal_I2C lcd(0x27, 20,4);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
Serial.begin(9600);
lcd.begin(20,4);
lcd.setCursor(0,0);
lcd.print("Welcome to my thing!! yippee");
lcd.setCursor(1,1);
lcd.print("Age: 14 years :3");
lcd.setCursor(2,2);
for (int i=0; i < name.length(); i++) {
lcd.print(name[i]);
delay(200);
}
lcd.setCursor(3,3);
lcd.print("im a ... heh.... IoT Expert B)");
}
void loop() {
// put your main code here, to run repeatedly:
}