|
交通灯闪烁程序
- #include "reg52.h" //此文件中定义了单片机的一些特殊功能寄存器
- typedef unsigned int u16; //对数据类型进行声明定义
- typedef unsigned char u8;
- sbit LSA=P2^2;
- sbit LSB=P2^3;
- sbit LSC=P2^4;
- //--定义使用的IO口--//
- #define GPIO_DIG P0
- #define GPIO_TRAFFIC P1
- sbit RED1 = P1^2; //南北方向
- sbit YELLOW1= P1^3;
- sbit GREEN1 = P1^4;
- sbit RED0 = P1^5; //东西方向
- sbit YELLOW0= P1^6;
- sbit GREEN0 = P1^7;
- u8 code smgduan[17]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
- 0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};//显示0~F的值
- u8 DisplayData[8];
- u8 Second;
- void delay(u16 i)
- {
- while(i--);
- }
- void DigDisplay()
- {
- u8 i;
- for(i=0;i<8;i++)
- {
- switch(i) //位选,选择点亮的数码管,
- {
- case(0):
- LSA=0;LSB=0;LSC=0; break;//显示第0位
- case(1):
- LSA=1;LSB=0;LSC=0; break;//显示第1位
- case(2):
- LSA=0;LSB=1;LSC=0; break;//显示第2位
- case(3):
- LSA=1;LSB=1;LSC=0; break;//显示第3位
- case(4):
- LSA=0;LSB=0;LSC=1; break;//显示第4位
- case(5):
- LSA=1;LSB=0;LSC=1; break;//显示第5位
- case(6):
- LSA=0;LSB=1;LSC=1; break;//显示第6位
- case(7):
- LSA=1;LSB=1;LSC=1; break;//显示第7位
- }
- GPIO_DIG=DisplayData[i];//发送段码
- delay(100); //间隔一段时间扫描
- GPIO_DIG=0x00;//消隐
- }
- }
- void Timer0Init()
- {
- TMOD|=0X01;//选择为定时器0模式,工作方式1,仅用TR0打开启动。
- TH0=0XFC; //给定时器赋初值,定时1ms
- TL0=0X18;
- ET0=1;//打开定时器0中断允许
- EA=1;//打开总中断
- TR0=1;//打开定时器
- }
- void main()
- {
- Second = 1;
- Timer0Init();
- while(1)
- {
- if(Second == 20)
- {
- Second = 1;
- }
- //--宝田路通行,30秒--//
- if(Second < 8)
- {
- DisplayData[0] = 0x00;
- DisplayData[1] = 0x00;
- DisplayData[2] = smgduan[(10 - Second) % 10 / 10];
- DisplayData[3] = smgduan[(10 - Second) %10];
- DisplayData[4] = 0x00;
- DisplayData[5] = 0x00;
- DisplayData[6] = smgduan[(7 - Second) % 10 / 10];
- DisplayData[7] = smgduan[(7 - Second) %10];
- DigDisplay();
- GPIO_TRAFFIC = 0xFF; //将所有的灯熄灭
- GREEN1 = 0; //宝田路绿灯亮
- RED0 = 0; //前进路红灯亮
- while(Second<8&&Second>4)
- {
- DisplayData[0] = 0x00;
- DisplayData[1] = 0x00;
- DisplayData[2] = smgduan[(10 - Second) % 10 / 10];
- DisplayData[3] = smgduan[(10 - Second) %10];
- DisplayData[4] = 0x00;
- DisplayData[5] = 0x00;
- DisplayData[6] = smgduan[(7 - Second) % 10 / 10];
- DisplayData[7] = smgduan[(7 - Second) %10];
- DigDisplay();
- GPIO_TRAFFIC = 0xFF; //将所有的灯熄灭
- GREEN1 = 0; //宝田路绿灯亮
- RED0 = 0; //前进路红灯亮
- delay(50000);
- GREEN1=~GREEN1 ;
- delay(50000);
- }
-
- }
- //--黄灯等待切换状态,5秒--//
- else if(Second < 11&&Second >7)
- {
- DisplayData[0] = 0x00;
- DisplayData[1] = 0x00;
- DisplayData[2] = smgduan[(10 - Second) % 10 / 10];
- DisplayData[3] = smgduan[(10- Second) %10];
- DisplayData[4] = 0x00;
- DisplayData[5] = 0x00;
- DisplayData[6] = DisplayData[2];
- DisplayData[7] = DisplayData[3];
- DigDisplay();
-
- //--黄灯阶段--//
- GPIO_TRAFFIC = 0xFF; //将所有的灯熄灭
- RED0 = 0;
- YELLOW1 = 0;
-
- }
- //--前进路通行--//
- else if(Second < 18)
- {
- DisplayData[0] = 0x00;
- DisplayData[1] = 0x00;
- DisplayData[2] = smgduan[(17- Second) % 100 / 10];
- DisplayData[3] = smgduan[(17- Second) %10];
- DisplayData[4] = 0x00;
- DisplayData[5] = 0x00;
- DisplayData[6] = smgduan[(20 - Second) % 100 / 10];
- DisplayData[7] = smgduan[(20- Second) %10];
- DigDisplay();
- //--黄灯阶段--//
- GPIO_TRAFFIC = 0xFF; //将所有的灯熄灭
- RED1 = 0; //宝田路红灯亮
- GREEN0 = 0; //前进路绿灯亮
- while(Second<18&&Second>14)
- {
- DisplayData[0] = 0x00;
- DisplayData[1] = 0x00;
- DisplayData[2] = smgduan[(17- Second) % 100 / 10];
- DisplayData[3] = smgduan[(17- Second) %10];
- DisplayData[4] = 0x00;
- DisplayData[5] = 0x00;
- DisplayData[6] = smgduan[(20 - Second) % 100 / 10];
- DisplayData[7] = smgduan[(20- Second) %10];
- DigDisplay();
- RED1 = 0;
- GREEN0 = 0;
- delay(50000);
- GREEN0 =~GREEN0;
- delay(50000);
- }
- }
- //--黄灯等待切换状态,5秒--//
- else if(Second < 21&&Second>17)
- {
- DisplayData[0] = 0x00;
- DisplayData[1] = 0x00;
- DisplayData[2] = smgduan[(20- Second) % 100 / 10];
- DisplayData[3] = smgduan[(20 - Second) %10];
- DisplayData[4] = 0x00;
- DisplayData[5] = 0x00;
- DisplayData[6] = smgduan[(20 - Second) % 100 / 10];
- DisplayData[7] = smgduan[(20 - Second) %10];
- DigDisplay();
- //--黄灯阶段--//
- GPIO_TRAFFIC = 0xFF; //将所有的灯熄灭
- RED1 = 0;
- YELLOW0 = 0;
-
-
- }
-
- }
- }
- void Timer0() interrupt 1
- {
- static u16 i;
- TH0=0XFC; //给定时器赋初值,定时1ms
- TL0=0X18;
- i++;
- if(i==1000)
- {
- i=0;
- Second ++;
- }
- }
复制代码
|
-
-
交通灯.rar
22.81 KB, 下载次数: 11, 下载积分: 黑币 -5
|