This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-audio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix bug in SimultaneousPlay example
dds
PaulStoffregen
4 years ago
parent
7aa04b0a82
commit
6ab951bfcf
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
examples/HardwareTesting/SD_Card/SimultaneousPlay/SimultaneousPlay.ino
+ 1
- 1
examples/HardwareTesting/SD_Card/SimultaneousPlay/SimultaneousPlay.ino
View File
@@ -79,7 +79,7 @@ void playNumber(int n)
Serial.print("Playing File: ");
Serial.println(filename);
Serial.flush();
playerlist[n]->play(filename.c_str());
playerlist[n
% 6
]->play(filename.c_str());
}
void loop() {
Write
Preview
Loading…
Cancel
Save