Teensy as outboard effects processor

Status
Not open for further replies.

jmercer

Member
So while I'm waiting for my new Teensy 3.6 and Audio Shield to arrive, I decided to try to use my Teensy 3.1 as outboard effects processor.

Attempting to loop audio from Logic Pro X into Teensy and back. I left the effect out of the loop for now.

#include <Audio.h>
#include <Wire.h>
#include <SPI.h>
#include <SD.h>
#include <SerialFlash.h>

void setup() {
// put your setup code here, to run once:

// GUItool: begin automatically generated code
AudioInputUSB usb1; //xy=308,364
AudioOutputUSB usb2; //xy=674,366
AudioConnection patchCord1(usb1, 0, usb2, 0);
AudioConnection patchCord2(usb1, 1, usb2, 1);
// GUItool: end automatically generated code
}

void loop() {
// put your main code here, to run repeatedly:

}


Screen shot of Logic:
Screen Shot 2017-12-13 at 10.19.24 PM.jpg

I expect that if I play the drum track into Teensy it will loop back to the mac so it can can be recorded.

Doesn't work....

Why?
 
Status
Not open for further replies.
Back
Top