51单片机实验报告
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
51单片机实验报告
实验一
点亮流水灯
实验现象
Led灯交替亮,间隔大约10ms。
实验代码
#include
void Delay10ms(unsigned int c); void main()
{
while(1)
{
P0 = 0x00;
Delay10ms(50);
P0 = 0xff;
Delay10ms(50);
}
}
void Delay10ms(unsigned int c)
{
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
实验原理
While(1)表示一直循环。
循环体首先将P0的所有位都置于零,然后延时约50*10=500ms,接着P0位全置于1,于是LED全亮了。接着循环,直至关掉电源。延迟函数是通过多个for循环实现的。
实验2 流水灯(不运用库函数)
实验现象
起初led只有最右面的那一个不亮,半秒之后从右数第二个led
也不亮了,直到最后一个也熄灭,然后led除最后一个都亮,接着上述过程
#include
#include
void Delay10ms(unsigned int c);
main()
{
unsigned char LED;
LED = 0xfe;
while (1)
{
P0 = LED;
Delay10ms(50);
LED = LED << 1;
if (P0 == 0x00)
{
LED = 0xfe;
}
}
}
void Delay10ms(unsigned int c)
{
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
实验原理
这里运用了C语言中的位运算符,位运算符左移,初始值的二进制为1111 1110,之后左移一次变成1111 1100,当变成0000 0000时通过if语句重置1111 11110.延迟函数在第一个报告已经说出了,不再多说。
实验3
流水灯(库函数版)
实验现象
最开始还是最右边的一个不亮,然后不亮的灯转移到最右边的第二个,此时第一个恢复亮度,这样依次循环。
实验代码
#include
#include
void Delay10ms(unsigned int c); void main(void)
{
unsigned char LED;
LED = 0xFE;
while(1)
{
P0 = LED;
Delay10ms(50);
LED = _crol_(LED,1);
}
}
void Delay10ms(unsigned int c) {
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
实验原理
利用头文件中的函数,_crol_( , ),可以比位操作符更方便的进行2进制的移位操作,比位操作符优越的是,该函数空位补全时都是用那个移位移除的数据,由此比前一个例子不需要if语句重置操作。
数码管实验
实验现象
单个数码管按顺序显示0-9和A-F。
#include
void Delay10ms(unsigned int c);
unsigned char code DIG_CODE[16]={0x3F, 0x06, 0x5B, 0x4F, 0x66, 0x6D, 0x7D, 0x07,0x7F, 0x6F, 0x77, 0x7C, 0x39, 0x5E, 0x79, 0x71};
void main(void)
{
unsigned char i = 0;
while(1)
{
P0= ~DIG_CODE[i];
i++;
if(i == 16)
{
i = 0;
}
Delay10ms(50);
}
}
void Delay10ms(unsigned int c) //Îó²î 0us
{
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
实验原理
根据数码管的点亮原理,依次找到代表0-9,A-F的位码,用循环和延迟函数就可以达到要求了。