NOKIA5110_TEXT  2.4.0
Arduino Eco-system Library for Nokia 5110 LCD ( PCD8544 controller)
NOKIA5110_TEXT_FONT_DATA.h
Go to the documentation of this file.
1 
18 #ifndef _HEADER_NOKIAFONT_H
19 #define _HEADER_NOKIAFONT_H
20 
21 #if (ARDUINO >=100)
22  #include "Arduino.h"
23  #include "Print.h"
24 #else
25  #include "WProgram.h"
26 #endif
27 
28 
29 // FONT DEFINE SECTION
30 #define NOKIA5110_FONT_Default
31 #define NOKIA5110_FONT_Thick
32 #define NOKIA5110_FONT_HomeSpun
33 #define NOKIA5110_FONT_SevenSeg
34 #define NOKIA5110_FONT_Wide
35 #define NOKIA5110_FONT_Tiny
36 #define NOKIA5110_FONT_Large
37 #define NOKIA5110_FONT_Huge
38 #define NOKIA5110_FONT_Mega
41 #ifdef NOKIA5110_FONT_Default
42 extern const unsigned char (* pFontDefaultPtr)[5];
43 #endif
44 #ifdef NOKIA5110_FONT_Thick
45 extern const unsigned char (* pFontThickPtr)[7];
46 #endif
47 #ifdef NOKIA5110_FONT_HomeSpun
48 extern const unsigned char (* pFontHomeSpunPtr)[7];
49 #endif
50 #ifdef NOKIA5110_FONT_SevenSeg
51 extern const unsigned char (* pFontSevenSegPtr)[4];
52 #endif
53 #ifdef NOKIA5110_FONT_Wide
54 extern const unsigned char (* pFontWidePtr)[8];
55 #endif
56 #ifdef NOKIA5110_FONT_Tiny
57 extern const unsigned char (* pFontTinyPtr)[3];
58 #endif
59 #ifdef NOKIA5110_FONT_Large
60 extern const uint16_t (* pFontLargePtr)[12];
61 #endif
62 #ifdef NOKIA5110_FONT_Huge
63 extern const uint32_t (* pFontHugePtr)[16];
64 #endif
65 #ifdef NOKIA5110_FONT_Mega
66 extern const uint32_t (* pFontMegaPtr)[16];
67 #endif
68 
69 
70 
71 #endif // endif header guard
72 
73 // ** EOF **