·上一文章:TLC1549数字电压表程序
·下一文章:电子琴程序
蜂鸣器实验程序
#include <reg51.h>
sbit buzzer=P3^7;
#define uchar unsigned char;
#define uint unsigned int;
uint i,j,x;
void delay(int);
void pulse_Bz(int,int,int);
//====主程序========================
main()
{ while(1)
{
pulse_Bz(100,1,1);
delay(1000);
}
}
//====子程序=======================
/********延时子程序*********/
void delay(intx)
{
for(i=0;i<x;i++)
{for(j=0;j<=60;j++);}
}
/***蜂鸣器发声函数,count=计数次数,TH=高电平时间,TL=低电平时间***/
void pulse_Bz(int count,int TH,int TL)
{int i;
for(i=0;i<count;i++)
{buzzer=1;
delay(TH);
buzzer=0;
delay(TL);
}
}