#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
byte batt[8] = {
0b01110,
0b11111,
0b10001,
0b10001,
0b10001,
0b10001,
0b11111,
0b00000,
};
byte ind[8] = {
0b00000,
0b01110,
0b11111,
0b11111,
0b11111,
0b01110,
0b00000,
0b00000,
};
void setup() {
lcd.init();
lcd.backlight();
lcd.createChar(3, batt);
lcd.createChar(4, ind);
lcd.setCursor(0, 0);
lcd.print("12A49Q ");
lcd.print("\x04");
lcd.print("CAR ");
lcd.print("2");
lcd.print("\x03");
lcd.print("AA");
lcd.setCursor(0, 1);
lcd.print("Ports: DVID PS/2");
}
void loop() {
}