2019年10月2日 星期三

beep 3聲

#include  <reg51.h>
sbit buzzer = P3^7 ;
void delay_1ms(int k)
{
 int i,j;
 for(i=0;i<k;i++)
  for(j=0;j<55;j++)
       ;
}
void pulse_BZ(int count,int TH,int TL)
{
int i;
for(i=0;i<count;i++)
{
buzzer=0;
delay_1ms(TL);
buzzer=1;
delay_1ms(TH);
}
}
main()
{
pulse_BZ(100,1,1);delay_1ms(1000);
pulse_BZ(100,1,1);delay_1ms(1000);
pulse_BZ(100,1,1);delay_1ms(1000);
while(1);
}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...