欢迎来到天天文库
浏览记录
ID:60852842
大小:327.00 KB
页数:4页
时间:2020-12-23
《利用按键操作数码管显示复习过程.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、…………………………………………………………最新精品资料推荐……………………………………………………实验功能:两位数码管显示功能。具体功能描述如下:数码管可以显示0-99两位数字,按一下加按键,数字加1;按一下减按键,数字减1。按下清零按键,数字清零。程序:/*-----------------------------------------------------------------------*该程序实现的是利用单片机实现两位数码管显示功能。具体功能描述如下:*数码管可以显示0-99两位数字,按一下加按键,数字加1;按一下减按键,数字减1*此外为了方
2、便,还添加了一个清零按钮,按下清零按钮计数归零。*-----------------------------------------------------------------------*/#include#defineuncharunsignedchar//宏定义#defineopen0#defineclose1voiddelayms(charm);//延时函数声明voiddisplay();//数码管显示函数声明sbitup=P2^2;//加一按钮sbitdown=P2^3;//减一按钮sbitclear=P2^4;//清零按钮s
3、bitLedshi=P2^0;//十位数码管使能端sbitLedge=P2^1;//个位数码管使能端uncharLedCode[]={//数码管真值表0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};charcount=0;charge=0;charshi=0;voiddigitalTube(){if(clear==0){delayms(10);//按键消抖,是因为实际中按键刚刚被按下时电平抖动不稳定,延时10ms让电平稳定下来再次判断即可if(clear==0){count=0;}}while(clear
4、==0){//松手检测display();}if(up==0){delayms(10);…………………………………………………………最新精品资料推荐……………………………………………………4…………………………………………………………最新精品资料推荐……………………………………………………if(up==0){count++;if(count==100)count=0;}}while(up==0){//松手检测display();}if(down==0){delayms(10);if(down==0){count--;if(count==(-1))count=
5、99;}}while(down==0){display();}display();}voiddisplay(){//计算各数码管显示的数值ge=count%10;shi=count/10;//关闭数码管使能端,防止乱入Ledge=close;Ledshi=close;//轮流导通两位数码管P0=LedCode[ge];Ledge=open;//打开个位数码管delayms(1);Ledge=close;P0=LedCode[shi];Ledshi=open;delayms(1);Ledshi=close;}voiddelayms(charm){//延时m毫秒
6、chari,j;…………………………………………………………最新精品资料推荐……………………………………………………4…………………………………………………………最新精品资料推荐……………………………………………………for(i=0;i7、him,herangittwice,butthebus__3__stop.Andtheconductorcameandshouted__4__him.Theconductorwas__5__angryandspoke__6__fastthatHenrydidn’tunderstand__7__.ThebusstoppedatthenextbusandHenrygotoff.Ashegotoffheheardsomeonesaid,“Ithinkhe__8__aforeigner.”WhenHenrygot__9__,hetoldhiswifeaboutit.8、…………………………………………………………最新精品
7、him,herangittwice,butthebus__3__stop.Andtheconductorcameandshouted__4__him.Theconductorwas__5__angryandspoke__6__fastthatHenrydidn’tunderstand__7__.ThebusstoppedatthenextbusandHenrygotoff.Ashegotoffheheardsomeonesaid,“Ithinkhe__8__aforeigner.”WhenHenrygot__9__,hetoldhiswifeaboutit.
8、…………………………………………………………最新精品
此文档下载收益归作者所有