-
Notifications
You must be signed in to change notification settings - Fork 3
/
symbols_8px.c
37 lines (27 loc) · 1.48 KB
/
symbols_8px.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
created with FontEditor written by H. Reddmann HaReddmann at t-online dot de
using template file by J. Michel jan at mueschelsoft.de
File Name : symbols_8px.c
Date : 03.05.2010
Font size in bytes : 0x008C, 140
Font width : 11
Font height : 8
Font first char : 0x00
Font last char : 0x0F
Font bits per pixel : 1
*/
#include "font.h"
#ifdef FONTS_INCLUDE_symbols_8px
const uint8_t symbols_8px_data[] PROGMEM = {
0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x08, 0x08, 0x08, 0x0A, 0x07, 0x04,
0x18, 0x18, 0x18, 0x99, 0xDB, 0x7E, 0x3C, 0x18, 0x18, 0x3C, 0x7E, 0xDB, 0x99, 0x18, 0x18, 0x18,
0x18, 0x0C, 0x06, 0xFF, 0xFF, 0x06, 0x0C, 0x18, 0x18, 0x30, 0x60, 0xFF, 0xFF, 0x60, 0x30, 0x18,
0x18, 0x18, 0x18, 0xFF, 0xFF, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18,
0xC0, 0xE3, 0x77, 0x1C, 0x38, 0x6C, 0xE7, 0xC3, 0x30, 0x60, 0xC0, 0xE0, 0x38, 0x0C, 0x06, 0x03,
0x3C, 0x42, 0x42, 0x3C, 0x00, 0x7E, 0x18, 0x66, 0x3C, 0x42, 0x95, 0xA1, 0xA1, 0x95, 0x42, 0x3C,
0x3C, 0x42, 0xA5, 0x91, 0x91, 0xA5, 0x42, 0x3C, 0x3C, 0x42, 0xA5, 0xA1, 0xA1, 0xA5, 0x42, 0x3C,
0x7E, 0x4A, 0x00, 0x44, 0x4A, 0x32, 0x00, 0x3C, 0x42, 0x42, 0x30, 0x78, 0xFC, 0xB4, 0x30, 0x3F,
0x3F, 0xC3, 0x66, 0x3C, 0x18
};
const struct font_info symbols_8px PROGMEM = {0x8C+(0x00<<8),0x0B,0x08,0x00,0x0F,symbols_8px_data,(uint8_t*)symbols_8px_data+0x0F-0x00+1};
#endif