请问一下pgm_read_byte 这个函数怎么用啊?
我现在在写5110液晶的程序,不明白pgm_read_byte 这个函数的参数是怎么规定的,求解答,谢谢。
const prog_char font6x8[] ={ 0x00, 0x3E, 0x51, 0x49, 0x45, 0x3E,// 0 0x00, 0x00, 0x42, 0x7F, 0x40, 0x00,// 1 0x00, 0x42, 0x61, 0x51, 0x49, 0x46,// 2 0x00, 0x21, 0x41, 0x45, 0x4B, 0x31,// 3 0x00, 0x18, 0x14, 0x12, 0x7F, 0x10,// 4 0x00, 0x27, 0x45, 0x45, 0x45, 0x39,// 5 0x00, 0x3C, 0x4A, 0x49, 0x49, 0x30,// 6 0x00, 0x01, 0x71, 0x09, 0x05, 0x03,// 7 0x00, 0x36, 0x49, 0x49, 0x49, 0x36,// 8 0x00, 0x06, 0x49, 0x49, 0x29, 0x1E,// 9
};
...
中间定义了一个LCD_write_byte函数,就是想5110RAM里写入一个字节的函数,其他无关的就省略了。
...
void LCD_write_char(unsigned char c){
unsigned char line;
c-=32;
for(line=0;line<6;line++)
LCD_write_byte(pgm_read_byte(font6x8+c*6+line),1);}
此帖出自
小平头技术问答
一周热门 更多>