#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
uint8_t heart[8] = {
0b00000,
0b01010,
0b11111,
0b11111,
0b11111,
0b01110,
0b00100,
0b00000,
};
void setup() {
lcd.begin(16, 2);
}
void loop() {
lcd.print("Ayman!");
delay(2000);
lcd.print("Ramzi!");
delay(2000);
lcd.setCursor(0,1);
lcd.print("Alzubairi!");
delay(1000);
lcd.setCursor(0,0);
}