remove unused files

This commit is contained in:
interfisch 2019-04-13 14:02:50 +02:00
parent 4a3ffe5d9b
commit da484d9a91
19 changed files with 80 additions and 5616 deletions

View File

@ -16,33 +16,43 @@ boolean button_flag=false; //true if button pressed
boolean button_released=true;
long last_button_released=0; //last time button has been released (for debounce)
//Shift Register 595
//connections: https://www.arduino.cc/en/tutorial/ShiftOut
#define SRLATCH D5
#define SRCLOCK D6
#define SRDATA D7
uint16_t srbits=0;
#include <Encoder.h>
Encoder volEnc(PIN_ENCA,PIN_ENCB);
float encoderMultiplier=4.0;
//Servo stuff
#define PIN_MOTOR_IN1 D6 //L293 Motor IN1
#define PIN_MOTOR_IN2 D5 //L293 Motor IN2
#define SRPIN_MOTOR_IN1 1 //L293(pin2) Motor IN1
#define SRPIN_MOTOR_IN2 2 //L293(pin7) Motor IN2
#define PIN_POT A0 //reference potentiometer wiper
#define DEADZONE_POTI 5 //maximum allowed error. stop when reached this zone
#define POT_MIN 5 //minimum value pot can reach
#define POT_MIN 10 //minimum value pot can reach
#define POT_MAX 1010 //maximum value pot can reach
#define POTIFILTER 0.8 //0 to 1. 1 means old value stays forever
int poti_set=512; //set value
int poti_read=0; //read value from poti
boolean poti_reachedposition=true; //set to true if position reached. after that stop turning
#define MOTOR_STOP(); digitalWrite(PIN_MOTOR_IN1,LOW); digitalWrite(PIN_MOTOR_IN2,LOW);
#define MOTOR_LEFT(); digitalWrite(PIN_MOTOR_IN1,LOW); digitalWrite(PIN_MOTOR_IN2,HIGH);
#define MOTOR_RIGHT(); digitalWrite(PIN_MOTOR_IN1,HIGH); digitalWrite(PIN_MOTOR_IN2,LOW);
#define MOTOR_TURNING() (digitalRead(PIN_MOTOR_IN1) != digitalRead(PIN_MOTOR_IN2))
#define MOTOR_STOP(); srWrite(SRPIN_MOTOR_IN1,LOW); srWrite(SRPIN_MOTOR_IN2,LOW);
#define MOTOR_LEFT(); srWrite(SRPIN_MOTOR_IN1,LOW); srWrite(SRPIN_MOTOR_IN2,HIGH);
#define MOTOR_RIGHT(); srWrite(SRPIN_MOTOR_IN1,HIGH); srWrite(SRPIN_MOTOR_IN2,LOW);
#define MOTOR_TURNING() (srRead(SRPIN_MOTOR_IN1) != srRead(SRPIN_MOTOR_IN2))
//Motorcheck
long last_motorcheck=0;
#define INTERVAL_MOTORCHECK 100 //check motor movement every x ms
int poti_read_last=0;
int motor_vel=0; //analog read units per second
#define MINIMUM_MOTORVEL 2 //minimum velocity motor should turn wenn active
#define MINIMUM_MOTORVEL 20 //minimum velocity motor should turn wenn active
#define MOTOR_FAILTIME 500 //in ms. if motor did not turn fox x amount of time at least with MINIMUM_MOTORVEL an error will initiate
long last_motorTooSlow=0; //typically 0
@ -58,14 +68,18 @@ void setup() {
pinMode(PIN_BUTTON,INPUT_PULLUP);
pinMode(PIN_MOTOR_IN1,OUTPUT);
/*pinMode(PIN_MOTOR_IN1,OUTPUT);
pinMode(PIN_MOTOR_IN2,OUTPUT);
digitalWrite(PIN_MOTOR_IN1,LOW);
digitalWrite(PIN_MOTOR_IN2,LOW);
digitalWrite(PIN_MOTOR_IN2,LOW);*/
pinMode(PIN_POT,INPUT);
pinMode(SRLATCH, OUTPUT);
pinMode(SRCLOCK, OUTPUT);
pinMode(SRDATA, OUTPUT);
Serial.println("Setup finished");
}
@ -79,14 +93,17 @@ void loop() {
if (Serial.read() == '\n') {
Serial.print("value=");
Serial.println(_value);
poti_set=_value;
poti_reachedposition=false; //aim for new position
//poti_set=_value;
//poti_reachedposition=false; //aim for new position
srWrite(_value,!srRead(_value));
}
}
//Inputs ###################################################
poti_read=analogRead(PIN_POT); //read poti
poti_read=poti_read*POTIFILTER + (1.0-POTIFILTER)*analogRead(PIN_POT); //read poti
if (!digitalRead(PIN_BUTTON)){ //button pressed
if (button_released){
button_released=false; //flag: not released
@ -110,7 +127,7 @@ void loop() {
//Input Handling
if (volEncVel!=0){ //knob moved
poti_set+=volEncVel; //change poti set value
poti_set+=volEncVel*encoderMultiplier; //change poti set value
poti_set=constrain(poti_set, POT_MIN,POT_MAX);
poti_reachedposition=false;
}
@ -126,8 +143,15 @@ void loop() {
}else{
MOTOR_RIGHT();
}
}else{
}else if(!poti_reachedposition){ //position reached but flag not set
MOTOR_STOP();
Serial.print("reached:");
Serial.print(" set=");
Serial.print(poti_set);
Serial.print(" is=");
Serial.print(poti_read);
Serial.print(" vel=");
Serial.println();
poti_reachedposition=true; //position reached
digitalWrite(LED_BUILTIN,LOW);
}
@ -157,6 +181,7 @@ void loop() {
MOTOR_STOP();
}
if ( loopmillis > last_serialdebug+INTERVAL_SERIALDEBUG){
last_serialdebug=loopmillis;
@ -178,3 +203,18 @@ void loop() {
}
}
void srWrite(uint8_t pin, boolean state){
if (state==true){
srbits |= 1UL << pin; //set bit
}else{
srbits &= ~(1UL << pin); //clear bit
}
digitalWrite(SRLATCH, LOW);
shiftOut(SRDATA, SRCLOCK, MSBFIRST, srbits>>8);
shiftOut(SRDATA, SRCLOCK, MSBFIRST, srbits);
digitalWrite(SRLATCH, HIGH);
}
boolean srRead(uint8_t pin){
return (srbits >> pin) & 1U;
}

View File

@ -1,4 +1,27 @@
EESchema Schematic File Version 2
EELAYER 25 0
EESchema Schematic File Version 4
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Connector_Generic:Conn_02x18_Row_Letter_First J?
U 1 1 5CB1BE91
P 3850 2600
F 0 "J?" H 3900 3617 50 0000 C CNN
F 1 "Conn_02x18_Row_Letter_First" H 3900 3526 50 0000 C CNN
F 2 "" H 3850 2600 50 0001 C CNN
F 3 "~" H 3850 2600 50 0001 C CNN
1 3850 2600
1 0 0 -1
$EndComp
$EndSCHEMATC

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -1,516 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixerinput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 2 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Device:Opamp_Dual_Generic U?
U 2 1 5C072472
P 3300 2250
AR Path="/5C072472" Ref="U?" Part="1"
AR Path="/5C06F581/5C072472" Ref="U1" Part="2"
AR Path="/5C0574B7/5C072472" Ref="U?" Part="1"
F 0 "U1" H 3300 1883 50 0000 C CNN
F 1 "LM4562" H 3300 1974 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 3300 2250 50 0001 C CNN
F 3 "~" H 3300 2250 50 0001 C CNN
2 3300 2250
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 3 1 5C072479
P 1200 1200
AR Path="/5C072479" Ref="U?" Part="2"
AR Path="/5C06F581/5C072479" Ref="U1" Part="3"
AR Path="/5C0574B7/5C072479" Ref="U?" Part="2"
F 0 "U1" H 1250 1000 50 0000 C CNN
F 1 "LM4562" H 1300 1100 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 1200 1200 50 0001 C CNN
F 3 "~" H 1200 1200 50 0001 C CNN
3 1200 1200
1 0 0 1
$EndComp
$Comp
L Device:R R?
U 1 1 5C07248F
P 2700 2150
AR Path="/5C07248F" Ref="R?" Part="1"
AR Path="/5C06F581/5C07248F" Ref="RinA+1" Part="1"
AR Path="/5C0574B7/5C07248F" Ref="R?" Part="1"
F 0 "RinA+1" V 2907 2150 50 0000 C CNN
F 1 "10k" V 2816 2150 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2630 2150 50 0001 C CNN
F 3 "~" H 2700 2150 50 0001 C CNN
F 4 "Metallfilm" V 2700 2150 50 0001 C CNN "Notes"
1 2700 2150
0 -1 -1 0
$EndComp
Wire Wire Line
3000 2150 2950 2150
$Comp
L Device:R R?
U 1 1 5C072498
P 3300 1800
AR Path="/5C072498" Ref="R?" Part="1"
AR Path="/5C06F581/5C072498" Ref="Rfb2" Part="1"
AR Path="/5C0574B7/5C072498" Ref="R?" Part="1"
F 0 "Rfb2" V 3507 1800 50 0000 C CNN
F 1 "10k" V 3416 1800 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" V 3230 1800 50 0001 C CNN
F 3 "~" H 3300 1800 50 0001 C CNN
F 4 "Metallfilm" V 3300 1800 50 0001 C CNN "Notes"
1 3300 1800
0 -1 -1 0
$EndComp
Wire Wire Line
3600 2250 3600 1800
Wire Wire Line
3600 1800 3450 1800
Wire Wire Line
3150 1800 2950 1800
Wire Wire Line
2950 1800 2950 2150
Wire Wire Line
2950 2150 2850 2150
Connection ~ 2950 2150
Text Notes 3450 1800 0 50 ~ 0
v = -R2/R1
$Comp
L Device:R R?
U 1 1 5C0724AF
P 2500 2350
AR Path="/5C0724AF" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724AF" Ref="RinA-1" Part="1"
AR Path="/5C0574B7/5C0724AF" Ref="R?" Part="1"
F 0 "RinA-1" V 2707 2350 50 0000 C CNN
F 1 "10k" V 2616 2350 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2430 2350 50 0001 C CNN
F 3 "~" H 2500 2350 50 0001 C CNN
F 4 "Metallfilm" V 2500 2350 50 0001 C CNN "Notes"
1 2500 2350
0 -1 -1 0
$EndComp
$Comp
L Device:R R?
U 1 1 5C0724B7
P 2800 2750
AR Path="/5C0724B7" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724B7" Ref="RlowA1" Part="1"
AR Path="/5C0574B7/5C0724B7" Ref="R?" Part="1"
F 0 "RlowA1" V 3007 2750 50 0000 C CNN
F 1 "10k" V 2916 2750 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2730 2750 50 0001 C CNN
F 3 "~" H 2800 2750 50 0001 C CNN
F 4 "Metallfilm" V 2800 2750 50 0001 C CNN "Notes"
1 2800 2750
1 0 0 -1
$EndComp
Wire Wire Line
2650 2350 2800 2350
Connection ~ 2800 2350
Wire Wire Line
2800 2350 3000 2350
Wire Wire Line
1200 2150 2550 2150
Wire Wire Line
2350 2350 2250 2350
$Comp
L Device:R R?
U 1 1 5C0724C4
P 2250 2750
AR Path="/5C0724C4" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724C4" Ref="RgndA1" Part="1"
AR Path="/5C0574B7/5C0724C4" Ref="R?" Part="1"
F 0 "RgndA1" V 2457 2750 50 0000 C CNN
F 1 "10" V 2366 2750 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2180 2750 50 0001 C CNN
F 3 "~" H 2250 2750 50 0001 C CNN
F 4 "Metallfilm" V 2250 2750 50 0001 C CNN "Notes"
1 2250 2750
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C0724CB
P 2250 2900
AR Path="/5C0724CB" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0724CB" Ref="#PWR0102" Part="1"
AR Path="/5C0574B7/5C0724CB" Ref="#PWR?" Part="1"
F 0 "#PWR0102" H 2250 2650 50 0001 C CNN
F 1 "GNDA" H 2255 2727 50 0000 C CNN
F 2 "" H 2250 2900 50 0001 C CNN
F 3 "" H 2250 2900 50 0001 C CNN
1 2250 2900
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C0724D8
P 2800 2900
AR Path="/5C0724D8" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0724D8" Ref="#PWR0103" Part="1"
AR Path="/5C0574B7/5C0724D8" Ref="#PWR?" Part="1"
F 0 "#PWR0103" H 2800 2650 50 0001 C CNN
F 1 "GNDA" H 2805 2727 50 0000 C CNN
F 2 "" H 2800 2900 50 0001 C CNN
F 3 "" H 2800 2900 50 0001 C CNN
1 2800 2900
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x02_Male J?
U 1 1 5C0724DE
P 2050 2400
AR Path="/5C0724DE" Ref="J?" Part="1"
AR Path="/5C06F581/5C0724DE" Ref="J2" Part="1"
AR Path="/5C0574B7/5C0724DE" Ref="J?" Part="1"
F 0 "J2" H 2156 2578 50 0000 C CNN
F 1 "Jumper" H 2100 2250 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 2050 2400 50 0001 C CNN
F 3 "~" H 2050 2400 50 0001 C CNN
1 2050 2400
1 0 0 -1
$EndComp
Wire Wire Line
2250 2600 2250 2500
Wire Wire Line
2250 2400 2250 2350
Connection ~ 2250 2350
Wire Wire Line
2800 2350 2800 2600
$Comp
L Device:R R?
U 1 1 5C0724F2
P 2550 3750
AR Path="/5C0724F2" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724F2" Ref="RinB+1" Part="1"
AR Path="/5C0574B7/5C0724F2" Ref="R?" Part="1"
F 0 "RinB+1" V 2757 3750 50 0000 C CNN
F 1 "10k" V 2666 3750 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2480 3750 50 0001 C CNN
F 3 "~" H 2550 3750 50 0001 C CNN
F 4 "Metallfilm" V 2550 3750 50 0001 C CNN "Notes"
1 2550 3750
0 -1 -1 0
$EndComp
Wire Wire Line
3000 3400 2800 3400
Wire Wire Line
2800 3400 2800 3750
Wire Wire Line
2800 3750 2700 3750
Connection ~ 2800 3750
$Comp
L Device:R R?
U 1 1 5C0724FE
P 2350 3950
AR Path="/5C0724FE" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724FE" Ref="RinB-1" Part="1"
AR Path="/5C0574B7/5C0724FE" Ref="R?" Part="1"
F 0 "RinB-1" V 2557 3950 50 0000 C CNN
F 1 "10k" V 2466 3950 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2280 3950 50 0001 C CNN
F 3 "~" H 2350 3950 50 0001 C CNN
F 4 "Metallfilm" V 2350 3950 50 0001 C CNN "Notes"
1 2350 3950
0 -1 -1 0
$EndComp
$Comp
L Device:R R?
U 1 1 5C072506
P 2650 4350
AR Path="/5C072506" Ref="R?" Part="1"
AR Path="/5C06F581/5C072506" Ref="RlowB1" Part="1"
AR Path="/5C0574B7/5C072506" Ref="R?" Part="1"
F 0 "RlowB1" V 2857 4350 50 0000 C CNN
F 1 "10k" V 2766 4350 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2580 4350 50 0001 C CNN
F 3 "~" H 2650 4350 50 0001 C CNN
F 4 "Metallfilm" V 2650 4350 50 0001 C CNN "Notes"
1 2650 4350
1 0 0 -1
$EndComp
Wire Wire Line
2500 3950 2650 3950
Connection ~ 2650 3950
Wire Wire Line
1200 3750 2400 3750
Wire Wire Line
2200 3950 2100 3950
$Comp
L Device:R R?
U 1 1 5C072512
P 2100 4350
AR Path="/5C072512" Ref="R?" Part="1"
AR Path="/5C06F581/5C072512" Ref="RgndB1" Part="1"
AR Path="/5C0574B7/5C072512" Ref="R?" Part="1"
F 0 "RgndB1" V 2307 4350 50 0000 C CNN
F 1 "10" V 2216 4350 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2030 4350 50 0001 C CNN
F 3 "~" H 2100 4350 50 0001 C CNN
F 4 "Metallfilm" V 2100 4350 50 0001 C CNN "Notes"
1 2100 4350
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C072519
P 2100 4500
AR Path="/5C072519" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C072519" Ref="#PWR0104" Part="1"
AR Path="/5C0574B7/5C072519" Ref="#PWR?" Part="1"
F 0 "#PWR0104" H 2100 4250 50 0001 C CNN
F 1 "GNDA" H 2105 4327 50 0000 C CNN
F 2 "" H 2100 4500 50 0001 C CNN
F 3 "" H 2100 4500 50 0001 C CNN
1 2100 4500
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C07251F
P 2650 4500
AR Path="/5C07251F" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C07251F" Ref="#PWR0105" Part="1"
AR Path="/5C0574B7/5C07251F" Ref="#PWR?" Part="1"
F 0 "#PWR0105" H 2650 4250 50 0001 C CNN
F 1 "GNDA" H 2655 4327 50 0000 C CNN
F 2 "" H 2650 4500 50 0001 C CNN
F 3 "" H 2650 4500 50 0001 C CNN
1 2650 4500
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x02_Male J?
U 1 1 5C072525
P 1900 4000
AR Path="/5C072525" Ref="J?" Part="1"
AR Path="/5C06F581/5C072525" Ref="J1" Part="1"
AR Path="/5C0574B7/5C072525" Ref="J?" Part="1"
F 0 "J1" H 2006 4178 50 0000 C CNN
F 1 "Jumper" H 1950 3850 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 1900 4000 50 0001 C CNN
F 3 "~" H 1900 4000 50 0001 C CNN
1 1900 4000
1 0 0 -1
$EndComp
Wire Wire Line
2100 4200 2100 4100
Wire Wire Line
2100 4000 2100 3950
Connection ~ 2100 3950
Wire Wire Line
2650 3950 2650 4200
Wire Wire Line
2800 3750 3000 3750
Wire Wire Line
2650 3950 3000 3950
$Comp
L Device:R R?
U 1 1 5C072534
P 3150 3400
AR Path="/5C072534" Ref="R?" Part="1"
AR Path="/5C06F581/5C072534" Ref="Rfb1" Part="1"
AR Path="/5C0574B7/5C072534" Ref="R?" Part="1"
F 0 "Rfb1" V 3357 3400 50 0000 C CNN
F 1 "10k" V 3266 3400 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 3400 50 0001 C CNN
F 3 "~" H 3150 3400 50 0001 C CNN
F 4 "Metallfilm" V 3150 3400 50 0001 C CNN "Notes"
1 3150 3400
0 -1 -1 0
$EndComp
Wire Wire Line
3600 3850 3600 3400
Wire Wire Line
3600 3400 3300 3400
Text Notes 1550 2650 0 50 ~ 0
Connect for \nunbalanced\ninput signal
Connection ~ 3600 2250
$Comp
L Device:Opamp_Dual_Generic U?
U 1 1 5C07338E
P 3300 3850
AR Path="/5C07338E" Ref="U?" Part="3"
AR Path="/5C06F581/5C07338E" Ref="U1" Part="1"
AR Path="/5C0574B7/5C07338E" Ref="U?" Part="3"
F 0 "U1" H 3300 4000 50 0000 L CNN
F 1 "LM4562" H 3300 3700 50 0000 L CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 3300 3850 50 0001 C CNN
F 3 "~" H 3300 3850 50 0001 C CNN
1 3300 3850
1 0 0 -1
$EndComp
$Comp
L Device:C CU1+?
U 1 1 5C073395
P 900 1050
AR Path="/5C073395" Ref="CU1+?" Part="1"
AR Path="/5C06F581/5C073395" Ref="CU+1" Part="1"
AR Path="/5C0574B7/5C073395" Ref="CU1+?" Part="1"
F 0 "CU+1" H 550 1100 50 0000 L CNN
F 1 "100n" H 600 1000 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 938 900 50 0001 C CNN
F 3 "~" H 900 1050 50 0001 C CNN
1 900 1050
1 0 0 -1
$EndComp
Wire Wire Line
1100 1550 1100 1500
Wire Wire Line
1100 900 1100 850
$Comp
L power:GNDA #PWR?
U 1 1 5C0733A0
P 700 1200
AR Path="/5C0733A0" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0733A0" Ref="#PWR0106" Part="1"
AR Path="/5C0574B7/5C0733A0" Ref="#PWR?" Part="1"
F 0 "#PWR0106" H 700 950 50 0001 C CNN
F 1 "GNDA" H 705 1027 50 0000 C CNN
F 2 "" H 700 1200 50 0001 C CNN
F 3 "" H 700 1200 50 0001 C CNN
1 700 1200
1 0 0 -1
$EndComp
$Comp
L Device:C CU1-?
U 1 1 5C0733A6
P 900 1350
AR Path="/5C0733A6" Ref="CU1-?" Part="1"
AR Path="/5C06F581/5C0733A6" Ref="CU-1" Part="1"
AR Path="/5C0574B7/5C0733A6" Ref="CU1-?" Part="1"
F 0 "CU-1" H 600 1200 50 0000 L CNN
F 1 "100n" H 650 1100 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 938 1200 50 0001 C CNN
F 3 "~" H 900 1350 50 0001 C CNN
1 900 1350
1 0 0 -1
$EndComp
Wire Wire Line
900 1500 1100 1500
Wire Wire Line
700 1200 900 1200
Connection ~ 900 1200
Wire Wire Line
900 900 1100 900
$Comp
L power:+15V #PWR?
U 1 1 5C0733B1
P 1100 850
AR Path="/5C0733B1" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0733B1" Ref="#PWR0107" Part="1"
AR Path="/5C0574B7/5C0733B1" Ref="#PWR?" Part="1"
F 0 "#PWR0107" H 1100 700 50 0001 C CNN
F 1 "+15V" H 1115 1023 50 0000 C CNN
F 2 "" H 1100 850 50 0001 C CNN
F 3 "" H 1100 850 50 0001 C CNN
1 1100 850
1 0 0 -1
$EndComp
$Comp
L power:-15V #PWR?
U 1 1 5C0733B7
P 1100 1550
AR Path="/5C0733B7" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0733B7" Ref="#PWR0108" Part="1"
AR Path="/5C0574B7/5C0733B7" Ref="#PWR?" Part="1"
F 0 "#PWR0108" H 1100 1650 50 0001 C CNN
F 1 "-15V" H 1115 1723 50 0000 C CNN
F 2 "" H 1100 1550 50 0001 C CNN
F 3 "" H 1100 1550 50 0001 C CNN
1 1100 1550
-1 0 0 1
$EndComp
Text HLabel 4350 2250 2 50 Output ~ 0
outA
Wire Wire Line
3600 2250 4350 2250
Text HLabel 4350 3850 2 50 Output ~ 0
outB
Wire Wire Line
4350 3850 3600 3850
Text HLabel 1200 2150 0 50 Input ~ 0
inA+
Text HLabel 1200 3750 0 50 Input ~ 0
inB+
Text HLabel 1200 2350 0 50 Input ~ 0
inA-
Text HLabel 1200 3950 0 50 Input ~ 0
inB-
Wire Wire Line
1200 3950 2100 3950
Wire Wire Line
1200 2350 2250 2350
Text Notes 1350 4250 0 50 ~ 0
Connect for \nunbalanced\ninput signal
Connection ~ 3600 3850
Connection ~ 1100 900
Connection ~ 1100 1500
$Comp
L power:GNDA #PWR?
U 1 1 5C056CB6
P 2300 1300
AR Path="/5C056CB6" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C056CB6" Ref="#PWR0101" Part="1"
AR Path="/5C0574B7/5C056CB6" Ref="#PWR?" Part="1"
F 0 "#PWR0101" H 2300 1050 50 0001 C CNN
F 1 "GNDA" H 2305 1127 50 0000 C CNN
F 2 "" H 2300 1300 50 0001 C CNN
F 3 "" H 2300 1300 50 0001 C CNN
1 2300 1300
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male JGND1
U 1 1 5C056E2C
P 1950 1300
F 0 "JGND1" H 2056 1478 50 0000 C CNN
F 1 "Conn_gnd" H 2056 1387 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1950 1300 50 0001 C CNN
F 3 "~" H 1950 1300 50 0001 C CNN
1 1950 1300
1 0 0 -1
$EndComp
Wire Wire Line
2300 1300 2150 1300
$Comp
L Connector:Conn_01x01_Male JGND2
U 1 1 5C0576D0
P 1950 1600
F 0 "JGND2" H 2056 1778 50 0000 C CNN
F 1 "Conn_gnd" H 2056 1687 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1950 1600 50 0001 C CNN
F 3 "~" H 1950 1600 50 0001 C CNN
1 1950 1600
1 0 0 -1
$EndComp
Wire Wire Line
2300 1600 2150 1600
$Comp
L power:GNDA #PWR?
U 1 1 5C0576CA
P 2300 1600
AR Path="/5C0576CA" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0576CA" Ref="#PWR0109" Part="1"
AR Path="/5C0574B7/5C0576CA" Ref="#PWR?" Part="1"
F 0 "#PWR0109" H 2300 1350 50 0001 C CNN
F 1 "GNDA" H 2305 1427 50 0000 C CNN
F 2 "" H 2300 1600 50 0001 C CNN
F 3 "" H 2300 1600 50 0001 C CNN
1 2300 1600
1 0 0 -1
$EndComp
$EndSCHEMATC

View File

@ -1,546 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixerinput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 2 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Device:Opamp_Dual_Generic U?
U 2 1 5C072472
P 3300 2250
AR Path="/5C072472" Ref="U?" Part="1"
AR Path="/5C06F581/5C072472" Ref="U1" Part="2"
AR Path="/5C0574B7/5C072472" Ref="U?" Part="1"
AR Path="/5C05A497/5C072472" Ref="U2" Part="2"
F 0 "U1" H 3300 1883 50 0000 C CNN
F 1 "LM4562" H 3300 1974 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 3300 2250 50 0001 C CNN
F 3 "~" H 3300 2250 50 0001 C CNN
2 3300 2250
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 3 1 5C072479
P 1200 1200
AR Path="/5C072479" Ref="U?" Part="2"
AR Path="/5C06F581/5C072479" Ref="U1" Part="3"
AR Path="/5C0574B7/5C072479" Ref="U?" Part="2"
AR Path="/5C05A497/5C072479" Ref="U2" Part="1"
F 0 "U1" H 1250 1000 50 0000 C CNN
F 1 "LM4562" H 1300 1100 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 1200 1200 50 0001 C CNN
F 3 "~" H 1200 1200 50 0001 C CNN
3 1200 1200
1 0 0 1
$EndComp
$Comp
L Device:R R?
U 1 1 5C07248F
P 2700 2150
AR Path="/5C07248F" Ref="R?" Part="1"
AR Path="/5C06F581/5C07248F" Ref="RinA+1" Part="1"
AR Path="/5C0574B7/5C07248F" Ref="R?" Part="1"
AR Path="/5C05A497/5C07248F" Ref="RinA+2" Part="1"
F 0 "RinA+1" V 2907 2150 50 0000 C CNN
F 1 "10k" V 2816 2150 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2630 2150 50 0001 C CNN
F 3 "~" H 2700 2150 50 0001 C CNN
F 4 "Metallfilm" V 2700 2150 50 0001 C CNN "Notes"
1 2700 2150
0 -1 -1 0
$EndComp
Wire Wire Line
3000 2150 2950 2150
$Comp
L Device:R R?
U 1 1 5C072498
P 3300 1800
AR Path="/5C072498" Ref="R?" Part="1"
AR Path="/5C06F581/5C072498" Ref="Rfb2" Part="1"
AR Path="/5C0574B7/5C072498" Ref="R?" Part="1"
AR Path="/5C05A497/5C072498" Ref="Rfb4" Part="1"
F 0 "Rfb2" V 3507 1800 50 0000 C CNN
F 1 "10k" V 3416 1800 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" V 3230 1800 50 0001 C CNN
F 3 "~" H 3300 1800 50 0001 C CNN
F 4 "Metallfilm" V 3300 1800 50 0001 C CNN "Notes"
1 3300 1800
0 -1 -1 0
$EndComp
Wire Wire Line
3600 2250 3600 1800
Wire Wire Line
3600 1800 3450 1800
Wire Wire Line
3150 1800 2950 1800
Wire Wire Line
2950 1800 2950 2150
Wire Wire Line
2950 2150 2850 2150
Connection ~ 2950 2150
Text Notes 3450 1800 0 50 ~ 0
v = -R2/R1
$Comp
L Device:R R?
U 1 1 5C0724AF
P 2500 2350
AR Path="/5C0724AF" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724AF" Ref="RinA-1" Part="1"
AR Path="/5C0574B7/5C0724AF" Ref="R?" Part="1"
AR Path="/5C05A497/5C0724AF" Ref="RinA-2" Part="1"
F 0 "RinA-1" V 2707 2350 50 0000 C CNN
F 1 "10k" V 2616 2350 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2430 2350 50 0001 C CNN
F 3 "~" H 2500 2350 50 0001 C CNN
F 4 "Metallfilm" V 2500 2350 50 0001 C CNN "Notes"
1 2500 2350
0 -1 -1 0
$EndComp
$Comp
L Device:R R?
U 1 1 5C0724B7
P 2800 2750
AR Path="/5C0724B7" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724B7" Ref="RlowA1" Part="1"
AR Path="/5C0574B7/5C0724B7" Ref="R?" Part="1"
AR Path="/5C05A497/5C0724B7" Ref="RlowA2" Part="1"
F 0 "RlowA1" V 3007 2750 50 0000 C CNN
F 1 "10k" V 2916 2750 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2730 2750 50 0001 C CNN
F 3 "~" H 2800 2750 50 0001 C CNN
F 4 "Metallfilm" V 2800 2750 50 0001 C CNN "Notes"
1 2800 2750
1 0 0 -1
$EndComp
Wire Wire Line
2650 2350 2800 2350
Connection ~ 2800 2350
Wire Wire Line
2800 2350 3000 2350
Wire Wire Line
1200 2150 2550 2150
Wire Wire Line
2350 2350 2250 2350
$Comp
L Device:R R?
U 1 1 5C0724C4
P 2250 2750
AR Path="/5C0724C4" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724C4" Ref="RgndA1" Part="1"
AR Path="/5C0574B7/5C0724C4" Ref="R?" Part="1"
AR Path="/5C05A497/5C0724C4" Ref="RgndA2" Part="1"
F 0 "RgndA1" V 2457 2750 50 0000 C CNN
F 1 "10" V 2366 2750 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2180 2750 50 0001 C CNN
F 3 "~" H 2250 2750 50 0001 C CNN
F 4 "Metallfilm" V 2250 2750 50 0001 C CNN "Notes"
1 2250 2750
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C0724CB
P 2250 2900
AR Path="/5C0724CB" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0724CB" Ref="#PWR0102" Part="1"
AR Path="/5C0574B7/5C0724CB" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C0724CB" Ref="#PWR0110" Part="1"
F 0 "#PWR0102" H 2250 2650 50 0001 C CNN
F 1 "GNDA" H 2255 2727 50 0000 C CNN
F 2 "" H 2250 2900 50 0001 C CNN
F 3 "" H 2250 2900 50 0001 C CNN
1 2250 2900
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C0724D8
P 2800 2900
AR Path="/5C0724D8" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0724D8" Ref="#PWR0103" Part="1"
AR Path="/5C0574B7/5C0724D8" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C0724D8" Ref="#PWR0111" Part="1"
F 0 "#PWR0103" H 2800 2650 50 0001 C CNN
F 1 "GNDA" H 2805 2727 50 0000 C CNN
F 2 "" H 2800 2900 50 0001 C CNN
F 3 "" H 2800 2900 50 0001 C CNN
1 2800 2900
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x02_Male J?
U 1 1 5C0724DE
P 2050 2400
AR Path="/5C0724DE" Ref="J?" Part="1"
AR Path="/5C06F581/5C0724DE" Ref="J2" Part="1"
AR Path="/5C0574B7/5C0724DE" Ref="J?" Part="1"
AR Path="/5C05A497/5C0724DE" Ref="J4" Part="1"
F 0 "J2" H 2156 2578 50 0000 C CNN
F 1 "Jumper" H 2100 2250 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 2050 2400 50 0001 C CNN
F 3 "~" H 2050 2400 50 0001 C CNN
1 2050 2400
1 0 0 -1
$EndComp
Wire Wire Line
2250 2600 2250 2500
Wire Wire Line
2250 2400 2250 2350
Connection ~ 2250 2350
Wire Wire Line
2800 2350 2800 2600
$Comp
L Device:R R?
U 1 1 5C0724F2
P 2550 3750
AR Path="/5C0724F2" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724F2" Ref="RinB+1" Part="1"
AR Path="/5C0574B7/5C0724F2" Ref="R?" Part="1"
AR Path="/5C05A497/5C0724F2" Ref="RinB+2" Part="1"
F 0 "RinB+1" V 2757 3750 50 0000 C CNN
F 1 "10k" V 2666 3750 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2480 3750 50 0001 C CNN
F 3 "~" H 2550 3750 50 0001 C CNN
F 4 "Metallfilm" V 2550 3750 50 0001 C CNN "Notes"
1 2550 3750
0 -1 -1 0
$EndComp
Wire Wire Line
3000 3400 2800 3400
Wire Wire Line
2800 3400 2800 3750
Wire Wire Line
2800 3750 2700 3750
Connection ~ 2800 3750
$Comp
L Device:R R?
U 1 1 5C0724FE
P 2350 3950
AR Path="/5C0724FE" Ref="R?" Part="1"
AR Path="/5C06F581/5C0724FE" Ref="RinB-1" Part="1"
AR Path="/5C0574B7/5C0724FE" Ref="R?" Part="1"
AR Path="/5C05A497/5C0724FE" Ref="RinB-2" Part="1"
F 0 "RinB-1" V 2557 3950 50 0000 C CNN
F 1 "10k" V 2466 3950 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2280 3950 50 0001 C CNN
F 3 "~" H 2350 3950 50 0001 C CNN
F 4 "Metallfilm" V 2350 3950 50 0001 C CNN "Notes"
1 2350 3950
0 -1 -1 0
$EndComp
$Comp
L Device:R R?
U 1 1 5C072506
P 2650 4350
AR Path="/5C072506" Ref="R?" Part="1"
AR Path="/5C06F581/5C072506" Ref="RlowB1" Part="1"
AR Path="/5C0574B7/5C072506" Ref="R?" Part="1"
AR Path="/5C05A497/5C072506" Ref="RlowB2" Part="1"
F 0 "RlowB1" V 2857 4350 50 0000 C CNN
F 1 "10k" V 2766 4350 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2580 4350 50 0001 C CNN
F 3 "~" H 2650 4350 50 0001 C CNN
F 4 "Metallfilm" V 2650 4350 50 0001 C CNN "Notes"
1 2650 4350
1 0 0 -1
$EndComp
Wire Wire Line
2500 3950 2650 3950
Connection ~ 2650 3950
Wire Wire Line
1200 3750 2400 3750
Wire Wire Line
2200 3950 2100 3950
$Comp
L Device:R R?
U 1 1 5C072512
P 2100 4350
AR Path="/5C072512" Ref="R?" Part="1"
AR Path="/5C06F581/5C072512" Ref="RgndB1" Part="1"
AR Path="/5C0574B7/5C072512" Ref="R?" Part="1"
AR Path="/5C05A497/5C072512" Ref="RgndB2" Part="1"
F 0 "RgndB1" V 2307 4350 50 0000 C CNN
F 1 "10" V 2216 4350 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2030 4350 50 0001 C CNN
F 3 "~" H 2100 4350 50 0001 C CNN
F 4 "Metallfilm" V 2100 4350 50 0001 C CNN "Notes"
1 2100 4350
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C072519
P 2100 4500
AR Path="/5C072519" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C072519" Ref="#PWR0104" Part="1"
AR Path="/5C0574B7/5C072519" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C072519" Ref="#PWR0112" Part="1"
F 0 "#PWR0104" H 2100 4250 50 0001 C CNN
F 1 "GNDA" H 2105 4327 50 0000 C CNN
F 2 "" H 2100 4500 50 0001 C CNN
F 3 "" H 2100 4500 50 0001 C CNN
1 2100 4500
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C07251F
P 2650 4500
AR Path="/5C07251F" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C07251F" Ref="#PWR0105" Part="1"
AR Path="/5C0574B7/5C07251F" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C07251F" Ref="#PWR0113" Part="1"
F 0 "#PWR0105" H 2650 4250 50 0001 C CNN
F 1 "GNDA" H 2655 4327 50 0000 C CNN
F 2 "" H 2650 4500 50 0001 C CNN
F 3 "" H 2650 4500 50 0001 C CNN
1 2650 4500
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x02_Male J?
U 1 1 5C072525
P 1900 4000
AR Path="/5C072525" Ref="J?" Part="1"
AR Path="/5C06F581/5C072525" Ref="J1" Part="1"
AR Path="/5C0574B7/5C072525" Ref="J?" Part="1"
AR Path="/5C05A497/5C072525" Ref="J3" Part="1"
F 0 "J1" H 2006 4178 50 0000 C CNN
F 1 "Jumper" H 1950 3850 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 1900 4000 50 0001 C CNN
F 3 "~" H 1900 4000 50 0001 C CNN
1 1900 4000
1 0 0 -1
$EndComp
Wire Wire Line
2100 4200 2100 4100
Wire Wire Line
2100 4000 2100 3950
Connection ~ 2100 3950
Wire Wire Line
2650 3950 2650 4200
Wire Wire Line
2800 3750 3000 3750
Wire Wire Line
2650 3950 3000 3950
$Comp
L Device:R R?
U 1 1 5C072534
P 3150 3400
AR Path="/5C072534" Ref="R?" Part="1"
AR Path="/5C06F581/5C072534" Ref="Rfb1" Part="1"
AR Path="/5C0574B7/5C072534" Ref="R?" Part="1"
AR Path="/5C05A497/5C072534" Ref="Rfb3" Part="1"
F 0 "Rfb1" V 3357 3400 50 0000 C CNN
F 1 "10k" V 3266 3400 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 3400 50 0001 C CNN
F 3 "~" H 3150 3400 50 0001 C CNN
F 4 "Metallfilm" V 3150 3400 50 0001 C CNN "Notes"
1 3150 3400
0 -1 -1 0
$EndComp
Wire Wire Line
3600 3850 3600 3400
Wire Wire Line
3600 3400 3300 3400
Text Notes 1550 2650 0 50 ~ 0
Connect for \nunbalanced\ninput signal
Connection ~ 3600 2250
$Comp
L Device:Opamp_Dual_Generic U?
U 1 1 5C07338E
P 3300 3850
AR Path="/5C07338E" Ref="U?" Part="3"
AR Path="/5C06F581/5C07338E" Ref="U1" Part="1"
AR Path="/5C0574B7/5C07338E" Ref="U?" Part="3"
AR Path="/5C05A497/5C07338E" Ref="U2" Part="3"
F 0 "U1" H 3300 4000 50 0000 L CNN
F 1 "LM4562" H 3300 3700 50 0000 L CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 3300 3850 50 0001 C CNN
F 3 "~" H 3300 3850 50 0001 C CNN
1 3300 3850
1 0 0 -1
$EndComp
$Comp
L Device:C CU1+?
U 1 1 5C073395
P 900 1050
AR Path="/5C073395" Ref="CU1+?" Part="1"
AR Path="/5C06F581/5C073395" Ref="CU+1" Part="1"
AR Path="/5C0574B7/5C073395" Ref="CU1+?" Part="1"
AR Path="/5C05A497/5C073395" Ref="CU+2" Part="1"
F 0 "CU+1" H 550 1100 50 0000 L CNN
F 1 "100n" H 600 1000 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 938 900 50 0001 C CNN
F 3 "~" H 900 1050 50 0001 C CNN
1 900 1050
1 0 0 -1
$EndComp
Wire Wire Line
1100 1550 1100 1500
Wire Wire Line
1100 900 1100 850
$Comp
L power:GNDA #PWR?
U 1 1 5C0733A0
P 700 1200
AR Path="/5C0733A0" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0733A0" Ref="#PWR0106" Part="1"
AR Path="/5C0574B7/5C0733A0" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C0733A0" Ref="#PWR0114" Part="1"
F 0 "#PWR0106" H 700 950 50 0001 C CNN
F 1 "GNDA" H 705 1027 50 0000 C CNN
F 2 "" H 700 1200 50 0001 C CNN
F 3 "" H 700 1200 50 0001 C CNN
1 700 1200
1 0 0 -1
$EndComp
$Comp
L Device:C CU1-?
U 1 1 5C0733A6
P 900 1350
AR Path="/5C0733A6" Ref="CU1-?" Part="1"
AR Path="/5C06F581/5C0733A6" Ref="CU-1" Part="1"
AR Path="/5C0574B7/5C0733A6" Ref="CU1-?" Part="1"
AR Path="/5C05A497/5C0733A6" Ref="CU-2" Part="1"
F 0 "CU-1" H 600 1200 50 0000 L CNN
F 1 "100n" H 650 1100 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 938 1200 50 0001 C CNN
F 3 "~" H 900 1350 50 0001 C CNN
1 900 1350
1 0 0 -1
$EndComp
Wire Wire Line
900 1500 1100 1500
Wire Wire Line
700 1200 900 1200
Connection ~ 900 1200
Wire Wire Line
900 900 1100 900
$Comp
L power:+15V #PWR?
U 1 1 5C0733B1
P 1100 850
AR Path="/5C0733B1" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0733B1" Ref="#PWR0107" Part="1"
AR Path="/5C0574B7/5C0733B1" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C0733B1" Ref="#PWR0115" Part="1"
F 0 "#PWR0107" H 1100 700 50 0001 C CNN
F 1 "+15V" H 1115 1023 50 0000 C CNN
F 2 "" H 1100 850 50 0001 C CNN
F 3 "" H 1100 850 50 0001 C CNN
1 1100 850
1 0 0 -1
$EndComp
$Comp
L power:-15V #PWR?
U 1 1 5C0733B7
P 1100 1550
AR Path="/5C0733B7" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0733B7" Ref="#PWR0108" Part="1"
AR Path="/5C0574B7/5C0733B7" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C0733B7" Ref="#PWR0116" Part="1"
F 0 "#PWR0108" H 1100 1650 50 0001 C CNN
F 1 "-15V" H 1115 1723 50 0000 C CNN
F 2 "" H 1100 1550 50 0001 C CNN
F 3 "" H 1100 1550 50 0001 C CNN
1 1100 1550
-1 0 0 1
$EndComp
Text HLabel 4350 2250 2 50 Output ~ 0
outA
Wire Wire Line
3600 2250 4350 2250
Text HLabel 4350 3850 2 50 Output ~ 0
outB
Wire Wire Line
4350 3850 3600 3850
Text HLabel 1200 2150 0 50 Input ~ 0
inA+
Text HLabel 1200 3750 0 50 Input ~ 0
inB+
Text HLabel 1200 2350 0 50 Input ~ 0
inA-
Text HLabel 1200 3950 0 50 Input ~ 0
inB-
Wire Wire Line
1200 3950 2100 3950
Wire Wire Line
1200 2350 2250 2350
Text Notes 1350 4250 0 50 ~ 0
Connect for \nunbalanced\ninput signal
Connection ~ 3600 3850
Connection ~ 1100 900
Connection ~ 1100 1500
$Comp
L power:GNDA #PWR?
U 1 1 5C056CB6
P 2300 1300
AR Path="/5C056CB6" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C056CB6" Ref="#PWR0101" Part="1"
AR Path="/5C0574B7/5C056CB6" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C056CB6" Ref="#PWR0117" Part="1"
F 0 "#PWR0101" H 2300 1050 50 0001 C CNN
F 1 "GNDA" H 2305 1127 50 0000 C CNN
F 2 "" H 2300 1300 50 0001 C CNN
F 3 "" H 2300 1300 50 0001 C CNN
1 2300 1300
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male JGND1
U 1 1 5C056E2C
P 1950 1300
AR Path="/5C06F581/5C056E2C" Ref="JGND1" Part="1"
AR Path="/5C05A497/5C056E2C" Ref="JGND3" Part="1"
F 0 "JGND1" H 2056 1478 50 0000 C CNN
F 1 "Conn_gnd" H 2056 1387 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1950 1300 50 0001 C CNN
F 3 "~" H 1950 1300 50 0001 C CNN
1 1950 1300
1 0 0 -1
$EndComp
Wire Wire Line
2300 1300 2150 1300
$Comp
L Connector:Conn_01x01_Male JGND2
U 1 1 5C0576D0
P 1950 1600
AR Path="/5C06F581/5C0576D0" Ref="JGND2" Part="1"
AR Path="/5C05A497/5C0576D0" Ref="JGND4" Part="1"
F 0 "JGND2" H 2056 1778 50 0000 C CNN
F 1 "Conn_gnd" H 2056 1687 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1950 1600 50 0001 C CNN
F 3 "~" H 1950 1600 50 0001 C CNN
1 1950 1600
1 0 0 -1
$EndComp
Wire Wire Line
2300 1600 2150 1600
$Comp
L power:GNDA #PWR?
U 1 1 5C0576CA
P 2300 1600
AR Path="/5C0576CA" Ref="#PWR?" Part="1"
AR Path="/5C06F581/5C0576CA" Ref="#PWR0109" Part="1"
AR Path="/5C0574B7/5C0576CA" Ref="#PWR?" Part="1"
AR Path="/5C05A497/5C0576CA" Ref="#PWR0118" Part="1"
F 0 "#PWR0109" H 2300 1350 50 0001 C CNN
F 1 "GNDA" H 2305 1427 50 0000 C CNN
F 2 "" H 2300 1600 50 0001 C CNN
F 3 "" H 2300 1600 50 0001 C CNN
1 2300 1600
1 0 0 -1
$EndComp
$EndSCHEMATC

View File

@ -1,204 +0,0 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# Connector_Conn_01x01_Male
#
DEF Connector_Conn_01x01_Male J 0 40 Y N 1 F N
F0 "J" 0 100 50 H V C CNN
F1 "Connector_Conn_01x01_Male" 0 -100 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*
$ENDFPLIST
DRAW
S 34 5 0 -5 1 1 6 F
P 2 1 1 6 50 0 34 0 N
X Pin_1 1 200 0 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Conn_01x02_Male
#
DEF Connector_Conn_01x02_Male J 0 40 Y N 1 F N
F0 "J" 0 100 50 H V C CNN
F1 "Connector_Conn_01x02_Male" 0 -200 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_1x??_*
$ENDFPLIST
DRAW
S 34 -95 0 -105 1 1 6 F
S 34 5 0 -5 1 1 6 F
P 2 1 1 6 50 -100 34 -100 N
P 2 1 1 6 50 0 34 0 N
X Pin_1 1 200 0 150 L 50 50 1 1 P
X Pin_2 2 200 -100 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Conn_01x06_Male
#
DEF Connector_Conn_01x06_Male J 0 40 Y N 1 F N
F0 "J" 0 300 50 H V C CNN
F1 "Connector_Conn_01x06_Male" 0 -400 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_1x??_*
$ENDFPLIST
DRAW
S 34 -295 0 -305 1 1 6 F
S 34 -195 0 -205 1 1 6 F
S 34 -95 0 -105 1 1 6 F
S 34 5 0 -5 1 1 6 F
S 34 105 0 95 1 1 6 F
S 34 205 0 195 1 1 6 F
P 2 1 1 6 50 -300 34 -300 N
P 2 1 1 6 50 -200 34 -200 N
P 2 1 1 6 50 -100 34 -100 N
P 2 1 1 6 50 0 34 0 N
P 2 1 1 6 50 100 34 100 N
P 2 1 1 6 50 200 34 200 N
X Pin_1 1 200 200 150 L 50 50 1 1 P
X Pin_2 2 200 100 150 L 50 50 1 1 P
X Pin_3 3 200 0 150 L 50 50 1 1 P
X Pin_4 4 200 -100 150 L 50 50 1 1 P
X Pin_5 5 200 -200 150 L 50 50 1 1 P
X Pin_6 6 200 -300 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Conn_Coaxial
#
DEF Connector_Conn_Coaxial J 0 40 Y N 1 F N
F0 "J" 10 120 50 H V C CNN
F1 "Connector_Conn_Coaxial" 115 0 50 V V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
*BNC*
*SMA*
*SMB*
*SMC*
*Cinch*
$ENDFPLIST
DRAW
A -2 0 71 1636 0 0 1 10 N -70 20 70 0
A -1 0 71 0 -1638 0 1 10 N 70 0 -70 -20
C 0 0 20 0 1 8 N
P 2 0 1 0 -100 0 -20 0 N
P 2 0 1 0 0 -100 0 -70 N
X In 1 -200 0 100 R 50 50 1 1 P
X Ext 2 0 -200 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_C
#
DEF Device_C C 0 10 N Y 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "Device_C" 25 -100 50 H V L CNN
F2 "" 38 -150 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
C_*
$ENDFPLIST
DRAW
P 2 0 1 20 -80 -30 80 -30 N
P 2 0 1 20 -80 30 80 30 N
X ~ 1 0 150 110 D 50 50 1 1 P
X ~ 2 0 -150 110 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_Opamp_Dual_Generic
#
DEF Device_Opamp_Dual_Generic U 0 20 Y Y 3 F N
F0 "U" 0 200 50 H V L CNN
F1 "Device_Opamp_Dual_Generic" 0 -200 50 H V L CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
SOIC*3.9x4.9mm*P1.27mm*
DIP*W7.62mm*
MSOP*3x3mm*P0.65mm*
SSOP*2.95x2.8mm*P0.65mm*
TSSOP*3x3mm*P0.65mm*
VSSOP*P0.5mm*
TO?99*
$ENDFPLIST
DRAW
P 4 1 1 10 -200 200 200 0 -200 -200 -200 200 f
P 4 2 1 10 -200 200 200 0 -200 -200 -200 200 f
X ~ 1 300 0 100 L 50 50 1 1 O
X - 2 -300 -100 100 R 50 50 1 1 I
X + 3 -300 100 100 R 50 50 1 1 I
X + 5 -300 100 100 R 50 50 2 1 I
X - 6 -300 -100 100 R 50 50 2 1 I
X ~ 7 300 0 100 L 50 50 2 1 O
X V- 4 -100 -300 150 U 50 50 3 1 W
X V+ 8 -100 300 150 D 50 50 3 1 W
ENDDRAW
ENDDEF
#
# Device_R
#
DEF Device_R R 0 0 N Y 1 F N
F0 "R" 80 0 50 V V C CNN
F1 "Device_R" 0 0 50 V V C CNN
F2 "" -70 0 50 V I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
R_*
$ENDFPLIST
DRAW
S -40 -100 40 100 0 1 10 N
X ~ 1 0 150 50 D 50 50 1 1 P
X ~ 2 0 -150 50 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# power_+15V
#
DEF power_+15V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_+15V" 0 140 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +15V 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# power_-15V
#
DEF power_-15V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 100 50 H I C CNN
F1 "power_-15V" 0 150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 50 30 50 0 100 -30 50 0 50 F
X -15V 1 0 0 0 U 50 50 0 0 W N
ENDDRAW
ENDDEF
#
# power_GNDA
#
DEF power_GNDA #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "power_GNDA" 0 -150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
X GNDA 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
#End Library

View File

@ -1,166 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixerinput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L power:GNDA #PWR05
U 1 1 5BB76D79
P 1600 1250
F 0 "#PWR05" H 1600 1000 50 0001 C CNN
F 1 "GNDA" H 1605 1077 50 0000 C CNN
F 2 "" H 1600 1250 50 0001 C CNN
F 3 "" H 1600 1250 50 0001 C CNN
1 1600 1250
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_Coaxial J1A1
U 1 1 5BC9D135
P 2650 1350
F 0 "J1A1" H 2800 1350 50 0000 C CNN
F 1 "Audio In 1 A" H 2950 1450 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 2650 1350 50 0001 C CNN
F 3 " ~" H 2650 1350 50 0001 C CNN
1 2650 1350
-1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male J1AO1
U 1 1 5BCCAE6C
P 4350 1350
F 0 "J1AO1" H 4322 1280 50 0000 R CNN
F 1 "toInVolume" H 4322 1371 50 0000 R CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 4350 1350 50 0001 C CNN
F 3 "~" H 4350 1350 50 0001 C CNN
1 4350 1350
-1 0 0 1
$EndComp
$Comp
L Connector:Conn_Coaxial J1B1
U 1 1 5BCB9F7A
P 2650 1700
F 0 "J1B1" H 2800 1700 50 0000 C CNN
F 1 "Audio In 1 B" H 2950 1800 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 2650 1700 50 0001 C CNN
F 3 " ~" H 2650 1700 50 0001 C CNN
1 2650 1700
-1 0 0 -1
$EndComp
$Comp
L power:+15V #PWR03
U 1 1 5BD51931
P 1350 950
F 0 "#PWR03" H 1350 800 50 0001 C CNN
F 1 "+15V" H 1365 1123 50 0000 C CNN
F 2 "" H 1350 950 50 0001 C CNN
F 3 "" H 1350 950 50 0001 C CNN
1 1350 950
1 0 0 -1
$EndComp
$Comp
L power:-15V #PWR04
U 1 1 5BD51A6A
P 1350 1450
F 0 "#PWR04" H 1350 1550 50 0001 C CNN
F 1 "-15V" H 1365 1623 50 0000 C CNN
F 2 "" H 1350 1450 50 0001 C CNN
F 3 "" H 1350 1450 50 0001 C CNN
1 1350 1450
-1 0 0 1
$EndComp
$Comp
L Connector:Conn_01x06_Male JPWRin1
U 1 1 5BD53C35
P 850 1150
F 0 "JPWRin1" H 956 1528 50 0000 C CNN
F 1 "+-15V In" H 956 1437 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" H 850 1150 50 0001 C CNN
F 3 "~" H 850 1150 50 0001 C CNN
1 850 1150
1 0 0 -1
$EndComp
Wire Wire Line
1350 1450 1100 1450
Wire Wire Line
1050 1350 1100 1350
Wire Wire Line
1100 1350 1100 1450
Connection ~ 1100 1450
Wire Wire Line
1100 1450 1050 1450
Wire Wire Line
1350 950 1150 950
Wire Wire Line
1150 950 1150 1050
Wire Wire Line
1150 1050 1050 1050
Connection ~ 1150 950
Wire Wire Line
1150 950 1050 950
Wire Wire Line
1050 1250 1150 1250
Wire Wire Line
1050 1150 1150 1150
Wire Wire Line
1150 1150 1150 1250
Connection ~ 1150 1250
Wire Wire Line
1150 1250 1600 1250
$Sheet
S 3200 1250 700 650
U 5C06F581
F0 "input1" 50
F1 "inputbuffer.sch" 50
F2 "outA" O R 3900 1350 50
F3 "outB" O R 3900 1800 50
F4 "inA+" I L 3200 1350 50
F5 "inB+" I L 3200 1700 50
F6 "inA-" I L 3200 1450 50
F7 "inB-" I L 3200 1800 50
$EndSheet
Wire Wire Line
2850 1350 3200 1350
Wire Wire Line
3200 1450 2900 1450
Wire Wire Line
2900 1450 2900 1550
Wire Wire Line
2900 1550 2650 1550
Wire Wire Line
2850 1700 3200 1700
Wire Wire Line
3200 1800 2900 1800
Wire Wire Line
2900 1800 2900 1900
Wire Wire Line
2900 1900 2650 1900
Wire Wire Line
4150 1350 3900 1350
$Comp
L Connector:Conn_01x01_Male J1BO1
U 1 1 5C08C061
P 4350 1800
F 0 "J1BO1" H 4322 1730 50 0000 R CNN
F 1 "toInVolume" H 4322 1821 50 0000 R CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 4350 1800 50 0001 C CNN
F 3 "~" H 4350 1800 50 0001 C CNN
1 4350 1800
-1 0 0 1
$EndComp
Wire Wire Line
4150 1800 3900 1800
Text Notes 2450 850 0 50 ~ 0
TODO:\nstrom connector +-15V ggf anders machen für input und output board
$EndSCHEMATC

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,369 +0,0 @@
(export (version D)
(design
(source /media/fisch/HDD/Projects/mixer/schematic/mixerinput/mixerinput.sch)
(date "Mo 03 Dez 2018 18:54:12 CET")
(tool "Eeschema 5.0.2-bee76a0~70~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source mixerinput.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /input1/) (tstamps /5C06F581/)
(title_block
(title)
(company)
(rev)
(date)
(source inputbuffer.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1A1)
(value "Audio In 1 A")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BC9D135))
(comp (ref J1AO1)
(value toInVolume)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BCCAE6C))
(comp (ref J1B1)
(value "Audio In 1 B")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BCB9F7A))
(comp (ref JPWRin1)
(value "+-15V In")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Male) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BD53C35))
(comp (ref J1BO1)
(value toInVolume)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C08C061))
(comp (ref U1)
(value LM4562)
(footprint Package_DIP:DIP-8_W7.62mm)
(libsource (lib Device) (part Opamp_Dual_Generic) (description "Dual operational amplifier"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C072472))
(comp (ref RinA+1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C07248F))
(comp (ref Rfb2)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C072498))
(comp (ref RinA-1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0724AF))
(comp (ref RlowA1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0724B7))
(comp (ref RgndA1)
(value 10)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0724C4))
(comp (ref J2)
(value Jumper)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0724DE))
(comp (ref RinB+1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0724F2))
(comp (ref RinB-1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0724FE))
(comp (ref RlowB1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C072506))
(comp (ref RgndB1)
(value 10)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C072512))
(comp (ref J1)
(value Jumper)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C072525))
(comp (ref Rfb1)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(fields
(field (name Notes) Metallfilm))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C072534))
(comp (ref CU+1)
(value 100n)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C073395))
(comp (ref CU-1)
(value 100n)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0733A6))
(comp (ref JGND1)
(value Conn_gnd)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C056E2C))
(comp (ref JGND2)
(value Conn_gnd)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /input1/) (tstamps /5C06F581/))
(tstamp 5C0576D0)))
(libparts
(libpart (lib Connector) (part Conn_01x01_Male)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector) (part Conn_01x02_Male)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x06_Male)
(description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib Connector) (part Conn_Coaxial)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(docs " ~")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Coaxial))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Opamp_Dual_Generic)
(description "Dual operational amplifier")
(docs ~)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*)
(fp DIP*W7.62mm*)
(fp MSOP*3x3mm*P0.65mm*)
(fp SSOP*2.95x2.8mm*P0.65mm*)
(fp TSSOP*3x3mm*P0.65mm*)
(fp VSSOP*P0.5mm*)
(fp TO?99*))
(fields
(field (name Reference) U)
(field (name Value) Opamp_Dual_Generic))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib)))
(nets
(net (code 1) (name /input1/inA+)
(node (ref J1A1) (pin 1))
(node (ref RinA+1) (pin 1)))
(net (code 2) (name GNDA)
(node (ref JGND2) (pin 1))
(node (ref CU-1) (pin 1))
(node (ref CU+1) (pin 2))
(node (ref JPWRin1) (pin 3))
(node (ref JPWRin1) (pin 4))
(node (ref JGND1) (pin 1))
(node (ref RgndA1) (pin 2))
(node (ref RlowA1) (pin 2))
(node (ref RgndB1) (pin 2))
(node (ref RlowB1) (pin 2)))
(net (code 3) (name /input1/outA)
(node (ref J1AO1) (pin 1))
(node (ref Rfb2) (pin 2))
(node (ref U1) (pin 7)))
(net (code 4) (name /input1/inB+)
(node (ref RinB+1) (pin 1))
(node (ref J1B1) (pin 1)))
(net (code 5) (name /input1/inA-)
(node (ref J2) (pin 1))
(node (ref J1A1) (pin 2))
(node (ref RinA-1) (pin 1)))
(net (code 6) (name /input1/inB-)
(node (ref J1) (pin 1))
(node (ref J1B1) (pin 2))
(node (ref RinB-1) (pin 1)))
(net (code 7) (name /input1/outB)
(node (ref U1) (pin 1))
(node (ref Rfb1) (pin 2))
(node (ref J1BO1) (pin 1)))
(net (code 8) (name +15V)
(node (ref U1) (pin 4))
(node (ref JPWRin1) (pin 1))
(node (ref JPWRin1) (pin 2))
(node (ref CU+1) (pin 1)))
(net (code 9) (name -15V)
(node (ref JPWRin1) (pin 5))
(node (ref JPWRin1) (pin 6))
(node (ref U1) (pin 8))
(node (ref CU-1) (pin 2)))
(net (code 10) (name "Net-(RinB-1-Pad2)")
(node (ref RinB-1) (pin 2))
(node (ref RlowB1) (pin 1))
(node (ref U1) (pin 2)))
(net (code 11) (name "Net-(Rfb1-Pad1)")
(node (ref Rfb1) (pin 1))
(node (ref U1) (pin 3))
(node (ref RinB+1) (pin 2)))
(net (code 12) (name "Net-(J1-Pad2)")
(node (ref J1) (pin 2))
(node (ref RgndB1) (pin 1)))
(net (code 13) (name "Net-(Rfb2-Pad1)")
(node (ref Rfb2) (pin 1))
(node (ref RinA+1) (pin 2))
(node (ref U1) (pin 6)))
(net (code 14) (name "Net-(J2-Pad2)")
(node (ref RgndA1) (pin 1))
(node (ref J2) (pin 2)))
(net (code 15) (name "Net-(RinA-1-Pad2)")
(node (ref RinA-1) (pin 2))
(node (ref U1) (pin 5))
(node (ref RlowA1) (pin 1)))))

View File

@ -1,33 +0,0 @@
update=22/05/2015 07:44:53
version=1
last_client=kicad
[general]
version=1
RootSch=
BoardNm=
[pcbnew]
version=1
LastNetListRead=
UseCmpFile=1
PadDrill=0.600000000000
PadDrillOvalY=0.600000000000
PadSizeH=1.500000000000
PadSizeV=1.500000000000
PcbTextSizeV=1.500000000000
PcbTextSizeH=1.500000000000
PcbTextThickness=0.300000000000
ModuleTextSizeV=1.000000000000
ModuleTextSizeH=1.000000000000
ModuleTextSizeThickness=0.150000000000
SolderMaskClearance=0.000000000000
SolderMaskMinWidth=0.000000000000
DrawSegmentWidth=0.200000000000
BoardOutlineThickness=0.100000000000
ModuleOutlineThickness=0.150000000000
[cvpcb]
version=1
NetIExt=net
[eeschema]
version=1
LibDir=
[eeschema/libraries]

View File

@ -1,166 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixerinput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L power:GNDA #PWR05
U 1 1 5BB76D79
P 1600 1250
F 0 "#PWR05" H 1600 1000 50 0001 C CNN
F 1 "GNDA" H 1605 1077 50 0000 C CNN
F 2 "" H 1600 1250 50 0001 C CNN
F 3 "" H 1600 1250 50 0001 C CNN
1 1600 1250
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_Coaxial J1A1
U 1 1 5BC9D135
P 2650 1350
F 0 "J1A1" H 2800 1350 50 0000 C CNN
F 1 "Audio In 1 A" H 2950 1450 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 2650 1350 50 0001 C CNN
F 3 " ~" H 2650 1350 50 0001 C CNN
1 2650 1350
-1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male J1AO1
U 1 1 5BCCAE6C
P 4350 1350
F 0 "J1AO1" H 4322 1280 50 0000 R CNN
F 1 "toInVolume" H 4322 1371 50 0000 R CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 4350 1350 50 0001 C CNN
F 3 "~" H 4350 1350 50 0001 C CNN
1 4350 1350
-1 0 0 1
$EndComp
$Comp
L Connector:Conn_Coaxial J1B1
U 1 1 5BCB9F7A
P 2650 1700
F 0 "J1B1" H 2800 1700 50 0000 C CNN
F 1 "Audio In 1 B" H 2950 1800 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 2650 1700 50 0001 C CNN
F 3 " ~" H 2650 1700 50 0001 C CNN
1 2650 1700
-1 0 0 -1
$EndComp
$Comp
L power:+15V #PWR03
U 1 1 5BD51931
P 1350 950
F 0 "#PWR03" H 1350 800 50 0001 C CNN
F 1 "+15V" H 1365 1123 50 0000 C CNN
F 2 "" H 1350 950 50 0001 C CNN
F 3 "" H 1350 950 50 0001 C CNN
1 1350 950
1 0 0 -1
$EndComp
$Comp
L power:-15V #PWR04
U 1 1 5BD51A6A
P 1350 1450
F 0 "#PWR04" H 1350 1550 50 0001 C CNN
F 1 "-15V" H 1365 1623 50 0000 C CNN
F 2 "" H 1350 1450 50 0001 C CNN
F 3 "" H 1350 1450 50 0001 C CNN
1 1350 1450
-1 0 0 1
$EndComp
$Comp
L Connector:Conn_01x06_Male JPWRin1
U 1 1 5BD53C35
P 850 1150
F 0 "JPWRin1" H 956 1528 50 0000 C CNN
F 1 "+-15V In" H 956 1437 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" H 850 1150 50 0001 C CNN
F 3 "~" H 850 1150 50 0001 C CNN
1 850 1150
1 0 0 -1
$EndComp
Wire Wire Line
1350 1450 1100 1450
Wire Wire Line
1050 1350 1100 1350
Wire Wire Line
1100 1350 1100 1450
Connection ~ 1100 1450
Wire Wire Line
1100 1450 1050 1450
Wire Wire Line
1350 950 1150 950
Wire Wire Line
1150 950 1150 1050
Wire Wire Line
1150 1050 1050 1050
Connection ~ 1150 950
Wire Wire Line
1150 950 1050 950
Wire Wire Line
1050 1250 1150 1250
Wire Wire Line
1050 1150 1150 1150
Wire Wire Line
1150 1150 1150 1250
Connection ~ 1150 1250
Wire Wire Line
1150 1250 1600 1250
$Sheet
S 3200 1250 700 650
U 5C06F581
F0 "input1" 50
F1 "inputbuffer.sch" 50
F2 "outA" O R 3900 1350 50
F3 "outB" O R 3900 1800 50
F4 "inA+" I L 3200 1350 50
F5 "inB+" I L 3200 1700 50
F6 "inA-" I L 3200 1450 50
F7 "inB-" I L 3200 1800 50
$EndSheet
Wire Wire Line
2850 1350 3200 1350
Wire Wire Line
3200 1450 2900 1450
Wire Wire Line
2900 1450 2900 1550
Wire Wire Line
2900 1550 2650 1550
Wire Wire Line
2850 1700 3200 1700
Wire Wire Line
3200 1800 2900 1800
Wire Wire Line
2900 1800 2900 1900
Wire Wire Line
2900 1900 2650 1900
Wire Wire Line
4150 1350 3900 1350
$Comp
L Connector:Conn_01x01_Male J1BO1
U 1 1 5C08C061
P 4350 1800
F 0 "J1BO1" H 4322 1730 50 0000 R CNN
F 1 "toInVolume" H 4322 1821 50 0000 R CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 4350 1800 50 0001 C CNN
F 3 "~" H 4350 1800 50 0001 C CNN
1 4350 1800
-1 0 0 1
$EndComp
Wire Wire Line
4150 1800 3900 1800
Text Notes 2450 850 0 50 ~ 0
TODO:\nstrom connector +-15V ggf anders machen für input und output board
$EndSCHEMATC

View File

@ -1,276 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixer-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 3 3
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Device:Opamp_Dual_Generic U?
U 1 1 5C0923EF
P 2600 3000
F 0 "U?" H 2650 3150 50 0000 C CNN
F 1 "Opamp_Dual_Generic" H 2700 3250 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2600 3000 50 0001 C CNN
F 3 "~" H 2600 3000 50 0001 C CNN
1 2600 3000
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 2 1 5C0923F6
P 2600 4250
F 0 "U?" H 2700 4400 50 0000 C CNN
F 1 "Opamp_Dual_Generic" H 2700 4500 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2600 4250 50 0001 C CNN
F 3 "~" H 2600 4250 50 0001 C CNN
2 2600 4250
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 3 1 5C0923FD
P 2750 1300
F 0 "U?" H 2708 1346 50 0000 L CNN
F 1 "Opamp_Dual_Generic" H 2708 1255 50 0000 L CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2750 1300 50 0001 C CNN
F 3 "~" H 2750 1300 50 0001 C CNN
3 2750 1300
1 0 0 -1
$EndComp
$Comp
L Device:R R?
U 1 1 5C092405
P 2600 2550
F 0 "R?" V 2400 2550 50 0000 C CNN
F 1 "10k" V 2500 2550 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2530 2550 50 0001 C CNN
F 3 "~" H 2600 2550 50 0001 C CNN
F 4 "Metallfilm" V 2600 2550 50 0001 C CNN "Notes"
1 2600 2550
0 -1 -1 0
$EndComp
Wire Wire Line
2900 3000 2900 2550
Wire Wire Line
2900 2550 2750 2550
Wire Wire Line
2450 2550 2300 2550
Wire Wire Line
2300 2550 2300 2900
$Comp
L power:GNDA #PWR?
U 1 1 5C092417
P 2200 3150
F 0 "#PWR?" H 2200 2900 50 0001 C CNN
F 1 "GNDA" H 2205 2977 50 0000 C CNN
F 2 "" H 2200 3150 50 0001 C CNN
F 3 "" H 2200 3150 50 0001 C CNN
1 2200 3150
1 0 0 -1
$EndComp
$Comp
L Device:C C?
U 1 1 5C09241D
P 2600 2300
F 0 "C?" V 2348 2300 50 0000 C CNN
F 1 "330p" V 2439 2300 50 0000 C CNN
F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 2638 2150 50 0001 C CNN
F 3 "~" H 2600 2300 50 0001 C CNN
1 2600 2300
0 1 1 0
$EndComp
Wire Wire Line
2750 2300 2900 2300
Wire Wire Line
2900 2300 2900 2550
Connection ~ 2900 2550
Wire Wire Line
2450 2300 2300 2300
Wire Wire Line
2300 2300 2300 2550
Connection ~ 2300 2550
Text Notes 2750 2300 0 50 ~ 0
Lowpass:\nf_c = 1 /\n (2 * Pi * R * C)
Connection ~ 2300 2900
$Comp
L Device:C CU2+?
U 1 1 5C09243A
P 2400 1150
F 0 "CU2+?" H 2515 1196 50 0000 L CNN
F 1 "100n" H 2515 1105 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 2438 1000 50 0001 C CNN
F 3 "~" H 2400 1150 50 0001 C CNN
1 2400 1150
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C092441
P 2250 1300
F 0 "#PWR?" H 2250 1050 50 0001 C CNN
F 1 "GNDA" H 2255 1127 50 0000 C CNN
F 2 "" H 2250 1300 50 0001 C CNN
F 3 "" H 2250 1300 50 0001 C CNN
1 2250 1300
1 0 0 -1
$EndComp
$Comp
L Device:C CU2-?
U 1 1 5C092447
P 2400 1450
F 0 "CU2-?" H 2515 1496 50 0000 L CNN
F 1 "100n" H 2515 1405 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 2438 1300 50 0001 C CNN
F 3 "~" H 2400 1450 50 0001 C CNN
1 2400 1450
1 0 0 -1
$EndComp
Wire Wire Line
2400 1300 2250 1300
Connection ~ 2400 1300
Wire Wire Line
2650 1000 2400 1000
Wire Wire Line
2650 1600 2400 1600
$Comp
L power:GNDA #PWR?
U 1 1 5C092452
P 2200 4400
F 0 "#PWR?" H 2200 4150 50 0001 C CNN
F 1 "GNDA" H 2205 4227 50 0000 C CNN
F 2 "" H 2200 4400 50 0001 C CNN
F 3 "" H 2200 4400 50 0001 C CNN
1 2200 4400
1 0 0 -1
$EndComp
$Comp
L Device:R R?
U 1 1 5C092460
P 2600 3800
F 0 "R?" V 2400 3800 50 0000 C CNN
F 1 "10k" V 2500 3800 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2530 3800 50 0001 C CNN
F 3 "~" H 2600 3800 50 0001 C CNN
F 4 "Metallfilm" V 2600 3800 50 0001 C CNN "Notes"
1 2600 3800
0 -1 -1 0
$EndComp
$Comp
L Device:C C?
U 1 1 5C092467
P 2600 3600
F 0 "C?" V 2348 3600 50 0000 C CNN
F 1 "330p" V 2439 3600 50 0000 C CNN
F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 2638 3450 50 0001 C CNN
F 3 "~" H 2600 3600 50 0001 C CNN
1 2600 3600
0 1 1 0
$EndComp
Wire Wire Line
2300 3600 2300 3800
Connection ~ 2300 4150
Wire Wire Line
2750 3800 2900 3800
Wire Wire Line
2900 3800 2900 4250
Wire Wire Line
2900 3600 2900 3800
Connection ~ 2900 3800
Wire Wire Line
2450 3800 2300 3800
Connection ~ 2300 3800
Wire Wire Line
2300 3800 2300 4150
$Comp
L Device:R R?
U 1 1 5C092486
P 3150 4250
F 0 "R?" V 3357 4250 50 0000 C CNN
F 1 "220" V 3266 4250 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 4250 50 0001 C CNN
F 3 "~" H 3150 4250 50 0001 C CNN
F 4 "Metallfilm" V 3150 4250 50 0001 C CNN "Notes"
1 3150 4250
0 -1 -1 0
$EndComp
$Comp
L Device:R R?
U 1 1 5C09248E
P 3150 3000
F 0 "R?" V 3357 3000 50 0000 C CNN
F 1 "220" V 3266 3000 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 3000 50 0001 C CNN
F 3 "~" H 3150 3000 50 0001 C CNN
F 4 "Metallfilm" V 3150 3000 50 0001 C CNN "Notes"
1 3150 3000
0 -1 -1 0
$EndComp
Wire Wire Line
3000 4250 2900 4250
Connection ~ 2900 4250
Wire Wire Line
2900 3000 3000 3000
Connection ~ 2900 3000
Wire Wire Line
2200 4400 2200 4350
Wire Wire Line
2200 4350 2300 4350
Wire Wire Line
1900 4150 2300 4150
Wire Wire Line
1900 2900 2300 2900
Wire Wire Line
2300 3600 2450 3600
Wire Wire Line
2750 3600 2900 3600
Wire Wire Line
2200 3150 2200 3100
Wire Wire Line
2200 3100 2300 3100
$Comp
L power:-15V #PWR?
U 1 1 5C0924A3
P 2650 1600
F 0 "#PWR?" H 2650 1700 50 0001 C CNN
F 1 "-15V" H 2665 1773 50 0000 C CNN
F 2 "" H 2650 1600 50 0001 C CNN
F 3 "" H 2650 1600 50 0001 C CNN
1 2650 1600
-1 0 0 1
$EndComp
Connection ~ 2650 1600
$Comp
L power:+15V #PWR?
U 1 1 5C0924AA
P 2650 1000
F 0 "#PWR?" H 2650 850 50 0001 C CNN
F 1 "+15V" H 2665 1173 50 0000 C CNN
F 2 "" H 2650 1000 50 0001 C CNN
F 3 "" H 2650 1000 50 0001 C CNN
1 2650 1000
1 0 0 -1
$EndComp
Connection ~ 2650 1000
Text HLabel 1900 2900 0 50 Input ~ 0
inA
Text HLabel 1900 4150 0 50 Input ~ 0
inB
Text HLabel 3450 3000 2 50 Output ~ 0
outA
Text HLabel 3450 4250 2 50 Output ~ 0
outB
Wire Wire Line
3300 4250 3450 4250
Wire Wire Line
3300 3000 3450 3000
$EndSCHEMATC

View File

@ -1,184 +0,0 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# Connector_Conn_01x01_Male
#
DEF Connector_Conn_01x01_Male J 0 40 Y N 1 F N
F0 "J" 0 100 50 H V C CNN
F1 "Connector_Conn_01x01_Male" 0 -100 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*
$ENDFPLIST
DRAW
S 34 5 0 -5 1 1 6 F
P 2 1 1 6 50 0 34 0 N
X Pin_1 1 200 0 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Conn_01x06_Male
#
DEF Connector_Conn_01x06_Male J 0 40 Y N 1 F N
F0 "J" 0 300 50 H V C CNN
F1 "Connector_Conn_01x06_Male" 0 -400 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Connector*:*_1x??_*
$ENDFPLIST
DRAW
S 34 -295 0 -305 1 1 6 F
S 34 -195 0 -205 1 1 6 F
S 34 -95 0 -105 1 1 6 F
S 34 5 0 -5 1 1 6 F
S 34 105 0 95 1 1 6 F
S 34 205 0 195 1 1 6 F
P 2 1 1 6 50 -300 34 -300 N
P 2 1 1 6 50 -200 34 -200 N
P 2 1 1 6 50 -100 34 -100 N
P 2 1 1 6 50 0 34 0 N
P 2 1 1 6 50 100 34 100 N
P 2 1 1 6 50 200 34 200 N
X Pin_1 1 200 200 150 L 50 50 1 1 P
X Pin_2 2 200 100 150 L 50 50 1 1 P
X Pin_3 3 200 0 150 L 50 50 1 1 P
X Pin_4 4 200 -100 150 L 50 50 1 1 P
X Pin_5 5 200 -200 150 L 50 50 1 1 P
X Pin_6 6 200 -300 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Conn_Coaxial
#
DEF Connector_Conn_Coaxial J 0 40 Y N 1 F N
F0 "J" 10 120 50 H V C CNN
F1 "Connector_Conn_Coaxial" 115 0 50 V V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
*BNC*
*SMA*
*SMB*
*SMC*
*Cinch*
$ENDFPLIST
DRAW
A -2 0 71 1636 0 0 1 10 N -70 20 70 0
A -1 0 71 0 -1638 0 1 10 N 70 0 -70 -20
C 0 0 20 0 1 8 N
P 2 0 1 0 -100 0 -20 0 N
P 2 0 1 0 0 -100 0 -70 N
X In 1 -200 0 100 R 50 50 1 1 P
X Ext 2 0 -200 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_C
#
DEF Device_C C 0 10 N Y 1 F N
F0 "C" 25 100 50 H V L CNN
F1 "Device_C" 25 -100 50 H V L CNN
F2 "" 38 -150 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
C_*
$ENDFPLIST
DRAW
P 2 0 1 20 -80 -30 80 -30 N
P 2 0 1 20 -80 30 80 30 N
X ~ 1 0 150 110 D 50 50 1 1 P
X ~ 2 0 -150 110 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Device_Opamp_Dual_Generic
#
DEF Device_Opamp_Dual_Generic U 0 20 Y Y 3 F N
F0 "U" 0 200 50 H V L CNN
F1 "Device_Opamp_Dual_Generic" 0 -200 50 H V L CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
SOIC*3.9x4.9mm*P1.27mm*
DIP*W7.62mm*
MSOP*3x3mm*P0.65mm*
SSOP*2.95x2.8mm*P0.65mm*
TSSOP*3x3mm*P0.65mm*
VSSOP*P0.5mm*
TO?99*
$ENDFPLIST
DRAW
P 4 1 1 10 -200 200 200 0 -200 -200 -200 200 f
P 4 2 1 10 -200 200 200 0 -200 -200 -200 200 f
X ~ 1 300 0 100 L 50 50 1 1 O
X - 2 -300 -100 100 R 50 50 1 1 I
X + 3 -300 100 100 R 50 50 1 1 I
X + 5 -300 100 100 R 50 50 2 1 I
X - 6 -300 -100 100 R 50 50 2 1 I
X ~ 7 300 0 100 L 50 50 2 1 O
X V- 4 -100 -300 150 U 50 50 3 1 W
X V+ 8 -100 300 150 D 50 50 3 1 W
ENDDRAW
ENDDEF
#
# Device_R
#
DEF Device_R R 0 0 N Y 1 F N
F0 "R" 80 0 50 V V C CNN
F1 "Device_R" 0 0 50 V V C CNN
F2 "" -70 0 50 V I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
R_*
$ENDFPLIST
DRAW
S -40 -100 40 100 0 1 10 N
X ~ 1 0 150 50 D 50 50 1 1 P
X ~ 2 0 -150 50 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# power_+15V
#
DEF power_+15V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_+15V" 0 140 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +15V 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# power_-15V
#
DEF power_-15V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 100 50 H I C CNN
F1 "power_-15V" 0 150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 50 30 50 0 100 -30 50 0 50 F
X -15V 1 0 0 0 U 50 50 0 0 W N
ENDDRAW
ENDDEF
#
# power_GNDA
#
DEF power_GNDA #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "power_GNDA" 0 -150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
X GNDA 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
#End Library

View File

@ -1,174 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixeroutput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L power:GNDA #PWR05
U 1 1 5BB76D79
P 1750 1900
F 0 "#PWR05" H 1750 1650 50 0001 C CNN
F 1 "GNDA" H 1755 1727 50 0000 C CNN
F 2 "" H 1750 1900 50 0001 C CNN
F 3 "" H 1750 1900 50 0001 C CNN
1 1750 1900
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male J8
U 1 1 5BB8BE00
P 1500 3050
F 0 "J8" H 1606 3228 50 0000 C CNN
F 1 "Audio From Switch" H 1500 3150 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1500 3050 50 0001 C CNN
F 3 "~" H 1500 3050 50 0001 C CNN
1 1500 3050
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_Coaxial J10
U 1 1 5BB91EAB
P 3350 3050
F 0 "J10" H 3450 3026 50 0000 L CNN
F 1 "Audio Out 1 L" H 3450 2935 50 0000 L CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 3350 3050 50 0001 C CNN
F 3 " ~" H 3350 3050 50 0001 C CNN
1 3350 3050
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR015
U 1 1 5BB92015
P 3350 3250
F 0 "#PWR015" H 3350 3000 50 0001 C CNN
F 1 "GNDA" H 3355 3077 50 0000 C CNN
F 2 "" H 3350 3250 50 0001 C CNN
F 3 "" H 3350 3250 50 0001 C CNN
1 3350 3250
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male J9
U 1 1 5BB9F255
P 1500 3450
F 0 "J9" H 1606 3628 50 0000 C CNN
F 1 "Audio From Switch" H 1500 3550 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1500 3450 50 0001 C CNN
F 3 "~" H 1500 3450 50 0001 C CNN
1 1500 3450
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_Coaxial J11
U 1 1 5BBA6FDF
P 3050 3450
F 0 "J11" H 3150 3426 50 0000 L CNN
F 1 "Audio Out 1 R" H 3150 3335 50 0000 L CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 3050 3450 50 0001 C CNN
F 3 " ~" H 3050 3450 50 0001 C CNN
1 3050 3450
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR016
U 1 1 5BBA706D
P 3050 3700
F 0 "#PWR016" H 3050 3450 50 0001 C CNN
F 1 "GNDA" H 3055 3527 50 0000 C CNN
F 2 "" H 3050 3700 50 0001 C CNN
F 3 "" H 3050 3700 50 0001 C CNN
1 3050 3700
1 0 0 -1
$EndComp
Wire Wire Line
3050 3700 3050 3650
Wire Wire Line
2850 3450 2800 3450
$Comp
L power:+15V #PWR03
U 1 1 5BD51931
P 1500 1600
F 0 "#PWR03" H 1500 1450 50 0001 C CNN
F 1 "+15V" H 1515 1773 50 0000 C CNN
F 2 "" H 1500 1600 50 0001 C CNN
F 3 "" H 1500 1600 50 0001 C CNN
1 1500 1600
1 0 0 -1
$EndComp
$Comp
L power:-15V #PWR04
U 1 1 5BD51A6A
P 1500 2100
F 0 "#PWR04" H 1500 2200 50 0001 C CNN
F 1 "-15V" H 1515 2273 50 0000 C CNN
F 2 "" H 1500 2100 50 0001 C CNN
F 3 "" H 1500 2100 50 0001 C CNN
1 1500 2100
-1 0 0 1
$EndComp
$Comp
L Connector:Conn_01x06_Male JPWRin1
U 1 1 5BD53C35
P 1000 1800
F 0 "JPWRin1" H 1106 2178 50 0000 C CNN
F 1 "+-15V In" H 1106 2087 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" H 1000 1800 50 0001 C CNN
F 3 "~" H 1000 1800 50 0001 C CNN
1 1000 1800
1 0 0 -1
$EndComp
Wire Wire Line
1500 2100 1250 2100
Wire Wire Line
1200 2000 1250 2000
Wire Wire Line
1250 2000 1250 2100
Connection ~ 1250 2100
Wire Wire Line
1250 2100 1200 2100
Wire Wire Line
1500 1600 1300 1600
Wire Wire Line
1300 1600 1300 1700
Wire Wire Line
1300 1700 1200 1700
Connection ~ 1300 1600
Wire Wire Line
1300 1600 1200 1600
Wire Wire Line
1200 1900 1300 1900
Wire Wire Line
1200 1800 1300 1800
Wire Wire Line
1300 1800 1300 1900
Connection ~ 1300 1900
Wire Wire Line
1300 1900 1750 1900
$Sheet
S 1900 2950 900 600
U 5C091DFE
F0 "output" 50
F1 "outputbuffer.sch" 50
F2 "inA" I L 1900 3050 50
F3 "inB" I L 1900 3450 50
F4 "outA" O R 2800 3050 50
F5 "outB" O R 2800 3450 50
$EndSheet
Wire Wire Line
2800 3050 3150 3050
Wire Wire Line
1900 3450 1700 3450
Wire Wire Line
1700 3050 1900 3050
$EndSCHEMATC

View File

@ -1,33 +0,0 @@
update=22/05/2015 07:44:53
version=1
last_client=kicad
[general]
version=1
RootSch=
BoardNm=
[pcbnew]
version=1
LastNetListRead=
UseCmpFile=1
PadDrill=0.600000000000
PadDrillOvalY=0.600000000000
PadSizeH=1.500000000000
PadSizeV=1.500000000000
PcbTextSizeV=1.500000000000
PcbTextSizeH=1.500000000000
PcbTextThickness=0.300000000000
ModuleTextSizeV=1.000000000000
ModuleTextSizeH=1.000000000000
ModuleTextSizeThickness=0.150000000000
SolderMaskClearance=0.000000000000
SolderMaskMinWidth=0.000000000000
DrawSegmentWidth=0.200000000000
BoardOutlineThickness=0.100000000000
ModuleOutlineThickness=0.150000000000
[cvpcb]
version=1
NetIExt=net
[eeschema]
version=1
LibDir=
[eeschema/libraries]

View File

@ -1,174 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixeroutput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L power:GNDA #PWR05
U 1 1 5BB76D79
P 1750 1900
F 0 "#PWR05" H 1750 1650 50 0001 C CNN
F 1 "GNDA" H 1755 1727 50 0000 C CNN
F 2 "" H 1750 1900 50 0001 C CNN
F 3 "" H 1750 1900 50 0001 C CNN
1 1750 1900
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male J8
U 1 1 5BB8BE00
P 1500 3050
F 0 "J8" H 1606 3228 50 0000 C CNN
F 1 "Audio From Switch" H 1500 3150 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1500 3050 50 0001 C CNN
F 3 "~" H 1500 3050 50 0001 C CNN
1 1500 3050
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_Coaxial J10
U 1 1 5BB91EAB
P 3350 3050
F 0 "J10" H 3450 3026 50 0000 L CNN
F 1 "Audio Out 1 L" H 3450 2935 50 0000 L CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 3350 3050 50 0001 C CNN
F 3 " ~" H 3350 3050 50 0001 C CNN
1 3350 3050
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR015
U 1 1 5BB92015
P 3350 3250
F 0 "#PWR015" H 3350 3000 50 0001 C CNN
F 1 "GNDA" H 3355 3077 50 0000 C CNN
F 2 "" H 3350 3250 50 0001 C CNN
F 3 "" H 3350 3250 50 0001 C CNN
1 3350 3250
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_01x01_Male J9
U 1 1 5BB9F255
P 1500 3450
F 0 "J9" H 1606 3628 50 0000 C CNN
F 1 "Audio From Switch" H 1500 3550 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1500 3450 50 0001 C CNN
F 3 "~" H 1500 3450 50 0001 C CNN
1 1500 3450
1 0 0 -1
$EndComp
$Comp
L Connector:Conn_Coaxial J11
U 1 1 5BBA6FDF
P 3050 3450
F 0 "J11" H 3150 3426 50 0000 L CNN
F 1 "Audio Out 1 R" H 3150 3335 50 0000 L CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" H 3050 3450 50 0001 C CNN
F 3 " ~" H 3050 3450 50 0001 C CNN
1 3050 3450
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR016
U 1 1 5BBA706D
P 3050 3700
F 0 "#PWR016" H 3050 3450 50 0001 C CNN
F 1 "GNDA" H 3055 3527 50 0000 C CNN
F 2 "" H 3050 3700 50 0001 C CNN
F 3 "" H 3050 3700 50 0001 C CNN
1 3050 3700
1 0 0 -1
$EndComp
Wire Wire Line
3050 3700 3050 3650
Wire Wire Line
2850 3450 2800 3450
$Comp
L power:+15V #PWR03
U 1 1 5BD51931
P 1500 1600
F 0 "#PWR03" H 1500 1450 50 0001 C CNN
F 1 "+15V" H 1515 1773 50 0000 C CNN
F 2 "" H 1500 1600 50 0001 C CNN
F 3 "" H 1500 1600 50 0001 C CNN
1 1500 1600
1 0 0 -1
$EndComp
$Comp
L power:-15V #PWR04
U 1 1 5BD51A6A
P 1500 2100
F 0 "#PWR04" H 1500 2200 50 0001 C CNN
F 1 "-15V" H 1515 2273 50 0000 C CNN
F 2 "" H 1500 2100 50 0001 C CNN
F 3 "" H 1500 2100 50 0001 C CNN
1 1500 2100
-1 0 0 1
$EndComp
$Comp
L Connector:Conn_01x06_Male JPWRin1
U 1 1 5BD53C35
P 1000 1800
F 0 "JPWRin1" H 1106 2178 50 0000 C CNN
F 1 "+-15V In" H 1106 2087 50 0000 C CNN
F 2 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" H 1000 1800 50 0001 C CNN
F 3 "~" H 1000 1800 50 0001 C CNN
1 1000 1800
1 0 0 -1
$EndComp
Wire Wire Line
1500 2100 1250 2100
Wire Wire Line
1200 2000 1250 2000
Wire Wire Line
1250 2000 1250 2100
Connection ~ 1250 2100
Wire Wire Line
1250 2100 1200 2100
Wire Wire Line
1500 1600 1300 1600
Wire Wire Line
1300 1600 1300 1700
Wire Wire Line
1300 1700 1200 1700
Connection ~ 1300 1600
Wire Wire Line
1300 1600 1200 1600
Wire Wire Line
1200 1900 1300 1900
Wire Wire Line
1200 1800 1300 1800
Wire Wire Line
1300 1800 1300 1900
Connection ~ 1300 1900
Wire Wire Line
1300 1900 1750 1900
$Sheet
S 1900 2950 900 600
U 5C091DFE
F0 "output" 50
F1 "outputbuffer.sch" 50
F2 "inA" I L 1900 3050 50
F3 "inB" I L 1900 3450 50
F4 "outA" O R 2800 3050 50
F5 "outB" O R 2800 3450 50
$EndSheet
Wire Wire Line
2800 3050 3150 3050
Wire Wire Line
1900 3450 1700 3450
Wire Wire Line
1700 3050 1900 3050
$EndSCHEMATC

View File

@ -1,296 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixeroutput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 2 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Device:Opamp_Dual_Generic U?
U 1 1 5C0923EF
P 2600 3000
F 0 "U?" H 2650 3150 50 0000 C CNN
F 1 "Opamp_Dual_Generic" H 2700 3250 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2600 3000 50 0001 C CNN
F 3 "~" H 2600 3000 50 0001 C CNN
1 2600 3000
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 2 1 5C0923F6
P 2600 4250
F 0 "U?" H 2700 4400 50 0000 C CNN
F 1 "Opamp_Dual_Generic" H 2700 4500 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2600 4250 50 0001 C CNN
F 3 "~" H 2600 4250 50 0001 C CNN
2 2600 4250
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 3 1 5C0923FD
P 2750 1300
F 0 "U?" H 2708 1346 50 0000 L CNN
F 1 "Opamp_Dual_Generic" H 2708 1255 50 0000 L CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2750 1300 50 0001 C CNN
F 3 "~" H 2750 1300 50 0001 C CNN
3 2750 1300
1 0 0 -1
$EndComp
$Comp
L Device:R RfbA?
U 1 1 5C092405
P 2600 2550
F 0 "RfbA?" V 2400 2550 50 0000 C CNN
F 1 "10k" V 2500 2550 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2530 2550 50 0001 C CNN
F 3 "~" H 2600 2550 50 0001 C CNN
F 4 "Metallfilm" V 2600 2550 50 0001 C CNN "Notes"
1 2600 2550
0 -1 -1 0
$EndComp
Wire Wire Line
2900 3000 2900 2550
Wire Wire Line
2900 2550 2750 2550
Wire Wire Line
2450 2550 2300 2550
Wire Wire Line
2300 2550 2300 2900
$Comp
L power:GNDA #PWR?
U 1 1 5C092417
P 2050 3400
F 0 "#PWR?" H 2050 3150 50 0001 C CNN
F 1 "GNDA" H 2055 3227 50 0000 C CNN
F 2 "" H 2050 3400 50 0001 C CNN
F 3 "" H 2050 3400 50 0001 C CNN
1 2050 3400
1 0 0 -1
$EndComp
$Comp
L Device:C CLPA
U 1 1 5C09241D
P 2600 2300
F 0 "CLPA" V 2348 2300 50 0000 C CNN
F 1 "330p" V 2439 2300 50 0000 C CNN
F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 2638 2150 50 0001 C CNN
F 3 "~" H 2600 2300 50 0001 C CNN
1 2600 2300
0 1 1 0
$EndComp
Wire Wire Line
2750 2300 2900 2300
Wire Wire Line
2900 2300 2900 2550
Connection ~ 2900 2550
Wire Wire Line
2450 2300 2300 2300
Wire Wire Line
2300 2300 2300 2550
Connection ~ 2300 2550
Text Notes 2750 2300 0 50 ~ 0
Lowpass:\nf_c = 1 /\n (2 * Pi * R * C)
Connection ~ 2300 2900
$Comp
L Device:C CU2+?
U 1 1 5C09243A
P 2400 1150
F 0 "CU2+?" H 2000 1200 50 0000 L CNN
F 1 "100n" H 2050 1100 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 2438 1000 50 0001 C CNN
F 3 "~" H 2400 1150 50 0001 C CNN
1 2400 1150
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C092441
P 2250 1300
F 0 "#PWR?" H 2250 1050 50 0001 C CNN
F 1 "GNDA" H 2100 1250 50 0000 C CNN
F 2 "" H 2250 1300 50 0001 C CNN
F 3 "" H 2250 1300 50 0001 C CNN
1 2250 1300
1 0 0 -1
$EndComp
$Comp
L Device:C CU2-?
U 1 1 5C092447
P 2400 1450
F 0 "CU2-?" H 2000 1400 50 0000 L CNN
F 1 "100n" H 2050 1300 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 2438 1300 50 0001 C CNN
F 3 "~" H 2400 1450 50 0001 C CNN
1 2400 1450
1 0 0 -1
$EndComp
Wire Wire Line
2400 1300 2250 1300
Connection ~ 2400 1300
Wire Wire Line
2650 1000 2400 1000
Wire Wire Line
2650 1600 2400 1600
$Comp
L power:GNDA #PWR?
U 1 1 5C092452
P 2050 4650
F 0 "#PWR?" H 2050 4400 50 0001 C CNN
F 1 "GNDA" H 2055 4477 50 0000 C CNN
F 2 "" H 2050 4650 50 0001 C CNN
F 3 "" H 2050 4650 50 0001 C CNN
1 2050 4650
1 0 0 -1
$EndComp
$Comp
L Device:R RfbB?
U 1 1 5C092460
P 2600 3800
F 0 "RfbB?" V 2400 3800 50 0000 C CNN
F 1 "10k" V 2500 3800 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2530 3800 50 0001 C CNN
F 3 "~" H 2600 3800 50 0001 C CNN
F 4 "Metallfilm" V 2600 3800 50 0001 C CNN "Notes"
1 2600 3800
0 -1 -1 0
$EndComp
$Comp
L Device:C CLPB
U 1 1 5C092467
P 2600 3600
F 0 "CLPB" V 2348 3600 50 0000 C CNN
F 1 "330p" V 2439 3600 50 0000 C CNN
F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 2638 3450 50 0001 C CNN
F 3 "~" H 2600 3600 50 0001 C CNN
1 2600 3600
0 1 1 0
$EndComp
Wire Wire Line
2300 3600 2300 3800
Connection ~ 2300 4150
Wire Wire Line
2750 3800 2900 3800
Wire Wire Line
2900 3800 2900 4250
Wire Wire Line
2900 3600 2900 3800
Connection ~ 2900 3800
Wire Wire Line
2450 3800 2300 3800
Connection ~ 2300 3800
Wire Wire Line
2300 3800 2300 4150
$Comp
L Device:R RoutB
U 1 1 5C092486
P 3150 4250
F 0 "RoutB" V 3357 4250 50 0000 C CNN
F 1 "220" V 3266 4250 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 4250 50 0001 C CNN
F 3 "~" H 3150 4250 50 0001 C CNN
F 4 "Metallfilm" V 3150 4250 50 0001 C CNN "Notes"
1 3150 4250
0 -1 -1 0
$EndComp
$Comp
L Device:R RoutA
U 1 1 5C09248E
P 3150 3000
F 0 "RoutA" V 3357 3000 50 0000 C CNN
F 1 "220" V 3266 3000 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 3000 50 0001 C CNN
F 3 "~" H 3150 3000 50 0001 C CNN
F 4 "Metallfilm" V 3150 3000 50 0001 C CNN "Notes"
1 3150 3000
0 -1 -1 0
$EndComp
Wire Wire Line
3000 4250 2900 4250
Connection ~ 2900 4250
Wire Wire Line
2900 3000 3000 3000
Connection ~ 2900 3000
Wire Wire Line
1900 4150 2300 4150
Wire Wire Line
1900 2900 2300 2900
Wire Wire Line
2300 3600 2450 3600
Wire Wire Line
2750 3600 2900 3600
$Comp
L power:-15V #PWR?
U 1 1 5C0924A3
P 2650 1600
F 0 "#PWR?" H 2650 1700 50 0001 C CNN
F 1 "-15V" H 2665 1773 50 0000 C CNN
F 2 "" H 2650 1600 50 0001 C CNN
F 3 "" H 2650 1600 50 0001 C CNN
1 2650 1600
-1 0 0 1
$EndComp
$Comp
L power:+15V #PWR?
U 1 1 5C0924AA
P 2650 1000
F 0 "#PWR?" H 2650 850 50 0001 C CNN
F 1 "+15V" H 2665 1173 50 0000 C CNN
F 2 "" H 2650 1000 50 0001 C CNN
F 3 "" H 2650 1000 50 0001 C CNN
1 2650 1000
1 0 0 -1
$EndComp
Text HLabel 1900 2900 0 50 Input ~ 0
inA
Text HLabel 1900 4150 0 50 Input ~ 0
inB
Text HLabel 3450 3000 2 50 Output ~ 0
outA
Text HLabel 3450 4250 2 50 Output ~ 0
outB
Wire Wire Line
3300 4250 3450 4250
Wire Wire Line
3300 3000 3450 3000
$Comp
L Device:R RlowA?
U 1 1 5C0560AB
P 2050 3250
F 0 "RlowA?" V 2257 3250 50 0000 C CNN
F 1 "1k" V 2166 3250 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 1980 3250 50 0001 C CNN
F 3 "~" H 2050 3250 50 0001 C CNN
F 4 "Metallfilm" V 2050 3250 50 0001 C CNN "Notes"
1 2050 3250
1 0 0 -1
$EndComp
$Comp
L Device:R RlowB?
U 1 1 5C05615C
P 2050 4500
F 0 "RlowB?" V 2257 4500 50 0000 C CNN
F 1 "1k" V 2166 4500 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 1980 4500 50 0001 C CNN
F 3 "~" H 2050 4500 50 0001 C CNN
F 4 "Metallfilm" V 2050 4500 50 0001 C CNN "Notes"
1 2050 4500
1 0 0 -1
$EndComp
Wire Wire Line
2050 3100 2300 3100
Wire Wire Line
2050 4350 2300 4350
Connection ~ 2650 1000
Connection ~ 2650 1600
$EndSCHEMATC

View File

@ -1,298 +0,0 @@
EESchema Schematic File Version 4
LIBS:mixeroutput-cache
EELAYER 26 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 2 2
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Device:Opamp_Dual_Generic U?
U 1 1 5C0923EF
P 2600 3000
F 0 "U?" H 2650 3150 50 0000 C CNN
F 1 "Opamp_Dual_Generic" H 2700 3250 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2600 3000 50 0001 C CNN
F 3 "~" H 2600 3000 50 0001 C CNN
1 2600 3000
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 2 1 5C0923F6
P 2600 4250
F 0 "U?" H 2700 4400 50 0000 C CNN
F 1 "Opamp_Dual_Generic" H 2700 4500 50 0000 C CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2600 4250 50 0001 C CNN
F 3 "~" H 2600 4250 50 0001 C CNN
2 2600 4250
1 0 0 1
$EndComp
$Comp
L Device:Opamp_Dual_Generic U?
U 3 1 5C0923FD
P 2750 1300
F 0 "U?" H 2708 1346 50 0000 L CNN
F 1 "Opamp_Dual_Generic" H 2708 1255 50 0000 L CNN
F 2 "Package_DIP:DIP-8_W7.62mm" H 2750 1300 50 0001 C CNN
F 3 "~" H 2750 1300 50 0001 C CNN
3 2750 1300
1 0 0 -1
$EndComp
$Comp
L Device:R RfbA?
U 1 1 5C092405
P 2600 2550
F 0 "RfbA?" V 2400 2550 50 0000 C CNN
F 1 "10k" V 2500 2550 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2530 2550 50 0001 C CNN
F 3 "~" H 2600 2550 50 0001 C CNN
F 4 "Metallfilm" V 2600 2550 50 0001 C CNN "Notes"
1 2600 2550
0 -1 -1 0
$EndComp
Wire Wire Line
2900 3000 2900 2550
Wire Wire Line
2900 2550 2750 2550
Wire Wire Line
2450 2550 2300 2550
Wire Wire Line
2300 2550 2300 2900
$Comp
L power:GNDA #PWR?
U 1 1 5C092417
P 2050 3400
F 0 "#PWR?" H 2050 3150 50 0001 C CNN
F 1 "GNDA" H 2055 3227 50 0000 C CNN
F 2 "" H 2050 3400 50 0001 C CNN
F 3 "" H 2050 3400 50 0001 C CNN
1 2050 3400
1 0 0 -1
$EndComp
$Comp
L Device:C CLPA
U 1 1 5C09241D
P 2600 2300
F 0 "CLPA" V 2348 2300 50 0000 C CNN
F 1 "330p" V 2439 2300 50 0000 C CNN
F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 2638 2150 50 0001 C CNN
F 3 "~" H 2600 2300 50 0001 C CNN
1 2600 2300
0 1 1 0
$EndComp
Wire Wire Line
2750 2300 2900 2300
Wire Wire Line
2900 2300 2900 2550
Connection ~ 2900 2550
Wire Wire Line
2450 2300 2300 2300
Wire Wire Line
2300 2300 2300 2550
Connection ~ 2300 2550
Text Notes 2750 2300 0 50 ~ 0
Lowpass:\nf_c = 1 /\n (2 * Pi * R * C)
Connection ~ 2300 2900
$Comp
L Device:C CU2+?
U 1 1 5C09243A
P 2400 1150
F 0 "CU2+?" H 2000 1200 50 0000 L CNN
F 1 "100n" H 2050 1100 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 2438 1000 50 0001 C CNN
F 3 "~" H 2400 1150 50 0001 C CNN
1 2400 1150
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR?
U 1 1 5C092441
P 2250 1300
F 0 "#PWR?" H 2250 1050 50 0001 C CNN
F 1 "GNDA" H 2100 1250 50 0000 C CNN
F 2 "" H 2250 1300 50 0001 C CNN
F 3 "" H 2250 1300 50 0001 C CNN
1 2250 1300
1 0 0 -1
$EndComp
$Comp
L Device:C CU2-?
U 1 1 5C092447
P 2400 1450
F 0 "CU2-?" H 2000 1400 50 0000 L CNN
F 1 "100n" H 2050 1300 50 0000 L CNN
F 2 "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" H 2438 1300 50 0001 C CNN
F 3 "~" H 2400 1450 50 0001 C CNN
1 2400 1450
1 0 0 -1
$EndComp
Wire Wire Line
2400 1300 2250 1300
Connection ~ 2400 1300
Wire Wire Line
2650 1000 2400 1000
Wire Wire Line
2650 1600 2400 1600
$Comp
L power:GNDA #PWR?
U 1 1 5C092452
P 2050 4650
F 0 "#PWR?" H 2050 4400 50 0001 C CNN
F 1 "GNDA" H 2055 4477 50 0000 C CNN
F 2 "" H 2050 4650 50 0001 C CNN
F 3 "" H 2050 4650 50 0001 C CNN
1 2050 4650
1 0 0 -1
$EndComp
$Comp
L Device:R RfbB?
U 1 1 5C092460
P 2600 3800
F 0 "RfbB?" V 2400 3800 50 0000 C CNN
F 1 "10k" V 2500 3800 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 2530 3800 50 0001 C CNN
F 3 "~" H 2600 3800 50 0001 C CNN
F 4 "Metallfilm" V 2600 3800 50 0001 C CNN "Notes"
1 2600 3800
0 -1 -1 0
$EndComp
$Comp
L Device:C CLPB
U 1 1 5C092467
P 2600 3600
F 0 "CLPB" V 2348 3600 50 0000 C CNN
F 1 "330p" V 2439 3600 50 0000 C CNN
F 2 "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" H 2638 3450 50 0001 C CNN
F 3 "~" H 2600 3600 50 0001 C CNN
1 2600 3600
0 1 1 0
$EndComp
Wire Wire Line
2300 3600 2300 3800
Connection ~ 2300 4150
Wire Wire Line
2750 3800 2900 3800
Wire Wire Line
2900 3800 2900 4250
Wire Wire Line
2900 3600 2900 3800
Connection ~ 2900 3800
Wire Wire Line
2450 3800 2300 3800
Connection ~ 2300 3800
Wire Wire Line
2300 3800 2300 4150
$Comp
L Device:R RoutB
U 1 1 5C092486
P 3150 4250
F 0 "RoutB" V 3357 4250 50 0000 C CNN
F 1 "220" V 3266 4250 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 4250 50 0001 C CNN
F 3 "~" H 3150 4250 50 0001 C CNN
F 4 "Metallfilm" V 3150 4250 50 0001 C CNN "Notes"
1 3150 4250
0 -1 -1 0
$EndComp
$Comp
L Device:R RoutA
U 1 1 5C09248E
P 3150 3000
F 0 "RoutA" V 3357 3000 50 0000 C CNN
F 1 "220" V 3266 3000 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 3080 3000 50 0001 C CNN
F 3 "~" H 3150 3000 50 0001 C CNN
F 4 "Metallfilm" V 3150 3000 50 0001 C CNN "Notes"
1 3150 3000
0 -1 -1 0
$EndComp
Wire Wire Line
3000 4250 2900 4250
Connection ~ 2900 4250
Wire Wire Line
2900 3000 3000 3000
Connection ~ 2900 3000
Wire Wire Line
1900 4150 2300 4150
Wire Wire Line
1900 2900 2300 2900
Wire Wire Line
2300 3600 2450 3600
Wire Wire Line
2750 3600 2900 3600
$Comp
L power:-15V #PWR?
U 1 1 5C0924A3
P 2650 1600
F 0 "#PWR?" H 2650 1700 50 0001 C CNN
F 1 "-15V" H 2665 1773 50 0000 C CNN
F 2 "" H 2650 1600 50 0001 C CNN
F 3 "" H 2650 1600 50 0001 C CNN
1 2650 1600
-1 0 0 1
$EndComp
$Comp
L power:+15V #PWR?
U 1 1 5C0924AA
P 2650 1000
F 0 "#PWR?" H 2650 850 50 0001 C CNN
F 1 "+15V" H 2665 1173 50 0000 C CNN
F 2 "" H 2650 1000 50 0001 C CNN
F 3 "" H 2650 1000 50 0001 C CNN
1 2650 1000
1 0 0 -1
$EndComp
Text HLabel 1900 2900 0 50 Input ~ 0
inA
Text HLabel 1900 4150 0 50 Input ~ 0
inB
Text HLabel 3450 3000 2 50 Output ~ 0
outA
Text HLabel 3450 4250 2 50 Output ~ 0
outB
Wire Wire Line
3300 4250 3450 4250
Wire Wire Line
3300 3000 3450 3000
$Comp
L Device:R RlowA?
U 1 1 5C0560AB
P 2050 3250
F 0 "RlowA?" V 2257 3250 50 0000 C CNN
F 1 "1k" V 2166 3250 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 1980 3250 50 0001 C CNN
F 3 "~" H 2050 3250 50 0001 C CNN
F 4 "Metallfilm" V 2050 3250 50 0001 C CNN "Notes"
1 2050 3250
1 0 0 -1
$EndComp
$Comp
L Device:R RlowB?
U 1 1 5C05615C
P 2050 4500
F 0 "RlowB?" V 2257 4500 50 0000 C CNN
F 1 "1k" V 2166 4500 50 0000 C CNN
F 2 "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" V 1980 4500 50 0001 C CNN
F 3 "~" H 2050 4500 50 0001 C CNN
F 4 "Metallfilm" V 2050 4500 50 0001 C CNN "Notes"
1 2050 4500
1 0 0 -1
$EndComp
Wire Wire Line
2050 3100 2300 3100
Wire Wire Line
2050 4350 2300 4350
Connection ~ 2650 1000
Connection ~ 2650 1600
Text Notes 700 3350 0 50 ~ 0
Rlow for minimum offset error\ndue to input bias current.\nRlow = R1//R2//R3 ... (inputs)
$EndSCHEMATC