From ce1c47876565ccafa936dfdcfea52c0a24f16061 Mon Sep 17 00:00:00 2001 From: biomurph Date: Wed, 20 Feb 2019 12:09:10 -0500 Subject: [PATCH] changed reset pin number --- Arduino/Teensy Tympan/TympanQuad/TympanQuad.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arduino/Teensy Tympan/TympanQuad/TympanQuad.ino b/Arduino/Teensy Tympan/TympanQuad/TympanQuad.ino index cccdb65..64c6adc 100644 --- a/Arduino/Teensy Tympan/TympanQuad/TympanQuad.ino +++ b/Arduino/Teensy Tympan/TympanQuad/TympanQuad.ino @@ -19,6 +19,7 @@ #include //yes, I'm going to use the Teensy Audio library #include //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 @@ -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 @@ -139,4 +140,3 @@ void loop() { // lastUpdate_millis = curTime_millis; // } // end if //} //end servicePotentiometer(); -