Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Arduino/Teensy Tympan/TympanQuad/TympanQuad.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <Audio.h> //yes, I'm going to use the Teensy Audio library
#include <control_tlv320aic3206.h> //from the Tympan library, I'm including just this one header file.
// if you're using the latest Teensy Loader you need to delete the 'control_tlv320aic3206.h' and .cpp files there.


// Define audio objects...notice that I'm using the Teensy Audio library, not the Tympan library
Expand All @@ -31,7 +32,7 @@ AudioOutputI2SQuad i2s_quad_out; //This is the Teensy Audio library's bu
AudioControlTLV320AIC3206 tympan1; //using I2C bus SCL0/SDA0

//setup the second Tympan using the pins just for the second AIC
#define AIC_ALT_REST_PIN 20
#define AIC_ALT_REST_PIN 42
#define AIC_ALT_I2C_BUS 2
AudioControlTLV320AIC3206 tympan2(AIC_ALT_REST_PIN,AIC_ALT_I2C_BUS); //second Tympan! using I2C bus SCL2/SDA2

Expand Down Expand Up @@ -139,4 +140,3 @@ void loop() {
// lastUpdate_millis = curTime_millis;
// } // end if
//} //end servicePotentiometer();