Browse Source

Add link & comments to SimultaneousPlay example

dds
PaulStoffregen 4 years ago
parent
commit
7aa04b0a82
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      examples/HardwareTesting/SD_Card/SimultaneousPlay/SimultaneousPlay.ino

+ 10
- 2
examples/HardwareTesting/SD_Card/SimultaneousPlay/SimultaneousPlay.ino View File

#include <Audio.h> #include <Audio.h>
#include <SD.h> #include <SD.h>


// Get the six WAV files this program needs on your SD card:
// https://forum.pjrc.com/threads/64235?p=258095&viewfull=1#post258095

// Reducing this delay will attempt to play the files simultaneously. // Reducing this delay will attempt to play the files simultaneously.
// The clips are about 3.0 to 3.4 seconds, even though the voice is // The clips are about 3.0 to 3.4 seconds, even though the voice is
// heard only for the about the first half second. // heard only for the about the first half second.
AudioControlSGTL5000 sgtl5000_1; //xy=625,368 AudioControlSGTL5000 sgtl5000_1; //xy=625,368
// GUItool: end automatically generated code // GUItool: end automatically generated code


// Use these with the Teensy 3.x Audio Shield (Rev C)
// SD card on Teensy 3.x Audio Shield (Rev C)
#define SDCARD_CS_PIN 10 #define SDCARD_CS_PIN 10
#define SDCARD_MOSI_PIN 7 #define SDCARD_MOSI_PIN 7
#define SDCARD_SCK_PIN 14 #define SDCARD_SCK_PIN 14


// Use these with the Teensy 3.5 & 3.6 SD card
// Built in SD card on Teensy 3.5, 3.6 & 4.1
//#define SDCARD_CS_PIN BUILTIN_SDCARD //#define SDCARD_CS_PIN BUILTIN_SDCARD
//#define SDCARD_MOSI_PIN 11 // not actually used //#define SDCARD_MOSI_PIN 11 // not actually used
//#define SDCARD_SCK_PIN 13 // not actually used //#define SDCARD_SCK_PIN 13 // not actually used


// SD card on Teensy 4.x Audio Shield (Rev D)
//#define SDCARD_CS_PIN 10
//#define SDCARD_MOSI_PIN 11
//#define SDCARD_SCK_PIN 13

void setup() { void setup() {
AudioMemory(40); AudioMemory(40);
sgtl5000_1.enable(); sgtl5000_1.enable();

Loading…
Cancel
Save