#include <reg52.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 t;
while(x--)
{
for(t=120;t>0;t--);
}
}
void Traffic_lignt()
{
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(200);
YELLOW_A=~YELLOW_A;
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(200);
YELLOW_B=~YELLOW_B;
if(++Flash_Count !=10)
return;
Flash_Count=0;
Operation_Type = 1;
break;
}
}
void main()
{
while(1)
{
Traffic_lignt();
}
}
荣华富贵8
- 粉丝: 221
- 资源: 7653
最新资源
- 总经理办公室组织结构与责权说明书.docx
- 运输部组织结构与责权.docx
- 深度学习领域注意力机制的技术解析及其广泛用途
- 【餐饮行业】-01-组织架构图.docx
- 【餐饮行业】-03-组织架构图.docx
- 【超市】-01-组织架构图.et
- 【传媒行业】-01-组织架构图.docx
- 【电商行业】-01-组织架构图.xlsx
- 【电商行业】-02-组织架构图.docx
- 【灯具灯饰】-01-组织架构图.docx
- 【房地产】-01-组织架构图.docx
- 【电商行业】-03-组织架构图.docx
- 【房地产】-02-组织架构图.docx
- 【服装行业】-02-组织架构图.et
- 【工程咨询】-01-组织架构图.docx
- 【服装行业】-01-组织架构图.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈