8000 Fix incorrect comment in toneMultiple example · arduino/arduino-examples@62cd114 · GitHub
[go: up one dir, main page]

Skip to content

Commit 62cd114

Browse files
committed
Fix incorrect comment in toneMultiple example
The comment about the note duration didn't match the code.
1 parent d2e357b commit 62cd114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/02.Digital/toneMultiple/toneMultiple.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void loop() {
3434

3535
// turn off tone function for pin 7:
3636
noTone(7);
37-
// play a note on pin 8 for 500 ms:
37+
// play a note on pin 8 for 300 ms:
3838
tone(8, 523, 300);
3939
delay(300);
4040
}

0 commit comments

Comments
 (0)
0