生活的点点滴滴-李振庆分享 http://blog.sciencenet.cn/u/starliyan 业精于勤而荒于嬉

博文

C51单片机-流水灯(3)

已有 3219 次阅读 2013-11-18 00:40 |个人分类:单片机学习|系统分类:科研笔记| 单片机

//8个发光管来回流动,每个管亮100ms,流动时蜂鸣器发出"滴滴"声

#include <intrins.h>
#include <reg52.h>

#define uint unsigned int
#define uchar unsigned char


void delay(uint);

uchar temp,temp2;
sbit beep=P2^3;

void main()
{
 
temp=0xfe;
beep=0;
P1=temp;

while(1)
{
 delay(15);
 temp=_crol_ (temp,1);
 beep=0;
 P1=temp;
}
}


void delay(uint z)
{
uint x, y;
beep=1;
for(x=z;x>0;x--)
 for(y=765;y>0;y--) {}
}

 



https://blog.sciencenet.cn/blog-573895-742633.html

上一篇:C51单片机-流水灯(2)
下一篇:C51单片机-流水灯(4)
收藏 IP: 211.91.223.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-11-23 13:37

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部