ADCS object and T3.6

Status
Not open for further replies.
Hi Paul,


Sorry, I should have done this in the first place.

I've checked the inputs and outputs manually — and they're working fine.

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

// GUItool: begin automatically generated code
AudioInputAnalogStereo   adcs1;          //xy=168,140
AudioMixer4              mixer2;         //xy=359,183
AudioMixer4              mixer1;         //xy=387,116
AudioOutputAnalogStereo  dacs1;          //xy=556.1768798828125,146.19480895996094
AudioConnection          patchCord1(adcs1, 0, mixer1, 0);
AudioConnection          patchCord2(adcs1, 1, mixer2, 0);
AudioConnection          patchCord3(mixer2, 0, dacs1, 1);
AudioConnection          patchCord4(mixer1, 0, dacs1, 0);
// GUItool: end automatically generated code

void setup() {

  AudioMemory(64);

  mixer1.gain(0, 1);
  mixer2.gain(0, 1);

}

void loop() {

}
 
Status
Not open for further replies.
Back
Top