#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
byte Ist[]={0b01100,
0b01100,
0b01000,
0b11110,
0b10100,
0b10111,
0b00010,
0b00100};
byte IInd[] = {0b00000,
0b00000,
0b00000,
0b01101,
0b10101,
0b10101,
0b10101,
0b10011};
byte IIIrd[] = {0b00000,
0b00000,
0b11111,
0b10010,
0b10010,
0b10010,
0b10010,
0b00000};
void setup() {
lcd.init();
lcd.backlight();
lcd.createChar(0,Ist);
lcd.createChar(1,IInd);
lcd.createChar(2,IIIrd);
}
void loop() {
for(int i=0;i<10;i++){
lcd.setCursor(i,0);
lcd.write(i);
}
}