首页 > 其他 > 详细

数码管左移

时间:2014-03-11 23:24:40      阅读:509      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
#include<reg52.h>

sbit LATCH1=P2^2;//段锁存
sbit LATCH2=P2^3;//位锁存

unsigned char code DuanMa[10]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};// 显示段码值0~9
unsigned char code WeiMa[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};//分别对应相应的数码管点亮,即位码
unsigned char TempData[10]; //存储显示值的数组

void Delay(unsigned int t); //函数声明
void Display(unsigned char FirstBit,unsigned char Num);

main()
{
  unsigned int i,k,j;
  unsigned char s;
  while(1)
  {
    j++;
    if(j==20)  // 控制显示一定时间 
    {
      j=0;
      if(0==k)
      {
        for(s=0;s<10;s++) //完全循环完成后清零所有缓冲区
          TempData[s]=0;
      }
      TempData[8-i]=DuanMa[k]; //把需要显示的字符依次送缓冲区
      TempData[8+1-i]=0; //不需要显示的区域清零
      if(i==(8-k))
      {
        i=0;
        k++;
        if(k==8)
          k=0;
      }
      i++;
    }
    Display(
0,8);//从第一位显示,共显示8位   } } void Delay(unsigned int t) {   while(--t); } void Display(unsigned char FirstBit,unsigned char Num) {   unsigned char i;   for(i=0;i<Num;i++)   {     P1=0; //清空数据,防止有交替重影     LATCH1=1; //段锁存     LATCH1=0;     P1=WeiMa[i+FirstBit]; //取位码     LATCH2=1; //位锁存     LATCH2=0;     P1=TempData[i]; //取显示数据,段码     LATCH1=1; //段锁存     LATCH1=0;     Delay(200); // 扫描间隙延时,时间太长会闪烁,太短会造成重影   } }
bubuko.com,布布扣

 通过将后一位赋值给前一位,达到向左移动,上面的代码逻辑比较复杂,记录下来慢慢看,先学下一个知识点了。

数码管左移,布布扣,bubuko.com

数码管左移

原文:http://www.cnblogs.com/coloregg/p/3588685.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!