标签:include 51单片机 deb 相关 style 的区别 reg nbsp temp
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); } }
标签:include 51单片机 deb 相关 style 的区别 reg nbsp temp
原文地址:https://www.cnblogs.com/16WSH/p/12243737.html