欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

標(biāo)題: 51單片機(jī)交通燈程序加Proteus電路圖 [打印本頁]

作者: yhjy    時(shí)間: 2019-11-8 11:36
標(biāo)題: 51單片機(jī)交通燈程序加Proteus電路圖
以下為程序:
#include<reg51.h>
#define uchar unsigned char
#define uint unsigned int
sbit RED_A=P0^0;
sbit YELLOW_A=P0^1;
sbit GREEN_A=P0^2;
sbit RED_B=P0^3;
sbit YELLOW_B=P0^4;
sbit GREEN_B=P0^5;
uchar Flash_Count=0,Operation_Type=1;
void DelayMS(uint x)
{
   uchar i;
   while(x--) for(i=0;i<120;i++);
}
void Traffic_Light()
{
   switch(Operation_Type)
   {
     case 1: RED_A=1;YELLOW_A=1;GREEN_A=0;
                 RED_B=0;YELLOW_B=1;GREEN_B=1;
                         DelayMS(2000);
                         Operation_Type=2;
                         break;
         case 2: DelayMS(300);
                 YELLOW_A=~YELLOW_A;GREEN_A=1;
                         if(++Flash_Count!=10) return;
                         Flash_Count=0;
                         Operation_Type=3;
                         break;
         case 3: RED_A=0;YELLOW_A=1;GREEN_A=1;
                 RED_B=1;YELLOW_B=1;GREEN_B=0;
                         DelayMS(2000);
                         Operation_Type=4;
                         break;
         case 4: DelayMS(300);
                 YELLOW_B=~YELLOW_B;GREEN_B=1;
                         if(++Flash_Count!=10) return;
                         Flash_Count=0;
                         Operation_Type=1;
        }
}
void main()
{
  while(1)
  Traffic_Light();
}

以下是仿真圖:



作者: SHREK666    時(shí)間: 2019-12-3 17:09
怎么控制黃燈閃爍的次數(shù)





歡迎光臨 (http://m.raoushi.com/bbs/) Powered by Discuz! X3.1