SH1106Lib icon indicating copy to clipboard operation
SH1106Lib copied to clipboard

bitmap for the 10x11 font

Open pm1579 opened this issue 1 year ago • 2 comments

Hi, I have been looking for the other fonts mentioned in the ReadMe - mainly the font_10x11. I could not see it in any of the uploaded files, or the Adafruit GFX library. Any help with this would be great. Thanks!

pm1579 avatar Apr 13 '23 16:04 pm1579

Hi, I love the library but I have the same problem. 5x7 font size is a bit small sometimes. Is there any straightforward solution (My knowledge about the coding is very basic indeed)? Thanks in advance.

F-Jafarpour avatar Apr 27 '23 13:04 F-Jafarpour

Took some time, but managed to find the font, however it only has numbers 0 to 9, no letters or anything.

#define FONT_10x11_HEIGHT 11
#define FONT_10x11_WIDTH 11

// array size is 150
static const unsigned char font_10x11[] PROGMEM = {
	B11111100,B00000001,
	B11111110,B00000011,
	B00000011,B00000110,
	B00000011,B00000110,
	B00000011,B00000110,
	B00000011,B00000110,
	B00000011,B00000110,
	B00000011,B00000110,
	B11111110,B00000011,
	B11111100,B00000001,
	B00000000,B00000000,
	B00000000,B00000000,
	B00000000,B00000000,
	B00011000,B00000000,
	B00011100,B00000000,
	B00001110,B00000000,
	B00000111,B00000000,
	B11111111,B00000111,
	B11111111,B00000111,
	B00000000,B00000000,
	B00000000,B00000000,
	B00000000,B00000000,
	B00011100,B00000110,
	B00011110,B00000111,
	B00000111,B00000111,
	B10000011,B00000111,
	B10000011,B00000111,
	B11000011,B00000110,
	B11100011,B00000110,
	B01110111,B00000110,
	B00111110,B00000110,
	B00011100,B00000110,
	B00000000,B00000000,
	B00000011,B00000110,
	B00000011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B11111111,B00000111,
	B11011110,B00000011,
	B00000000,B00000000,
	B01110000,B00000000,
	B01111000,B00000000,
	B01111100,B00000000,
	B01101110,B00000000,
	B01100111,B00000000,
	B01100011,B00000000,
	B11111111,B00000111,
	B11111111,B00000111,
	B01100000,B00000000,
	B01100000,B00000000,
	B00000000,B00000000,
	B00111110,B00000110,
	B01111111,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B11100011,B00000111,
	B11000011,B00000011,
	B00000000,B00000000,
	B11111110,B00000011,
	B11111111,B00000111,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B11100111,B00000111,
	B11000110,B00000011,
	B00000000,B00000000,
	B00000011,B00000110,
	B00000011,B00000111,
	B10000011,B00000011,
	B11000011,B00000001,
	B11100011,B00000000,
	B01110011,B00000000,
	B00111011,B00000000,
	B00011111,B00000000,
	B00001111,B00000000,
	B00000111,B00000000,
	B00000000,B00000000,
	B11011100,B00000001,
	B11111110,B00000011,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B11111110,B00000011,
	B11011100,B00000001,
	B00000000,B00000000,
	B00011100,B00000000,
	B00111110,B00000000,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B01100011,B00000110,
	B11111110,B00000011,
	B11111100,B00000001
};

notisrac avatar Jun 27 '23 16:06 notisrac