当前位置:   article > 正文

oled.c And oled.h

oled.h

最近在弄的一款CS基地的产品也要用到OLED,自己在K60、STM32、51上都都移植过,OLED还是挺不错的东西。

记录一下.C和.H吧,省的之后电脑资料没了要移植的时候没模板。。


OLED.c
/*    By   LXK    */
  1. #include "DEV_OLED.h"
  2. #include "common.h"
  3. #include "HW_LPTMR.h"
  4. #include "HW_GPIO.h"
  5. #include "DEV_OLED_6x8.h"
  6. #include "DEV_OLED_8x16.h"
  7. #include "DEV_OLED_16x16.h"
  8. unsigned char OLED_GRAM[128][8];
  9. #define u8 unsigned char
  10. void OLED_WRCMD(u8 cmd)
  11. {
  12. u8 i=0;
  13. OLED_DC=0;
  14. for(i=0;i<8;i++)
  15. {
  16. OLED_SCL=0;
  17. if(cmd&0x80) OLED_SDA=1;
  18. else OLED_SDA=0;
  19. OLED_SCL=1;
  20. cmd<<=1;
  21. }
  22. }
  23. void OLED_WRDATA(u8 dat) // êμ??D′è?ò?×??úêy?Y
  24. {
  25. u8 i=0;
  26. OLED_DC=1;
  27. for(i=0;i<8;i++)
  28. {
  29. OLED_SCL=0;
  30. if(dat&0x80) OLED_SDA=1;
  31. else OLED_SDA=0;
  32. OLED_SCL=1;
  33. dat<<=1;
  34. }
  35. }
  36. void OLED_Setxy(u8 x, u8 y) //OLED éè??×?±ê
  37. {
  38. OLED_WRCMD(0xb0+y);
  39. OLED_WRCMD(((x&0xf0)>>4)|0x10);
  40. OLED_WRCMD((x&0x0f)|0x01);
  41. }
  42. void OLED_Fill(u8 bmp_dat) //bmp_dat=0x00è??á?e£?bmp_dat=0xffè??ááá
  43. {
  44. u8 y,x;
  45. for(y=0;y<8;y++)
  46. {
  47. OLED_WRCMD(0xb0+y);
  48. OLED_WRCMD(0x01);
  49. OLED_WRCMD(0x10);
  50. for(x=0;x<X_WIDTH;x++)
  51. OLED_WRDATA(bmp_dat);
  52. }
  53. }
  54. void OLED_Init(void)
  55. {
  56. GPIO_InitTypeDef GPIO_InitStruct1;
  57. SIM->SCGC5|=SIM_SCGC5_PORTC_MASK;
  58. GPIO_InitStruct1.GPIO_PTx = PTC;
  59. GPIO_InitStruct1.GPIO_PinControl = IRQC_DIS;
  60. GPIO_InitStruct1.GPIO_Pins = GPIO_Pin16;
  61. GPIO_InitStruct1.GPIO_Output = OUTPUT_H;
  62. GPIO_InitStruct1.GPIO_Dir = DIR_OUTPUT;
  63. LPLD_GPIO_Init(GPIO_InitStruct1);
  64. // GPIO_Init(OLED_DC_PORT,OLED_DC_PIN,1,1);//3?ê??ˉDC?ú
  65. GPIO_InitStruct1.GPIO_PTx = PTC;
  66. GPIO_InitStruct1.GPIO_PinControl = IRQC_DIS;
  67. GPIO_InitStruct1.GPIO_Pins = GPIO_Pin19;
  68. GPIO_InitStruct1.GPIO_Output = OUTPUT_H;
  69. GPIO_InitStruct1.GPIO_Dir = DIR_OUTPUT;
  70. LPLD_GPIO_Init(GPIO_InitStruct1);
  71. // GPIO_Init(OLED_RST_PORT,OLED_RST_PIN,1,1);//3?ê??ˉRST
  72. GPIO_InitStruct1.GPIO_PTx = PTC;
  73. GPIO_InitStruct1.GPIO_PinControl = IRQC_DIS;
  74. GPIO_InitStruct1.GPIO_Pins = GPIO_Pin18;
  75. GPIO_InitStruct1.GPIO_Output = OUTPUT_H;
  76. GPIO_InitStruct1.GPIO_Dir = DIR_OUTPUT;
  77. LPLD_GPIO_Init(GPIO_InitStruct1);
  78. // GPIO_Init(OLED_SDA_PORT,OLED_SDA_PIN,1,1);
  79. GPIO_InitStruct1.GPIO_PTx = PTC;
  80. GPIO_InitStruct1.GPIO_PinControl = IRQC_DIS;
  81. GPIO_InitStruct1.GPIO_Pins = GPIO_Pin17;
  82. GPIO_InitStruct1.GPIO_Output = OUTPUT_H;
  83. GPIO_InitStruct1.GPIO_Dir = DIR_OUTPUT;
  84. LPLD_GPIO_Init(GPIO_InitStruct1);
  85. OLED_SCL=1;
  86. OLED_RST=0;
  87. LPLD_LPTMR_DelayMs(50);
  88. OLED_RST=1; //′óé?μ?μ??????aê?3?ê??ˉòaóD×?1?μ?ê±??£??′μè′yRC?′??íê±?
  89. OLED_WRCMD(0xae);//--1?±???ê? turn off oled panel
  90. OLED_WRCMD(0x00);//---éè??μíáDμ??· set low column address
  91. OLED_WRCMD(0x10);//---??áDμ??· set high column address
  92. OLED_WRCMD(0x40);//--éè???eê?μ??·ó3é??ú′???ê??aê?DD£¨0x 00 ~ 0x3f£? set start line address Set Mapping RAM Display Start Line (0x00~0x3F)
  93. OLED_WRCMD(0x81);//--éè????±è?è??????′??÷ set contrast control register
  94. OLED_WRCMD(0xcf); // μ?á÷ê?3?áá?èéè??èü?? Set SEG Output Current Brightness
  95. OLED_WRCMD(0xa1);//--éè??èü??/áDó3é? 0xa0×óóò·′??0xa1?y3£ Set SEG/Column Mapping 0xa0×óóò·′?? 0xa1?y3£
  96. OLED_WRCMD(0xc8);//éè??í???/DDé¨?è·??ò 0xc0é???·′?? 0xc8?y3£ Set COM/Row Scan Direction
  97. OLED_WRCMD(0xa6);//--?y3£??ê? set normal display
  98. OLED_WRCMD(0xa8);//--?ˉ?′ó??꣨1 - 64£? set multiplex ratio(1 to 64)
  99. OLED_WRCMD(0x3f);//--1/64 duty
  100. OLED_WRCMD(0xd3);//-éè????ê???ò???ò?ó3é??ú′???êy?÷£¨0x 00 ~ 0x3f£? set display offset Shift Mapping RAM Counter (0x00~0x3F)
  101. OLED_WRCMD(0x00);//-2???ò? not offset
  102. OLED_WRCMD(0xd5);//--éè????ê?ê±?óμ?·??μ±è/??μ′?÷?μ?ê set display clock divide ratio/oscillator frequency
  103. OLED_WRCMD(0x80);//--×é·?±è£?ê±?óéè???a100??/?? set divide ratio, Set Clock as 100 Frames/Sec
  104. OLED_WRCMD(0xd9);//--éè?¨3?μ??ü?ú set pre-charge period
  105. OLED_WRCMD(0xf1);//15?ˉ3?μ?·?μ?1?ó?ó±í Set Pre-Charge as 15 Clocks & Discharge as 1 Clock
  106. OLED_WRCMD(0xda);//--éè??×é?tμ?òy??????ó2?t set com pins hardware configuration
  107. OLED_WRCMD(0x12);
  108. OLED_WRCMD(0xdb);//--?ˉvcomh set vcomh
  109. OLED_WRCMD(0x40);//ít???·è????????ˉ Set VCOM Deselect Level
  110. OLED_WRCMD(0x20);//-éè??ò3???°?·?£ê?£¨0x 00 /??/ 0x02£? Set Page Addressing Mode (0x00/0x01/0x02)
  111. OLED_WRCMD(0x02);//
  112. OLED_WRCMD(0x8d);//--3?μ?±???ó?/??ó? set Charge Pump enable/disable
  113. OLED_WRCMD(0x14);//--?ˉ£¨0x 10??£???ó? set(0x10) disable
  114. OLED_WRCMD(0xa4);// ê1??????ê?£¨0xa4 / 0xa5£? Disable Entire Display On (0xa4/0xa5)
  115. OLED_WRCMD(0xa6);// ??ó?·′??ê?£¨0xa6 / 7£? Disable Inverse Display On (0xa6/a7)
  116. OLED_WRCMD(0xaf);//--′ò?a??°? turn on oled panel
  117. OLED_Fill(0x00); //3?ê????á
  118. OLED_Setxy(0,0);
  119. }
  120. void OLED_6x8(u8 x,u8 y,u8 ch[])//??ê?6*8ò?×é±ê×?ASCII×?·?′? ??ê?μ?×?±ê£¨x,y£?£?y?aò3·??§0??7
  121. {
  122. u8 c=0,i=0,j=0;
  123. while (ch[j]!='\0')
  124. {
  125. c =ch[j]-32;
  126. if(x>126)
  127. {x=0;y++;}
  128. OLED_Setxy(x,y);
  129. for(i=0;i<6;i++)
  130. OLED_WRDATA(F6x8[c][i]);
  131. x+=6;
  132. j++;
  133. }
  134. }
  135. void OLED_Cler_6x8(u8 x,u8 y,u8 n)//??3yN??6*8×?·?
  136. {
  137. unsigned int i=0;
  138. OLED_Setxy(x,y);
  139. if(x>126)
  140. {x=0;y++;}
  141. for(i=0;i<6*n;i++)
  142. OLED_WRDATA(0x00);
  143. }
  144. void OLED_8x16(u8 x,u8 y,u8 ch[])//??ê?8*16ò?×é±ê×?ASCII×?·?′? ??ê?μ?×?±ê£¨x,y£?£?y?aò3·??§0??7
  145. {
  146. unsigned char c=0,i=0,j=0;
  147. while (ch[j]!='\0')
  148. {
  149. c =ch[j]-32;
  150. if(x>120)
  151. {x=0;y++;}
  152. OLED_Setxy(x,y);
  153. for(i=0;i<8;i++)
  154. OLED_WRDATA(F8X16[c*16+i]);
  155. OLED_Setxy(x,y+1);
  156. for(i=0;i<8;i++)
  157. OLED_WRDATA(F8X16[c*16+i+8]);
  158. x+=8;
  159. j++;
  160. }
  161. }
  162. void OLED_Cler_8x16(u8 x,u8 y,u8 n) //??3yn??8*16×?·?
  163. {
  164. unsigned char i;
  165. if(x>120)
  166. {x=0;y++;}
  167. OLED_Setxy(x,y);
  168. for(i=0;i<8*n;i++)
  169. OLED_WRDATA(0x00);
  170. OLED_Setxy(x,y+1);
  171. for(i=0;i<8*n;i++)
  172. OLED_WRDATA(0x00);
  173. }
  174. void OLED_16x16(u8 x,u8 y,u8 N)//??ê?16*16μ??ó ??ê?μ?×?±ê£¨x,y£?£?y?aò3·??§0??7
  175. {
  176. unsigned char wm=0;
  177. unsigned int adder=32*N; //
  178. OLED_Setxy(x , y);
  179. for(wm = 0;wm < 16;wm++) //
  180. {
  181. OLED_WRDATA(F16x16[adder]);
  182. adder += 1;
  183. }
  184. OLED_Setxy(x,y + 1);
  185. for(wm = 0;wm < 16;wm++) //
  186. {
  187. OLED_WRDATA(F16x16[adder]);
  188. adder += 1;
  189. }
  190. }
  191. void OLED_Cler_16x16(u8 x,u8 y, u8 n)//??3yn??16*16×?
  192. {
  193. unsigned char i=0;
  194. OLED_Setxy(x,y);
  195. for(i=0;i<16*n;i++)
  196. OLED_WRDATA(0x00);
  197. OLED_Setxy(x,y+1);
  198. for(i=0;i<16*n;i++)
  199. OLED_WRDATA(0x00);
  200. }
  201. void Draw_BMP(u8 x0,u8 y0,u8 x1,u8 y1,u8 BMP[])//??ê???ê?BMPí???128?á64?eê?μ?×?±ê(x,y),xμ?·??§0??127£?y?aò3μ?·??§0??7*
  202. {
  203. unsigned int j=0;
  204. unsigned char x,y;
  205. if(y1%8==0)
  206. y=y1/8;
  207. else
  208. y=y1/8+1;
  209. for(y=y0;y<y1;y++)
  210. {
  211. OLED_Setxy(x0,y);
  212. for(x=x0;x<x1;x++)
  213. {
  214. OLED_WRDATA(BMP[j++]);
  215. }
  216. }
  217. }
  218. void OLED_Refresh_Gram(void)
  219. {
  220. u8 ii,nn;
  221. for(ii=0;ii<8;ii++)
  222. {
  223. OLED_WRCMD(0xb0+ii);
  224. OLED_WRCMD(0x00);
  225. OLED_WRCMD(0x10);
  226. for(nn=0;nn<120;nn++)OLED_WRDATA(OLED_GRAM[nn][ii]);
  227. }
  228. }
  229. void OLED_DRAWPoint(u8 x,u8 y,u8 t)
  230. {
  231. u8 pos,bx,temp=0;
  232. if(x>127||y>63)return;
  233. pos=y/8;
  234. bx=y%8;
  235. temp=1<<(7-bx);
  236. if(t)OLED_GRAM[x][pos]|=temp;
  237. else OLED_GRAM[x][pos]&=~temp;
  238. }



  1. OLED.h
  2. /* By LXK */
  3. #ifndef __oled_H__
  4. #define __oled_H__
  5. #include "common.h"
  6. #define OLED_DC_PORT PTC
  7. #define OLED_SDA_PORT PTC
  8. #define OLED_SCL_PORT PTC
  9. #define OLED_RST_PORT PTC
  10. #define OLED_SDA_PIN 17
  11. #define OLED_SCL_PIN 16
  12. #define OLED_RST_PIN 18
  13. #define OLED_DC_PIN 19
  14. #define OLED_DC PTCn_O(OLED_DC_PIN)
  15. #define OLED_SDA PTCn_O(OLED_SDA_PIN)
  16. #define OLED_SCL PTCn_O(OLED_SCL_PIN)
  17. #define OLED_RST PTCn_O(OLED_RST_PIN)
  18. #define XLevelL 0x00
  19. #define XLevelH 0x10
  20. #define XLevel ((XLevelH&0x0F)*16+XLevelL)
  21. #define Max_Column 128
  22. #define Max_Row 64
  23. #define Brightness 0xCF
  24. #define X_WIDTH 128
  25. #define Y_WIDTH 64
  26. void OLED_WRCMD(unsigned char com);
  27. void OLED_WRDATA(unsigned char dat);
  28. void OLED_Setxy(unsigned char x, unsigned char y); //OLED éè??×?±ê
  29. void OLED_Fill(unsigned char bmp_dat); //bmp_dat=0x00è??á?e£?bmp_dat=0xffè??ááá
  30. void OLED_Init(void); //OLED3?ê??ˉ
  31. void OLED_6x8(unsigned char x,unsigned char y,unsigned char ch[]);//??ê?6*8ò?×é±ê×?ASCII×?·?′? ??ê?μ?×?±ê£¨x,y£?£?y?aò3·??§0??7
  32. void OLED_Cler_6x8(unsigned char x,unsigned char y,unsigned char n);//??3yN??6*8×?·?
  33. void OLED_8x16(unsigned char x,unsigned char y,unsigned char ch[]);//??ê?8*16ò?×é±ê×?ASCII×?·?′? ??ê?μ?×?±ê£¨x,y£?£?y?aò3·??§0??7
  34. void OLED_Cler_8x16(unsigned char x,unsigned char y,unsigned char n); //??3yn??8*16×?·?
  35. void OLED_16x16(unsigned char x,unsigned char y,unsigned char N);//??ê?16*16μ??ó ??ê?μ?×?±ê£¨x,y£?£?y?aò3·??§0??7
  36. void OLED_Cler_16x16(unsigned char x,unsigned char y,unsigned char n);//??3yn??16*16×?
  37. void Draw_BMP(unsigned char x0,unsigned char y0,unsigned char x1,unsigned char y1,unsigned char BMP[]);//??ê???ê?BMPí???128?á64?eê?μ?×?±ê(x,y),xμ?·??§0??127£?y?aò3μ?·??§0??7*
  38. void OLED_Refresh_Gram(void);
  39. void OLED_DRAWPoint(unsigned char x,unsigned char y,unsigned char t);
  40. #endif




  1. /* 6x8.h */
  2. #ifndef __6x8_H__
  3. #define __6x8_H__
  4. #include "sys.h"
  5. const unsigned char F6x8[][6] =
  6. {
  7. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,// sp
  8. 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00,// !
  9. 0x00, 0x00, 0x07, 0x00, 0x07, 0x00,// "
  10. 0x00, 0x14, 0x7f, 0x14, 0x7f, 0x14,// #
  11. 0x00, 0x24, 0x2a, 0x7f, 0x2a, 0x12,// $
  12. 0x00, 0x62, 0x64, 0x08, 0x13, 0x23,// %
  13. 0x00, 0x36, 0x49, 0x55, 0x22, 0x50,// &
  14. 0x00, 0x00, 0x05, 0x03, 0x00, 0x00,// '
  15. 0x00, 0x00, 0x1c, 0x22, 0x41, 0x00,// (
  16. 0x00, 0x00, 0x41, 0x22, 0x1c, 0x00,// )
  17. 0x00, 0x14, 0x08, 0x3E, 0x08, 0x14,// *
  18. 0x00, 0x08, 0x08, 0x3E, 0x08, 0x08,// +
  19. 0x00, 0x00, 0x00, 0xA0, 0x60, 0x00,// ,
  20. 0x00, 0x08, 0x08, 0x08, 0x08, 0x08,// -
  21. 0x00, 0x00, 0x60, 0x60, 0x00, 0x00,// .
  22. 0x00, 0x20, 0x10, 0x08, 0x04, 0x02,// /
  23. 0x00, 0x3E, 0x51, 0x49, 0x45, 0x3E,// 0
  24. 0x00, 0x00, 0x42, 0x7F, 0x40, 0x00,// 1
  25. 0x00, 0x42, 0x61, 0x51, 0x49, 0x46,// 2
  26. 0x00, 0x21, 0x41, 0x45, 0x4B, 0x31,// 3
  27. 0x00, 0x18, 0x14, 0x12, 0x7F, 0x10,// 4
  28. 0x00, 0x27, 0x45, 0x45, 0x45, 0x39,// 5
  29. 0x00, 0x3C, 0x4A, 0x49, 0x49, 0x30,// 6
  30. 0x00, 0x01, 0x71, 0x09, 0x05, 0x03,// 7
  31. 0x00, 0x36, 0x49, 0x49, 0x49, 0x36,// 8
  32. 0x00, 0x06, 0x49, 0x49, 0x29, 0x1E,// 9
  33. 0x00, 0x00, 0x36, 0x36, 0x00, 0x00,// :
  34. 0x00, 0x00, 0x56, 0x36, 0x00, 0x00,// ;
  35. 0x00, 0x08, 0x14, 0x22, 0x41, 0x00,// <
  36. 0x00, 0x14, 0x14, 0x14, 0x14, 0x14,// =
  37. 0x00, 0x00, 0x41, 0x22, 0x14, 0x08,// >
  38. 0x00, 0x02, 0x01, 0x51, 0x09, 0x06,// ?
  39. 0x00, 0x32, 0x49, 0x59, 0x51, 0x3E,// @
  40. 0x00, 0x7C, 0x12, 0x11, 0x12, 0x7C,// A
  41. 0x00, 0x7F, 0x49, 0x49, 0x49, 0x36,// B
  42. 0x00, 0x3E, 0x41, 0x41, 0x41, 0x22,// C
  43. 0x00, 0x7F, 0x41, 0x41, 0x22, 0x1C,// D
  44. 0x00, 0x7F, 0x49, 0x49, 0x49, 0x41,// E
  45. 0x00, 0x7F, 0x09, 0x09, 0x09, 0x01,// F
  46. 0x00, 0x3E, 0x41, 0x49, 0x49, 0x7A,// G
  47. 0x00, 0x7F, 0x08, 0x08, 0x08, 0x7F,// H
  48. 0x00, 0x00, 0x41, 0x7F, 0x41, 0x00,// I
  49. 0x00, 0x20, 0x40, 0x41, 0x3F, 0x01,// J
  50. 0x00, 0x7F, 0x08, 0x14, 0x22, 0x41,// K
  51. 0x00, 0x7F, 0x40, 0x40, 0x40, 0x40,// L
  52. 0x00, 0x7F, 0x02, 0x0C, 0x02, 0x7F,// M
  53. 0x00, 0x7F, 0x04, 0x08, 0x10, 0x7F,// N
  54. 0x00, 0x3E, 0x41, 0x41, 0x41, 0x3E,// O
  55. 0x00, 0x7F, 0x09, 0x09, 0x09, 0x06,// P
  56. 0x00, 0x3E, 0x41, 0x51, 0x21, 0x5E,// Q
  57. 0x00, 0x7F, 0x09, 0x19, 0x29, 0x46,// R
  58. 0x00, 0x46, 0x49, 0x49, 0x49, 0x31,// S
  59. 0x00, 0x01, 0x01, 0x7F, 0x01, 0x01,// T
  60. 0x00, 0x3F, 0x40, 0x40, 0x40, 0x3F,// U
  61. 0x00, 0x1F, 0x20, 0x40, 0x20, 0x1F,// V
  62. 0x00, 0x3F, 0x40, 0x38, 0x40, 0x3F,// W
  63. 0x00, 0x63, 0x14, 0x08, 0x14, 0x63,// X
  64. 0x00, 0x07, 0x08, 0x70, 0x08, 0x07,// Y
  65. 0x00, 0x61, 0x51, 0x49, 0x45, 0x43,// Z
  66. 0x00, 0x00, 0x7F, 0x41, 0x41, 0x00,// [
  67. 0x00, 0x55, 0x2A, 0x55, 0x2A, 0x55,// 55
  68. 0x00, 0x00, 0x41, 0x41, 0x7F, 0x00,// ]
  69. 0x00, 0x04, 0x02, 0x01, 0x02, 0x04,// ^
  70. 0x00, 0x40, 0x40, 0x40, 0x40, 0x40,// _
  71. 0x00, 0x00, 0x01, 0x02, 0x04, 0x00,// '
  72. 0x00, 0x20, 0x54, 0x54, 0x54, 0x78,// a
  73. 0x00, 0x7F, 0x48, 0x44, 0x44, 0x38,// b
  74. 0x00, 0x38, 0x44, 0x44, 0x44, 0x20,// c
  75. 0x00, 0x38, 0x44, 0x44, 0x48, 0x7F,// d
  76. 0x00, 0x38, 0x54, 0x54, 0x54, 0x18,// e
  77. 0x00, 0x08, 0x7E, 0x09, 0x01, 0x02,// f
  78. 0x00, 0x18, 0xA4, 0xA4, 0xA4, 0x7C,// g
  79. 0x00, 0x7F, 0x08, 0x04, 0x04, 0x78,// h
  80. 0x00, 0x00, 0x44, 0x7D, 0x40, 0x00,// i
  81. 0x00, 0x40, 0x80, 0x84, 0x7D, 0x00,// j
  82. 0x00, 0x7F, 0x10, 0x28, 0x44, 0x00,// k
  83. 0x00, 0x00, 0x41, 0x7F, 0x40, 0x00,// l
  84. 0x00, 0x7C, 0x04, 0x18, 0x04, 0x78,// m
  85. 0x00, 0x7C, 0x08, 0x04, 0x04, 0x78,// n
  86. 0x00, 0x38, 0x44, 0x44, 0x44, 0x38,// o
  87. 0x00, 0xFC, 0x24, 0x24, 0x24, 0x18,// p
  88. 0x00, 0x18, 0x24, 0x24, 0x18, 0xFC,// q
  89. 0x00, 0x7C, 0x08, 0x04, 0x04, 0x08,// r
  90. 0x00, 0x48, 0x54, 0x54, 0x54, 0x20,// s
  91. 0x00, 0x04, 0x3F, 0x44, 0x40, 0x20,// t
  92. 0x00, 0x3C, 0x40, 0x40, 0x20, 0x7C,// u
  93. 0x00, 0x1C, 0x20, 0x40, 0x20, 0x1C,// v
  94. 0x00, 0x3C, 0x40, 0x30, 0x40, 0x3C,// w
  95. 0x00, 0x44, 0x28, 0x10, 0x28, 0x44,// x
  96. 0x00, 0x1C, 0xA0, 0xA0, 0xA0, 0x7C,// y
  97. 0x00, 0x44, 0x64, 0x54, 0x4C, 0x44,// z
  98. 0x14, 0x14, 0x14, 0x14, 0x14, 0x14,// horiz lines
  99. };
  100. #endif




  1. /* 8x16.h */
  2. #ifndef __8x16_H__
  3. #define __8x16_H__
  4. #include "sys.h"
  5. const unsigned char F8X16[]=
  6. {
  7. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,// 0
  8. 0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x30,0x00,0x00,0x00,//! 1
  9. 0x00,0x10,0x0C,0x06,0x10,0x0C,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//" 2
  10. 0x40,0xC0,0x78,0x40,0xC0,0x78,0x40,0x00,0x04,0x3F,0x04,0x04,0x3F,0x04,0x04,0x00,//# 3
  11. 0x00,0x70,0x88,0xFC,0x08,0x30,0x00,0x00,0x00,0x18,0x20,0xFF,0x21,0x1E,0x00,0x00,//$ 4
  12. 0xF0,0x08,0xF0,0x00,0xE0,0x18,0x00,0x00,0x00,0x21,0x1C,0x03,0x1E,0x21,0x1E,0x00,//% 5
  13. 0x00,0xF0,0x08,0x88,0x70,0x00,0x00,0x00,0x1E,0x21,0x23,0x24,0x19,0x27,0x21,0x10,//& 6
  14. 0x10,0x16,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//' 7
  15. 0x00,0x00,0x00,0xE0,0x18,0x04,0x02,0x00,0x00,0x00,0x00,0x07,0x18,0x20,0x40,0x00,//( 8
  16. 0x00,0x02,0x04,0x18,0xE0,0x00,0x00,0x00,0x00,0x40,0x20,0x18,0x07,0x00,0x00,0x00,//) 9
  17. 0x40,0x40,0x80,0xF0,0x80,0x40,0x40,0x00,0x02,0x02,0x01,0x0F,0x01,0x02,0x02,0x00,//* 10
  18. 0x00,0x00,0x00,0xF0,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x1F,0x01,0x01,0x01,0x00,//+ 11
  19. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xB0,0x70,0x00,0x00,0x00,0x00,0x00,//, 12
  20. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,//- 13
  21. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,//. 14
  22. 0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x04,0x00,0x60,0x18,0x06,0x01,0x00,0x00,0x00,/// 15
  23. 0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,0x00,0x0F,0x10,0x20,0x20,0x10,0x0F,0x00,//0 16
  24. 0x00,0x10,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//1 17
  25. 0x00,0x70,0x08,0x08,0x08,0x88,0x70,0x00,0x00,0x30,0x28,0x24,0x22,0x21,0x30,0x00,//2 18
  26. 0x00,0x30,0x08,0x88,0x88,0x48,0x30,0x00,0x00,0x18,0x20,0x20,0x20,0x11,0x0E,0x00,//3 19
  27. 0x00,0x00,0xC0,0x20,0x10,0xF8,0x00,0x00,0x00,0x07,0x04,0x24,0x24,0x3F,0x24,0x00,//4 20
  28. 0x00,0xF8,0x08,0x88,0x88,0x08,0x08,0x00,0x00,0x19,0x21,0x20,0x20,0x11,0x0E,0x00,//5 21
  29. 0x00,0xE0,0x10,0x88,0x88,0x18,0x00,0x00,0x00,0x0F,0x11,0x20,0x20,0x11,0x0E,0x00,//6 22
  30. 0x00,0x38,0x08,0x08,0xC8,0x38,0x08,0x00,0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x00,//7 23
  31. 0x00,0x70,0x88,0x08,0x08,0x88,0x70,0x00,0x00,0x1C,0x22,0x21,0x21,0x22,0x1C,0x00,//8 24
  32. 0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,0x00,0x00,0x31,0x22,0x22,0x11,0x0F,0x00,//9 25
  33. 0x00,0x00,0x00,0xC0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,//: 26
  34. 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x00,0x00,0x00,0x00,//; 27
  35. 0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x00,//< 28
  36. 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,//= 29
  37. 0x00,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x20,0x10,0x08,0x04,0x02,0x01,0x00,//> 30
  38. 0x00,0x70,0x48,0x08,0x08,0x08,0xF0,0x00,0x00,0x00,0x00,0x30,0x36,0x01,0x00,0x00,//? 31
  39. 0xC0,0x30,0xC8,0x28,0xE8,0x10,0xE0,0x00,0x07,0x18,0x27,0x24,0x23,0x14,0x0B,0x00,//@ 32
  40. 0x00,0x00,0xC0,0x38,0xE0,0x00,0x00,0x00,0x20,0x3C,0x23,0x02,0x02,0x27,0x38,0x20,//A 33
  41. 0x08,0xF8,0x88,0x88,0x88,0x70,0x00,0x00,0x20,0x3F,0x20,0x20,0x20,0x11,0x0E,0x00,//B 34
  42. 0xC0,0x30,0x08,0x08,0x08,0x08,0x38,0x00,0x07,0x18,0x20,0x20,0x20,0x10,0x08,0x00,//C 35
  43. 0x08,0xF8,0x08,0x08,0x08,0x10,0xE0,0x00,0x20,0x3F,0x20,0x20,0x20,0x10,0x0F,0x00,//D 36
  44. 0x08,0xF8,0x88,0x88,0xE8,0x08,0x10,0x00,0x20,0x3F,0x20,0x20,0x23,0x20,0x18,0x00,//E 37
  45. 0x08,0xF8,0x88,0x88,0xE8,0x08,0x10,0x00,0x20,0x3F,0x20,0x00,0x03,0x00,0x00,0x00,//F 38
  46. 0xC0,0x30,0x08,0x08,0x08,0x38,0x00,0x00,0x07,0x18,0x20,0x20,0x22,0x1E,0x02,0x00,//G 39
  47. 0x08,0xF8,0x08,0x00,0x00,0x08,0xF8,0x08,0x20,0x3F,0x21,0x01,0x01,0x21,0x3F,0x20,//H 40
  48. 0x00,0x08,0x08,0xF8,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//I 41
  49. 0x00,0x00,0x08,0x08,0xF8,0x08,0x08,0x00,0xC0,0x80,0x80,0x80,0x7F,0x00,0x00,0x00,//J 42
  50. 0x08,0xF8,0x88,0xC0,0x28,0x18,0x08,0x00,0x20,0x3F,0x20,0x01,0x26,0x38,0x20,0x00,//K 43
  51. 0x08,0xF8,0x08,0x00,0x00,0x00,0x00,0x00,0x20,0x3F,0x20,0x20,0x20,0x20,0x30,0x00,//L 44
  52. 0x08,0xF8,0xF8,0x00,0xF8,0xF8,0x08,0x00,0x20,0x3F,0x00,0x3F,0x00,0x3F,0x20,0x00,//M 45
  53. 0x08,0xF8,0x30,0xC0,0x00,0x08,0xF8,0x08,0x20,0x3F,0x20,0x00,0x07,0x18,0x3F,0x00,//N 46
  54. 0xE0,0x10,0x08,0x08,0x08,0x10,0xE0,0x00,0x0F,0x10,0x20,0x20,0x20,0x10,0x0F,0x00,//O 47
  55. 0x08,0xF8,0x08,0x08,0x08,0x08,0xF0,0x00,0x20,0x3F,0x21,0x01,0x01,0x01,0x00,0x00,//P 48
  56. 0xE0,0x10,0x08,0x08,0x08,0x10,0xE0,0x00,0x0F,0x18,0x24,0x24,0x38,0x50,0x4F,0x00,//Q 49
  57. 0x08,0xF8,0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x3F,0x20,0x00,0x03,0x0C,0x30,0x20,//R 50
  58. 0x00,0x70,0x88,0x08,0x08,0x08,0x38,0x00,0x00,0x38,0x20,0x21,0x21,0x22,0x1C,0x00,//S 51
  59. 0x18,0x08,0x08,0xF8,0x08,0x08,0x18,0x00,0x00,0x00,0x20,0x3F,0x20,0x00,0x00,0x00,//T 52
  60. 0x08,0xF8,0x08,0x00,0x00,0x08,0xF8,0x08,0x00,0x1F,0x20,0x20,0x20,0x20,0x1F,0x00,//U 53
  61. 0x08,0x78,0x88,0x00,0x00,0xC8,0x38,0x08,0x00,0x00,0x07,0x38,0x0E,0x01,0x00,0x00,//V 54
  62. 0xF8,0x08,0x00,0xF8,0x00,0x08,0xF8,0x00,0x03,0x3C,0x07,0x00,0x07,0x3C,0x03,0x00,//W 55
  63. 0x08,0x18,0x68,0x80,0x80,0x68,0x18,0x08,0x20,0x30,0x2C,0x03,0x03,0x2C,0x30,0x20,//X 56
  64. 0x08,0x38,0xC8,0x00,0xC8,0x38,0x08,0x00,0x00,0x00,0x20,0x3F,0x20,0x00,0x00,0x00,//Y 57
  65. 0x10,0x08,0x08,0x08,0xC8,0x38,0x08,0x00,0x20,0x38,0x26,0x21,0x20,0x20,0x18,0x00,//Z 58
  66. 0x00,0x00,0x00,0xFE,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x7F,0x40,0x40,0x40,0x00,//[ 59
  67. 0x00,0x0C,0x30,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x38,0xC0,0x00,//\ 60
  68. 0x00,0x02,0x02,0x02,0xFE,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x7F,0x00,0x00,0x00,//] 61
  69. 0x00,0x00,0x04,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//^ 62
  70. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,//_ 63
  71. 0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//` 64
  72. 0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x19,0x24,0x22,0x22,0x22,0x3F,0x20,//a 65
  73. 0x08,0xF8,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x3F,0x11,0x20,0x20,0x11,0x0E,0x00,//b 66
  74. 0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x0E,0x11,0x20,0x20,0x20,0x11,0x00,//c 67
  75. 0x00,0x00,0x00,0x80,0x80,0x88,0xF8,0x00,0x00,0x0E,0x11,0x20,0x20,0x10,0x3F,0x20,//d 68
  76. 0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x1F,0x22,0x22,0x22,0x22,0x13,0x00,//e 69
  77. 0x00,0x80,0x80,0xF0,0x88,0x88,0x88,0x18,0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//f 70
  78. 0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x6B,0x94,0x94,0x94,0x93,0x60,0x00,//g 71
  79. 0x08,0xF8,0x00,0x80,0x80,0x80,0x00,0x00,0x20,0x3F,0x21,0x00,0x00,0x20,0x3F,0x20,//h 72
  80. 0x00,0x80,0x98,0x98,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//i 73
  81. 0x00,0x00,0x00,0x80,0x98,0x98,0x00,0x00,0x00,0xC0,0x80,0x80,0x80,0x7F,0x00,0x00,//j 74
  82. 0x08,0xF8,0x00,0x00,0x80,0x80,0x80,0x00,0x20,0x3F,0x24,0x02,0x2D,0x30,0x20,0x00,//k 75
  83. 0x00,0x08,0x08,0xF8,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00,//l 76
  84. 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x20,0x3F,0x20,0x00,0x3F,0x20,0x00,0x3F,//m 77
  85. 0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,0x20,0x3F,0x21,0x00,0x00,0x20,0x3F,0x20,//n 78
  86. 0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x1F,0x20,0x20,0x20,0x20,0x1F,0x00,//o 79
  87. 0x80,0x80,0x00,0x80,0x80,0x00,0x00,0x00,0x80,0xFF,0xA1,0x20,0x20,0x11,0x0E,0x00,//p 80
  88. 0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x0E,0x11,0x20,0x20,0xA0,0xFF,0x80,//q 81
  89. 0x80,0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x20,0x20,0x3F,0x21,0x20,0x00,0x01,0x00,//r 82
  90. 0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x33,0x24,0x24,0x24,0x24,0x19,0x00,//s 83
  91. 0x00,0x80,0x80,0xE0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x1F,0x20,0x20,0x00,0x00,//t 84
  92. 0x80,0x80,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x1F,0x20,0x20,0x20,0x10,0x3F,0x20,//u 85
  93. 0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x00,0x01,0x0E,0x30,0x08,0x06,0x01,0x00,//v 86
  94. 0x80,0x80,0x00,0x80,0x00,0x80,0x80,0x80,0x0F,0x30,0x0C,0x03,0x0C,0x30,0x0F,0x00,//w 87
  95. 0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,0x20,0x31,0x2E,0x0E,0x31,0x20,0x00,//x 88
  96. 0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x80,0x81,0x8E,0x70,0x18,0x06,0x01,0x00,//y 89
  97. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x21,0x30,0x2C,0x22,0x21,0x30,0x00,//z 90
  98. 0x00,0x00,0x00,0x00,0x80,0x7C,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x3F,0x40,0x40,//{ 91
  99. 0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,//| 92
  100. 0x00,0x02,0x02,0x7C,0x80,0x00,0x00,0x00,0x00,0x40,0x40,0x3F,0x00,0x00,0x00,0x00,//} 93
  101. 0x00,0x06,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//~ 94
  102. };
  103. #endif





  1. /* 16x16.h */
  2. #ifndef __16x16_H__
  3. #define __16x16_H__
  4. #include "sys.h"
  5. const unsigned char F16x16[] =
  6. {
  7. 0x00,0x00,0x30,0x10,0x10,0xD0,0x52,0x2E,0xA8,0x68,0x08,0x18,0x18,0x00,0x00,0x00,
  8. 0x00,0x00,0x00,0x00,0x3C,0x25,0x25,0x25,0x24,0x16,0x0C,0x04,0x00,0x00,0x00,0x00,/*"¹¬",2*/
  9. 0x00,0x80,0x40,0xF0,0x0C,0x02,0xBC,0xA4,0xE4,0xA4,0xBC,0x40,0x40,0x00,0x00,0x00,
  10. 0x00,0x00,0x20,0x7F,0x01,0x09,0x04,0x02,0x7F,0x01,0x02,0x04,0x08,0x08,0x08,0x00,/*"±£",3*/
  11. 0x00,0x00,0x00,0xA0,0x90,0x70,0x00,0x70,0x88,0xAE,0x88,0xF8,0x00,0x00,0x00,0x00,
  12. 0x00,0x00,0x08,0x06,0x01,0x13,0x14,0x13,0x12,0x0A,0x0A,0x4A,0x42,0x3E,0x00,0x00,/*"¼¦",4*/
  13. 0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xF0,0x08,0x08,0x08,0x08,0x08,0x08,0x00,
  14. 0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*"¶¡",5*/
  15. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xF0,0xC0,0x80,0x00,0x00,0x00,
  16. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x07,0x03,0x00,0x00,0x00,/*"¡ú",4*/
  17. 0x40,0x40,0xC0,0xC0,0x40,0x40,0x40,0x38,0x07,0x38,0x40,0x40,0x40,0xC0,0xC0,0x40,
  18. 0x00,0x00,0x00,0x01,0x73,0x2E,0x30,0x10,0x08,0x10,0x30,0x2E,0x73,0x01,0x00,0x00,/*"¡î",5*/
  19. 0x00,0x30,0x18,0x08,0x08,0xD8,0x70,0x00,0x00,0xF0,0x18,0x08,0x08,0x18,0xE0,0x00,
  20. 0x00,0x30,0x38,0x34,0x33,0x31,0x30,0x00,0x00,0x0F,0x10,0x20,0x30,0x18,0x0F,0x00,/*"20",6*/
  21. 0x00,0x00,0x00,0x80,0x80,0x40,0xC8,0x48,0xC8,0x44,0x20,0x20,0x00,0x00,0x00,0x00,
  22. 0x00,0x00,0x10,0x10,0x0C,0x02,0x01,0x0E,0x11,0x20,0x20,0x20,0x20,0x20,0x38,0x00,/*"Ôª",7*/
  23. 0x00,0x00,0x00,0x00,0xA0,0xA0,0x90,0x8C,0x74,0x58,0x48,0xC0,0x40,0x00,0x00,0x00,
  24. 0x00,0x20,0x20,0x20,0x20,0x27,0x2A,0x2A,0x25,0x25,0x26,0x21,0x30,0x20,0x20,0x00,/*"Óã",0*/
  25. 0x00,0x00,0x00,0x20,0x20,0xA0,0x68,0xF8,0x34,0x54,0x90,0x90,0x10,0x00,0x00,0x00,
  26. 0x00,0x00,0x02,0x02,0x01,0x7E,0x2A,0x2B,0x2A,0x22,0x7E,0x01,0x01,0x01,0x01,0x00,/*"Ïã",1*/
  27. 0x00,0x00,0x00,0xF0,0x10,0x90,0x50,0x3C,0x50,0x50,0x10,0x10,0xF0,0x00,0x00,0x00,
  28. 0x00,0x00,0x00,0x1F,0x00,0x04,0x02,0x01,0x02,0x02,0x04,0x20,0x7F,0x00,0x00,0x00,/*"Èâ",2*/
  29. 0x00,0x00,0x00,0xC0,0xA0,0x98,0xC0,0x60,0x40,0xA0,0x90,0x8C,0x60,0x00,0x00,0x00,
  30. 0x00,0x00,0x00,0x24,0x26,0x25,0x12,0x12,0x10,0x16,0x15,0x12,0x12,0x10,0x10,0x00,/*"Ë¿",3*/
  31. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xF0,0xC0,0x80,0x00,0x00,0x00,
  32. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x07,0x03,0x00,0x00,0x00,/*"¡ú",4*/
  33. 0x40,0x40,0xC0,0xC0,0x40,0x40,0x40,0x38,0x07,0x38,0x40,0x40,0x40,0xC0,0xC0,0x40,
  34. 0x00,0x00,0x00,0x01,0x73,0x2E,0x30,0x10,0x08,0x10,0x30,0x2E,0x73,0x01,0x00,0x00,/*"¡î",5*/
  35. 0x00,0x30,0x18,0x08,0x08,0xD8,0x70,0x00,0x00,0xF0,0x18,0x08,0x08,0x18,0xE0,0x00,
  36. 0x00,0x30,0x38,0x34,0x33,0x31,0x30,0x00,0x00,0x0F,0x10,0x20,0x30,0x18,0x0F,0x00,/*"20",6*/
  37. 0x00,0x00,0x00,0x80,0x80,0x40,0xC8,0x48,0xC8,0x44,0x20,0x20,0x00,0x00,0x00,0x00,
  38. 0x00,0x00,0x10,0x10,0x0C,0x02,0x01,0x0E,0x11,0x20,0x20,0x20,0x20,0x20,0x38,0x00,/*"Ôª",7*/
  39. 0x00,0x00,0x00,0x98,0xF0,0x80,0x20,0xC0,0x00,0xFC,0x40,0x20,0xC0,0x00,0x00,0x00,
  40. 0x00,0x10,0x10,0x0F,0x04,0x02,0x02,0x1F,0x21,0x27,0x22,0x27,0x20,0x30,0x18,0x00,/*"µØ",0*/
  41. 0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x18,0x88,0x88,0x08,0x00,0x00,0x00,0x00,
  42. 0x00,0x00,0x10,0x10,0x10,0x11,0x11,0x11,0x11,0x10,0x10,0x08,0x08,0x18,0x10,0x00,/*"Èý",1*/
  43. 0x00,0x00,0xD0,0xA8,0xD6,0xAA,0xEC,0x60,0xA0,0xA8,0xF0,0x58,0x56,0x00,0x00,0x00,
  44. 0x00,0x08,0x09,0x0A,0x09,0x0A,0x05,0x02,0x02,0x02,0x7F,0x01,0x01,0x01,0x01,0x00,/*"ÏÊ",2*/
  45. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xF0,0xC0,0x80,0x00,0x00,0x00,
  46. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x07,0x03,0x00,0x00,0x00,/*"¡ú",3*/
  47. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xF0,0xC0,0x80,0x00,0x00,0x00,
  48. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x07,0x03,0x00,0x00,0x00,/*"¡ú",4*/
  49. 0x40,0x40,0xC0,0xC0,0x40,0x40,0x40,0x38,0x07,0x38,0x40,0x40,0x40,0xC0,0xC0,0x40,
  50. 0x00,0x00,0x00,0x01,0x73,0x2E,0x30,0x10,0x08,0x10,0x30,0x2E,0x73,0x01,0x00,0x00,/*"¡î",5*/
  51. 0x00,0x30,0x18,0x08,0x08,0xD8,0x70,0x00,0x00,0xF0,0x18,0x08,0x08,0x18,0xE0,0x00,
  52. 0x00,0x30,0x38,0x34,0x33,0x31,0x30,0x00,0x00,0x0F,0x10,0x20,0x30,0x18,0x0F,0x00,/*"20",6*/
  53. 0x00,0x00,0x00,0x80,0x80,0x40,0xC8,0x48,0xC8,0x44,0x20,0x20,0x00,0x00,0x00,0x00,
  54. 0x00,0x00,0x10,0x10,0x0C,0x02,0x01,0x0E,0x11,0x20,0x20,0x20,0x20,0x20,0x38,0x00,/*"Ôª",7*/
  55. 0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xF0,0x30,0x88,0x08,0x00,0x00,0x00,0x00,0x00,
  56. 0x00,0x00,0x20,0x20,0x20,0x11,0x11,0x1F,0x11,0x10,0x10,0x12,0x16,0x10,0x10,0x00,/*"Óñ",0*/
  57. 0x00,0x00,0x00,0x80,0x80,0xA0,0x80,0xFE,0x60,0x50,0x48,0x48,0x00,0x00,0x00,0x00,
  58. 0x00,0x00,0x10,0x08,0x04,0x02,0x01,0x7F,0x01,0x02,0x04,0x0C,0x08,0x08,0x00,0x00,/*"Ã×",1*/
  59. 0x00,0x00,0x80,0x00,0xFC,0x20,0x00,0x20,0x50,0x8C,0xF0,0x18,0x00,0x00,0x00,0x00,
  60. 0x00,0x20,0x10,0x0D,0x02,0x04,0x04,0x3A,0x49,0x28,0x28,0x3D,0x0A,0x02,0x04,0x00,/*"ÀÓ",2*/
  61. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xF0,0xC0,0x80,0x00,0x00,0x00,
  62. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x07,0x03,0x00,0x00,0x00,/*"¡ú",3*/
  63. 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xF0,0xC0,0x80,0x00,0x00,0x00,
  64. 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0F,0x07,0x03,0x00,0x00,0x00,/*"¡ú",4*/
  65. 0x40,0x40,0xC0,0xC0,0x40,0x40,0x40,0x38,0x07,0x38,0x40,0x40,0x40,0xC0,0xC0,0x40,
  66. 0x00,0x00,0x00,0x01,0x73,0x2E,0x30,0x10,0x08,0x10,0x30,0x2E,0x73,0x01,0x00,0x00,/*"¡î",5*/
  67. 0x00,0x30,0x18,0x08,0x08,0xD8,0x70,0x00,0x00,0xF0,0x18,0x08,0x08,0x18,0xE0,0x00,
  68. 0x00,0x30,0x38,0x34,0x33,0x31,0x30,0x00,0x00,0x0F,0x10,0x20,0x30,0x18,0x0F,0x00,/*"20",6*/
  69. 0x00,0x00,0x00,0x80,0x80,0x40,0xC8,0x48,0xC8,0x44,0x20,0x20,0x00,0x00,0x00,0x00,
  70. 0x00,0x00,0x10,0x10,0x0C,0x02,0x01,0x0E,0x11,0x20,0x20,0x20,0x20,0x20,0x38,0x00,/*"Ôª",7*/
  71. };
  72. //0x00,0x00,0x80,0x80,0x80,0x80,0xC0,0xFC,0xF8,0xC0,0x80,0x80,0x80,0x80,0x00,0x00,
  73. //0x00,0x00,0x00,0x41,0x39,0x1F,0x1F,0x0F,0x0F,0x1F,0x1F,0x71,0x01,0x00,0x00,0x00, //¡ï
  74. #endif



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/309468
推荐阅读
相关标签
  

闽ICP备14008679号