[创客交流] 基于纳瓦特开发板的OLED屏显示

[复制链接]
2885|14
 楼主| jinglixixi 发表于 2016-9-23 11:43 | 显示全部楼层 |阅读模式
      纳瓦特开发板是一款十分好用的开发板,它在开版时给大家带来了福利,我们也应该用好它来支持纳瓦特产品。此外,为了能提高大家对纳瓦特的认识和应用水平,也建议设置个比赛来促进大家的积极性,使纳
     瓦特的应用面和应用深度有所扩展。
     这里介绍一种用纳瓦特开发板与OLED屏配合实现显示功能的方法,有了它我们就可以将采集或处理的数据显示出来以便于分析处理了,如显示A/D采集的数据值、以RTC进行计时来制作电子时钟进行定时控制等。
      其连线与效果如图所示
1.png

   所用OLED显示屏为双色0.96’寸屏,是一种无需背光的自发光器件。该模块尽管其体积很小,但其分辨率却达128*64这里采用的是IIC接口方式的OLED,其引脚只有4个,所以很节省GPIO资源。该双色OLED显示屏,其上部的1/3为黄色,余下的2/3则为蓝色,其显示效果如下图所示。
2.png
   为了实现中文菜单的显示,可采用构建小字库的方式来实现,使用的字模提取工具为PCtoLCD2002
效果的程序如下:
  1. #include "common.h"
  2. #include "ics.h"
  3. #include "rtc.h"
  4. #include "uart.h"
  5. #include "gpio.h"
  6. #include "sysinit.h"
  7. #include "start.h"
  8. #include "oledfont.h"  
  9. //  GND   GND
  10. //  VCC   5V/3.3v
  11. //  SCL   PE1(SCL)
  12. //  SDA   PE0(SDA)
  13. #define OLED_MODE 0
  14. #define SIZE      8
  15. #define XLevelL                0x00
  16. #define XLevelH                0x10
  17. #define Max_Column        128
  18. #define Max_Row                  64
  19. #define        Brightness        0xFF
  20. #define X_WIDTH           128
  21. #define Y_WIDTH           64

  22. #define OLED_SCLK_Clr() GPIO_PinClear(GPIO_PTE1);  
  23. #define OLED_SCLK_Set() GPIO_PinSet(GPIO_PTE1);

  24. #define OLED_SDIN_Clr() GPIO_PinClear(GPIO_PTE0);  
  25. #define OLED_SDIN_Set() GPIO_PinSet(GPIO_PTE0);  

  26. #define OLED_CMD  0       
  27. #define OLED_DATA 1

  28. void IIC_Start()
  29. {
  30.         OLED_SCLK_Set();
  31.         OLED_SDIN_Set();
  32.         OLED_SDIN_Clr();
  33.         OLED_SCLK_Clr();
  34. }

  35. void IIC_Stop()
  36. {
  37.   OLED_SCLK_Set();
  38.         OLED_SDIN_Clr();
  39.         OLED_SDIN_Set();
  40. }

  41. void IIC_Wait_Ack()
  42. {
  43.         OLED_SCLK_Set() ;
  44.         OLED_SCLK_Clr();
  45. }

  46. void Write_IIC_Byte(unsigned char IIC_Byte)
  47. {
  48.         unsigned char i;
  49.         unsigned char m,da;
  50.         da=IIC_Byte;
  51.         OLED_SCLK_Clr();
  52.         for(i=0;i<8;i++)               
  53.         {
  54.                 m=da;
  55.                 m=m&0x80;
  56.                 if(m==0x80)
  57.                 {OLED_SDIN_Set();}
  58.                 else OLED_SDIN_Clr();
  59.                 da=da<<1;
  60.                 OLED_SCLK_Set();
  61.                 OLED_SCLK_Clr();
  62.                 }
  63. }

  64. void Write_IIC_Command(unsigned char IIC_Command)
  65. {
  66.    IIC_Start();
  67.    Write_IIC_Byte(0x78);      
  68.          IIC_Wait_Ack();       
  69.    Write_IIC_Byte(0x00);                       
  70.          IIC_Wait_Ack();       
  71.    Write_IIC_Byte(IIC_Command);
  72.          IIC_Wait_Ack();       
  73.    IIC_Stop();
  74. }

  75. void Write_IIC_Data(unsigned char IIC_Data)
  76. {
  77.    IIC_Start();
  78.    Write_IIC_Byte(0x78);                       
  79.          IIC_Wait_Ack();       
  80.    Write_IIC_Byte(0x40);                       
  81.          IIC_Wait_Ack();       
  82.    Write_IIC_Byte(IIC_Data);
  83.          IIC_Wait_Ack();       
  84.    IIC_Stop();
  85. }

  86. void OLED_WR_Byte(unsigned dat,unsigned cmd)
  87. {
  88.         if(cmd)
  89.         {
  90.    Write_IIC_Data(dat);
  91.         }
  92.         else
  93.         {
  94.    Write_IIC_Command(dat);
  95.         }
  96. }

  97. void Delay_50ms(unsigned int Del_50ms)
  98. {
  99.         unsigned int m;
  100.         for(;Del_50ms>0;Del_50ms--)
  101.                 for(m=6245;m>0;m--);
  102. }

  103. void Delay_1ms(unsigned int Del_1ms)
  104. {
  105.         unsigned char j;
  106.         while(Del_1ms--)
  107.         {       
  108.                 for(j=0;j<123;j++);
  109.         }
  110. }

  111. void OLED_Set_Pos(unsigned char x, unsigned char y)
  112. {        
  113.         OLED_WR_Byte(0xb0+y,OLED_CMD);
  114.         OLED_WR_Byte(((x&0xf0)>>4)|0x10,OLED_CMD);
  115.         OLED_WR_Byte((x&0x0f),OLED_CMD);
  116. }             

  117. void OLED_Display_On(void)
  118. {
  119.         OLED_WR_Byte(0X8D,OLED_CMD);  
  120.         OLED_WR_Byte(0X14,OLED_CMD);  
  121.         OLED_WR_Byte(0XAF,OLED_CMD);
  122. }



  123. void OLED_Clear(void)  
  124. {  
  125.         unsigned char i,n;                    
  126.         for(i=0;i<8;i++)  
  127.         {  
  128.                 OLED_WR_Byte (0xb0+i,OLED_CMD);   
  129.                 OLED_WR_Byte (0x00,OLED_CMD);      
  130.                 OLED_WR_Byte (0x10,OLED_CMD);        
  131.                 for(n=0;n<128;n++)OLED_WR_Byte(0,OLED_DATA);
  132.         }
  133. }
  134. <a >http://21icim.qtmojo.com/main/adfclick?db=21icim&bid=701,1946,3913&cid=0,0,0&sid=3916&advid=76&camid=766&show=ignore&url=https://bbs.21ic.com/icview-1622834-1-1.html</a>
  135. void OLED_Clearp(void)  
  136. {  
  137.         unsigned char i,n;                    
  138.         for(i=2;i<6;i++)  
  139.         {  
  140.                 OLED_WR_Byte (0xb0+i,OLED_CMD);   
  141.                 OLED_WR_Byte (0x00,OLED_CMD);      
  142.                 OLED_WR_Byte (0x10,OLED_CMD);        
  143.                 for(n=0;n<128;n++)OLED_WR_Byte(0,OLED_DATA);
  144.         }
  145. }


  146. void OLED_ShowChar(unsigned char x,unsigned char y,unsigned char chr,unsigned char Char_Size)
  147. {             
  148.         unsigned char c=0,i=0;       
  149.                 c=chr-' ';               
  150.                 if(x>Max_Column-1){x=0;y=y+2;}
  151.                   if(Char_Size ==16)
  152.                         {
  153.                           OLED_Set_Pos(x,y);       
  154.                           for(i=0;i<8;i++)
  155.                           OLED_WR_Byte(F8X16[c*16+i],OLED_DATA);
  156.                           OLED_Set_Pos(x,y+1);
  157.                           for(i=0;i<8;i++)
  158.                           OLED_WR_Byte(F8X16[c*16+i+8],OLED_DATA);
  159.                         }
  160.                         else
  161.                         {       
  162.                                 OLED_Set_Pos(x,y);
  163.                                 for(i=0;i<6;i++)
  164.                                 OLED_WR_Byte(F6x8[c][i],OLED_DATA);
  165.                         }
  166. }

  167. uint32_t oled_pow(unsigned char m,unsigned char n)
  168. {
  169.         uint32_t result=1;         
  170.         while(n--)result*=m;   
  171.         return result;
  172. }                                  
  173.                   
  174. void OLED_ShowNum(unsigned char x,unsigned char y,uint32_t num,unsigned char len,unsigned char size2)
  175. {                
  176.         unsigned char t,temp;
  177.         unsigned char enshow=0;                                                  
  178.         for(t=0;t<len;t++)
  179.         {
  180.                 temp=(num/oled_pow(10,len-t-1))%10;
  181.                 if(enshow==0&&t<(len-1))
  182.                 {
  183.                         if(temp==0)
  184.                         {
  185.                                 OLED_ShowChar(x+(size2/2)*t,y,' ',size2);
  186.                                 continue;
  187.                         }else enshow=1;
  188.                           
  189.                 }
  190.                  OLED_ShowChar(x+(size2/2)*t,y,temp+'0',size2);
  191.         }
  192. }

  193. void OLED_ShowString(unsigned char x,unsigned char y,unsigned char *chr,unsigned char Char_Size)
  194. {
  195.         unsigned char j=0;
  196.         while (chr[j]!='\0')
  197.         {                OLED_ShowChar(x,y,chr[j],Char_Size);
  198.                         x+=8;
  199.                 if(x>120){x=0;y+=2;}
  200.                         j++;
  201.         }
  202. }

  203. void OLED_ShowCHinese(unsigned char x,unsigned char y,unsigned char no)
  204. {                                  
  205.           unsigned char t,adder=0;
  206.           OLED_Set_Pos(x,y);       
  207.     for(t=0;t<16;t++)
  208.                 {
  209.                                 OLED_WR_Byte(Hzk[2*no][t],OLED_DATA);
  210.                                  adder+=1;
  211.      }       
  212.                 OLED_Set_Pos(x,y+1);       
  213.     for(t=0;t<16;t++)
  214.                 {       
  215.                                 OLED_WR_Byte(Hzk[2*no+1][t],OLED_DATA);
  216.                                 adder+=1;
  217.     }                                       
  218. }
  219.       
  220. void OLED_Init(void)
  221. {
  222. //SSD1306   
  223. OLED_SCLK_Set();
  224. OLED_SDIN_Set();
  225. Delay_1ms(800);
  226. OLED_WR_Byte(0xAE,OLED_CMD);//--display off
  227.         OLED_WR_Byte(0x00,OLED_CMD);//---set low column address
  228.         OLED_WR_Byte(0x10,OLED_CMD);//---set high column address
  229.         OLED_WR_Byte(0x40,OLED_CMD);//--set start line address  
  230.         OLED_WR_Byte(0xB0,OLED_CMD);//--set page address
  231.         OLED_WR_Byte(0x81,OLED_CMD); // contract control
  232.         OLED_WR_Byte(0xFF,OLED_CMD);//--128   
  233.         OLED_WR_Byte(0xA1,OLED_CMD);//set segment remap
  234.         OLED_WR_Byte(0xA6,OLED_CMD);//--normal / reverse
  235.         OLED_WR_Byte(0xA8,OLED_CMD);//--set multiplex ratio(1 to 64)
  236.         OLED_WR_Byte(0x3F,OLED_CMD);//--1/32 duty
  237.         OLED_WR_Byte(0xC8,OLED_CMD);//Com scan direction
  238.         OLED_WR_Byte(0xD3,OLED_CMD);//-set display offset
  239.         OLED_WR_Byte(0x00,OLED_CMD);//
  240.        
  241.         OLED_WR_Byte(0xD5,OLED_CMD);//set osc division
  242.         OLED_WR_Byte(0x80,OLED_CMD);//
  243.        
  244.         OLED_WR_Byte(0xD8,OLED_CMD);//set area color mode off
  245.         OLED_WR_Byte(0x05,OLED_CMD);//
  246.        
  247.         OLED_WR_Byte(0xD9,OLED_CMD);//Set Pre-Charge Period
  248.         OLED_WR_Byte(0xF1,OLED_CMD);//
  249.        
  250.         OLED_WR_Byte(0xDA,OLED_CMD);//set com pin configuartion
  251.         OLED_WR_Byte(0x12,OLED_CMD);//
  252.        
  253.         OLED_WR_Byte(0xDB,OLED_CMD);//set Vcomh
  254.         OLED_WR_Byte(0x30,OLED_CMD);//
  255.        
  256.         OLED_WR_Byte(0x8D,OLED_CMD);//set charge pump enable
  257.         OLED_WR_Byte(0x14,OLED_CMD);//
  258.        
  259.         OLED_WR_Byte(0xAF,OLED_CMD);//--turn on oled panel
  260. }

  261. void cd1()
  262. {   
  263.         OLED_Clearp();
  264.         OLED_ShowCHinese(18,2,0);   //?
  265.         OLED_ShowCHinese(36,2,1);  //?
  266.         OLED_ShowCHinese(54,2,2);  //?
  267. }
  268. ....
  269. void cd11()
  270. {   
  271.         OLED_Clear();
  272.         OLED_ShowString(2,0,"mini MP3",16);
  273.         OLED_ShowCHinese(72,0,33);  //?
  274.         OLED_ShowCHinese(90,0,34);  //?
  275.         OLED_ShowCHinese(108,0,35);  //?
  276.         OLED_ShowCHinese(2,2,36);  //?
  277.         OLED_ShowCHinese(20,2,37);  //?
  278.         OLED_ShowString(40,2,":jinglixixi",16);
  279. }

  280. void myDelay (uint32_t ulTime)
  281. {
  282.     uint32_t i;
  283.     i = 0;
  284. while (ulTime--)
  285. {
  286.         for (i = 0; i < 5000; i++);
  287.     }
  288. }
  289. int main (void);
  290. void RTC_Task(void);
  291. int main (void)
  292. {
  293.     /* Perform processor initialization */
  294.     sysinit();
  295.     cpu_identify();

  296.     RTC_ConfigType  sRTCConfig;
  297.     RTC_ConfigType  *pRTCConfig = &sRTCConfig;  

  298.     printf("\nRunning the GPIO_demo project.\n");

  299.     /* configure RTC to 1Hz interrupt frequency */
  300.     pRTCConfig->u16ModuloValue = 9;                                      
  301.     pRTCConfig->bInterruptEn   = RTC_INTERRUPT_ENABLE;     /* enable interrupt */
  302.     pRTCConfig->bClockSource   = RTC_CLKSRC_1KHZ;          /*clock source is 1khz*/
  303.     pRTCConfig->bClockPresaler = RTC_CLK_PRESCALER_100;      /*prescaler is 100*/
  304.    
  305.     RTC_SetCallback(RTC_Task);
  306.     RTC_Init(pRTCConfig);

  307.     GPIO_Init(GPIOB, GPIO_PTE7_MASK, GPIO_PinOutput);
  308.             GPIO_Init(GPIOB, GPIO_PTE0_MASK, GPIO_PinOutput);
  309.             GPIO_Init(GPIOB, GPIO_PTE1_MASK, GPIO_PinOutput);
  310.     OLED_Init();
  311.             OLED_Clear();
  312.             cd11();
  313.             OLED_ShowString(32,6,"2016.7.2",16);
  314.     while (1);
  315. }

  316. void RTC_Task(void)
  317. {
  318. uint32_t u32PinMask)
  319. GPIO_PinToggle(GPIO_PTE7);
  320. }


wztoad 发表于 2016-9-26 07:45 | 显示全部楼层
不错,大家一起把纳瓦特生态环境搞上去
 楼主| jinglixixi 发表于 2016-9-27 08:27 | 显示全部楼层
wztoad 发表于 2016-9-26 07:45
不错,大家一起把纳瓦特生态环境搞上去

是呀,到时大家都受益。
springvirus 发表于 2016-10-21 16:48 | 显示全部楼层
楼主牛叉~~
KLIUY 发表于 2018-4-25 22:12 | 显示全部楼层
纳瓦特板子怎么把程序烧写进去的,能不能像STlink那样就一根线就可以了
 楼主| jinglixixi 发表于 2018-4-26 08:34 | 显示全部楼层
KLIUY 发表于 2018-4-25 22:12
纳瓦特板子怎么把程序烧写进去的,能不能像STlink那样就一根线就可以了

用它的下载调试器,可能是出于使开发板尽可能小及下载器可以分离供其他板子使用的缘故吧!
mailshichao 发表于 2018-4-26 08:48 | 显示全部楼层
KLIUY 发表于 2018-4-25 22:12
纳瓦特板子怎么把程序烧写进去的,能不能像STlink那样就一根线就可以了

可以用ST吗32的下载方式下载
KLIUY 发表于 2018-4-27 14:07 | 显示全部楼层
mailshichao 发表于 2018-4-26 08:48
可以用ST吗32的下载方式下载

但是开发板上怎么接线呢

评论

@KLIUY :恭喜,恭喜  发表于 2018-5-1 16:12
@mailshichao :已经会下载了,谢谢了  发表于 2018-4-30 14:44
好像串口也可以下载,看看手册吧  发表于 2018-4-28 10:33
开发板上有下载接口的呀,  发表于 2018-4-28 10:33
KLIUY 发表于 2018-4-27 14:08 | 显示全部楼层
jinglixixi 发表于 2018-4-26 08:34
用它的下载调试器,可能是出于使开发板尽可能小及下载器可以分离供其他板子使用的缘故吧! ...

他的下载调试器太贵了
 楼主| jinglixixi 发表于 2018-4-28 09:26 | 显示全部楼层
KLIUY 发表于 2018-4-27 14:08
他的下载调试器太贵了

不是随机带下载调试器吗。
KLIUY 发表于 2018-4-30 14:44 | 显示全部楼层
jinglixixi 发表于 2018-4-28 09:26
不是随机带下载调试器吗。

没有啊,我用STLINK可以下载了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

518

主题

2936

帖子

39

粉丝
快速回复 在线客服 返回列表 返回顶部