码迷,mamicode.com
首页 > 其他好文 > 详细

LED闪烁及流水灯——清翔51单片机(V3.0)

时间:2020-01-31 15:57:58      阅读:130      评论:0      收藏:0      [点我收藏+]

标签: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);
     }

}

 

LED闪烁及流水灯——清翔51单片机(V3.0)

标签:include   51单片机   deb   相关   style   的区别   reg   nbsp   temp   

原文地址:https://www.cnblogs.com/16WSH/p/12243737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!