Dan Ghiciulescu / LCD4884

Dependents:   FRDM_LCD4884

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers font_big.h Source File

font_big.h

00001 // big font
00002 
00003 
00004 //******* VERY LARGE FONTS ********** 
00005 //used here for displaying temperature
00006 
00007 unsigned char   big_number[13][3][16] = {
00008 
00009 0,128,192,224,224,96,224,224,  //'0'
00010 192,128,0,0,0,0,0,0
00011 ,
00012 112,255,255,1,0,0,0,0,
00013 255,255,254,0,0,0,0,0
00014 ,
00015 0,15,31,60,56,48,56,56,
00016 31,15,3,0,0,0,0,0
00017 ,
00018 
00019 0,0,0,0,128,224,224,0,            //'1'
00020 0,0,0,0,0,0,0,0
00021 ,
00022 0,0,3,3,3,255,255,0,
00023 0,0,0,0,0,0,0,0
00024 ,
00025 0,0,56,56,56,63,63,56,
00026 56,56,0,0,0,0,0,0
00027 ,
00028 
00029 0,192,192,224,96,96,224,224,   //'2'
00030 192,128,0,0,0,0,0,0
00031 ,
00032 0,1,0,0,128,192,224,249,
00033 63,31,0,0,0,0,0,0
00034 ,
00035 0,60,62,63,63,59,57,56,
00036 56,56,56,0,0,0,0,0
00037 ,
00038 
00039 0,192,224,224,96,96,224,224,   //'3'
00040 192,192,0,0,0,0,0,0
00041 ,
00042 0,1,0,0,48,48,56,125,
00043 239,207,0,0,0,0,0,0
00044 ,
00045 0,28,56,56,48,48,56,60,
00046 31,15,1,0,0,0,0,0
00047 ,
00048 
00049 0,0,0,0,0,128,192,224,            //'4'
00050 224,0,0,0,0,0,0,0
00051 ,
00052 224,240,248,222,207,199,193,255,
00053 255,192,192,0,0,0,0,0
00054 ,
00055 0,0,0,0,0,0,0,63,
00056 63,0,0,0,0,0,0,0
00057 ,
00058 
00059 0,224,224,224,224,224,224,224,    //'5'
00060 224,224,224,0,0,0,0,0
00061 ,
00062 0,63,63,63,56,56,48,112,
00063 240,224,0,0,0,0,0,0
00064 ,
00065 0,28,56,56,48,48,56,60,
00066 31,15,1,0,0,0,0,0
00067 ,
00068 
00069 0,0,128,192,192,224,96,96,        //'6'
00070 224,224,0,0,0,0,0,0
00071 ,
00072 224,254,255,55,57,24,24,56,
00073 240,240,192,0,0,0,0,0
00074 ,
00075 0,15,31,28,56,48,48,56,
00076 31,15,7,0,0,0,0,0
00077 ,
00078 
00079 0,224,224,224,224,224,224,224,         //'7'
00080 224,224,224,0,0,0,0,0
00081 ,
00082 0,0,0,0,128,224,248,126,
00083 31,7,1,0,0,0,0,0
00084 ,
00085 0,0,56,62,31,7,1,0,
00086 0,0,0,0,0,0,0,0
00087 ,
00088 
00089 0,128,192,224,224,96,96,224,         //'8'
00090 192,192,0,0,0,0,0,0
00091 ,
00092 0,207,255,127,56,48,112,112,
00093 255,239,199,0,0,0,0,0
00094 ,
00095 3,15,31,60,56,48,48,56,
00096 31,31,15,0,0,0,0,0
00097 ,
00098 
00099 0,128,192,224,224,96,224,224,         //'9'
00100 192,128,0,0,0,0,0,0
00101 ,
00102 12,63,127,241,224,192,192,225,
00103 255,255,254,0,0,0,0,0
00104 ,
00105 0,0,56,48,48,56,56,30,
00106 15,7,0,0,0,0,0,0
00107 ,
00108 
00109 
00110 0,0,0,0,0,0,0,0,                         //'.'
00111 0,0,0,0,0,0,0,0
00112 ,
00113 0,0,0,0,0,0,0,0,
00114 0,0,0,0,0,0,0,0
00115 ,
00116 60,60,60,0,0,0,0,0,
00117 0,0,0,0,0,0,0,0
00118 ,
00119 
00120 0,0,0,0,0,0,0,0,                        //'+'
00121 0,0,0,0,0,0,0,0
00122 ,
00123 0,0,64,64,64,64,64,254,
00124 254,64,64,64,64,64,0,0
00125 ,
00126 0,0,0,0,0,0,0,15,
00127 15,0,0,0,0,0,0,0
00128 ,
00129 
00130 0,0,0,0,0,0,0,0,                         //'-'
00131 0,0,0,0,0,0,0,0
00132 ,
00133 0,64,64,64,64,64,64,0,
00134 0,0,0,0,0,0,0,0
00135 ,
00136 0,0,0,0,0,0,0,0,
00137 0,0,0,0,0,0,0,0
00138 };
00139 
00140