实验4:蜂鸣器
- #include<reg51.h>
- #include"beep.h"
- typedef unsigned int u16; //对数据类型进行声明定义
- /*******************************************************************************
- * 函 数 名 : delay
- * 函数功能 : 延时函数,i=1时,大约延时10us
- *******************************************************************************/
- void delayy(u16 i)
- {
- while(i--);
- }
- void beep()
- {
- BEEP=~BEEP;
- delayy(10);
- }
复制代码
全部资料下载地址:
实验4:蜂鸣器.rar
(23.67 KB, 下载次数: 7)
|