其他分享
首页 > 其他分享> > C51控制点阵屏

C51控制点阵屏

作者:互联网

取模软件地址 LCD/OLED汉字字模提取软件,(HZK16宋繁体)GB2312中文16*16点阵字库_三贝计算网_23bei.com

代码

#include <reg51.h>
#include<intrins.h>
#define ucher unsigned char
#define uint unsigned int
#define out0 P0
#define out2 P2
#define out1 P1
void delay(uint j)
{
ucher i=250;
for(;j>0;j--)
{
while(--i);
i=100;
}
}
ucher code string[]=
{

  //取模后地址存放

} ;

void main()
{
ucher i,j,n;
while(1)
{
for(j=0;j<4;j++)
{
for (n=0;n<40;n++)
{
for (i=0;i<16;i++)
{
out1=i%16;
out0=string[i*2+j*32];
out2=string[i*2+1+j*32];
delay(4);
out0=0xff;
out2=0xff;
}
}
}
}
}

 

标签:out0,控制,out2,ucher,string,C51,16,点阵,define
来源: https://www.cnblogs.com/liangde/p/15552689.html