一个单片机流水灯程序,但用Proteus仿真时所有灯都不亮,程序如下
#include<reg51.h>#include<intrins.h>voiddelay(unsignedintx){unsignedintt;while(x--){f...
#include<reg51.h>
#include <intrins.h>
void delay (unsigned int x)
{
unsigned int t;
while(x--)
{
for(t=0;t<120;t++)
{
}
}
}
void main ()
{
P2=0x01;
while (1)
{
P2=_crol_(P2,1);
delay(150);
}
} 展开
#include <intrins.h>
void delay (unsigned int x)
{
unsigned int t;
while(x--)
{
for(t=0;t<120;t++)
{
}
}
}
void main ()
{
P2=0x01;
while (1)
{
P2=_crol_(P2,1);
delay(150);
}
} 展开
3个回答
宿兴电子
2024-11-28 广告
2024-11-28 广告
联系我们蜂鸣器的种类规格繁多,需先知道几个参数 ( 电压,电流,驱动方式,尺寸,连接/固定方式),当然更重要的是,想要获的声音 (音压大小,频率高低).工作电压:电磁式蜂鸣器,从1.5到24V, 压电式的从3V到220V都是可行的,但一般压...
点击进入详情页
本回答由宿兴电子提供
展开全部
您好:
我改了一下程序,你试一下吧,在我开发板上可以运行。如果在你的Proteus中还不能仿真,那你查检一下你的仿真配置。
#include<reg51.h>
#include <intrins.h>
void delay(unsigned int x)
{
unsigned int t;
while(x--)
for(t=0;t<120;t++);
}
void main()
{
P2=0x01;
while(1)
{
P2=_crol_(P2,1);
delay(150);
}
}
我改了一下程序,你试一下吧,在我开发板上可以运行。如果在你的Proteus中还不能仿真,那你查检一下你的仿真配置。
#include<reg51.h>
#include <intrins.h>
void delay(unsigned int x)
{
unsigned int t;
while(x--)
for(t=0;t<120;t++);
}
void main()
{
P2=0x01;
while(1)
{
P2=_crol_(P2,1);
delay(150);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
void main ()
{
unsigned char a=0x01;
P2=a;
while (1)
{
a=_crol_(a,1);
P1=a;
delay(150);
}
试试这样行不行……另外确定你的电路是没问题的
}
{
unsigned char a=0x01;
P2=a;
while (1)
{
a=_crol_(a,1);
P1=a;
delay(150);
}
试试这样行不行……另外确定你的电路是没问题的
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询