#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
uint8_t ch_B[8]={
0b11110,
0b10001,
0b10001,
0b11110,
0b10001,
0b10001,
0b11110
};
uint8_t ch_T[8]={
0b11111,
0b00100,
0b00100,
0b00100,
0b00100,
0b00100,
0b00100
};
void setup(){
lcd.init();
lcd.createChar(1,ch_B);
lcd.createChar(2,ch_T);
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Kovalev Andrey");
lcd.setCursor(0,1);
lcd.print(char(1));
lcd.print(char(2));
lcd.print("-211");
}
void loop(){
}