LED闪烁及流水灯——清翔51单片机(V3.0)
Posted 16wsh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LED闪烁及流水灯——清翔51单片机(V3.0)相关的知识,希望对你有一定的参考价值。
LED闪烁
延时(至少20ms以上)
源代码
#include <reg52.h> unsigned int i;//0~65535 void main() //main函数自身会循环 { while(1) { P1 = 0; //点亮P1口8个LED灯 i = 65535; while(i--); P1 = 0xff; //1111 1111 熄灭P1口8个LED灯 i = 65535; while(i--); } }
二、流水灯
1.宏定义
2.函数的定义
3.延时函数
4.标准库函数中的循环移位函数
5.循环移位函数与左移和右移运算符的区别
6.Keil中Debug的方法
图标:
7.源代码
#include <reg52.h> #include <intrins.h> #define uint unsigned int #define uchar unsigned char uchar temp;//LED灯相关变量 void delay(uint z) //毫秒级延时函数定义 { uint x,y; for(x = z;x > 0;x--) for(y = 114;y > 0;y--);; } void main() { temp = 0xfe; P1 = temp; delay(100); while(1) { temp = _crol_(temp,1); P1 = temp; delay(100); } }
以上是关于LED闪烁及流水灯——清翔51单片机(V3.0)的主要内容,如果未能解决你的问题,请参考以下文章