定时器实现秒表

#include<reg52.h>
#define uint unsigned int
unsigned int count=0;
unsigned h=0;
unsigned f=0;
unsigned m=1;
sbit S5=P3^2;
sbit S4=P3^3;
unsigned char code SMG[18]=
{
0xc0,0xf9,0xa4,0xb0,0x99,0x92,
0x82,0xf8,0x80,0x90,0x88,0x80,
0xc6,0xc0,0x86,0x8e,0xbf,0x7f
};
void delay_SMG(uint time)
{
	uint i,j;
	for(i=time;i>0;i--)
		for(j=114;j>0;j--);
}
void SelectHC573(unsigned char n)
{
	switch(n)
	{
		case 4:
			P2=(P2 & 0x1f) | 0x80;
		break;
		case 5:
			P2=(P2 & 0x1f) | 0xa0;
		break;
		case 6:
			P2=(P2 & 0x1f) | 0xc0;
		break;
		case 7:
			P2=(P2 & 0x1f) | 0xe0;
		break;
	}
}
void Init()
{
	SelectHC573(5);
	P0=0x00;
	SelectHC573(4);
	P0=0xff;
}
void Init_Timer1()
{
	TMOD=0x01;
	TH1=(65536-50000)/256;
	TL1=(65536-50000)%256;
	ET1=1;
	EA=1;
	TR1=1;
}
void Service_Timer1() interrupt 3
{
	TH1=(65536-50000)/256;
	TL1=(65536-50000)%256;
	m++;
	if(m==20)
	{
		f++;
		if(f==60)
		{
			h++;
			if(h>99)
			{
				h=0;
			}
			f=0;
		}
		m=0;
	}
}
void Show_SMG_Bit(unsigned char dat,unsigned char pos)
{
	SelectHC573(6);
	P0=0x01<<pos;
	SelectHC573(7);
	P0=dat;
}
void Show_SMG()
{
	Show_SMG_Bit(SMG[h/10],0);
	delay_SMG(10);
	Show_SMG_Bit(0xff,0);//消影
	Show_SMG_Bit(SMG[h%10],1);
	delay_SMG(10);
	Show_SMG_Bit(0xff,1);
	Show_SMG_Bit(0xbf,2);
	delay_SMG(10);
	Show_SMG_Bit(0xff,2);
	Show_SMG_Bit(SMG[f/10],3);
	delay_SMG(10);
	Show_SMG_Bit(0xff,3);
	Show_SMG_Bit(SMG[f%10],4);
	delay_SMG(10);
	Show_SMG_Bit(0xff,4);
	Show_SMG_Bit(0xbf,5);
	delay_SMG(10);
	Show_SMG_Bit(0xff,5);
	Show_SMG_Bit(SMG[m/10],6);
	delay_SMG(10);
	Show_SMG_Bit(0xff,6);
	Show_SMG_Bit(SMG[m%10],7);
	delay_SMG(10);
	Show_SMG_Bit(0xff,7);
}
void ScanKeys_Alone()
{
	if(S4==0)
	{		  
		delay_SMG(20);
		if(S4==0)
		{
			TR1=~TR1;
			while(S4==0)
			{
				Show_SMG();
			}	
		}	
	}
	if(S5==0)
	{
		delay_SMG(20);
		if(S5==0)
		{
			h=0;
			f=0;
			m=0;
			while(S5==0)
			{
				Show_SMG();
			}	
		}
	}
}
void main()
{
	Init();
	Init_Timer1();
	while(1)
	{
		Show_SMG();//数码管也应该循环刷新
		ScanKeys_Alone();
	}
}
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

清纯献给了作业

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值