// LCD1602 custom characters example
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
uint8_t gnd[8] = {
0b01100,
0b01100,
0b11110,
0b00000,
0b01100,
0b00000,
0b00000,
0b00000
};
void setup() {
lcd.createChar(3, gnd);
lcd.begin(16, 2);
lcd.print("\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03");
}
void loop() { }