1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-19 08:52:15 +01:00

Merge pull request #6623 from per1234/fix-toneMultiple

Fix incorrect comment in toneMultiple example
This commit is contained in:
Martino Facchin 2017-08-17 09:45:24 +02:00 committed by GitHub
commit 275051fdcf

View File

@ -34,7 +34,7 @@ void loop() {
// turn off tone function for pin 7:
noTone(7);
// play a note on pin 8 for 500 ms:
// play a note on pin 8 for 300 ms:
tone(8, 523, 300);
delay(300);
}