Explorar el Código

Fix bug in SimultaneousPlay example

dds
PaulStoffregen hace 4 años
padre
commit
6ab951bfcf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      examples/HardwareTesting/SD_Card/SimultaneousPlay/SimultaneousPlay.ino

+ 1
- 1
examples/HardwareTesting/SD_Card/SimultaneousPlay/SimultaneousPlay.ino Ver fichero

@@ -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() {

Cargando…
Cancelar
Guardar