您的位置 首页 应用

51单片机程序——数码管动起来

includereg52h>unsignedcharcodetable[10]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,};显示数值

#include

unsigned char code table[10]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,};// 显现数值表0-9
void Delay(unsigned int t);
void main (void)
{
unsigned char i;
P1 = 0x01;
while (1)
{
for(i=0;i<10;i++) //参加 for循环,标明for循环大括号中的程序循环履行10次
{
P0=table[i]; //循环调用表中的数值
Delay(60000); //延时,便利观看数字改变
}
}
}
void Delay(unsigned int t)
{
while(–t);
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/yingyong/260876.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部