-1
事實證明,noTone()和tone()在覈心arduino API中,但seemingly not implemented爲Arduino Due。我希望用tone()
和noTone()
實施馬里奧死亡的聲音在這裏找到,但是當我添加的代碼和編譯它,我得到以下錯誤:如何爲Arduino Due實現tone()和noTone()?
trenchRun:154: error: 'tone' was not declared in this scope trenchRun:156: error: 'noTone' was not declared in this scope
如果你有興趣,這裏是一個SSCCE,在Mac OS X 10.8編譯反對Arduino的1.5.4:
void setup() {
// put your setup code here, to run once:
}
void loop() {
tone(1, 12345, 1000);
}
sketch_oct24a.ino: In function 'void loop()': sketch_oct24a:7: error: 'tone' was not declared in this scope
由於我有一個Arduino到期,所以我在使用Arduino 1.5.4時受到限制。
我該如何實現tone()
和noTone()
的功能?
我可以驗證他的代碼在Arduino Due上工作得很漂亮。 – fmendez