1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Fix incorrect comment in toneMultiple example

The comment about the note duration didn't match the code.
This commit is contained in:
per1234 2017-08-16 15:44:30 -07:00
parent 6067e2d07e
commit 86c5ca8547

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);
}