This commit is contained in:
2023-08-21 20:26:38 +02:00
commit 9a4a8c2a7d
33 changed files with 5782 additions and 0 deletions

66
include/own_font.h Normal file
View File

@@ -0,0 +1,66 @@
#ifndef OWNFONT_H
#define OWNFONT_H
uint8_t numbers_font[10][5] = { {0b00000111,
0b00000101,
0b00000101,
0b00000101,
0b00000111},
{0b00000001,
0b00000001,
0b00000001,
0b00000001,
0b00000001},
{0b00000111,
0b00000001,
0b00000111,
0b00000100,
0b00000111},
{0b00000111,
0b00000001,
0b00000111,
0b00000001,
0b00000111},
{0b00000101,
0b00000101,
0b00000111,
0b00000001,
0b00000001},
{0b00000111,
0b00000100,
0b00000111,
0b00000001,
0b00000111},
{0b00000111,
0b00000100,
0b00000111,
0b00000101,
0b00000111},
{0b00000111,
0b00000001,
0b00000001,
0b00000001,
0b00000001},
{0b00000111,
0b00000101,
0b00000111,
0b00000101,
0b00000111},
{0b00000111,
0b00000101,
0b00000111,
0b00000001,
0b00000111}};
uint8_t chars_font[2][5] = { {0b00000010,
0b00000010,
0b00000010,
0b00000010,
0b00000010},
{0b00000111,
0b00000101,
0b00000111,
0b00000100,
0b00000100}};
#endif /* OWNFONT_H */