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

51单片机点亮双向流水灯

时间:2018-01-10 21:34:56      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:++   char   clu   delay   main   har   gpo   splay   流水灯   

#include <reg51.h>
#include <intrins.h>
#define uint unsigned int 
#define uchar unsigned char
sfr P0M0 = 0x94;
sfr P0M1 = 0x93;
void delay(uint ms){
    uint i,j;
    for(i = 0 ;i < ms ; i++)
        for (j = 0;j < 121;j++);
}
void display(){
    uint i,j;
    for(i = 0;i < 7;i++){
         P0 = _crol_(P0,1);
        delay(500);
    }
    for(j = 0;j < 7;j++){
        P0 = _cror_(P0,1);
        delay(500);
    }

}
void main(){
    P0M0 = 0x00;
    P0M1 = 0x00;
    P0 = 0xfe;
    while(1){
        display();
    }
}

 

51单片机点亮双向流水灯

标签:++   char   clu   delay   main   har   gpo   splay   流水灯   

原文地址:https://www.cnblogs.com/weimin1314/p/8260534.html

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