#include<LiquidCrystal.h>
LiquidCrystal lcd(19,18,5,4,2,15);
byte customChar1[] = {
B10001,
B01011,
B01101,
B11111,
B11111,
B00001,
B00111,
B00111
};
void setup() {
lcd.begin(16,2);
}
void loop() {
lcd.createChar(0,customChar1);
lcd.setCursor(0,0);
lcd.write(byte(0));
}