diff --git a/controller/espcontroller/espcontroller.ino b/controller/espcontroller/espcontroller.ino index 2414d32..47b332f 100644 --- a/controller/espcontroller/espcontroller.ino +++ b/controller/espcontroller/espcontroller.ino @@ -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 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; +} diff --git a/schematic/mixer.sch b/schematic/mixer.sch index fff8c68..0e3a9fb 100644 --- a/schematic/mixer.sch +++ b/schematic/mixer.sch @@ -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 diff --git a/schematic/mixerinput/Inputopampcircuit_1.png b/schematic/mixerinput/Inputopampcircuit_1.png deleted file mode 100644 index 8d3f21e..0000000 Binary files a/schematic/mixerinput/Inputopampcircuit_1.png and /dev/null differ diff --git a/schematic/mixerinput/inputbuffer.bak b/schematic/mixerinput/inputbuffer.bak deleted file mode 100644 index 1941136..0000000 --- a/schematic/mixerinput/inputbuffer.bak +++ /dev/null @@ -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 diff --git a/schematic/mixerinput/inputbuffer.sch b/schematic/mixerinput/inputbuffer.sch deleted file mode 100644 index 8f9d23d..0000000 --- a/schematic/mixerinput/inputbuffer.sch +++ /dev/null @@ -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 diff --git a/schematic/mixerinput/mixerinput-cache.lib b/schematic/mixerinput/mixerinput-cache.lib deleted file mode 100644 index 2fa940d..0000000 --- a/schematic/mixerinput/mixerinput-cache.lib +++ /dev/null @@ -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 diff --git a/schematic/mixerinput/mixerinput.bak b/schematic/mixerinput/mixerinput.bak deleted file mode 100644 index 6b3441c..0000000 --- a/schematic/mixerinput/mixerinput.bak +++ /dev/null @@ -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 diff --git a/schematic/mixerinput/mixerinput.kicad_pcb b/schematic/mixerinput/mixerinput.kicad_pcb deleted file mode 100644 index 1d6940f..0000000 --- a/schematic/mixerinput/mixerinput.kicad_pcb +++ /dev/null @@ -1,1082 +0,0 @@ -(kicad_pcb (version 20171130) (host pcbnew 5.0.2-bee76a0~70~ubuntu16.04.1) - - (general - (thickness 1.6) - (drawings 0) - (tracks 63) - (zones 0) - (modules 22) - (nets 16) - ) - - (page A4) - (layers - (0 F.Cu signal) - (31 B.Cu signal) - (32 B.Adhes user) - (33 F.Adhes user) - (34 B.Paste user) - (35 F.Paste user) - (36 B.SilkS user) - (37 F.SilkS user) - (38 B.Mask user) - (39 F.Mask user) - (40 Dwgs.User user) - (41 Cmts.User user) - (42 Eco1.User user) - (43 Eco2.User user) - (44 Edge.Cuts user) - (45 Margin user) - (46 B.CrtYd user) - (47 F.CrtYd user) - (48 B.Fab user) - (49 F.Fab user hide) - ) - - (setup - (last_trace_width 1.5) - (trace_clearance 0.2) - (zone_clearance 0.508) - (zone_45_only no) - (trace_min 0.2) - (segment_width 0.2) - (edge_width 0.1) - (via_size 0.8) - (via_drill 0.4) - (via_min_size 0.4) - (via_min_drill 0.3) - (uvia_size 0.3) - (uvia_drill 0.1) - (uvias_allowed no) - (uvia_min_size 0.2) - (uvia_min_drill 0.1) - (pcb_text_width 0.3) - (pcb_text_size 1.5 1.5) - (mod_edge_width 0.15) - (mod_text_size 1 1) - (mod_text_width 0.15) - (pad_size 1.5 1.5) - (pad_drill 0.6) - (pad_to_mask_clearance 0) - (solder_mask_min_width 0.25) - (aux_axis_origin 0 0) - (visible_elements FFFFFF7F) - (pcbplotparams - (layerselection 0x010fc_ffffffff) - (usegerberextensions false) - (usegerberattributes false) - (usegerberadvancedattributes false) - (creategerberjobfile false) - (excludeedgelayer true) - (linewidth 0.100000) - (plotframeref false) - (viasonmask false) - (mode 1) - (useauxorigin false) - (hpglpennumber 1) - (hpglpenspeed 20) - (hpglpendiameter 15.000000) - (psnegative false) - (psa4output false) - (plotreference true) - (plotvalue true) - (plotinvisibletext false) - (padsonsilk false) - (subtractmaskfromsilk false) - (outputformat 1) - (mirror false) - (drillshape 1) - (scaleselection 1) - (outputdirectory "")) - ) - - (net 0 "") - (net 1 +15V) - (net 2 GNDA) - (net 3 -15V) - (net 4 /input1/inB-) - (net 5 "Net-(J1-Pad2)") - (net 6 /input1/inA-) - (net 7 "Net-(J2-Pad2)") - (net 8 /input1/inA+) - (net 9 /input1/inB+) - (net 10 "Net-(Rfb1-Pad1)") - (net 11 /input1/outB) - (net 12 "Net-(Rfb2-Pad1)") - (net 13 /input1/outA) - (net 14 "Net-(RinA-1-Pad2)") - (net 15 "Net-(RinB-1-Pad2)") - - (net_class Default "This is the default net class." - (clearance 0.2) - (trace_width 1.5) - (via_dia 0.8) - (via_drill 0.4) - (uvia_dia 0.3) - (uvia_drill 0.1) - (add_net +15V) - (add_net -15V) - (add_net /input1/inA+) - (add_net /input1/inA-) - (add_net /input1/inB+) - (add_net /input1/inB-) - (add_net /input1/outA) - (add_net /input1/outB) - (add_net GNDA) - (add_net "Net-(J1-Pad2)") - (add_net "Net-(J2-Pad2)") - (add_net "Net-(Rfb1-Pad1)") - (add_net "Net-(Rfb2-Pad1)") - (add_net "Net-(RinA-1-Pad2)") - (add_net "Net-(RinB-1-Pad2)") - ) - - (module Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5C05A0D3) - (at 40.64 43.18 270) - (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf") - (tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor") - (path /5C06F581/5C073395) - (fp_text reference CU+1 (at 1.25 -2.05 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100n (at 1.25 2.05 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -0.25 0.8) (end 2.75 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.621 0.92) (end 1.879 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.05 1.05) (end 3.55 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 1.25 0 270) (layer F.Fab) - (effects (font (size 0.6 0.6) (thickness 0.09))) - ) - (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5C05A184) - (at 45.76 30.48) - (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf") - (tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor") - (path /5C06F581/5C0733A6) - (fp_text reference CU-1 (at 1.25 -2.05) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100n (at 1.25 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 1.25 0) (layer F.Fab) - (effects (font (size 0.6 0.6) (thickness 0.09))) - ) - (fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.05 1.05) (end 3.55 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 0.621 0.92) (end 1.879 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -0.25 0.8) (end 2.75 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 -15V)) - (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A14A) - (at 39.37 50.8 90) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5C06F581/5C072525) - (fp_text reference J1 (at 0 -2.33 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Jumper (at 0 4.87 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 1.27 180) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 /input1/inB-)) - (pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 5 "Net-(J1-Pad2)")) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 5C05736E) (tstamp 5C059DCF) - (at 52.07 50.8 270) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5C06F581/5C0724DE) - (fp_text reference J2 (at 0 -2.33 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Jumper (at 0 4.87 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 1.27) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 /input1/inA-)) - (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 7 "Net-(J2-Pad2)")) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C059C61) - (at 58.42 53.34 270) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5BC9D135) - (fp_text reference J1A1 (at 0 -2.33 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "Audio In 1 A" (at 0 4.87 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 1.27) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 /input1/inA-)) - (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 8 /input1/inA+)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C059CBD) - (at 53.34 27.94) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5BCCAE6C) - (fp_text reference J1AO1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value toInVolume (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 13 /input1/outA)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A099) - (at 33.02 53.34 90) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5BCB9F7A) - (fp_text reference J1B1 (at 0 -2.33 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "Audio In 1 B" (at 0 4.87 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 1.27 180) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 /input1/inB-)) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 9 /input1/inB+)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A05C) - (at 35.56 27.94) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5C08C061) - (fp_text reference J1BO1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value toInVolume (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 11 /input1/outB)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C055E6C) - (at 24.13 20.32) - (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x06 2.54mm single row") - (path /5BD53C35) - (fp_text reference JPWRin1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "+-15V In" (at 0 15.03) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 14.03) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 14.5) (end 1.8 14.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 6.35 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 3 -15V)) - (pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 3 -15V)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059F0B) - (at 46.99 53.34 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724C4) - (fp_text reference RgndA1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10 (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 7 "Net-(J2-Pad2)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059F4D) - (at 44.45 53.34 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C072512) - (fp_text reference RgndB1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10 (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 5 "Net-(J1-Pad2)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059E63) - (at 58.42 45.72 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C07248F) - (fp_text reference RinA+1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 12 "Net-(Rfb2-Pad1)")) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 8 /input1/inA+)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059D67) - (at 55.88 48.26 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724AF) - (fp_text reference RinA-1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 14 "Net-(RinA-1-Pad2)")) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 6 /input1/inA-)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059D25) - (at 33.02 48.26 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724F2) - (fp_text reference RinB+1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 10 "Net-(Rfb1-Pad1)")) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 9 /input1/inB+)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C05A109) - (at 35.56 43.18 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724FE) - (fp_text reference RinB-1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 4 /input1/inB-)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 15 "Net-(RinB-1-Pad2)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059FE0) - (at 50.8 40.64 270) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724B7) - (fp_text reference RlowA1 (at 3.81 -1.92 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 270) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 14 "Net-(RinA-1-Pad2)")) - (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059F8F) - (at 38.1 35.56 270) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C072506) - (fp_text reference RlowB1 (at 3.81 -1.92 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 270) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 15 "Net-(RinB-1-Pad2)")) - (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Package_DIP:DIP-8_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5C059C16) - (at 40.64 33.02) - (descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") - (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") - (path /5C06F581/5C072472) - (fp_text reference U1 (at 3.81 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value LM4562 (at 3.81 9.95) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer F.Fab) (width 0.1)) - (fp_line (start 6.985 8.89) (end 0.635 8.89) (layer F.Fab) (width 0.1)) - (fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer F.Fab) (width 0.1)) - (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.16 8.95) (end 6.46 8.95) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.1 9.15) (end 8.7 9.15) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 3.81) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 11 /input1/outB)) - (pad 5 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 14 "Net-(RinA-1-Pad2)")) - (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 15 "Net-(RinB-1-Pad2)")) - (pad 6 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 12 "Net-(Rfb2-Pad1)")) - (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 10 "Net-(Rfb1-Pad1)")) - (pad 7 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 13 /input1/outA)) - (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 8 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 -15V)) - (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059CF3) - (at 53.34 38.1 90) - (descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm") - (path /5C06F581/5C072498) - (fp_text reference Rfb2 (at 1.27 -2.37 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 1.27 2.37 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 1.27 -2.37 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.5 1.5) (end 3.59 1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.37 0) (end 1.44 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0 0) (end 2.54 0) (layer F.Fab) (width 0.1)) - (fp_circle (center 0 0) (end 1.37 0) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.25 0) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 13 /input1/outA)) - (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 12 "Net-(Rfb2-Pad1)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059E21) - (at 33.02 38.1 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C072534) - (fp_text reference Rfb1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 10 "Net-(Rfb1-Pad1)")) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 11 /input1/outB)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A020) - (at 53.34 22.86) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5C06F581/5C056E2C) - (fp_text reference JGND1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Conn_gnd (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C059ECA) - (at 35.56 22.86) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5C06F581/5C0576D0) - (fp_text reference JGND2 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Conn_gnd (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (segment (start 40.64 40.64) (end 40.64 43.18) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059BF9) (status 30)) - (via (at 40.64 20.32) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1) (tstamp 5C059BF6)) - (segment (start 40.64 27.94) (end 40.64 20.32) (width 1.5) (layer F.Cu) (net 1) (tstamp 5C059E9F)) - (via (at 40.64 27.94) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1) (tstamp 5C059E9C)) - (segment (start 43.18 30.48) (end 40.64 27.94) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E99)) - (segment (start 43.18 39.37) (end 43.18 30.48) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E96)) - (segment (start 40.64 40.64) (end 41.91 40.64) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E93) (status 10)) - (segment (start 41.91 40.64) (end 43.18 39.37) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E90)) - (segment (start 40.64 20.32) (end 30.48 20.32) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E09)) - (segment (start 40.64 20.32) (end 59.69 20.32) (width 1.5) (layer B.Cu) (net 1)) - (segment (start 44.41 45.68) (end 44.45 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059E03) (status 30)) - (segment (start 40.64 45.68) (end 44.41 45.68) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059E00) (status 30)) - (segment (start 44.45 45.72) (end 46.99 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059DFD) (status 30)) - (segment (start 38.1 43.18) (end 38.1 44.45) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059DFA) (status 10)) - (segment (start 39.33 45.68) (end 40.64 45.68) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C9B) (status 20)) - (segment (start 38.1 44.45) (end 39.33 45.68) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EF3)) - (segment (start 49.53 48.26) (end 46.99 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C98) (status 20)) - (segment (start 50.8 48.26) (end 49.53 48.26) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C95) (status 10)) - (segment (start 45.72 30.48) (end 45.72 40.64) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C92) (status 10)) - (segment (start 44.45 41.91) (end 44.45 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C8F) (status 20)) - (segment (start 45.72 40.64) (end 44.45 41.91) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C8C)) - (segment (start 45.76 30.48) (end 45.76 22.9) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EB1) (status 10)) - (segment (start 45.76 22.9) (end 45.72 22.86) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EAE)) - (segment (start 45.76 22.9) (end 30.52 22.9) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EA8)) - (segment (start 45.76 22.9) (end 59.69 22.86) (width 1.5) (layer B.Cu) (net 2)) - (segment (start 48.26 30.48) (end 48.26 33.02) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059EA5) (status 30)) - (segment (start 43.18 25.4) (end 30.48 25.4) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059BF3)) - (via (at 43.18 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3) (tstamp 5C059BF0)) - (segment (start 48.26 25.4) (end 43.18 25.4) (width 1.5) (layer F.Cu) (net 3) (tstamp 5C059BED)) - (via (at 48.26 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3) (tstamp 5C059BEA)) - (segment (start 48.26 30.48) (end 48.26 25.4) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059BE7) (status 10)) - (segment (start 48.26 25.4) (end 59.69 25.4) (width 1.5) (layer B.Cu) (net 3)) - (segment (start 39.37 50.8) (end 35.56 50.8) (width 1.5) (layer B.Cu) (net 4)) - (segment (start 35.56 50.8) (end 35.56 43.18) (width 1.5) (layer B.Cu) (net 4)) - (segment (start 35.56 53.34) (end 35.56 50.8) (width 1.5) (layer B.Cu) (net 4)) - (segment (start 41.91 50.8) (end 43.18 50.8) (width 1.5) (layer B.Cu) (net 5)) - (segment (start 44.45 52.07) (end 44.45 53.34) (width 1.5) (layer B.Cu) (net 5)) - (segment (start 43.18 50.8) (end 44.45 52.07) (width 1.5) (layer B.Cu) (net 5)) - (segment (start 52.07 50.8) (end 55.88 50.8) (width 1.5) (layer B.Cu) (net 6)) - (segment (start 55.88 50.8) (end 55.88 53.34) (width 1.5) (layer B.Cu) (net 6)) - (segment (start 55.88 48.26) (end 55.88 50.8) (width 1.5) (layer B.Cu) (net 6)) - (segment (start 46.99 53.34) (end 46.99 52.07) (width 1.5) (layer B.Cu) (net 7)) - (segment (start 46.99 52.07) (end 48.26 50.8) (width 1.5) (layer B.Cu) (net 7)) - (segment (start 48.26 50.8) (end 49.53 50.8) (width 1.5) (layer B.Cu) (net 7)) - (segment (start 58.42 53.34) (end 58.42 45.72) (width 1.5) (layer B.Cu) (net 8) (tstamp 5C059DAC) (status 30)) - (segment (start 33.02 48.26) (end 33.02 53.34) (width 1.5) (layer B.Cu) (net 9) (tstamp 5C059DA9) (status 30)) - (segment (start 33.02 38.1) (end 40.64 38.1) (width 1.5) (layer B.Cu) (net 10) (tstamp 5C059DA6) (status 30)) - (segment (start 33.02 40.64) (end 33.02 38.1) (width 1.5) (layer B.Cu) (net 10) (tstamp 5C059DA3) (status 30)) - (segment (start 37.02 33.02) (end 35.56 31.56) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059DA0)) - (segment (start 40.64 33.02) (end 37.02 33.02) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D9D) (status 10)) - (segment (start 34.48 30.48) (end 35.56 31.56) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D9A)) - (segment (start 33.02 30.48) (end 34.48 30.48) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D97) (status 10)) - (segment (start 35.56 30.29) (end 35.56 31.56) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D94)) - (segment (start 35.56 27.94) (end 35.56 30.29) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059EB4) (status 10)) - (segment (start 58.42 38.1) (end 53.34 38.1) (width 1.5) (layer B.Cu) (net 12) (tstamp 5C059CA7) (status 30)) - (segment (start 53.34 38.1) (end 48.26 38.1) (width 1.5) (layer B.Cu) (net 12) (tstamp 5C059CA4) (status 30)) - (segment (start 53.34 35.56) (end 48.26 35.56) (width 1.5) (layer B.Cu) (net 13) (tstamp 5C059CA1) (status 30)) - (segment (start 53.34 29.21) (end 53.34 35.56) (width 1.5) (layer B.Cu) (net 13) (tstamp 5C059C9E) (status 20)) - (segment (start 53.34 29.21) (end 53.34 27.94) (width 1.5) (layer B.Cu) (net 13) (tstamp 5C059FC8) (status 20)) - (segment (start 50.8 40.64) (end 48.26 40.64) (width 1.5) (layer B.Cu) (net 14) (tstamp 5C059FC5) (status 30)) - (segment (start 55.88 40.64) (end 50.8 40.64) (width 1.5) (layer B.Cu) (net 14) (tstamp 5C059FC2) (status 30)) - (segment (start 40.64 35.56) (end 38.1 35.56) (width 1.5) (layer B.Cu) (net 15) (tstamp 5C059FBF) (status 30)) - (segment (start 35.56 35.56) (end 38.1 35.56) (width 1.5) (layer B.Cu) (net 15) (tstamp 5C059FBC) (status 30)) - -) diff --git a/schematic/mixerinput/mixerinput.kicad_pcb-bak b/schematic/mixerinput/mixerinput.kicad_pcb-bak deleted file mode 100644 index abefb59..0000000 --- a/schematic/mixerinput/mixerinput.kicad_pcb-bak +++ /dev/null @@ -1,1082 +0,0 @@ -(kicad_pcb (version 20171130) (host pcbnew 5.0.2-bee76a0~70~ubuntu16.04.1) - - (general - (thickness 1.6) - (drawings 0) - (tracks 63) - (zones 0) - (modules 22) - (nets 16) - ) - - (page A4) - (layers - (0 F.Cu signal) - (31 B.Cu signal) - (32 B.Adhes user) - (33 F.Adhes user) - (34 B.Paste user) - (35 F.Paste user) - (36 B.SilkS user) - (37 F.SilkS user) - (38 B.Mask user) - (39 F.Mask user) - (40 Dwgs.User user) - (41 Cmts.User user) - (42 Eco1.User user) - (43 Eco2.User user) - (44 Edge.Cuts user) - (45 Margin user) - (46 B.CrtYd user) - (47 F.CrtYd user) - (48 B.Fab user) - (49 F.Fab user hide) - ) - - (setup - (last_trace_width 1.5) - (trace_clearance 0.2) - (zone_clearance 0.508) - (zone_45_only no) - (trace_min 0.2) - (segment_width 0.2) - (edge_width 0.1) - (via_size 0.8) - (via_drill 0.4) - (via_min_size 0.4) - (via_min_drill 0.3) - (uvia_size 0.3) - (uvia_drill 0.1) - (uvias_allowed no) - (uvia_min_size 0.2) - (uvia_min_drill 0.1) - (pcb_text_width 0.3) - (pcb_text_size 1.5 1.5) - (mod_edge_width 0.15) - (mod_text_size 1 1) - (mod_text_width 0.15) - (pad_size 1.5 1.5) - (pad_drill 0.6) - (pad_to_mask_clearance 0) - (solder_mask_min_width 0.25) - (aux_axis_origin 0 0) - (visible_elements FFFFFF7F) - (pcbplotparams - (layerselection 0x010fc_ffffffff) - (usegerberextensions false) - (usegerberattributes false) - (usegerberadvancedattributes false) - (creategerberjobfile false) - (excludeedgelayer true) - (linewidth 0.100000) - (plotframeref false) - (viasonmask false) - (mode 1) - (useauxorigin false) - (hpglpennumber 1) - (hpglpenspeed 20) - (hpglpendiameter 15.000000) - (psnegative false) - (psa4output false) - (plotreference true) - (plotvalue true) - (plotinvisibletext false) - (padsonsilk false) - (subtractmaskfromsilk false) - (outputformat 1) - (mirror false) - (drillshape 1) - (scaleselection 1) - (outputdirectory "")) - ) - - (net 0 "") - (net 1 +15V) - (net 2 GNDA) - (net 3 -15V) - (net 4 /input1/inB-) - (net 5 "Net-(J1-Pad2)") - (net 6 /input1/inA-) - (net 7 "Net-(J2-Pad2)") - (net 8 /input1/inA+) - (net 9 /input1/inB+) - (net 10 "Net-(Rfb1-Pad1)") - (net 11 /input1/outB) - (net 12 "Net-(Rfb2-Pad1)") - (net 13 /input1/outA) - (net 14 "Net-(RinA-1-Pad2)") - (net 15 "Net-(RinB-1-Pad2)") - - (net_class Default "This is the default net class." - (clearance 0.2) - (trace_width 1.5) - (via_dia 0.8) - (via_drill 0.4) - (uvia_dia 0.3) - (uvia_drill 0.1) - (add_net +15V) - (add_net -15V) - (add_net /input1/inA+) - (add_net /input1/inA-) - (add_net /input1/inB+) - (add_net /input1/inB-) - (add_net /input1/outA) - (add_net /input1/outB) - (add_net GNDA) - (add_net "Net-(J1-Pad2)") - (add_net "Net-(J2-Pad2)") - (add_net "Net-(Rfb1-Pad1)") - (add_net "Net-(Rfb2-Pad1)") - (add_net "Net-(RinA-1-Pad2)") - (add_net "Net-(RinB-1-Pad2)") - ) - - (module Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5C05A0D3) - (at 40.64 43.18 270) - (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf") - (tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor") - (path /5C06F581/5C073395) - (fp_text reference CU+1 (at 1.25 -2.05 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100n (at 1.25 2.05 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -0.25 0.8) (end 2.75 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.621 0.92) (end 1.879 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.05 1.05) (end 3.55 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 1.25 0 270) (layer F.Fab) - (effects (font (size 0.6 0.6) (thickness 0.09))) - ) - (pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5C05A184) - (at 45.76 30.48) - (descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf") - (tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor") - (path /5C06F581/5C0733A6) - (fp_text reference CU-1 (at 1.25 -2.05) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 100n (at 1.25 2.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 1.25 0) (layer F.Fab) - (effects (font (size 0.6 0.6) (thickness 0.09))) - ) - (fp_line (start 3.55 -1.05) (end -1.05 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.55 1.05) (end 3.55 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.05 1.05) (end 3.55 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 0.621 0.92) (end 1.879 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.621 -0.92) (end 1.879 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 2.75 -0.8) (end -0.25 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.75 0.8) (end 2.75 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -0.25 0.8) (end 2.75 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start -0.25 -0.8) (end -0.25 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 -15V)) - (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A14A) - (at 39.37 50.8 90) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5C06F581/5C072525) - (fp_text reference J1 (at 0 -2.33 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Jumper (at 0 4.87 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 1.27 180) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 /input1/inB-)) - (pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 5 "Net-(J1-Pad2)")) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 5C05736E) (tstamp 5C059DCF) - (at 52.07 50.8 270) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5C06F581/5C0724DE) - (fp_text reference J2 (at 0 -2.33 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Jumper (at 0 4.87 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 1.27) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 /input1/inA-)) - (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 7 "Net-(J2-Pad2)")) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C059C61) - (at 58.42 53.34 270) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5BC9D135) - (fp_text reference J1A1 (at 0 -2.33 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "Audio In 1 A" (at 0 4.87 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 1.27) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 /input1/inA-)) - (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 8 /input1/inA+)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C059CBD) - (at 53.34 27.94) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5BCCAE6C) - (fp_text reference J1AO1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value toInVolume (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 13 /input1/outA)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A099) - (at 33.02 53.34 90) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (path /5BCB9F7A) - (fp_text reference J1B1 (at 0 -2.33 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "Audio In 1 B" (at 0 4.87 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 1.27 180) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 /input1/inB-)) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 9 /input1/inB+)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A05C) - (at 35.56 27.94) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5C08C061) - (fp_text reference J1BO1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value toInVolume (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 11 /input1/outB)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C055E6C) - (at 24.13 20.32) - (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x06 2.54mm single row") - (path /5BD53C35) - (fp_text reference JPWRin1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value "+-15V In" (at 0 15.03) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 14.03) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 14.5) (end 1.8 14.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 6.35 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 3 -15V)) - (pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 3 -15V)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059F0B) - (at 46.99 53.34 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724C4) - (fp_text reference RgndA1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10 (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 7 "Net-(J2-Pad2)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059F4D) - (at 44.45 53.34 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C072512) - (fp_text reference RgndB1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10 (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 5 "Net-(J1-Pad2)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059E63) - (at 58.42 45.72 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C07248F) - (fp_text reference RinA+1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 12 "Net-(Rfb2-Pad1)")) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 8 /input1/inA+)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059D67) - (at 55.88 48.26 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724AF) - (fp_text reference RinA-1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 14 "Net-(RinA-1-Pad2)")) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 6 /input1/inA-)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059D25) - (at 33.02 48.26 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724F2) - (fp_text reference RinB+1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 10 "Net-(Rfb1-Pad1)")) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 9 /input1/inB+)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C05A109) - (at 35.56 43.18 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724FE) - (fp_text reference RinB-1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 4 /input1/inB-)) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 15 "Net-(RinB-1-Pad2)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059FE0) - (at 50.8 40.64 270) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C0724B7) - (fp_text reference RlowA1 (at 3.81 -1.92 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 270) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 14 "Net-(RinA-1-Pad2)")) - (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059F8F) - (at 38.1 35.56 270) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C072506) - (fp_text reference RlowB1 (at 3.81 -1.92 270) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 270) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 270) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 15 "Net-(RinB-1-Pad2)")) - (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Package_DIP:DIP-8_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 5C059C16) - (at 40.64 33.02) - (descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") - (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") - (path /5C06F581/5C072472) - (fp_text reference U1 (at 3.81 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value LM4562 (at 3.81 9.95) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer F.Fab) (width 0.1)) - (fp_line (start 6.985 8.89) (end 0.635 8.89) (layer F.Fab) (width 0.1)) - (fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer F.Fab) (width 0.1)) - (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.16 8.95) (end 6.46 8.95) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.1 9.15) (end 8.7 9.15) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 3.81) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 11 /input1/outB)) - (pad 5 thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 14 "Net-(RinA-1-Pad2)")) - (pad 2 thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 15 "Net-(RinB-1-Pad2)")) - (pad 6 thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 12 "Net-(Rfb2-Pad1)")) - (pad 3 thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 10 "Net-(Rfb1-Pad1)")) - (pad 7 thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 13 /input1/outA)) - (pad 4 thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 1 +15V)) - (pad 8 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 -15V)) - (model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059CF3) - (at 53.34 38.1 90) - (descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm") - (path /5C06F581/5C072498) - (fp_text reference Rfb2 (at 1.27 -2.37 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 1.27 2.37 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 1.27 -2.37 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.5 1.5) (end 3.59 1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.37 0) (end 1.44 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0 0) (end 2.54 0) (layer F.Fab) (width 0.1)) - (fp_circle (center 0 0) (end 1.37 0) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 0) (end 1.25 0) (layer F.Fab) (width 0.1)) - (pad 2 thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 13 /input1/outA)) - (pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 12 "Net-(Rfb2-Pad1)")) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5C059E21) - (at 33.02 38.1 90) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (path /5C06F581/5C072534) - (fp_text reference Rfb1 (at 3.81 -1.92 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value 10k (at 3.81 1.92 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) - (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 3.81 0 90) (layer F.Fab) - (effects (font (size 0.72 0.72) (thickness 0.108))) - ) - (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 10 "Net-(Rfb1-Pad1)")) - (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 11 /input1/outB)) - (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C05A020) - (at 53.34 22.86) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5C06F581/5C056E2C) - (fp_text reference JGND1 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Conn_gnd (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5C059ECA) - (at 35.56 22.86) - (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x01 2.54mm single row") - (path /5C06F581/5C0576D0) - (fp_text reference JGND2 (at 0 -2.33) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Conn_gnd (at 0 2.33) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_text user %R (at 0 0 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 2 GNDA)) - (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (segment (start 40.64 40.64) (end 40.64 43.18) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059BF9) (status 30)) - (via (at 40.64 20.32) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1) (tstamp 5C059BF6)) - (segment (start 40.64 27.94) (end 40.64 20.32) (width 1.5) (layer F.Cu) (net 1) (tstamp 5C059E9F)) - (via (at 40.64 27.94) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1) (tstamp 5C059E9C)) - (segment (start 43.18 30.48) (end 40.64 27.94) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E99)) - (segment (start 43.18 39.37) (end 43.18 30.48) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E96)) - (segment (start 40.64 40.64) (end 41.91 40.64) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E93) (status 10)) - (segment (start 41.91 40.64) (end 43.18 39.37) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E90)) - (segment (start 40.64 20.32) (end 30.48 20.32) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E09)) - (segment (start 40.64 20.32) (end 55.88 20.32) (width 1.5) (layer B.Cu) (net 1) (tstamp 5C059E06)) - (segment (start 44.41 45.68) (end 44.45 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059E03) (status 30)) - (segment (start 40.64 45.68) (end 44.41 45.68) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059E00) (status 30)) - (segment (start 44.45 45.72) (end 46.99 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059DFD) (status 30)) - (segment (start 38.1 43.18) (end 38.1 44.45) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059DFA) (status 10)) - (segment (start 39.33 45.68) (end 40.64 45.68) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C9B) (status 20)) - (segment (start 38.1 44.45) (end 39.33 45.68) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EF3)) - (segment (start 49.53 48.26) (end 46.99 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C98) (status 20)) - (segment (start 50.8 48.26) (end 49.53 48.26) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C95) (status 10)) - (segment (start 45.72 30.48) (end 45.72 40.64) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C92) (status 10)) - (segment (start 44.45 41.91) (end 44.45 45.72) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C8F) (status 20)) - (segment (start 45.72 40.64) (end 44.45 41.91) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059C8C)) - (segment (start 45.76 30.48) (end 45.76 22.9) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EB1) (status 10)) - (segment (start 45.76 22.9) (end 45.72 22.86) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EAE)) - (segment (start 45.76 22.9) (end 55.84 22.9) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EAB)) - (segment (start 45.76 22.9) (end 30.52 22.9) (width 1.5) (layer B.Cu) (net 2) (tstamp 5C059EA8)) - (segment (start 48.26 30.48) (end 48.26 33.02) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059EA5) (status 30)) - (segment (start 48.26 25.4) (end 55.88 25.4) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059EA2)) - (segment (start 43.18 25.4) (end 30.48 25.4) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059BF3)) - (via (at 43.18 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3) (tstamp 5C059BF0)) - (segment (start 48.26 25.4) (end 43.18 25.4) (width 1.5) (layer F.Cu) (net 3) (tstamp 5C059BED)) - (via (at 48.26 25.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3) (tstamp 5C059BEA)) - (segment (start 48.26 30.48) (end 48.26 25.4) (width 1.5) (layer B.Cu) (net 3) (tstamp 5C059BE7) (status 10)) - (segment (start 39.37 50.8) (end 35.56 50.8) (width 1.5) (layer B.Cu) (net 4)) - (segment (start 35.56 50.8) (end 35.56 43.18) (width 1.5) (layer B.Cu) (net 4)) - (segment (start 35.56 53.34) (end 35.56 50.8) (width 1.5) (layer B.Cu) (net 4)) - (segment (start 41.91 50.8) (end 43.18 50.8) (width 1.5) (layer B.Cu) (net 5)) - (segment (start 44.45 52.07) (end 44.45 53.34) (width 1.5) (layer B.Cu) (net 5)) - (segment (start 43.18 50.8) (end 44.45 52.07) (width 1.5) (layer B.Cu) (net 5)) - (segment (start 52.07 50.8) (end 55.88 50.8) (width 1.5) (layer B.Cu) (net 6)) - (segment (start 55.88 50.8) (end 55.88 53.34) (width 1.5) (layer B.Cu) (net 6)) - (segment (start 55.88 48.26) (end 55.88 50.8) (width 1.5) (layer B.Cu) (net 6)) - (segment (start 46.99 53.34) (end 46.99 52.07) (width 1.5) (layer B.Cu) (net 7)) - (segment (start 46.99 52.07) (end 48.26 50.8) (width 1.5) (layer B.Cu) (net 7)) - (segment (start 48.26 50.8) (end 49.53 50.8) (width 1.5) (layer B.Cu) (net 7)) - (segment (start 58.42 53.34) (end 58.42 45.72) (width 1.5) (layer B.Cu) (net 8) (tstamp 5C059DAC) (status 30)) - (segment (start 33.02 48.26) (end 33.02 53.34) (width 1.5) (layer B.Cu) (net 9) (tstamp 5C059DA9) (status 30)) - (segment (start 33.02 38.1) (end 40.64 38.1) (width 1.5) (layer B.Cu) (net 10) (tstamp 5C059DA6) (status 30)) - (segment (start 33.02 40.64) (end 33.02 38.1) (width 1.5) (layer B.Cu) (net 10) (tstamp 5C059DA3) (status 30)) - (segment (start 37.02 33.02) (end 35.56 31.56) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059DA0)) - (segment (start 40.64 33.02) (end 37.02 33.02) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D9D) (status 10)) - (segment (start 34.48 30.48) (end 35.56 31.56) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D9A)) - (segment (start 33.02 30.48) (end 34.48 30.48) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D97) (status 10)) - (segment (start 35.56 30.29) (end 35.56 31.56) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059D94)) - (segment (start 35.56 27.94) (end 35.56 30.29) (width 1.5) (layer B.Cu) (net 11) (tstamp 5C059EB4) (status 10)) - (segment (start 58.42 38.1) (end 53.34 38.1) (width 1.5) (layer B.Cu) (net 12) (tstamp 5C059CA7) (status 30)) - (segment (start 53.34 38.1) (end 48.26 38.1) (width 1.5) (layer B.Cu) (net 12) (tstamp 5C059CA4) (status 30)) - (segment (start 53.34 35.56) (end 48.26 35.56) (width 1.5) (layer B.Cu) (net 13) (tstamp 5C059CA1) (status 30)) - (segment (start 53.34 29.21) (end 53.34 35.56) (width 1.5) (layer B.Cu) (net 13) (tstamp 5C059C9E) (status 20)) - (segment (start 53.34 29.21) (end 53.34 27.94) (width 1.5) (layer B.Cu) (net 13) (tstamp 5C059FC8) (status 20)) - (segment (start 50.8 40.64) (end 48.26 40.64) (width 1.5) (layer B.Cu) (net 14) (tstamp 5C059FC5) (status 30)) - (segment (start 55.88 40.64) (end 50.8 40.64) (width 1.5) (layer B.Cu) (net 14) (tstamp 5C059FC2) (status 30)) - (segment (start 40.64 35.56) (end 38.1 35.56) (width 1.5) (layer B.Cu) (net 15) (tstamp 5C059FBF) (status 30)) - (segment (start 35.56 35.56) (end 38.1 35.56) (width 1.5) (layer B.Cu) (net 15) (tstamp 5C059FBC) (status 30)) - -) diff --git a/schematic/mixerinput/mixerinput.net b/schematic/mixerinput/mixerinput.net deleted file mode 100644 index e548599..0000000 --- a/schematic/mixerinput/mixerinput.net +++ /dev/null @@ -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))))) \ No newline at end of file diff --git a/schematic/mixerinput/mixerinput.pro b/schematic/mixerinput/mixerinput.pro deleted file mode 100644 index 152769c..0000000 --- a/schematic/mixerinput/mixerinput.pro +++ /dev/null @@ -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] diff --git a/schematic/mixerinput/mixerinput.sch b/schematic/mixerinput/mixerinput.sch deleted file mode 100644 index 6b3441c..0000000 --- a/schematic/mixerinput/mixerinput.sch +++ /dev/null @@ -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 diff --git a/schematic/mixerinput/outputbuffer.bak b/schematic/mixerinput/outputbuffer.bak deleted file mode 100644 index 0e50321..0000000 --- a/schematic/mixerinput/outputbuffer.bak +++ /dev/null @@ -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 diff --git a/schematic/mixeroutput/mixeroutput-cache.lib b/schematic/mixeroutput/mixeroutput-cache.lib deleted file mode 100644 index bab9354..0000000 --- a/schematic/mixeroutput/mixeroutput-cache.lib +++ /dev/null @@ -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 diff --git a/schematic/mixeroutput/mixeroutput.bak b/schematic/mixeroutput/mixeroutput.bak deleted file mode 100644 index 00c7d5b..0000000 --- a/schematic/mixeroutput/mixeroutput.bak +++ /dev/null @@ -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 diff --git a/schematic/mixeroutput/mixeroutput.pro b/schematic/mixeroutput/mixeroutput.pro deleted file mode 100644 index 152769c..0000000 --- a/schematic/mixeroutput/mixeroutput.pro +++ /dev/null @@ -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] diff --git a/schematic/mixeroutput/mixeroutput.sch b/schematic/mixeroutput/mixeroutput.sch deleted file mode 100644 index 00c7d5b..0000000 --- a/schematic/mixeroutput/mixeroutput.sch +++ /dev/null @@ -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 diff --git a/schematic/mixeroutput/outputbuffer.bak b/schematic/mixeroutput/outputbuffer.bak deleted file mode 100644 index 6da0f6f..0000000 --- a/schematic/mixeroutput/outputbuffer.bak +++ /dev/null @@ -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 diff --git a/schematic/mixeroutput/outputbuffer.sch b/schematic/mixeroutput/outputbuffer.sch deleted file mode 100644 index 1adde6a..0000000 --- a/schematic/mixeroutput/outputbuffer.sch +++ /dev/null @@ -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