找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

关于HOT-51单片机数码管显示问题求助

[复制链接]
admin 发表于 2012-9-2 14:21:31 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
uint a,count;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71,
0x76,0x79,0x38,0x38,0x3f};
uint i,j;
void delay(uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
void main()
{
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;


while(1)
{

if(a>20){

for(i=2,j=16;i<8 && j<21;i++,j++)
{
P2=i;
P0=table[j];

delay(1);
}
}

if(a<20){
for(i=0,j=0;i<8 && j<16;i++,j++)//为什么数码管只依次显示0-7,而不是0-F,我晕死了,好像逻辑上没错啊,有谁能给我一 把手?
{
P2=i;
P0=table[j];
if(i==8)
i=0;
if(j==16)
j=0;
delay(300);


}

}

}
}
void timer0() interrupt 1
{
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
count++;
if(count==4)
{
count=0;
a++;
}
}
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-25 04:47 , Processed in 0.053226 second(s), 10 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表