UBlox M10 Support
[openXsensor.git] / locator_receiver / fonts / fixednums7x15.h
blob570a43fb28fa249b6aadde12b785d5cd7886b5c5
1 /*
2 * Fixed width font for numbers
4 * This font is very useful when using overstrike as all characters & numbers
5 * are all the same width.
7 * This font also contains a few special characters that are nice for certain applications
8 * like clocks, signed values or decimal point values.
9 *
10 * When rendering code inserts a pad pixel this size allows the font to fit
11 * perfectly on 32 and 64 tall glcd displays as well as 128 wide displays.
14 #ifndef FIXEDNUMS7x15_H
15 #define FIXEDNUMS7x15_H
17 GLCDFONTDECL(fixednums7x15) = {
18 0x0, 0x0, // size of zero indicates fixed width font
19 7, // width
20 15, // height
21 '+', // first char (48)
22 16, // char count
23 // char '+'
24 0x00, 0x80, 0x80, 0xe0, 0xe0, 0x80, 0x80,
25 0x00, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00,
27 // char ','
28 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
29 0x00, 0x00, 0x00, 0x58, 0x38, 0x00, 0x00,
31 // char '-'
32 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,
33 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
35 // char '.'
36 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
37 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00,
39 // char '/'
40 0x00, 0x00, 0x00, 0xc0, 0xf0, 0x3c, 0x0f,
41 0x00, 0x3c, 0x0f, 0x03, 0x00, 0x00, 0x00,
43 // char '0'
44 0xfc, 0xfe, 0x03, 0xe1, 0x1b, 0xfe, 0xfc,
45 0x0f, 0x1f, 0x36, 0x21, 0x30, 0x1f, 0x0f,
47 // char '1'
48 0x04, 0x04, 0x06, 0xff, 0xff, 0x00, 0x00,
49 0x20, 0x20, 0x20, 0x3f, 0x3f, 0x20, 0x20,
51 // char '2'
52 0x0c, 0x0e, 0x03, 0x01, 0x81, 0xfe, 0x7c,
53 0x38, 0x3c, 0x26, 0x23, 0x21, 0x20, 0x20,
55 // char '3'
56 0x0c, 0x0e, 0x43, 0x41, 0x43, 0xfe, 0xbc,
57 0x0c, 0x1c, 0x30, 0x20, 0x30, 0x1f, 0x0f,
59 // char '4'
60 0x00, 0xe0, 0xfc, 0x1f, 0x83, 0x80, 0x00,
61 0x0f, 0x0f, 0x08, 0x08, 0x3f, 0x3f, 0x08,
63 // char '5'
64 0x3f, 0x3f, 0x21, 0x21, 0x61, 0xe1, 0x81,
65 0x0c, 0x1c, 0x30, 0x20, 0x30, 0x3f, 0x0f,
67 // char '6'
68 0xe0, 0xf8, 0x5c, 0x46, 0xc3, 0xc1, 0x01,
69 0x0f, 0x1f, 0x30, 0x20, 0x30, 0x3f, 0x0f,
71 // char '7'
72 0x01, 0x01, 0x01, 0x81, 0xf1, 0x7f, 0x0f,
73 0x00, 0x00, 0x3c, 0x3f, 0x03, 0x00, 0x00,
75 // char '8'
76 0x1c, 0xbe, 0xe3, 0x41, 0xe3, 0xbe, 0x1c,
77 0x0f, 0x1f, 0x30, 0x20, 0x30, 0x1f, 0x0f,
79 // char '9'
80 0x3c, 0x7e, 0xc3, 0x81, 0x81, 0xfe, 0xfc,
81 0x20, 0x30, 0x38, 0x0c, 0x07, 0x03, 0x00,
83 // char ':'
84 0x00, 0x00, 0x00, 0x60, 0x60, 0x00, 0x00,
85 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00,
88 #endif