全文预览

《单片机原理与应用》实验报告

上传者:菩提 |  格式:docx  |  页数:19 |  大小:0KB

文档介绍
{ a=0x26; //变量 a赋初值 for(temp=25;temp>19;temp--) //绿灯倒计时 25s { a=a-1; PA=0x69; //东西绿灯亮 show(a); //调用数码管显示子程序 delays(); //延时 1s } a=0x1a; //变量 a赋值 for(temp=19;temp>9;temp--) //倒计时{ a=a-1; PA=0x69; //东西绿灯亮 show(a); delays(); } a=0x0a; for(temp=9;temp>0;temp--) { a=a-1; PA=0x69; show(a); delays(); } for(t=5;t>0;t--) //绿灯闪烁 5s { a=0; //当计时值为 0时闪烁 show(a); PA=0xeb; //东西绿灯灭 delay(); //延时 0.5s PA=0x69; //东西绿灯亮 delay(); //延时 0.5s } a=0x26; for(temp=25;temp>19;temp--) //绿灯倒计时 25s { a=a-1; PA=0x96; //南北绿灯亮 show(a); delays(); } a=0x1a; for(temp=19;temp>9;temp--) { a=a-1; PA=0x96; show(a); delays(); } a=0x0a; for(temp=9;temp>0;temp--) { a=a-1; PA=0x96; show(a); delays(); } for(t=5;t>0;t--) //绿灯闪烁 5s { a=0; //当计时值为 0时闪烁 show(a); PA=0xbe; //南北绿灯灭 delay(); //延时 0.5s PA=0x96; //南北绿灯亮 delay(); //延时 0.5s }}}

收藏

分享

举报
下载此文档