From b8041d00cf784f318d6a8584e250c0b64f2c90f8 Mon Sep 17 00:00:00 2001 From: Steve Lascos Date: Wed, 10 Jan 2018 22:15:54 -0500 Subject: [PATCH] Fixed a connection bug in BA4_TGA_Pro_delay_reverb.ino. --- examples/BA4_TGA_Pro_delay_reverb/BA4_TGA_Pro_delay_reverb.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/BA4_TGA_Pro_delay_reverb/BA4_TGA_Pro_delay_reverb.ino b/examples/BA4_TGA_Pro_delay_reverb/BA4_TGA_Pro_delay_reverb.ino index 9953821..3cc7190 100644 --- a/examples/BA4_TGA_Pro_delay_reverb/BA4_TGA_Pro_delay_reverb.ino +++ b/examples/BA4_TGA_Pro_delay_reverb/BA4_TGA_Pro_delay_reverb.ino @@ -35,13 +35,14 @@ AudioConnection patch2(delayModule,0, gainModule, 0); // send the delay to AudioConnection patch2b(gainModule, 0, reverb, 0); // then to the reverb -AudioConnection patch1(i2sIn,1, mixer,0); // mixer input 0 is our original dry signal +AudioConnection patch1(i2sIn,0, mixer,0); // mixer input 0 is our original dry signal AudioConnection patch3(reverb, 0, mixer, 1); // mixer input 1 is our wet AudioConnection patch4(mixer, 0, cabFilter, 0); // mixer outpt to the cabinet filter AudioConnection patch5(cabFilter, 0, i2sOut, 0); // connect the cab filter to the output. +AudioConnection patch5b(cabFilter, 0, i2sOut, 1); // connect the cab filter to the output. void setup() {