在学习中对OLED显示字模的原理一直不是很理解,先从show_char函数开始分析。 一、OLED_ShowChar各形参含义解释 void OLED_ShowChar(u8 x,u8 y,u8 chr,u8 size,u8 mode) 1、函数参数:x表示OLED显示的列数共128列,y表示OLED显示的行数共64行;mode为1点亮,0熄灭;size为字体的大小。 二、字模大小 以ASCII码“...
//在指定位置显示一个字符,包括部分字符//x:0~127//y:0~63//mode:0,反白显示;1,正常显示//size:选择字体 48/24/32/16/12voidOLED_ShowChar(u8 x, u8 y, u8 chr, u8 Char_Size) { unsignedcharc =0, i =0; c= chr -'';//得到偏移后的值if(x > Max_Column -1) {x =0; y = y +...
⾸先上OLED_ShowChar()函数 //在指定位置显⽰⼀个字符,包括部分字符 //x:0~127 //y:0~63 //mode:0,反⽩显⽰;1,正常显⽰ //size:选择字体 48/24/32/16/12 void OLED_ShowChar(u8 x, u8 y, u8 chr, u8 Char_Size){ unsigned char c = 0, i = 0;c = chr - ''; //得到...