Tone icon indicating copy to clipboard operation
Tone copied to clipboard

A Wiring Library to produce square wave tones on arbitrary pins.

Results 17 Tone issues
Sort by recently updated
recently updated
newest added

The Arduino IDE requires the use of a tab separator between the name and identifier. Without this tab the keyword is not highlighted. Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#keywords

This example code works with the Arduino Uno: ``` #include Tone tone1; void setup() { tone1.begin(13); tone1.play(NOTE_A4); } void loop() { } ``` But I get this error below with...

As mensioned on title this one has bugs all over the place and Just happens to give this compilation error: .../Arduino\libraries\Tone\Tone.cpp: In function 'void TIMER2_COMPA_vect()': ...\Arduino\libraries\Tone\Tone.cpp:186:5: error: 'TIMSK2' was not...

It would be great to have the ability to detect a tone (aka key pressed) and then execute a function

This may be a stupid question but, is there a way to generate tones of various musical instruments using this function, like guitar and drums or flutes

Below is the error I get for the example ToneTest without any changes to code: C:\Users\popey\AppData\Local\Temp\.arduinoIDE-unsaved202343-1564-pbuhxs.f1njr\ToneTest\ToneTest.pde:11:17: error: 'NOTE_A3' was not declared in this scope int notes[] = { NOTE_A3, ^...