Initial commit
This commit is contained in:
20
include/own_font.h
Normal file
20
include/own_font.h
Normal 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 */
|
||||
Reference in New Issue
Block a user