基于at89c51单片机的数字时钟实验仿真的图像和代码
时间: 2024-01-24 12:01:46 浏览: 74
以下是基于AT89C51单片机的数字时钟实验仿真的图像和代码:
图像:
![数字时钟实验仿真图像](https://img-blog.csdn.net/20160411093053084)
代码:
```c
#include "reg51.h"
#define uint unsigned int
#define uchar unsigned char
uchar code table[]={
0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71
};
uchar hour,minute,second;
void delay(uint z){
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
void init(){
TMOD=0x01;
TH0=(65536-45872)/256;
TL0=(65536-45872)%256;
EA=1;
ET0=1;
TR0=1;
}
void display(){
P0=0x01;
P2=table[hour/10];
delay(5);
P0=0x02;
P2=table[hour%10];
delay(5);
P0=0x04;
P2=table[minute/10];
delay(5);
P0=0x08;
P2=table[minute%10];
delay(5);
P0=0x10;
P2=table[second/10];
delay(5);
P0=0x20;
P2=table[second%10];
delay(5);
}
void timer0() interrupt 1{
TH0=(65536-45872)/256;
TL0=(65536-45872)%256;
second++;
if(second==60){
second=0;
minute++;
if(minute==60){
minute=0;
hour++;
if(hour==24)
hour=0;
}
}
}
void main(){
init();
while(1){
display();
}
}
```
该程序的实现原理是:利用定时器中断,在每一秒的时间上更新小时、分钟和秒数,然后在七段数码管上显示出来。其中,`init()`函数用来初始化定时器,`display()`函数用来在七段数码管上显示数字,`timer0()`函数用来处理定时器中断,更新时间。最后,在主函数中调用`display()`函数,让七段数码管不断显示时间。
阅读全文