找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1736|回复: 1
打印 上一主题 下一主题
收起左侧

红外人流量计数程序(数码管显示)

[复制链接]
跳转到指定楼层
楼主
ID:451448 发表于 2019-1-6 17:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
做课设可以用的红外人流计数

单片机源程序如下:
  1. #include<AT89x51.H>

  2.     sbit led1    =P2^0;
  3.     sbit led2    =P2^1;
  4.     sbit led3    =P2^2;
  5.     sbit led4    =P2^3;

  6.     unsigned code table[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};          //数码管断码
  7.         unsigned code dis[]  ={0xfe,0xfd,0xfb,0xf7};                                      //扫描数码管客值
  8.     unsigned char disbuff[5]={0};                                                                                                  //显示缓存
  9.            unsigned char  i =0;                  //定义扫描数码管字数
  10.         unsigned int   count1=0;         //计左电机码盘脉冲值

  11. /************************************************************************/
  12. //显示数码管字程序
  13.                  void Display_SMG(void)
  14. {
  15.       if(++i>=4)i=0;
  16.           P0=table[disbuff[i]];

  17.            if(i==0)
  18.           {P2_0=0;P2_1=1;P2_2=1;P2_3=1;}
  19.           if(i==1)
  20.           {P2_0=1;P2_1=0;P2_2=1;P2_3=1;}
  21.           if(i==2)
  22.           {P2_0=1;P2_1=1;P2_2=0;P2_3=1;}
  23.           if(i==3)
  24.           {P2_0=1;P2_1=1;P2_2=1;P2_3=0;}
  25.          
  26. }

  27. /***************************************************/
  28. ///*TIMER0中断服务子函数产生PWM信号*/
  29.         void timer0()interrupt 1   using 2
  30. {
  31.      TH0=0XF8;          //1Ms定时
  32.          TL0=0X30;
  33.      Display_SMG();                        //中断服务子程序扫描数码管
  34. }       
  35. /***************************************************/
  36.         void main(void)
  37. {

  38.         TMOD=0X01;
  39.         TH0= 0XF8;                  //1ms定时
  40.         TL0= 0X30;
  41.         TR0= 1;
  42.         ET0= 1;
  43.         EA = 1;

  44.         count1=0;                  //初始化人数为1
  45.         disbuff[0]=count1/1000;
  46.     disbuff[1]=count1%1000/100;
  47.         disbuff[2]=count1%1000%100/10;
  48.         disbuff[3]=count1%1000%100%10;

  49.         while(1)                                                        /*无限循环*/
  50.         {        
  51.          if(P2_7==0)
  52.          {
  53.            while(!P2_7);
  54.            count1++;
  55.            if(count1>=9999) //计到99归零
  56.            count1=0;
  57.            disbuff[0]=count1/1000;
  58.        disbuff[1]=count1%1000/100;
  59.            disbuff[2]=count1%1000%100/10;
  60.            disbuff[3]=count1%1000%100%10;
  61.          }
  62.         }
  63. }
  64.        
复制代码

所有资料51hei提供下载:
53.红外人流量计数(数码管显示).rar (11.34 KB, 下载次数: 32)


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶 踩
回复

使用道具 举报

沙发
ID:1 发表于 2019-1-13 00:38 | 只看该作者
补全原理图或者详细说明一下电路连接即可获得100+黑币
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表