2021年7月31日 星期六

ex buzzer

 int buzzer=2;

int times=0;

void setup() 

{

 pinMode(buzzer,OUTPUT);

}


void loop()

{

 if(times==0)

 {

  tone(buzzer,500,300);delay(1000);

  tone(buzzer,500,300);delay(1000);

  times=1;

 }

}

沒有留言:

張貼留言

algorithm

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