STM32/STM8技术论坛
直播中

cqca

7年用户 28经验值
擅长:可编程逻辑 EMC/EMI设计
私信 关注
[问答]

oled可以正常显示3位数以内的数字,不能正常显示4位数以上的数字?

为什么我今天才发现我的oled可以正常显示3位数以内的数字,不能正常显示4位数以上的数字 代码如下:
void OLED_ShowNum(uint8_t x,uint8_t y,uint32_t num,uint8_t len,uint8_t size2)
{                 
        uint32_t t,temp;
        uint32_t enshow=0;
        for(t=0;t         {
                temp=(num/oled_pow(10,len-t-1))%10;
                if(enshow==0&&t<(len-1))
                {
                        if(temp==0)
                        {
                                OLED_ShowChar(x+(size2/2)*t,y,' ');
                                continue;
                        }
                        else enshow=1;
                        
                }
                 OLED_ShowChar(x+(size2/2)*t,y,temp+'0');
        }
}
main函数:
uint32_t nu=8234;
OLED_ShowNum(0,4,nu,4,16);


回帖(5)

cqca

2018-3-17 19:07:32
显示的是5234      
举报

cqca

2018-3-18 10:05:24
顶起顶起upupup                 
举报

2018-4-6 17:00:15
我也遇到这段代码 这个问题,len超过3的取值我这边出现了乱码,                                   
           这段代码上面还有一个自乘的程序,len的取值关系到自乘几次  我觉得大概是这个方向,
举报

摘星揽月111

2018-5-9 09:21:04
您好,请问楼主解决了吗?我也遇到类似问题,4位数字会出现乱码
举报

leng

2018-5-9 14:34:18
  1. /**
  2.   * [url=home.php?mod=space&uid=2666770]@Brief[/url]  OLED_ShowStr,显示codetab.h中的ASCII字符,有6*8和8*16可选择
  3.   * @param  x,y : 起始点坐标(x:0~127, y:0~7);
  4.         *                                        ch[] :- 要显示的字符串;
  5.         *                                        TextSize : 字符大小(1:6*8 ; 2:8*16)
  6.         * @retval 无
  7.   */
  8. void OLED_ShowStr(unsigned char x, unsigned char y, unsigned char ch[], unsigned char TextSize)
  9. {
  10.         unsigned char c = 0,i = 0,j = 0;
  11.         switch(TextSize)
  12.         {
  13.                 case 1:
  14.                 {
  15.                         while(ch[j] != '\0')
  16.                         {
  17.                                 c = ch[j] - 32;
  18.                                 if(x > 126)
  19.                                 {
  20.                                         x = 0;
  21.                                         y++;
  22.                                 }
  23.                                 OLED_SetPos(x,y);
  24.                                 for(i=0;i<6;i++)
  25.                                         WriteDat(F6x8[c][i]);
  26.                                 x += 6;
  27.                                 j++;
  28.                         }
  29.                 }break;
  30.                 case 2:
  31.                 {
  32.                         while(ch[j] != '\0')
  33.                         {
  34.                                 c = ch[j] - 32;
  35.                                 if(x > 120)
  36.                                 {
  37.                                         x = 0;
  38.                                         y++;
  39.                                 }
  40.                                 OLED_SetPos(x,y);
  41.                                 for(i=0;i<8;i++)
  42.                                         WriteDat(F8X16[c*16+i]);
  43.                                 OLED_SetPos(x,y+1);
  44.                                 for(i=0;i<8;i++)
  45.                                         WriteDat(F8X16[c*16+i+8]);
  46.                                 x += 8;
  47.                                 j++;
  48.                         }
  49.                 }break;
  50.         }
  51. }
举报

更多回帖

发帖
×
20
完善资料,
赚取积分