[讨论] 【Nucleo心得】+ 8x8点阵驱动 (EX03)

slotg   2014-10-8 19:12 楼主
本次实验是规划一块8 byte的内存做为8x8点阵的显示对映内存,然后编写一个点亮单颗LED的函数,函数功能是点亮8x8点阵共64颗LED中的其中一颗。而主回路中调用乱数 rand() 函数,产生0至63的乱数位置,一次产生5颗并显示出来,经过延时后再产生5颗新的位置,如此形成LED乱数闪烁的效果。

点亮单颗LED的函数:
  1. void PlotDot(char pos)
  2. {
  3.     char x,y;

  4.     if(pos < 64) {
  5.         x = pos/8;
  6.         y = pos%8;

  7.         dotbuf[x] |= 1<<y;

  8. //        DsDotBuf();
  9.     }
  10. }


程序里面还有另一个关闭单颗LED的函数:(本次实验演示未使用)
  1. void EraseDot(char pos)
  2. {
  3.     char x,y;

  4.     if(pos < 64) {
  5.         x = pos/8;
  6.         y = pos%8;

  7.         dotbuf[x] &= ~1<<y;

  8. //        DsDotBuf();
  9.     }
  10. }


完整程序码如下:
  1. #include "mbed.h"

  2. SPI spimax(SPI_MOSI, SPI_MISO, SPI_SCK);
  3. DigitalOut CS(PB_6);
  4. char dotbuf[8];         // DOT display buffer

  5. void max7219(char reg,char dta)
  6. {
  7.     CS = 0;
  8.     spimax.write(reg);
  9.     spimax.write(dta);
  10.     CS = 1;
  11. }

  12. void init_max7219(void)
  13. {
  14.     max7219(0x09,0);
  15.     max7219(0x0a,8);
  16.     max7219(0x0b,7);
  17.     max7219(0x0c,1);
  18.     max7219(0x0f,0);

  19.     for(char i=0; i<8; i++) {
  20.         max7219(i+1,0);
  21.     }
  22. }

  23. void DsDotBuf(void)
  24. {
  25.     for(char i=0; i<8; i++) {
  26.         max7219(i+1,dotbuf[i]);
  27.     }

  28. }

  29. void PlotDot(char pos)
  30. {
  31.     char x,y;

  32.     if(pos < 64) {
  33.         x = pos/8;
  34.         y = pos%8;

  35.         dotbuf[x] |= 1<<y;

  36. //        DsDotBuf();
  37.     }
  38. }

  39. void EraseDot(char pos)
  40. {
  41.     char x,y;

  42.     if(pos < 64) {
  43.         x = pos/8;
  44.         y = pos%8;

  45.         dotbuf[x] &= ~1<<y;

  46. //        DsDotBuf();
  47.     }
  48. }

  49. int main()
  50. {
  51.     char i;

  52.     init_max7219();

  53.     while(1) {
  54.         for(i=0; i<8; i++) {
  55.             dotbuf[i] = 0x00;
  56.         }

  57.         for(i=0; i<5; i++) {
  58.             PlotDot(rand()%64);
  59.         }

  60.         DsDotBuf();

  61.         wait_ms(50);
  62.     }
  63. }


视频如下:
http://v.youku.com/v_show/id_XNzk5MjQ3NzYw.html



【Nucleo心得】+ 8x8点阵驱动 (EX01)
https://bbs.eeworld.com.cn/thread-448651-1-1.html

【Nucleo心得】+ 8x8点阵驱动 (EX02)
https://bbs.eeworld.com.cn/thread-448710-1-1.html



回复评论 (2)

谢谢分享 :)
加油!在电子行业默默贡献自己的力量!:)
点赞  2014-10-9 09:23

上面关闭单颗LED函数的代码错了,修正一下:

  1. void EraseDot(char pos)
  2. {
  3.     char x,y;

  4.     if(pos < 64) {
  5.         x = pos/8;
  6.         y = pos%8;

  7.         dotbuf[x] &= ~(1<<y);

  8. //        DsDotBuf();
  9.     }
  10. }


少了一个括号
点赞  2014-10-15 17:28
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复