- /*以下是32*32點(diǎn)陣漢字在32*64屏,漢字從左到右流動顯示。
- 上半屏G1接P3.4,CLK1腳接P3.5,下半屏G2接P3.0,CLK2腳接P3.1,
- GABCD分別接P1.0-P1.3,STR腳接P1.7,E1、E2接地提高亮度
- 用STC89C52單片機(jī),晶振24M以上,選6T倍速方式*/
- #include <AT89x52.H>
- #define uchar unsigned char
- #define uint unsigned int
- #define SPEED 20 //定義速度,根據(jù)晶振速度調(diào)節(jié).
- #define ALLNUM 14 //定義要顯示總32X32漢字個數(shù),計(jì)算方法:ALLNUM=漢字個數(shù)
- uchar wor,col,disrow; //wor為要顯字變量,col為位移變量,disrow為行變量
- uchar code tab[][128]; //32*32漢字字模,
- uchar BUFF[40]; //下半屏顯示緩沖
- uchar BUFF1[40]; //上半屏顯示緩沖
- sbit R1=P3^3;
- sbit G1=P3^4;
- sbit CLK1=P3^5;
- sbit R2=P3^2;
- sbit G2=P3^0;
- sbit CLK2=P3^1;
- sbit STB=P1^7;
- void loadoneline(void);
- void sendoneline(void);
- void loadoneline1(void);
- void sendoneline1(void);
- /****************************主函數(shù)***************************/
- void main(void)
- {
- uchar i;
- col=0;wor=0;
- R1=0;
- R2=0;
- G1=0;
- G2=0;
- while(1)
- {
- while(col<4)// 循環(huán)4次,點(diǎn)亮并移動一個漢字,步進(jìn)是一個字節(jié),還沒有解決逐位移動的方法
- {
- for(i=0;i<SPEED;i++)//漢字在屏幕上的停留時間(即移動速度快慢)
- {
- for(disrow=0;disrow<16;disrow++)//掃描16行
- {
- loadoneline();//裝載一線點(diǎn)陣數(shù)據(jù)
- sendoneline();//發(fā)送一線點(diǎn)陣數(shù)據(jù)
- loadoneline1(); //裝載一線點(diǎn)陣數(shù)據(jù)
- sendoneline1();//發(fā)送一線點(diǎn)陣數(shù)據(jù)
- P1=disrow;// 掃描行
-
-
- STB= 1; // 點(diǎn)亮屏幕
-
-
- }
- }
- col++; //列指針遞增
-
- }
- col=0;wor=wor++;// 一個漢字移動后,指向下一個漢字
- if(wor>=ALLNUM) wor=0;// 移動元ALLNUM個漢字后,重新開始
- }
- }
- /**************裝載下半屏一線點(diǎn)陣數(shù)據(jù)****************/
- void loadoneline(void)
- {
- {
-
- BUFF[0]=tab[wor][64+disrow*4];//~
- BUFF[1]=tab[wor][64+disrow*4+1];//~
- BUFF[2]=tab[wor][64+disrow*4+2];//~
- BUFF[3]=tab[wor][64+disrow*4+3];//~
- BUFF[4]=tab[wor+1][64+disrow*4];//~
- BUFF[5]=tab[wor+1][64+disrow*4+1];//~
- BUFF[6]=tab[wor+1][64+disrow*4+2];//~
- BUFF[7]=tab[wor+1][64+disrow*4+3];//~
- BUFF[8]=tab[wor+2][64+disrow*4];//~
- BUFF[9]=tab[wor+2][64+disrow*4+1];//~
- BUFF[10]=tab[wor+2][64+disrow*4+2];//~
- BUFF[11]=tab[wor+2][64+disrow*4+3];//~
- BUFF[12]=tab[wor+3][64+disrow*4];//~
- BUFF[13]=tab[wor+3][64+disrow*4+1];//~
- BUFF[14]=tab[wor+3][64+disrow*4+2];//~
- BUFF[15]=tab[wor+3][64+disrow*4+3];//~
- BUFF[16]=tab[wor+4][64+disrow*4+3];//~
- }
-
- }
- /**************裝載上半屏一線點(diǎn)陣數(shù)據(jù)****************/
- void loadoneline1(void)
- {
-
- {
-
-
- BUFF1[0]=tab[wor][disrow*4];//~
- BUFF1[1]=tab[wor][disrow*4+1];//~
- BUFF1[2]=tab[wor][disrow*4+2];//~
- BUFF1[3]=tab[wor][disrow*4+3];//~
- BUFF1[4]=tab[wor+1][disrow*4];//~
- BUFF1[5]=tab[wor+1][disrow*4+1];//~
- BUFF1[6]=tab[wor+1][disrow*4+2];//~
- BUFF1[7]=tab[wor+1][disrow*4+3];//~
- BUFF1[8]=tab[wor+2][disrow*4];//~
- BUFF1[9]=tab[wor+2][disrow*4+1];//~
- BUFF1[10]=tab[wor+2][disrow*4+2];//~
- BUFF1[11]=tab[wor+2][disrow*4+3];//~
- BUFF1[12]=tab[wor+3][disrow*4];//~
- BUFF1[13]=tab[wor+3][disrow*4+1];//~
- BUFF1[14]=tab[wor+3][disrow*4+2];//~
- BUFF1[15]=tab[wor+3][disrow*4+3];//~
- BUFF1[16]=tab[wor+4][disrow*4+3];//~
-
- }
- }
- /***************發(fā)送下半屏一線點(diǎn)陣數(shù)據(jù)*******************/
- void sendoneline(void)
- {
- char s;uchar TEMP,i;
- bit e;
- for(s=0;s<8+col;s++)
-
- {
- TEMP=BUFF[s];
- for(i=0;i<8;i++)
- {
- e=(TEMP>>i)&0x01; //取出最高位。
- G2=e; //輸出數(shù)據(jù)
- CLK2=1; //發(fā)送時鐘
- CLK2=0;
- }
- }
- }
- /***************發(fā)送上半屏一線點(diǎn)陣數(shù)據(jù)*******************/
- void sendoneline1(void)
- {
- char s;uchar TEMP,i;
- bit e;
- for(s=0;s<8+col;s++)
-
- {
- TEMP=BUFF1[s];
- for(i=0;i<8;i++)
- {
- e=(TEMP>>i)&0x01; //取出最高位。
- G1=e; //輸出數(shù)據(jù)1
- CLK1=1; //發(fā)送時鐘
- CLK1=0;
- }
- }
- }
- /***********************漢字點(diǎn)陣碼*************************/
- uchar code tab[][128]=
- {
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, //留空
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x01,0x00,0x00,0xC0,0x03,0xCE,0x01,
- 0xC0,0x01,0xCE,0x01,0xC0,0x01,0xCE,0x01,0xC0,0x01,0xCE,0x01,0xC0,0x01,0xCE,0x01,
- 0xC0,0x01,0xCE,0x19,0xC0,0x7D,0xCE,0x39,0xFC,0xF7,0xCE,0x1D,0xC0,0xC1,0xCE,0x0F,
- 0xC0,0xC1,0xCF,0x07,0xC0,0xC1,0xCF,0x03,0xE0,0xC7,0xCE,0x01,0xE0,0x0F,0xCE,0x01,
- 0xE0,0x1D,0xCE,0x01,0xF0,0x1D,0xCE,0x07,0xF0,0x81,0xCF,0x1F,0xF0,0xE1,0xCE,0x3D,
- 0xD8,0x79,0xCE,0x39,0xD8,0x31,0xC6,0x01,0xCC,0x01,0xC6,0x01,0xC6,0x01,0xC7,0x01,
- 0xC0,0x01,0xC3,0x31,0xC0,0x81,0xC3,0x31,0xC0,0xC1,0xC1,0x31,0xC0,0xC1,0xC0,0x71,
- 0xC0,0x71,0xC0,0x7F,0xC0,0x19,0x80,0x3F,0xC0,0x0D,0x00,0x00,0x00,0x00,0x00,0x00,/*"桃",0*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x00,0x30,
- 0xE0,0x70,0x00,0x78,0xE0,0xF1,0xFF,0x0F,0xC0,0x31,0xE0,0x01,0xC0,0x31,0x60,0x00,
- 0x00,0x3C,0x30,0x00,0x00,0x3C,0x33,0x1C,0x06,0x36,0xFF,0x3F,0x0C,0x36,0x07,0x1C,
- 0x38,0x33,0x07,0x1C,0x78,0x33,0x07,0x1C,0x70,0x33,0xFF,0x1F,0xB0,0x31,0x07,0x1C,
- 0x80,0x31,0x07,0x1C,0x80,0x39,0x07,0x1C,0xC0,0x38,0x07,0x1C,0xC0,0x38,0xFF,0x1F,
- 0xE0,0x38,0xE0,0x00,0x60,0x18,0xE6,0x00,0x7C,0x18,0xEE,0x07,0x70,0x1C,0xE7,0x0E,
- 0x70,0x8C,0xE3,0x1C,0x70,0xCE,0xE1,0x38,0x70,0xE6,0xE0,0x38,0x70,0x73,0xE0,0x38,
- 0xF0,0x19,0xFC,0x00,0xF0,0x00,0x78,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x00,0x00,/*"源",1*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0xC0,0x03,0x00,
- 0x00,0x80,0x03,0x00,0x60,0x00,0x03,0x18,0x60,0x80,0x01,0x3C,0xF0,0xFF,0xFF,0x7F,
- 0x70,0x38,0x00,0x1C,0x78,0x78,0x00,0x0E,0x38,0x3C,0x60,0x00,0x00,0xFC,0xFF,0x00,
- 0x00,0x3E,0x70,0x00,0x00,0x67,0x38,0x00,0x80,0xE3,0x1C,0x00,0xC0,0xC1,0x0F,0x00,
- 0xE0,0x80,0x07,0x00,0x30,0x80,0x0F,0x00,0x00,0xE0,0x3C,0x00,0x00,0x78,0xF0,0x01,
- 0x00,0x1C,0xC0,0x7F,0x80,0x07,0xC0,0x3F,0xF0,0xFE,0xFF,0x1B,0x1C,0x06,0xC0,0x01,
- 0x00,0x06,0xC0,0x01,0x00,0x06,0xC0,0x01,0x00,0x06,0xC0,0x01,0x00,0x06,0xC0,0x01,
- 0x00,0x06,0xC0,0x01,0x00,0xFE,0xFF,0x01,0x00,0x06,0xC0,0x00,0x00,0x00,0x00,0x00,/*"客",2*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x00,0x00,0x80,0x03,0x00,0x00,
- 0x80,0xC3,0x00,0x0C,0x00,0xC7,0xFF,0x1F,0x00,0xC3,0x01,0x0E,0x00,0xC0,0x01,0x0E,
- 0x00,0xDC,0x01,0x0E,0xFC,0xFF,0x01,0x0E,0x00,0xCE,0x01,0x0E,0x00,0xCE,0x01,0x0E,
- 0x00,0xC7,0x01,0x0E,0x80,0xC3,0x01,0x0E,0x80,0xC3,0x01,0x0E,0xC0,0xC3,0xFF,0x0F,
- 0xE0,0xCF,0xCC,0x0E,0xE0,0x1D,0xCC,0x00,0xB0,0x39,0xCE,0x00,0x98,0x19,0xCE,0x00,
- 0x8C,0x01,0xCE,0x00,0x86,0x01,0xCE,0x00,0x80,0x01,0xCE,0x00,0x80,0x01,0xC7,0x60,
- 0x80,0x01,0xC7,0x60,0x80,0x81,0xC3,0x60,0x80,0xC1,0xC1,0x60,0x80,0xC1,0xC0,0x70,
- 0x80,0x71,0xC0,0x7F,0x80,0x39,0x80,0x3F,0x80,0x0D,0x00,0x00,0x00,0x00,0x00,0x00,/*"祝",3*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x78,0xFC,0xFF,0xFF,0x0F,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*"一",4*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x03,
- 0x80,0x01,0xFC,0x07,0x80,0xFB,0x0F,0x00,0x80,0x0F,0x00,0x00,0x80,0x03,0x00,0x00,
- 0x80,0x03,0x0F,0x00,0xC0,0x01,0x07,0x00,0xC0,0x01,0x07,0x00,0xC0,0x01,0x07,0x00,
- 0xC0,0x01,0x07,0x00,0xC0,0x01,0x07,0x18,0xC0,0x01,0x07,0x1C,0xE0,0xFF,0xFF,0x3F,
- 0xC0,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x0C,0x67,0x00,0x00,0x1C,0xC7,0x00,
- 0x00,0x1E,0xC7,0x01,0x00,0x0F,0x87,0x07,0x00,0x07,0x07,0x0F,0x80,0x03,0x07,0x1E,
- 0xC0,0x01,0x07,0x1E,0x60,0x00,0x07,0x1C,0x30,0x00,0x07,0x1C,0x1C,0x00,0x07,0x00,
- 0x00,0xE0,0x07,0x00,0x00,0x80,0x07,0x00,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x00,/*"樂",5*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x01,0x00,0x00,0x80,0x03,0x70,0x00,
- 0x00,0x07,0x70,0x00,0x00,0x07,0x70,0x00,0x00,0x06,0x70,0x00,0x00,0x00,0x70,0x00,
- 0x00,0x18,0x70,0x00,0xFC,0x3F,0x70,0x00,0x00,0x1C,0x70,0x00,0x00,0x1E,0x70,0x00,
- 0x00,0x0E,0x70,0x00,0x00,0x07,0x70,0x1C,0x00,0xC7,0xFF,0x07,0x80,0x07,0x70,0x00,
- 0xC0,0x1F,0x70,0x00,0xC0,0x3B,0x70,0x00,0xE0,0x73,0x70,0x00,0xB0,0x73,0x70,0x00,
- 0x98,0x03,0x70,0x00,0x8C,0x03,0x70,0x00,0x80,0x03,0x70,0x00,0x80,0x03,0x70,0x00,
- 0x80,0x03,0x70,0x00,0x80,0x03,0x70,0x00,0x80,0x03,0x70,0x30,0x80,0x03,0x70,0x78,
- 0x80,0xF3,0xDF,0x0F,0x80,0x03,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x00,0x00,0x00,/*"社",6*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0C,
- 0x70,0x00,0x00,0x1E,0xF0,0xFF,0xFF,0x03,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,
- 0x30,0x00,0x60,0x00,0x30,0x00,0xE0,0x00,0x30,0x06,0xF0,0x00,0x30,0x0C,0x70,0x00,
- 0x30,0x38,0x38,0x00,0x30,0x70,0x3C,0x00,0x30,0xE0,0x1D,0x00,0x30,0x80,0x0F,0x00,
- 0x30,0x00,0x07,0x00,0x30,0x80,0x1F,0x00,0x30,0xC0,0x3D,0x00,0x30,0xE0,0x78,0x00,
- 0x30,0x60,0xF0,0x00,0x30,0x38,0xE0,0x01,0x30,0x1C,0xC0,0x01,0x30,0x06,0x80,0x01,
- 0x30,0x03,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x00,0x18,
- 0x30,0x00,0x00,0x3C,0xF0,0xFF,0xFF,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*"區(qū)",7*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0xE0,0x70,0x0C,0x1C,0xE0,0x7F,0xFC,0x1F,0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,
- 0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,0xE0,0x7F,0xFC,0x1F,
- 0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,
- 0xE0,0x70,0x0C,0x1C,0xE0,0x7F,0xFC,0x1F,0xE0,0x70,0x0C,0x1C,0xE0,0x70,0x0C,0x1C,
- 0x60,0x70,0x0C,0x1C,0x60,0x70,0x0C,0x1C,0x60,0x70,0x0E,0x1C,0x70,0x70,0x0E,0x1C,
- 0x70,0x70,0x0E,0x1C,0x30,0x70,0x06,0x1C,0x30,0x70,0x07,0x1C,0x18,0x7E,0x03,0x1C,
- 0x18,0xF8,0xE1,0x1F,0x0C,0xF8,0x00,0x0F,0x06,0x60,0x00,0x06,0x00,0x00,0x00,0x00,/*"朋",8*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xE0,0x00,0x00,
- 0x00,0xE0,0x00,0x00,0x00,0xE0,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x70,0x00,0x1C,
- 0xF8,0xFF,0xFF,0x3F,0x00,0x70,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x00,0x00,
- 0x00,0x38,0x00,0x00,0x00,0x38,0xC0,0x00,0x00,0x38,0xC0,0x01,0x00,0xF8,0xFF,0x01,
- 0x00,0xDC,0xC0,0x01,0x00,0xDC,0xE0,0x00,0x00,0x8C,0xE1,0x00,0x00,0x8E,0x61,0x00,
- 0x00,0x8E,0x73,0x00,0x00,0x07,0x33,0x00,0x00,0x03,0x3E,0x00,0x80,0x03,0x1E,0x00,
- 0xC0,0x01,0x1C,0x00,0xC0,0x00,0x7E,0x00,0xE0,0x80,0xF7,0x00,0x70,0xC0,0xE1,0x03,
- 0x38,0x70,0x80,0x3F,0x18,0x1C,0x00,0x3F,0x8C,0x07,0x00,0x0C,0x00,0x00,0x00,0x00,/*"友",9*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x0F,0xE0,0x00,
- 0x00,0x07,0xE0,0x00,0x00,0x07,0xE0,0x0C,0x80,0xE3,0xE0,0x1C,0x80,0xFF,0xFC,0x1F,
- 0xC0,0xE1,0xC0,0x0C,0xC0,0x71,0xC0,0x3C,0xC0,0x70,0xFF,0x7F,0xE0,0x30,0xC0,0x0C,
- 0xE0,0x39,0xC0,0x0C,0xF0,0x38,0xC0,0x0C,0xF8,0xDC,0xF9,0x0F,0xD8,0xFC,0xC1,0x0C,
- 0xCC,0xC0,0xC1,0x0C,0xC6,0xC0,0xC1,0x1C,0xC0,0xC6,0xFC,0x3F,0xC0,0xC6,0xC0,0x00,
- 0xC0,0xCC,0xC0,0x00,0xC0,0xEC,0xC0,0x38,0xC0,0xF8,0xFE,0x0F,0xC0,0x79,0xE0,0x00,
- 0xC0,0x71,0xE0,0x00,0xC0,0x71,0xE0,0x00,0xC0,0xF1,0xE0,0x00,0xC0,0xD9,0x03,0x00,
- 0xC0,0x8D,0x1F,0x78,0xC0,0x07,0xFC,0x3F,0xC0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,/*"健",10*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x03,0x00,0x00,0x00,0x0F,0x00,
- 0x00,0x00,0x0E,0x00,0xE0,0x00,0x06,0x38,0xE0,0xFF,0xFF,0x0F,0xE0,0x00,0x06,0x00,
- 0xE0,0x00,0x0E,0x00,0xE0,0x00,0x06,0x03,0xE0,0xFE,0xFF,0x07,0xE0,0x00,0x06,0x03,
- 0xE0,0x00,0x06,0x03,0xE0,0x00,0x06,0x73,0xE0,0xFF,0xFF,0x1F,0xE0,0x00,0x06,0x07,
- 0xE0,0x00,0x06,0x07,0xE0,0x00,0x06,0x07,0xE0,0xFC,0xFF,0x07,0xE0,0x00,0x1E,0x00,
- 0x60,0x1C,0x1E,0x1C,0x60,0x78,0x36,0x1E,0x70,0x70,0x36,0x07,0x70,0xB0,0xE7,0x01,
- 0x30,0xE0,0xE6,0x00,0x30,0x38,0xC6,0x01,0x18,0x1E,0x86,0x03,0x98,0x07,0x06,0x1F,
- 0x0C,0xE3,0x07,0x7E,0x0C,0x80,0x07,0x18,0x06,0x00,0x03,0x00,0x00,0x00,0x00,0x00,/*"康",11*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x06,0x00,0xC0,0x03,0x1E,0x00,
- 0xC0,0x01,0x0E,0x00,0xC0,0x01,0x0E,0x00,0xC0,0x01,0x0E,0x00,0xC0,0x01,0x0E,0x06,
- 0xC0,0xF9,0xFF,0x0F,0xC0,0x03,0x0E,0x06,0xC0,0x0F,0x0E,0x06,0xC0,0x1D,0x0E,0x06,
- 0xF0,0x1D,0x0E,0x06,0xF8,0x1D,0x0E,0x06,0xDC,0x01,0x0E,0x06,0xDC,0x01,0x0E,0x06,
- 0xDC,0x01,0x0E,0x36,0xC0,0x01,0x0E,0x7E,0xC0,0xFD,0xFF,0x0F,0xC0,0x01,0x1F,0x00,
- 0xC0,0x01,0x37,0x00,0xC0,0x01,0x37,0x00,0xC0,0x81,0x63,0x00,0xC0,0x81,0x63,0x00,
- 0xC0,0xC1,0xC1,0x00,0xC0,0xC1,0xC1,0x01,0xC0,0xE1,0x80,0x03,0xC0,0x71,0x00,0x0F,
- 0xC0,0x39,0x00,0x3F,0xC0,0x0D,0x00,0x3C,0xC0,0x07,0x00,0x18,0x00,0x00,0x00,0x00,/*"快",12*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x03,
- 0x80,0x01,0xFC,0x07,0x80,0xFB,0x0F,0x00,0x80,0x0F,0x00,0x00,0x80,0x03,0x00,0x00,
- 0x80,0x03,0x0F,0x00,0xC0,0x01,0x07,0x00,0xC0,0x01,0x07,0x00,0xC0,0x01,0x07,0x00,
- 0xC0,0x01,0x07,0x00,0xC0,0x01,0x07,0x18,0xC0,0x01,0x07,0x1C,0xE0,0xFF,0xFF,0x3F,
- 0xC0,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x0C,0x67,0x00,0x00,0x1C,0xC7,0x00,
- 0x00,0x1E,0xC7,0x01,0x00,0x0F,0x87,0x07,0x00,0x07,0x07,0x0F,0x80,0x03,0x07,0x1E,
- 0xC0,0x01,0x07,0x1E,0x60,0x00,0x07,0x1C,0x30,0x00,0x07,0x1C,0x1C,0x00,0x07,0x00,
- 0x00,0xE0,0x07,0x00,0x00,0x80,0x07,0x00,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x00,/*"樂",13*/
- /* (32 X 32 , 宋體, 加粗 )*/
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x00,0x00,0x00,0x1F,0x00,0x00,
- 0x00,0x0F,0x00,0x00,0x00,0x0F,0x00,0x00,0x00,0x0F,0x00,0x00,0x00,0x0F,0x00,0x00,
- 0x00,0x0F,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x0E,0x00,0x00,
- 0x00,0x0E,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x1F,0x00,0x00,
- 0x00,0x1F,0x00,0x00,0x00,0x1F,0x00,0x00,0x00,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,/*"!",14*/
- /* (32 X 32 , 宋體, 加粗 )*/
- //============================================================================
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//留空
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,//留空
- };
復(fù)制代碼
|