1.3寸OLED 彩屏240*240 stm32f103

2019-07-20 23:14发布

请问一下这个OLED 字符或数字的大小怎么改大啊,有大佬知道吗, 附上源代码//在指定位置显示一个字符

//num:要显示的字符:" "--->"~"
//mode:叠加方式(1)还是非叠加方式(0)
//在指定位置显示一个字符

//num:要显示的字符:" "--->"~"

//mode:叠加方式(1)还是非叠加方式(0)
void LCD_ShowChar(u16 x,u16 y,u8 num,u8 mode)
{
    u8 temp;
    u8 pos,t;
        u16 x0=x;
        u16 colortemp=POINT_COLOR;      
    if(x>LCD_W-16||y>LCD_H-16)return;            
        //设置窗口                  
        num=num-' ';//得到偏移后的值
        Address_set(x,y,x+8-1,y+16-1);      //设置光标位置
        if(!mode) //非叠加方式
        {
                for(pos=0;pos<16;pos++)
                {
                        temp=asc2_1608[(u16)num*16+pos];                 //调用1608字体
                        for(t=0;t<8;t++)
                    {                 
                        if(temp&0x01)POINT_COLOR=colortemp;
                                else POINT_COLOR=BACK_COLOR;
                                LCD_WR_DATA(POINT_COLOR);       
                                temp>>=1;
                                x++;
                    }
                        x=x0;
                        y++;
                }       
        }else//叠加方式
        {
                for(pos=0;pos<16;pos++)
                {
                    temp=asc2_2412[(u16)num*16+pos];                 //调用1608字体
                        for(t=0;t<8;t++)
                    {                 
                        if(temp&0x01)LCD_DrawPoint(x+t,y+pos);//画一个点     
                        temp>>=1;
                    }
                }
        }
        POINT_COLOR=colortemp;                                          
}   
//m^n函数
u32 mypow(u8 m,u8 n)
{
        u32 result=1;         
        while(n--)result*=m;   
        return result;
}                         
//显示数字
//x,y :起点坐标         
//len :数字的位数
//color:颜 {MOD}
//num:数值(0~4294967295);       
void LCD_ShowNum(u16 x,u16 y,u32 num,u8 len)
{                
        u8 t,temp;
        u8 enshow=0;
        num=(u16)num;
        for(t=0;t<len;t++)
        {
                temp=(num/mypow(10,len-t-1))%10;
                if(enshow==0&&t<(len-1))
                {
                        if(temp==0)
                        {
                                LCD_ShowChar(x+8*t,y,' ',0);
                                continue;
                        }else enshow=1;
                          
                }
                 LCD_ShowChar(x+8*t,y,temp+48,0);
        }
}


QQ图片20190702220632.jpg
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
11条回答
正点原子
1楼-- · 2019-07-21 00:55
学习我们的液晶显示实验
awsawzj
2楼-- · 2019-07-21 02:04
把你字体库变大就相应变大了
a15211862314
3楼-- · 2019-07-21 02:56
 精彩回答 2  元偷偷看……
awsawzj
4楼-- · 2019-07-21 07:34
a15211862314 发表于 2019-7-3 10:20
字体库不知道怎么生成啊

你可以下个字模生成软件,或者网上搜索下有没有做好的字体库
a15211862314
5楼-- · 2019-07-21 10:39
 精彩回答 2  元偷偷看……
awsawzj
6楼-- · 2019-07-21 10:57
那你就用字模软件自己做

一周热门 更多>