数码管八位仿真新手有问

2019-07-15 09:19发布

求大神指点一下哪里的问题
11.JPG
1111.JPG
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
5条回答
J木昜
2019-07-15 23:14
#include <reg52.h>

sbit dx = P2^0;
sbit wx = P2^1;
unsigned char table[]={0xc0, 0xf9, 0xa4, 0xb0, 0x99, 0x92, 0x82, 0xf8, 0x80};
void delay(void)
{
unsigned int i,y;

for(y=0; y<100; y++)
{
  for(i=0; i<50; i++);
}
}
void main()
{

unsigned char shi, ge, temp;

temp = 17;

while(1)
{
  shi = temp / 10;
  ge = temp % 10;
  
  dx = 1;
  P1 = table[shi];
  dx = 0;
  wx = 1;
  P1 = 0x40;
  wx = 0;
  
  delay();
  
  dx = 1;
  P1 = table[ge];
  dx = 0;
  wx = 1;
  P1 = 0x80;
  wx = 0;
  delay();
}

}

作为参考吧,能正常显示,但是会闪烁,不知道时程序的问题,还是仿真的问题,主要时调延时时间,可以查查有关数码管动态扫描方式的资料


一周热门 更多>