Initial commit

This commit is contained in:
2025-12-13 03:36:06 +01:00
commit b424321bc0
62 changed files with 19669 additions and 0 deletions

20
include/own_font.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef OWN_FONT_H
#define OWN_FONT_H
#include <Arduino.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 /* OWN_FONT_H */