找回密码
 立即注册

QQ登录

只需一步,快速开始

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

单片机交通灯闪烁程序

[复制链接]
跳转到指定楼层
楼主
ID:365454 发表于 2018-7-5 11:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
交通灯闪烁程序


  1. #include "reg52.h"                         //此文件中定义了单片机的一些特殊功能寄存器

  2. typedef unsigned int u16;          //对数据类型进行声明定义
  3. typedef unsigned char u8;

  4. sbit LSA=P2^2;
  5. sbit LSB=P2^3;
  6. sbit LSC=P2^4;

  7. //--定义使用的IO口--//
  8. #define GPIO_DIG   P0

  9. #define GPIO_TRAFFIC P1


  10. sbit RED1   = P1^2;        //南北方向
  11. sbit YELLOW1= P1^3;
  12. sbit GREEN1 = P1^4;


  13. sbit RED0   = P1^5;        //东西方向
  14. sbit YELLOW0= P1^6;
  15. sbit GREEN0 = P1^7;

  16. u8 code smgduan[17]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
  17.                                         0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};//显示0~F的值

  18. u8 DisplayData[8];
  19. u8 Second;


  20. void delay(u16 i)
  21. {
  22.         while(i--);       
  23. }


  24. void DigDisplay()
  25. {
  26.         u8 i;
  27.         for(i=0;i<8;i++)
  28.         {
  29.                 switch(i)         //位选,选择点亮的数码管,
  30.                 {
  31.                         case(0):
  32.                                 LSA=0;LSB=0;LSC=0; break;//显示第0位
  33.                         case(1):
  34.                                 LSA=1;LSB=0;LSC=0; break;//显示第1位
  35.                         case(2):
  36.                                 LSA=0;LSB=1;LSC=0; break;//显示第2位
  37.                         case(3):
  38.                                 LSA=1;LSB=1;LSC=0; break;//显示第3位
  39.                         case(4):
  40.                                 LSA=0;LSB=0;LSC=1; break;//显示第4位
  41.                         case(5):
  42.                                 LSA=1;LSB=0;LSC=1; break;//显示第5位
  43.                         case(6):
  44.                                 LSA=0;LSB=1;LSC=1; break;//显示第6位
  45.                         case(7):
  46.                                 LSA=1;LSB=1;LSC=1; break;//显示第7位       
  47.                 }
  48.                 GPIO_DIG=DisplayData[i];//发送段码
  49.                 delay(100); //间隔一段时间扫描       
  50.                 GPIO_DIG=0x00;//消隐
  51.         }
  52. }



  53. void Timer0Init()
  54. {
  55.         TMOD|=0X01;//选择为定时器0模式,工作方式1,仅用TR0打开启动。

  56.         TH0=0XFC;        //给定时器赋初值,定时1ms
  57.         TL0=0X18;       
  58.         ET0=1;//打开定时器0中断允许
  59.         EA=1;//打开总中断
  60.         TR0=1;//打开定时器                       
  61. }

  62. void main()
  63. {       
  64.         Second = 1;

  65.         Timer0Init();

  66.         while(1)
  67.         {
  68.                 if(Second == 20)
  69.                 {
  70.                         Second = 1;
  71.                 }

  72.                 //--宝田路通行,30秒--//
  73.                 if(Second < 8)
  74.                 {
  75.                         DisplayData[0] = 0x00;
  76.                         DisplayData[1] = 0x00;
  77.                         DisplayData[2] = smgduan[(10 - Second) % 10 / 10];
  78.                         DisplayData[3] = smgduan[(10 - Second) %10];
  79.                         DisplayData[4] = 0x00;
  80.                         DisplayData[5] = 0x00;
  81.                         DisplayData[6] = smgduan[(7 - Second) % 10 / 10];
  82.                         DisplayData[7] = smgduan[(7 - Second) %10];
  83.                         DigDisplay();

  84.                         GPIO_TRAFFIC = 0xFF;  //将所有的灯熄灭
  85.                         GREEN1 = 0;    //宝田路绿灯亮                                       
  86.                         RED0 = 0;      //前进路红灯亮
  87.                    while(Second<8&&Second>4)
  88.                    {
  89.                      DisplayData[0] = 0x00;
  90.                         DisplayData[1] = 0x00;
  91.                         DisplayData[2] = smgduan[(10 - Second) % 10 / 10];
  92.                         DisplayData[3] = smgduan[(10 - Second) %10];
  93.                         DisplayData[4] = 0x00;
  94.                         DisplayData[5] = 0x00;
  95.                         DisplayData[6] = smgduan[(7 - Second) % 10 / 10];
  96.                         DisplayData[7] = smgduan[(7 - Second) %10];
  97.                         DigDisplay();

  98.                         GPIO_TRAFFIC = 0xFF;  //将所有的灯熄灭
  99.                         GREEN1 = 0;    //宝田路绿灯亮                                       
  100.                         RED0 = 0;      //前进路红灯亮
  101.                         delay(50000);
  102.                         GREEN1=~GREEN1 ;
  103.                         delay(50000);
  104.                    }
  105.                
  106.                 }
  107.                 //--黄灯等待切换状态,5秒--//
  108.             else   if(Second < 11&&Second >7)
  109.                 {
  110.                         DisplayData[0] = 0x00;
  111.                         DisplayData[1] = 0x00;
  112.                         DisplayData[2] = smgduan[(10 - Second) % 10 / 10];
  113.                         DisplayData[3] = smgduan[(10- Second) %10];
  114.                         DisplayData[4] = 0x00;
  115.                         DisplayData[5] = 0x00;
  116.                         DisplayData[6] = DisplayData[2];
  117.                         DisplayData[7] = DisplayData[3];
  118.                         DigDisplay();
  119.                

  120.                         //--黄灯阶段--//

  121.                         GPIO_TRAFFIC = 0xFF;  //将所有的灯熄灭
  122.                         RED0 = 0;
  123.                         YELLOW1 = 0;   

  124.        


  125.            }
  126.                 //--前进路通行--//
  127.                 else if(Second < 18)
  128.                 {
  129.                         DisplayData[0] = 0x00;
  130.                         DisplayData[1] = 0x00;
  131.                         DisplayData[2] = smgduan[(17- Second) % 100 / 10];
  132.                         DisplayData[3] = smgduan[(17- Second) %10];
  133.                         DisplayData[4] = 0x00;
  134.                         DisplayData[5] = 0x00;
  135.                         DisplayData[6] = smgduan[(20 - Second) % 100 / 10];
  136.                         DisplayData[7] = smgduan[(20- Second) %10];
  137.                         DigDisplay();

  138.                         //--黄灯阶段--//

  139.                         GPIO_TRAFFIC = 0xFF;  //将所有的灯熄灭


  140.                         RED1 = 0;       //宝田路红灯亮                       


  141.                         GREEN0 = 0;     //前进路绿灯亮
  142.                         while(Second<18&&Second>14)
  143.                         {
  144.                           DisplayData[0] = 0x00;
  145.                         DisplayData[1] = 0x00;
  146.                         DisplayData[2] = smgduan[(17- Second) % 100 / 10];
  147.                         DisplayData[3] = smgduan[(17- Second) %10];
  148.                         DisplayData[4] = 0x00;
  149.                         DisplayData[5] = 0x00;
  150.                         DisplayData[6] = smgduan[(20 - Second) % 100 / 10];
  151.                         DisplayData[7] = smgduan[(20- Second) %10];
  152.                         DigDisplay();
  153.                         RED1 = 0;
  154.                           GREEN0 = 0;
  155.                         delay(50000);
  156.                         GREEN0 =~GREEN0;
  157.                         delay(50000);
  158.                         }

  159.                 }

  160.                 //--黄灯等待切换状态,5秒--//
  161.              else   if(Second < 21&&Second>17)
  162.                 {
  163.                         DisplayData[0] = 0x00;
  164.                         DisplayData[1] = 0x00;
  165.                         DisplayData[2] = smgduan[(20- Second) % 100 / 10];
  166.                         DisplayData[3] = smgduan[(20 - Second) %10];
  167.                         DisplayData[4] = 0x00;
  168.                         DisplayData[5] = 0x00;
  169.                         DisplayData[6] = smgduan[(20 - Second) % 100 / 10];
  170.                         DisplayData[7] = smgduan[(20 - Second) %10];
  171.                         DigDisplay();

  172.                         //--黄灯阶段--//

  173.                         GPIO_TRAFFIC = 0xFF;  //将所有的灯熄灭

  174.                         RED1 = 0;
  175.                         YELLOW0 = 0;   

  176.                


  177.                 }
  178.          
  179.         }                                       
  180. }


  181. void Timer0() interrupt 1
  182. {
  183.         static u16 i;
  184.         TH0=0XFC;        //给定时器赋初值,定时1ms
  185.         TL0=0X18;
  186.         i++;
  187.         if(i==1000)
  188.         {
  189.                 i=0;
  190.                 Second ++;       
  191.         }       
  192. }
复制代码


交通灯.rar

22.81 KB, 下载次数: 11, 下载积分: 黑币 -5

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

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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