#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit DULA=P2^6;
sbit WELA=P2^7;
uchar t=0;
uchar n=0;
uchar m=0;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71
};
uchar code up_down[]={
0xfe,0xfd,0xfb,
0xf7,0xef,0xdf
};
void main()
{
TMOD=0x01;
TH0=(65536-50)/256;
TL0=(65536-50)%256;
EA=1;
ET0=1;
TR0=1;
while(1)
{
if(t==1)
{
WELA=1;
P0=

本文介绍了一个使用单片机实现数码管动态显示的程序,通过设置定时器来控制显示更新。代码中定义了数码管显示的字符表和上下滚动的代码,并在主函数中利用中断进行定时更新,实现了数码管的逐位滚动效果。

2万+

被折叠的 条评论
为什么被折叠?



