今天圣诞节哈,给大家个祝福:圣诞快乐
我这个是在OLED上显示,这个OLED分两种色,比较好看,今天是圣诞虽然我是个传统的中国人,
但现在中西结合的现代社会发个祝福还是可以地
这次的函数完全是我自己写的,因为我掌握的原理,SH112A,这款OLED非常简单
分屏分7层,说明书是7页,每页132个X地址,若超出一页,就换页
我的函数如下:
void han(unsigned char x,unsigned char y,const unsigned char * point)
{
unsigned char i;
unsigned char low;
unsigned char high;
unsigned char page;
low = (x<<4)>>4;
high= (x>>4)|0x10;
page= 0xb0|y;
LCD_write_byte(low,0);//(0x41,0);
LCD_write_byte(high,0);//(0x8F,0);
LCD_write_byte(page,0);//(0x8F,0);
for(i=0;i<16;i++)
{
LCD_write_byte(*(point+i),1);
}
LCD_write_byte(low,0);//(0x41,0);
LCD_write_byte(high,0);//(0x8F,0);
LCD_write_byte(page+1,0);//(0x8F,0);
for(i=0;i<16;i++)
{
LCD_write_byte(*(point+16+i),1);
}
}
可以看出每超过16个就换页,因为我的汉字是16*16地
上个取模软件:
上程序:
[ 本帖最后由 ddllxxrr 于 2010-12-25 22:43 编辑 ]