forked from MetalSeed/stc51_demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9.0.c
39 lines (37 loc) · 1.09 KB
/
9.0.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/********************************************************************
* 文件名 : 蜂鸣器发声.c
* 描述 : 蜂鸣器通过交替变化的电平后,会发出蜂鸣声。
* 杜邦线接法:P1.2用杜邦线连接到J17的左边第二个。
***********************************************************************/
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit BELL = P1^2; //设置P1.2口,为控制蜂鸣器发声的引脚
/********************************************************************
* 名称 : Delay()
* 功能 : 延时
* 输入 : del
* 输出 : 无
***********************************************************************/
void Delay(uint del)
{
uint i;
for(i=0; i<100; i++)
;
}
/********************************************************************
* 名称 : Main()
* 功能 : 实现灯的闪烁
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Main(void)
{
while(1)
{
BELL = 0;
Delay(1); //延时10毫秒
BELL = 1;
Delay(1); //延时10毫秒
}
}