您的位置 首页 电路

74LS154译码器的使用

C代码:#includereg51.h>unsignedcharidatadis_code[]={0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x0

C代码:

#include
unsigned char idata dis_code[]={0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0X0D,0x0E,0x0F} ;
/*************延时子程序*******************************/
void delay(unsigned int x)//最小1毫秒
{
unsigned char j;
while(x–)
{
for(j=0;j<125;j++)
{;}
}
}
void main()
{
unsigned char i;
while(1)
{
for(i=0;i<16;i++)
{
P2=dis_code[i];
delay(500);
}
}
}

仿真电路:

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部