#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7);
byte heart [8]={
0b00000,
0b01010,
0b11111,
0b01110,
0b00110,
0b00100,
0b00000,
0b00000
};
byte alien[8]={
0b11111,
0b10101,
0b11111,
0b11111,
0b01110,
0b01110,
0b01010,
0b00000
};
void setup() {
lcd.begin(16,2);
lcd.createChar(0,heart);
lcd.createChar(2,alien);
}
void loop() {
lcd.setCursor(4,0);
lcd.print("Elctronics");
lcd.setCursor(1,1);
lcd.print("hello");
lcd.setCursor(2,0);
lcd.write(byte(0));
lcd.setCursor(15,1);
lcd.write(byte(2));
}