1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-18 12:54:25 +01:00

Added Tone multiple example

This commit is contained in:
Tom Igoe 2010-03-08 16:42:48 +00:00
parent f4dc560751
commit 96729aca89

View File

@ -21,23 +21,21 @@ void setup() {
}
void loop() {
// turn off tone function for pin 11:
// turn off tone function for pin 11:
noTone(11);
// play a note on pin 6 for 200 ms:
// play a note on pin 6 for 200 ms:
tone(6, 440, 200);
delay(200);
// turn off tone function for pin 6:
// turn off tone function for pin 6:
noTone(6);
// play a note on pin 7 for 500 ms:
// play a note on pin 7 for 500 ms:
tone(7, 494, 500);
delay(500);
// turn off tone function for pin 7:
noTone(7);
// play a note on pin 11 for 500 ms:
// turn off tone function for pin 7:
noTone(7);
// play a note on pin 11 for 500 ms:
tone(11, 523, 300);
delay(300);