#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
byte symbol[8] = {
0b10001,
0b10001,
0b10001,
0b01111,
0b00001,
0b00001,
0b01110,
0b00000
};
void setup() {
lcd.init();
lcd.backlight();
lcd.createChar(1, symbol);
lcd.setCursor (0, 0);
lcd.print ("3");
//lcd.rightToLeft();
lcd.setCursor (0, 1);
lcd.print ("KOBT");
lcd.print(char(1));
lcd.print ("H");
}
void loop() {
}