本文包含原理图、PCB、源代码、封装库、中英文PDF等资源
您需要 登录 才可以下载或查看,没有账号?注册会员
×
我有个5110液晶, 编写了个驱动,48X48点阵 最下边一点不显示,请高手给看看是为什么,谢谢了。
void disp48_48(unsigned char x,unsigned char y,unsigned char address)
{
unsigned char c;
LCD_set_XY(x*8, y);
for(c=0;c<48;c++)
{
LCD_write_byte(han[address*72+c],1);
}
LCD_set_XY(x*8, y+1);
for(c=48;c<96;c++)
{
LCD_write_byte(han[address*72+c],1);
}
LCD_set_XY(x*8, y+2);
for(c=96;c<144;c++)
{
LCD_write_byte(han[address*72+c],1);
}
LCD_set_XY(x*8, y+3);
for(c=144;c<192;c++)
{
LCD_write_byte(han[address*72+c],1);
}
LCD_set_XY(x*8, y+4);
for(c=192;c<240;c++)
{
LCD_write_byte(han[address*72+c],1);
}
LCD_set_XY(x*8, y+5);
for(c=240;c<255;c++)
{
LCD_write_byte(han[address*72+c],1);
}
}
[ 此贴被root1979在2010-01-24 20:43重新编辑 ]
|