51单片机实现简易闹钟(包含闹钟功能)

代码段

delay.c


void Delay(unsigned int xms)
{
	unsigned char i, j;
	while(xms--)
	{
		i = 2;
		j = 239;
		do
		{
			while (--j);
		} while (--i);
	}
}

delay.h

#ifndef __DELAY_H__
#define __DELAY_H__

void Delay(unsigned int xms);

#endif

main.c

#include <REGX52.H>
#include"Delay.h"
#include"LCD1602.H"
#include"Timer0.h"

sbit beep=P1^5;

unsigned char Sec=0,Min=54,Hour=10;



void main()
{

			LCD_Init();
	    Timer0Init();
			LCD_ShowString(1,1,"Clock:");
			LCD_ShowString(2,1,"  :  :");
	   
			while(1)
			{
				LCD_ShowNum(2,1,Hour,2);
				LCD_ShowNum(2,4,Min,2);
				LCD_ShowNum(2,7,Sec,2);
				 if(Hour==12&&Min==10&&Sec==6)
			   {beep=~beep;Delay(300);}
			}
}

void Timer0_Routine() interrupt 1
{
		  static unsigned int T0Count;
			TL0=0x18;
			TH0=0xFC;
			T0Count++;
	   
			if(T0Count>=1000)
			{
					T0Count=0;
					Sec++;
				if(Sec>=60)
				{
					Sec=0;
					Min++;
					if(Min>=60)
					{
						Min=0;
						Hour++;
						if(Hour>=24)
						{
						Hour=0;
					  }
						
				 }
			 }	
		}
}


















Timer0.c

#include <REGX52.H>

/**
  * @brief  定时器0初始化,1毫秒@12.000MHz
  * @param  无
  * @retval 无
  */
void Timer0Init(void)
{
	TMOD &= 0xF0;		//设置定时器模式
	TMOD |= 0x01;		//设置定时器模式
	TL0 = 0x18;		//设置定时初值
	TH0 = 0xFC;		//设置定时初值
	TF0 = 0;		//清除TF0标志
	TR0 = 1;		//定时器0开始计时
	ET0=1;
	EA=1;
	PT0=0;
}

/*定时器中断函数模板
void Timer0_Routine() interrupt 1
{
	static unsigned int T0Count;
	TL0 = 0x18;		//设置定时初值
	TH0 = 0xFC;		//设置定时初值
	T0Count++;
	if(T0Count>=1000)
	{
		T0Count=0;
		
	}
}
*/

Timer0.h

#ifndef __TIMER0_H__
#define __TIMER0_H__

void Timer0Init(void);

#endif

效果图:

如果感觉不错的话1记得关注+

  • 7
    点赞
  • 70
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值