Arduino - 发出铃声,但不准确

时间:2016-04-25 06:49:40

标签: c++ arduino ringtone arduino-yun

Arduino,我正在努力制作铃声(如brrr brrr,brrr brrr,旧普通电话铃声),但我还没有接近它。谁能告诉我你是怎么做到的?

void play_on() { // this should play exact telephony ring tone, but how?
  for(int i=0; i <50; i++) {
    tone(2, i+900, i+10);  
    delay(60);              
    noTone(2);

  }    
}

0 个答案:

没有答案