简易交通灯设计仿真原理图如下(proteus仿真工程文件可到本帖附件中下载)
单片机交通灯的C程序源代码:
- #include<reg51.h>
- #define uchar unsigned char
- #define uint unsigned int
- uchar code smg_dw[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90}; //共阳0-9
- sbit beiR=P3^0;//北边
- sbit beiY=P3^1;
- sbit beiG=P3^2;
- sbit nanR=P3^3;//南
- sbit nanY=P3^4;
- sbit nanG=P3^5;
- uint a=10,b,c,type=1,j,i;
- void Delay(uint x) //延时mn
- {
- uchar i;
- while(x--)
- for(i=0;i<120;i++);
- }
- void delay_ms(uint q) //延时
- {
- uint i,j;
- for(i=q;i>0;i--)
- for(j=141;j>0;j--);
- }
- void shumaguan(uint k ) //数码管显示
- {
- b=k/10;
- c=k%10;
- P0=smg_dw[b];//选段码
- delay_ms(20);//延时5ms
- P2=smg_dw[c];//选段码
- delay_ms(20);//延时5ms
-
- }
- main()
- {
- TMOD=0x01; //设置定时器T0为工作方式1定时
- TH0=(65536-30000)/256;
- TL0=(65536-30000)%256;
- TR0=1; //启动T0计数
- ET0=1; //允许T0中断
- EX0=1; //允许外部中断0中断
- EA=1; //开中断
- IT0=1; //允许外部中断0为边沿触发方式
- //倒计时10s
- while(1)
- {
- switch(type)
- {
- case 1: //东西向绿灯与南北向红灯亮
- beiR=0;beiY=1;beiG=1;
- nanR=1;nanY=1;nanG=0;
- shumaguan(a);
- break;
- case 2: //东西向黄灯闪烁,绿灯关闭
- if(a%2!=0)
- {
- nanR=1;nanY=0;nanG=1;
- }
- if(a%2==0)
- {
- nanR=1;nanY=1;nanG=1;
- }
- shumaguan(a);
- break;
- case 3: //东西向红灯,南北向绿灯亮
- beiR=1;beiY=1;beiG=0;
- nanR=0;nanY=1;nanG=1;
- shumaguan(a);
- break;
- case 4: //南北向黄灯闪烁3次
- if(a%2!=0)
- {
- beiR=1;beiY=0;beiG=1;
- }
- if(a%2==0)
- {
- beiR=1;beiY=1;beiG=1;
- }
- shumaguan(a);
- break;
- }
- }
- }
- void T0_int0(void) interrupt 1 //中断
- {
- TH0=(65536-30000)/256;
- TL0=(65536-30000)%256;
- i++;
- if(i==20)
- {
- i=0;
- a--;
- if(a==0)
- {
- type++;
- if(type>4)
- {
- type=1;
- }
- if(type==1)
- {
- a=10;
- }
- if(type==2)
- {
- a=5;
- }
- if(type==3)
- {
- a=10;
- }
- if(type==4)
- {
- a=5;
- }
- }
- }
-
- }
复制代码
全部资料51hei下载地址:
简易交通灯设计 仿真.rar
(33.76 KB, 下载次数: 53)
|