#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
byte love[8] = {
0b00000,
0b01010,
0b11111,
0b11111,
0b01110,
0b00100,
0b00000,
0b00000
};
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.backlight();
lcd.createChar(1, love);
lcd.setCursor(0, 1);
lcd.write(1);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0, 0);
lcd.print("MUHAMMAD AKHDAAN");
lcd.setCursor(3, 1);
lcd.print("23.11.5654");
lcd.scrollDisplayRight();
delay(100);
}