20190118. working controller prototype
This commit is contained in:
commit
4a3ffe5d9b
65 changed files with 71768 additions and 0 deletions
180
controller/espcontroller/espcontroller.ino
Normal file
180
controller/espcontroller/espcontroller.ino
Normal file
|
@ -0,0 +1,180 @@
|
|||
//WeMos D1 R2 & mini
|
||||
|
||||
//D8 is not working??
|
||||
|
||||
//Serial
|
||||
long last_serialdebug=0;
|
||||
#define INTERVAL_SERIALDEBUG 200
|
||||
|
||||
//Inputs
|
||||
#define PIN_BUTTON D3 //D3 should not be pulled to gnd while booting
|
||||
#define PIN_ENCA D1
|
||||
#define PIN_ENCB D2
|
||||
#define BUTTON_RELEASE_DEBOUNCE 100 //minimum time after button release to reenable triggering
|
||||
|
||||
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)
|
||||
|
||||
#include <Encoder.h>
|
||||
Encoder volEnc(PIN_ENCA,PIN_ENCB);
|
||||
|
||||
//Servo stuff
|
||||
#define PIN_MOTOR_IN1 D6 //L293 Motor IN1
|
||||
#define PIN_MOTOR_IN2 D5 //L293 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_MAX 1010 //maximum value pot can reach
|
||||
|
||||
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))
|
||||
|
||||
//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 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
|
||||
|
||||
//error
|
||||
uint8_t error=0;
|
||||
#define NOERROR 0
|
||||
#define MOTORDIDNOTTURN 1
|
||||
|
||||
void setup() {
|
||||
pinMode(LED_BUILTIN,OUTPUT);
|
||||
|
||||
Serial.begin(115200);
|
||||
|
||||
pinMode(PIN_BUTTON,INPUT_PULLUP);
|
||||
|
||||
pinMode(PIN_MOTOR_IN1,OUTPUT);
|
||||
pinMode(PIN_MOTOR_IN2,OUTPUT);
|
||||
|
||||
digitalWrite(PIN_MOTOR_IN1,LOW);
|
||||
digitalWrite(PIN_MOTOR_IN2,LOW);
|
||||
|
||||
pinMode(PIN_POT,INPUT);
|
||||
|
||||
Serial.println("Setup finished");
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
long loopmillis=millis();
|
||||
|
||||
//Serial Input ##############################################
|
||||
while (Serial.available() > 0) {
|
||||
int _value = Serial.parseInt();
|
||||
if (Serial.read() == '\n') {
|
||||
Serial.print("value=");
|
||||
Serial.println(_value);
|
||||
poti_set=_value;
|
||||
poti_reachedposition=false; //aim for new position
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//Inputs ###################################################
|
||||
poti_read=analogRead(PIN_POT); //read poti
|
||||
if (!digitalRead(PIN_BUTTON)){ //button pressed
|
||||
if (button_released){
|
||||
button_released=false; //flag: not released
|
||||
if(loopmillis-last_button_released > BUTTON_RELEASE_DEBOUNCE){
|
||||
button_flag=true;
|
||||
}
|
||||
}
|
||||
}else if(!button_flag && !button_released){ //button released and flag has been cleared
|
||||
last_button_released=loopmillis;
|
||||
button_released=true;
|
||||
}
|
||||
|
||||
//Read Encoder to velocity "volEncVel"
|
||||
int volEncVel=0;
|
||||
int _volEnc=volEnc.read();
|
||||
if (_volEnc!=0){ //encoder moved
|
||||
volEncVel=_volEnc;
|
||||
volEnc.write(0); //reset value
|
||||
}
|
||||
|
||||
|
||||
//Input Handling
|
||||
if (volEncVel!=0){ //knob moved
|
||||
poti_set+=volEncVel; //change poti set value
|
||||
poti_set=constrain(poti_set, POT_MIN,POT_MAX);
|
||||
poti_reachedposition=false;
|
||||
}
|
||||
|
||||
|
||||
//Motor Movement Routine #################
|
||||
if (error==0){ //no errors
|
||||
|
||||
if (!poti_reachedposition && abs(poti_read-poti_set)>DEADZONE_POTI){ //error too high
|
||||
digitalWrite(LED_BUILTIN,HIGH);
|
||||
if (poti_read-poti_set < 0){
|
||||
MOTOR_LEFT();
|
||||
}else{
|
||||
MOTOR_RIGHT();
|
||||
}
|
||||
}else{
|
||||
MOTOR_STOP();
|
||||
poti_reachedposition=true; //position reached
|
||||
digitalWrite(LED_BUILTIN,LOW);
|
||||
}
|
||||
|
||||
|
||||
if ( loopmillis > last_motorcheck+INTERVAL_MOTORCHECK){
|
||||
last_motorcheck=loopmillis;
|
||||
|
||||
motor_vel=(poti_read-poti_read_last)*1000 /INTERVAL_MOTORCHECK ; //calculate current motor velocity
|
||||
poti_read_last=poti_read;
|
||||
|
||||
//motor fail check
|
||||
if (MOTOR_TURNING() && abs(motor_vel)<MINIMUM_MOTORVEL){ //motor is turning too slow
|
||||
if (last_motorTooSlow==0){ //first time slow motor recognized
|
||||
last_motorTooSlow=loopmillis;
|
||||
}else if (loopmillis-last_motorTooSlow > MOTOR_FAILTIME){
|
||||
error=MOTORDIDNOTTURN;
|
||||
Serial.println("MOTORDIDNOTTURN");
|
||||
}
|
||||
|
||||
}else if (last_motorTooSlow>0){ //was recognized too slow but is now turning fast again
|
||||
last_motorTooSlow=0; //reset
|
||||
}
|
||||
|
||||
}
|
||||
}else{ //an error occured. error!=0
|
||||
MOTOR_STOP();
|
||||
}
|
||||
|
||||
|
||||
if ( loopmillis > last_serialdebug+INTERVAL_SERIALDEBUG){
|
||||
last_serialdebug=loopmillis;
|
||||
|
||||
|
||||
Serial.print(" set=");
|
||||
Serial.print(poti_set);
|
||||
Serial.print(" is=");
|
||||
Serial.print(poti_read);
|
||||
Serial.print(" vel=");
|
||||
Serial.print(motor_vel);
|
||||
Serial.println("");
|
||||
|
||||
if (button_flag){ //TODO: remove hier if correct behaviour implemented
|
||||
Serial.println("BUTTON Pressed");
|
||||
button_flag=false; //clear flag to reenable button triggering.
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
2792
front design/20190108_mixer_front.dxf
Normal file
2792
front design/20190108_mixer_front.dxf
Normal file
File diff suppressed because it is too large
Load diff
2850
front design/20190110_mixer_front.dxf
Normal file
2850
front design/20190110_mixer_front.dxf
Normal file
File diff suppressed because it is too large
Load diff
BIN
front design/FrontDesign.exe - Verknüpfung.lnk
Normal file
BIN
front design/FrontDesign.exe - Verknüpfung.lnk
Normal file
Binary file not shown.
BIN
front design/mixer_back.bak
Normal file
BIN
front design/mixer_back.bak
Normal file
Binary file not shown.
BIN
front design/mixer_back.fpd
Normal file
BIN
front design/mixer_back.fpd
Normal file
Binary file not shown.
BIN
front design/mixer_front.bak
Normal file
BIN
front design/mixer_front.bak
Normal file
Binary file not shown.
BIN
front design/mixer_front.fpd
Normal file
BIN
front design/mixer_front.fpd
Normal file
Binary file not shown.
BIN
front design/old_mixer_front_knobs.fpd
Normal file
BIN
front design/old_mixer_front_knobs.fpd
Normal file
Binary file not shown.
BIN
inventor/Front.ipt
Normal file
BIN
inventor/Front.ipt
Normal file
Binary file not shown.
BIN
inventor/Mixer.ipj
Normal file
BIN
inventor/Mixer.ipj
Normal file
Binary file not shown.
BIN
inventor/OldVersions/Front.0002.ipt
Normal file
BIN
inventor/OldVersions/Front.0002.ipt
Normal file
Binary file not shown.
BIN
inventor/OldVersions/Mixer.ipj.bak
Normal file
BIN
inventor/OldVersions/Mixer.ipj.bak
Normal file
Binary file not shown.
15730
inventor/front.dxf
Normal file
15730
inventor/front.dxf
Normal file
File diff suppressed because it is too large
Load diff
327
mixersupply/20181023_mixersupply-PTH_left.ngc
Normal file
327
mixersupply/20181023_mixersupply-PTH_left.ngc
Normal file
|
@ -0,0 +1,327 @@
|
|||
|
||||
G21
|
||||
G90
|
||||
G94
|
||||
F70.00
|
||||
G00 Z2.0000
|
||||
M03
|
||||
G4 P1
|
||||
G00 X80.6300Y-64.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X75.6300Y-66.0400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X34.9100Y-43.1800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X34.9100Y-45.7200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X39.9900Y-33.0200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X37.4500Y-38.1000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X37.4500Y-49.5300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X32.3700Y-33.0200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X39.9900Y-25.4000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X34.9900Y-25.4000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X42.5300Y-34.2900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X42.5300Y-44.4500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X21.6110Y-61.9000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X20.9400Y-63.5000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X18.4400Y-63.5000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X17.7690Y-65.1000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X29.8300Y-43.1400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X29.8300Y-45.6400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X22.1300Y-71.1200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X17.1300Y-71.1200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X71.7400Y-34.2900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X64.1200Y-34.2900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X46.3400Y-34.2900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X46.3400Y-44.4500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X24.1510Y-49.2000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X23.4800Y-50.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X20.9800Y-50.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X20.3090Y-52.4000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X43.7200Y-71.1200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X38.7200Y-71.1200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X32.3700Y-35.5600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X22.2100Y-35.5600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X50.1500Y-38.1000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X50.1500Y-48.2600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X59.0400Y-40.6400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X56.5000Y-38.1000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X53.9600Y-40.6400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X74.2800Y-26.6700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X61.5800Y-26.6700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X18.4000Y-36.8300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X18.4000Y-39.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X24.6700Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X22.1700Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X19.6700Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X17.1700Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X14.6700Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X41.1400Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X38.6400Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X36.1400Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X33.6400Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X86.3900Y-49.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X84.4400Y-39.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X57.7700Y-46.9900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X55.2300Y-46.9900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X79.3600Y-39.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X79.3600Y-49.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X37.4500Y-21.5900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X34.9100Y-21.5900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X32.3700Y-21.5900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X42.6300Y-53.3400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X42.5300Y-64.1400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.8300Y-53.3400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.8300Y-64.1400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X71.7400Y-50.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X64.1200Y-54.6100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X55.2300Y-63.5000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X55.2300Y-71.5000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X78.0900Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X73.0100Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X62.8500Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X57.7700Y-78.7400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X99.6800Y-39.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X99.6800Y-47.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X92.0600Y-64.7700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X92.0600Y-74.9300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X102.2200Y-17.7800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X102.2200Y-81.2800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X3.1600Y-17.7800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X3.1600Y-81.2800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X0.0000Y0.0000
|
||||
M05
|
||||
M30
|
431
mixersupply/20181023_mixersupply-PTH_right.ngc
Normal file
431
mixersupply/20181023_mixersupply-PTH_right.ngc
Normal file
|
@ -0,0 +1,431 @@
|
|||
|
||||
G21
|
||||
G90
|
||||
G94
|
||||
F70.00
|
||||
G00 Z2.0000
|
||||
M03
|
||||
G4 P1
|
||||
G00 X85.9000Y-36.8300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X78.2800Y-36.8300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X74.4700Y-30.4800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X74.4700Y-58.4200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X43.9900Y-62.2300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.2900Y-62.2300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X59.5600Y-35.0010
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X57.9600Y-31.8300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X57.9600Y-34.3300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X56.3600Y-31.1590
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-24.1300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-29.1300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X32.8900Y-56.5110
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.2900Y-53.3400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.2900Y-55.8400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X29.6900Y-52.6690
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X50.6700Y-56.5110
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X49.0700Y-53.3400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X49.0700Y-55.8400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X47.4700Y-52.6690
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X32.8900Y-42.6210
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.2900Y-39.4500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X31.2900Y-41.9500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X29.6900Y-38.7790
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X22.4000Y-55.8800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X12.2400Y-55.8800
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X59.5600Y-64.1310
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X57.9600Y-60.9600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X57.9600Y-63.4600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X56.3600Y-60.2890
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X93.5200Y-24.1300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X93.5200Y-29.1300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X89.7100Y-24.2100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X89.7100Y-29.2100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X40.1800Y-72.3900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X35.1800Y-72.3900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X7.1600Y-50.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X7.1600Y-55.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X25.2700Y-34.9210
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X23.6700Y-31.7500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X23.6700Y-34.2500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X22.0700Y-31.0790
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X45.2600Y-24.1300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X40.2600Y-24.1300
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X50.6700Y-42.5410
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X49.0700Y-39.3700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X49.0700Y-41.8700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X47.4700Y-38.6990
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X12.2400Y-44.4500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X7.2400Y-44.4500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X25.2700Y-64.1310
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X23.6700Y-60.9600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X23.6700Y-63.4600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X22.0700Y-60.2890
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X85.9000Y-24.2100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X85.9000Y-29.2100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X16.0500Y-34.2900
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X16.0500Y-44.4500
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X68.4500Y-42.5810
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X66.8500Y-39.4100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X66.8500Y-41.9100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X65.2500Y-38.7390
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X68.4500Y-56.5910
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X66.8500Y-53.4200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X66.8500Y-55.9200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X65.2500Y-52.7490
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-33.0200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X85.9000Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X85.9000Y-33.0200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X12.2400Y-48.2600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X9.7000Y-48.2600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X93.5200Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X93.5200Y-33.0200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X89.7100Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X89.7100Y-33.0200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X12.2400Y-53.3400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X9.7000Y-53.3400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-44.5700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-47.0700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-49.5700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-52.0700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-54.5700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-57.0700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X42.7200Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X40.1800Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X37.6400Y-20.3200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X42.7200Y-76.2000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X40.1800Y-76.2000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X37.6400Y-76.2000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X92.4400Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X88.4400Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X84.4400Y-77.4700
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X94.7900Y-45.7200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X94.7900Y-50.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X94.7900Y-60.9600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X94.7900Y-66.0400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-45.7200
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-50.8000
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-60.9600
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X82.0900Y-66.0400
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X108.7600Y-16.5100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X108.7600Y-80.0100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-16.5100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X2.0800Y-80.0100
|
||||
G01 Z-2.0000
|
||||
G01 Z0
|
||||
G00 Z2.0000
|
||||
G00 X0.0000Y0.0000
|
||||
M05
|
||||
M30
|
5
mixersupply/fp-lib-table
Normal file
5
mixersupply/fp-lib-table
Normal file
|
@ -0,0 +1,5 @@
|
|||
(fp_lib_table
|
||||
(lib (name mixersupply_connectors)(type KiCad)(uri ${KIPRJMOD}/mixersupply_connectors.pretty)(options "")(descr ""))
|
||||
(lib (name mixersupply_fuse)(type KiCad)(uri ${KIPRJMOD}/mixersupply_fuse.pretty)(options "")(descr ""))
|
||||
(lib (name mixersupply_relay)(type KiCad)(uri ${KIPRJMOD}/mixersupply_relay.pretty)(options "")(descr ""))
|
||||
)
|
5972
mixersupply/mixersupply-B.Cu.gbr
Normal file
5972
mixersupply/mixersupply-B.Cu.gbr
Normal file
File diff suppressed because it is too large
Load diff
6399
mixersupply/mixersupply-B.Mask.gbr
Normal file
6399
mixersupply/mixersupply-B.Mask.gbr
Normal file
File diff suppressed because it is too large
Load diff
15
mixersupply/mixersupply-B.Paste.gbr
Normal file
15
mixersupply/mixersupply-B.Paste.gbr
Normal file
|
@ -0,0 +1,15 @@
|
|||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.1-33cea8e~68~ubuntu16.04.1*
|
||||
G04 #@! TF.CreationDate,2018-10-23T23:14:49+02:00*
|
||||
G04 #@! TF.ProjectId,mixersupply,6D69786572737570706C792E6B696361,1*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Paste,Bot*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.1-33cea8e~68~ubuntu16.04.1) date Di 23 Okt 2018 23:14:49 CEST*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
15
mixersupply/mixersupply-B.SilkS.gbr
Normal file
15
mixersupply/mixersupply-B.SilkS.gbr
Normal file
|
@ -0,0 +1,15 @@
|
|||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.1-33cea8e~68~ubuntu16.04.1*
|
||||
G04 #@! TF.CreationDate,2018-10-23T23:14:49+02:00*
|
||||
G04 #@! TF.ProjectId,mixersupply,6D69786572737570706C792E6B696361,1*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Legend,Bot*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.1-33cea8e~68~ubuntu16.04.1) date Di 23 Okt 2018 23:14:49 CEST*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
24
mixersupply/mixersupply-Edge.Cuts.gbr
Normal file
24
mixersupply/mixersupply-Edge.Cuts.gbr
Normal file
|
@ -0,0 +1,24 @@
|
|||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.1-33cea8e~68~ubuntu16.04.1*
|
||||
G04 #@! TF.CreationDate,2018-10-23T23:14:49+02:00*
|
||||
G04 #@! TF.ProjectId,mixersupply,6D69786572737570706C792E6B696361,1*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Profile,NP*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.1-33cea8e~68~ubuntu16.04.1) date Di 23 Okt 2018 23:14:49 CEST*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
%ADD10C,0.150000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X12700000Y-86360000D02*
|
||||
X12700000Y-12700000D01*
|
||||
X228600000Y-86360000D02*
|
||||
X12700000Y-86360000D01*
|
||||
X12700000Y-12700000D02*
|
||||
X228600000Y-12700000D01*
|
||||
X228600000Y-12700000D02*
|
||||
X228600000Y-86360000D01*
|
||||
M02*
|
1031
mixersupply/mixersupply-F.Cu.gbr
Normal file
1031
mixersupply/mixersupply-F.Cu.gbr
Normal file
File diff suppressed because it is too large
Load diff
6399
mixersupply/mixersupply-F.Mask.gbr
Normal file
6399
mixersupply/mixersupply-F.Mask.gbr
Normal file
File diff suppressed because it is too large
Load diff
15
mixersupply/mixersupply-F.Paste.gbr
Normal file
15
mixersupply/mixersupply-F.Paste.gbr
Normal file
|
@ -0,0 +1,15 @@
|
|||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,5.0.1-33cea8e~68~ubuntu16.04.1*
|
||||
G04 #@! TF.CreationDate,2018-10-23T23:14:49+02:00*
|
||||
G04 #@! TF.ProjectId,mixersupply,6D69786572737570706C792E6B696361,1*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Paste,Top*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 5.0.1-33cea8e~68~ubuntu16.04.1) date Di 23 Okt 2018 23:14:49 CEST*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
7823
mixersupply/mixersupply-F.SilkS.gbr
Normal file
7823
mixersupply/mixersupply-F.SilkS.gbr
Normal file
File diff suppressed because it is too large
Load diff
11
mixersupply/mixersupply-NPTH.drl
Normal file
11
mixersupply/mixersupply-NPTH.drl
Normal file
|
@ -0,0 +1,11 @@
|
|||
M48
|
||||
;DRILL file {KiCad 5.0.1-33cea8e~68~ubuntu16.04.1} date Di 23 Okt 2018 23:15:07 CEST
|
||||
;FORMAT={-:-/ absolute / metric / decimal}
|
||||
FMAT,2
|
||||
METRIC,TZ
|
||||
%
|
||||
G90
|
||||
G05
|
||||
M71
|
||||
T0
|
||||
M30
|
215
mixersupply/mixersupply-PTH.drl
Normal file
215
mixersupply/mixersupply-PTH.drl
Normal file
|
@ -0,0 +1,215 @@
|
|||
M48
|
||||
;DRILL file {KiCad 5.0.1-33cea8e~68~ubuntu16.04.1} date Di 23 Okt 2018 23:15:07 CEST
|
||||
;FORMAT={-:-/ absolute / metric / decimal}
|
||||
FMAT,2
|
||||
METRIC,TZ
|
||||
T1C0.600
|
||||
T2C0.700
|
||||
T3C0.800
|
||||
T4C0.900
|
||||
T5C0.950
|
||||
T6C1.000
|
||||
T7C1.100
|
||||
T8C1.200
|
||||
T9C1.500
|
||||
T10C2.000
|
||||
T11C3.000
|
||||
%
|
||||
G90
|
||||
G05
|
||||
M71
|
||||
T1
|
||||
X39.37Y-64.74
|
||||
X44.37Y-66.04
|
||||
T2
|
||||
X85.09Y-43.18
|
||||
X85.09Y-45.72
|
||||
T3
|
||||
X80.01Y-33.02
|
||||
X82.55Y-38.1
|
||||
X82.55Y-49.53
|
||||
X87.63Y-33.02
|
||||
X139.7Y-38.1
|
||||
X147.32Y-38.1
|
||||
X151.13Y-31.75
|
||||
X151.13Y-59.69
|
||||
X181.61Y-63.5
|
||||
X194.31Y-63.5
|
||||
X166.04Y-36.271
|
||||
X167.64Y-33.1
|
||||
X167.64Y-35.6
|
||||
X169.24Y-32.429
|
||||
X98.389Y-61.9
|
||||
X99.06Y-63.5
|
||||
X101.56Y-63.5
|
||||
X102.231Y-65.1
|
||||
X90.17Y-43.14
|
||||
X90.17Y-45.64
|
||||
X143.51Y-25.4
|
||||
X143.51Y-30.4
|
||||
X192.71Y-57.781
|
||||
X194.31Y-54.61
|
||||
X194.31Y-57.11
|
||||
X195.91Y-53.939
|
||||
X97.87Y-71.12
|
||||
X102.87Y-71.12
|
||||
X174.93Y-57.781
|
||||
X176.53Y-54.61
|
||||
X176.53Y-57.11
|
||||
X178.13Y-53.939
|
||||
X192.71Y-43.891
|
||||
X194.31Y-40.72
|
||||
X194.31Y-43.22
|
||||
X195.91Y-40.049
|
||||
X203.2Y-57.15
|
||||
X213.36Y-57.15
|
||||
X48.26Y-34.29
|
||||
X55.88Y-34.29
|
||||
X166.04Y-65.401
|
||||
X167.64Y-62.23
|
||||
X167.64Y-64.73
|
||||
X169.24Y-61.559
|
||||
X73.66Y-34.29
|
||||
X73.66Y-44.45
|
||||
X132.08Y-25.4
|
||||
X132.08Y-30.4
|
||||
X135.89Y-25.48
|
||||
X135.89Y-30.48
|
||||
X185.42Y-73.66
|
||||
X190.42Y-73.66
|
||||
X218.44Y-52.07
|
||||
X218.44Y-57.07
|
||||
X95.849Y-49.2
|
||||
X96.52Y-50.8
|
||||
X99.02Y-50.8
|
||||
X99.691Y-52.4
|
||||
X200.33Y-36.191
|
||||
X201.93Y-33.02
|
||||
X201.93Y-35.52
|
||||
X203.53Y-32.349
|
||||
X180.34Y-25.4
|
||||
X185.34Y-25.4
|
||||
X76.28Y-71.12
|
||||
X81.28Y-71.12
|
||||
X87.63Y-35.56
|
||||
X97.79Y-35.56
|
||||
X174.93Y-43.811
|
||||
X176.53Y-40.64
|
||||
X176.53Y-43.14
|
||||
X178.13Y-39.969
|
||||
X213.36Y-45.72
|
||||
X218.36Y-45.72
|
||||
X200.33Y-65.401
|
||||
X201.93Y-62.23
|
||||
X201.93Y-64.73
|
||||
X203.53Y-61.559
|
||||
X69.85Y-38.1
|
||||
X69.85Y-48.26
|
||||
X139.7Y-25.48
|
||||
X139.7Y-30.48
|
||||
X209.55Y-35.56
|
||||
X209.55Y-45.72
|
||||
X60.96Y-40.64
|
||||
X63.5Y-38.1
|
||||
X66.04Y-40.64
|
||||
X80.01Y-25.4
|
||||
X85.01Y-25.4
|
||||
X77.47Y-34.29
|
||||
X77.47Y-44.45
|
||||
X157.15Y-43.851
|
||||
X158.75Y-40.68
|
||||
X158.75Y-43.18
|
||||
X160.35Y-40.009
|
||||
X157.15Y-57.861
|
||||
X158.75Y-54.69
|
||||
X158.75Y-57.19
|
||||
X160.35Y-54.019
|
||||
T4
|
||||
X135.89Y-21.59
|
||||
X135.89Y-34.29
|
||||
X213.36Y-54.61
|
||||
X215.9Y-54.61
|
||||
X45.72Y-26.67
|
||||
X58.42Y-26.67
|
||||
X143.51Y-21.59
|
||||
X143.51Y-34.29
|
||||
X101.6Y-36.83
|
||||
X101.6Y-39.37
|
||||
X139.7Y-21.59
|
||||
X139.7Y-34.29
|
||||
X213.36Y-49.53
|
||||
X215.9Y-49.53
|
||||
X132.08Y-21.59
|
||||
X132.08Y-34.29
|
||||
T5
|
||||
X95.33Y-77.47
|
||||
X97.83Y-77.47
|
||||
X100.33Y-77.47
|
||||
X102.83Y-77.47
|
||||
X105.33Y-77.47
|
||||
X78.86Y-78.74
|
||||
X81.36Y-78.74
|
||||
X83.86Y-78.74
|
||||
X86.36Y-78.74
|
||||
X223.52Y-45.84
|
||||
X223.52Y-48.34
|
||||
X223.52Y-50.84
|
||||
X223.52Y-53.34
|
||||
X223.52Y-55.84
|
||||
X223.52Y-58.34
|
||||
T6
|
||||
X33.61Y-49.37
|
||||
X35.56Y-39.37
|
||||
X62.23Y-46.99
|
||||
X64.77Y-46.99
|
||||
X40.64Y-39.37
|
||||
X40.64Y-49.37
|
||||
T7
|
||||
X82.55Y-21.59
|
||||
X85.09Y-21.59
|
||||
X87.63Y-21.59
|
||||
X77.37Y-53.34
|
||||
X77.47Y-64.14
|
||||
X88.17Y-53.34
|
||||
X88.17Y-64.14
|
||||
X182.88Y-21.59
|
||||
X185.42Y-21.59
|
||||
X187.96Y-21.59
|
||||
X182.88Y-77.47
|
||||
X185.42Y-77.47
|
||||
X187.96Y-77.47
|
||||
T8
|
||||
X48.26Y-50.8
|
||||
X55.88Y-54.61
|
||||
T9
|
||||
X64.77Y-63.5
|
||||
X64.77Y-71.5
|
||||
X41.91Y-78.74
|
||||
X46.99Y-78.74
|
||||
X57.15Y-78.74
|
||||
X62.23Y-78.74
|
||||
X133.16Y-78.74
|
||||
X137.16Y-78.74
|
||||
X141.16Y-78.74
|
||||
X20.32Y-39.37
|
||||
X20.32Y-47.37
|
||||
X130.81Y-46.99
|
||||
X130.81Y-52.07
|
||||
X130.81Y-62.23
|
||||
X130.81Y-67.31
|
||||
X143.51Y-46.99
|
||||
X143.51Y-52.07
|
||||
X143.51Y-62.23
|
||||
X143.51Y-67.31
|
||||
T10
|
||||
X27.94Y-64.77
|
||||
X27.94Y-74.93
|
||||
T11
|
||||
X17.78Y-17.78
|
||||
X17.78Y-81.28
|
||||
X116.84Y-17.78
|
||||
X116.84Y-81.28
|
||||
X223.52Y-17.78
|
||||
X223.52Y-81.28
|
||||
T0
|
||||
M30
|
112
mixersupply/mixersupply-PTH_left.drl
Normal file
112
mixersupply/mixersupply-PTH_left.drl
Normal file
|
@ -0,0 +1,112 @@
|
|||
M48
|
||||
;DRILL file {KiCad 5.0.1-33cea8e~68~ubuntu16.04.1} date Di 23 Okt 2018 22:57:40 CEST
|
||||
;FORMAT={-:-/ absolute / metric / decimal}
|
||||
FMAT,2
|
||||
METRIC,TZ
|
||||
T1C0.600
|
||||
T2C0.700
|
||||
T3C0.800
|
||||
T4C0.900
|
||||
T5C0.950
|
||||
T6C1.000
|
||||
T7C1.100
|
||||
T8C1.200
|
||||
T9C1.500
|
||||
T10C2.000
|
||||
T11C3.000
|
||||
%
|
||||
G90
|
||||
G05
|
||||
M71
|
||||
T1
|
||||
X39.37Y-64.74
|
||||
X44.37Y-66.04
|
||||
T2
|
||||
X85.09Y-43.18
|
||||
X85.09Y-45.72
|
||||
T3
|
||||
X80.01Y-33.02
|
||||
X82.55Y-38.1
|
||||
X82.55Y-49.53
|
||||
X87.63Y-33.02
|
||||
X80.01Y-25.4
|
||||
X85.01Y-25.4
|
||||
X77.47Y-34.29
|
||||
X77.47Y-44.45
|
||||
X98.389Y-61.9
|
||||
X99.06Y-63.5
|
||||
X101.56Y-63.5
|
||||
X102.231Y-65.1
|
||||
X90.17Y-43.14
|
||||
X90.17Y-45.64
|
||||
X97.87Y-71.12
|
||||
X102.87Y-71.12
|
||||
X48.26Y-34.29
|
||||
X55.88Y-34.29
|
||||
X73.66Y-34.29
|
||||
X73.66Y-44.45
|
||||
X95.849Y-49.2
|
||||
X96.52Y-50.8
|
||||
X99.02Y-50.8
|
||||
X99.691Y-52.4
|
||||
X76.28Y-71.12
|
||||
X81.28Y-71.12
|
||||
X87.63Y-35.56
|
||||
X97.79Y-35.56
|
||||
X69.85Y-38.1
|
||||
X69.85Y-48.26
|
||||
X60.96Y-40.64
|
||||
X63.5Y-38.1
|
||||
X66.04Y-40.64
|
||||
T4
|
||||
X45.72Y-26.67
|
||||
X58.42Y-26.67
|
||||
X101.6Y-36.83
|
||||
X101.6Y-39.37
|
||||
T5
|
||||
X95.33Y-77.47
|
||||
X97.83Y-77.47
|
||||
X100.33Y-77.47
|
||||
X102.83Y-77.47
|
||||
X105.33Y-77.47
|
||||
X78.86Y-78.74
|
||||
X81.36Y-78.74
|
||||
X83.86Y-78.74
|
||||
X86.36Y-78.74
|
||||
T6
|
||||
X33.61Y-49.37
|
||||
X35.56Y-39.37
|
||||
X62.23Y-46.99
|
||||
X64.77Y-46.99
|
||||
X40.64Y-39.37
|
||||
X40.64Y-49.37
|
||||
T7
|
||||
X82.55Y-21.59
|
||||
X85.09Y-21.59
|
||||
X87.63Y-21.59
|
||||
X77.37Y-53.34
|
||||
X77.47Y-64.14
|
||||
X88.17Y-53.34
|
||||
X88.17Y-64.14
|
||||
T8
|
||||
X48.26Y-50.8
|
||||
X55.88Y-54.61
|
||||
T9
|
||||
X64.77Y-63.5
|
||||
X64.77Y-71.5
|
||||
X41.91Y-78.74
|
||||
X46.99Y-78.74
|
||||
X57.15Y-78.74
|
||||
X62.23Y-78.74
|
||||
X20.32Y-39.37
|
||||
X20.32Y-47.37
|
||||
T10
|
||||
X27.94Y-64.77
|
||||
X27.94Y-74.93
|
||||
T11
|
||||
X17.78Y-17.78
|
||||
X17.78Y-81.28
|
||||
X116.84Y-17.78
|
||||
X116.84Y-81.28
|
||||
T0
|
||||
M30
|
128
mixersupply/mixersupply-PTH_right.drl
Normal file
128
mixersupply/mixersupply-PTH_right.drl
Normal file
|
@ -0,0 +1,128 @@
|
|||
M48
|
||||
;DRILL file {KiCad 5.0.1-33cea8e~68~ubuntu16.04.1} date Di 23 Okt 2018 22:58:54 CEST
|
||||
;FORMAT={-:-/ absolute / metric / decimal}
|
||||
FMAT,2
|
||||
METRIC,TZ
|
||||
T1C0.800
|
||||
T2C0.900
|
||||
T3C0.950
|
||||
T4C1.100
|
||||
T5C1.500
|
||||
T6C3.000
|
||||
%
|
||||
G90
|
||||
G05
|
||||
M71
|
||||
T1
|
||||
X38.1Y-36.83
|
||||
X45.72Y-36.83
|
||||
X49.53Y-30.48
|
||||
X49.53Y-58.42
|
||||
X80.01Y-62.23
|
||||
X92.71Y-62.23
|
||||
X64.44Y-35.001
|
||||
X66.04Y-31.83
|
||||
X66.04Y-34.33
|
||||
X67.64Y-31.159
|
||||
X41.91Y-24.13
|
||||
X41.91Y-29.13
|
||||
X91.11Y-56.511
|
||||
X92.71Y-53.34
|
||||
X92.71Y-55.84
|
||||
X94.31Y-52.669
|
||||
X73.33Y-56.511
|
||||
X74.93Y-53.34
|
||||
X74.93Y-55.84
|
||||
X76.53Y-52.669
|
||||
X91.11Y-42.621
|
||||
X92.71Y-39.45
|
||||
X92.71Y-41.95
|
||||
X94.31Y-38.779
|
||||
X101.6Y-55.88
|
||||
X111.76Y-55.88
|
||||
X64.44Y-64.131
|
||||
X66.04Y-60.96
|
||||
X66.04Y-63.46
|
||||
X67.64Y-60.289
|
||||
X30.48Y-24.13
|
||||
X30.48Y-29.13
|
||||
X34.29Y-24.21
|
||||
X34.29Y-29.21
|
||||
X83.82Y-72.39
|
||||
X88.82Y-72.39
|
||||
X116.84Y-50.8
|
||||
X116.84Y-55.8
|
||||
X98.73Y-34.921
|
||||
X100.33Y-31.75
|
||||
X100.33Y-34.25
|
||||
X101.93Y-31.079
|
||||
X78.74Y-24.13
|
||||
X83.74Y-24.13
|
||||
X73.33Y-42.541
|
||||
X74.93Y-39.37
|
||||
X74.93Y-41.87
|
||||
X76.53Y-38.699
|
||||
X111.76Y-44.45
|
||||
X116.76Y-44.45
|
||||
X98.73Y-64.131
|
||||
X100.33Y-60.96
|
||||
X100.33Y-63.46
|
||||
X101.93Y-60.289
|
||||
X38.1Y-24.21
|
||||
X38.1Y-29.21
|
||||
X107.95Y-34.29
|
||||
X107.95Y-44.45
|
||||
X55.55Y-42.581
|
||||
X57.15Y-39.41
|
||||
X57.15Y-41.91
|
||||
X58.75Y-38.739
|
||||
X55.55Y-56.591
|
||||
X57.15Y-53.42
|
||||
X57.15Y-55.92
|
||||
X58.75Y-52.749
|
||||
T2
|
||||
X41.91Y-20.32
|
||||
X41.91Y-33.02
|
||||
X38.1Y-20.32
|
||||
X38.1Y-33.02
|
||||
X111.76Y-48.26
|
||||
X114.3Y-48.26
|
||||
X30.48Y-20.32
|
||||
X30.48Y-33.02
|
||||
X34.29Y-20.32
|
||||
X34.29Y-33.02
|
||||
X111.76Y-53.34
|
||||
X114.3Y-53.34
|
||||
T3
|
||||
X121.92Y-44.57
|
||||
X121.92Y-47.07
|
||||
X121.92Y-49.57
|
||||
X121.92Y-52.07
|
||||
X121.92Y-54.57
|
||||
X121.92Y-57.07
|
||||
T4
|
||||
X81.28Y-20.32
|
||||
X83.82Y-20.32
|
||||
X86.36Y-20.32
|
||||
X81.28Y-76.2
|
||||
X83.82Y-76.2
|
||||
X86.36Y-76.2
|
||||
T5
|
||||
X31.56Y-77.47
|
||||
X35.56Y-77.47
|
||||
X39.56Y-77.47
|
||||
X29.21Y-45.72
|
||||
X29.21Y-50.8
|
||||
X29.21Y-60.96
|
||||
X29.21Y-66.04
|
||||
X41.91Y-45.72
|
||||
X41.91Y-50.8
|
||||
X41.91Y-60.96
|
||||
X41.91Y-66.04
|
||||
T6
|
||||
X15.24Y-16.51
|
||||
X15.24Y-80.01
|
||||
X121.92Y-16.51
|
||||
X121.92Y-80.01
|
||||
T0
|
||||
M30
|
487
mixersupply/mixersupply-cache.lib
Normal file
487
mixersupply/mixersupply-cache.lib
Normal file
|
@ -0,0 +1,487 @@
|
|||
EESchema-LIBRARY Version 2.4
|
||||
#encoding utf-8
|
||||
#
|
||||
# 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_01x03_Male
|
||||
#
|
||||
DEF Connector_Conn_01x03_Male J 0 40 Y N 1 F N
|
||||
F0 "J" 0 200 50 H V C CNN
|
||||
F1 "Connector_Conn_01x03_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
|
||||
S 34 105 0 95 1 1 6 F
|
||||
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
|
||||
X Pin_1 1 200 100 150 L 50 50 1 1 P
|
||||
X Pin_2 2 200 0 150 L 50 50 1 1 P
|
||||
X Pin_3 3 200 -100 150 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Connector_Conn_01x05_Male
|
||||
#
|
||||
DEF Connector_Conn_01x05_Male J 0 40 Y N 1 F N
|
||||
F0 "J" 0 300 50 H V C CNN
|
||||
F1 "Connector_Conn_01x05_Male" 0 -300 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 -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 -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
|
||||
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
|
||||
#
|
||||
# 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_CP
|
||||
#
|
||||
DEF Device_CP C 0 10 N Y 1 F N
|
||||
F0 "C" 25 100 50 H V L CNN
|
||||
F1 "Device_CP" 25 -100 50 H V L CNN
|
||||
F2 "" 38 -150 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
CP_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -90 20 -90 40 0 1 0 N
|
||||
S -90 20 90 20 0 1 0 N
|
||||
S 90 -20 -90 -40 0 1 0 F
|
||||
S 90 40 -90 40 0 1 0 N
|
||||
S 90 40 90 20 0 1 0 N
|
||||
P 2 0 1 0 -70 90 -30 90 N
|
||||
P 2 0 1 0 -50 110 -50 70 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_D
|
||||
#
|
||||
DEF Device_D D 0 40 N N 1 F N
|
||||
F0 "D" 0 100 50 H V C CNN
|
||||
F1 "Device_D" 0 -100 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
TO-???*
|
||||
*_Diode_*
|
||||
*SingleDiode*
|
||||
D_*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 8 -50 50 -50 -50 N
|
||||
P 2 0 1 0 50 0 -50 0 N
|
||||
P 4 0 1 8 50 50 50 -50 -50 0 50 50 N
|
||||
X K 1 -150 0 100 R 50 50 1 1 P
|
||||
X A 2 150 0 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_D_Bridge_+A-A
|
||||
#
|
||||
DEF Device_D_Bridge_+A-A D 0 0 Y Y 1 F N
|
||||
F0 "D" 100 275 50 H V L CNN
|
||||
F1 "Device_D_Bridge_+A-A" 100 200 50 H V L CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
D*Bridge*
|
||||
D*Rectifier*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 0 -100 150 -50 100 N
|
||||
P 2 0 1 0 -50 -100 -100 -150 N
|
||||
P 2 0 1 0 100 -50 150 -100 N
|
||||
P 2 0 1 0 100 50 150 100 N
|
||||
P 4 0 1 0 -150 100 -100 50 -75 125 -150 100 N
|
||||
P 4 0 1 0 -100 -50 -150 -100 -75 -125 -100 -50 N
|
||||
P 4 0 1 0 50 100 100 150 125 75 50 100 N
|
||||
P 4 0 1 0 125 -75 50 -100 100 -150 125 -75 N
|
||||
P 5 0 1 0 -200 0 0 -200 200 0 0 200 -200 0 N
|
||||
X + 1 300 0 100 L 50 50 1 1 P
|
||||
X ~~ 2 0 -300 100 U 50 50 1 1 P
|
||||
X - 3 -300 0 100 R 50 50 1 1 P
|
||||
X ~~ 4 0 300 100 D 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_Fuse
|
||||
#
|
||||
DEF Device_Fuse F 0 0 N Y 1 F N
|
||||
F0 "F" 80 0 50 V V C CNN
|
||||
F1 "Device_Fuse" -75 0 50 V V C CNN
|
||||
F2 "" -70 0 50 V I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
*Fuse*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -30 -100 30 100 0 1 10 N
|
||||
P 2 0 1 0 0 100 0 -100 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
|
||||
#
|
||||
# Device_LED
|
||||
#
|
||||
DEF Device_LED D 0 40 N N 1 F N
|
||||
F0 "D" 0 100 50 H V C CNN
|
||||
F1 "Device_LED" 0 -100 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
LED*
|
||||
LED_SMD:*
|
||||
LED_THT:*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
P 2 0 1 8 -50 -50 -50 50 N
|
||||
P 2 0 1 0 -50 0 50 0 N
|
||||
P 4 0 1 8 50 -50 50 50 -50 0 50 -50 N
|
||||
P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N
|
||||
P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N
|
||||
X K 1 -150 0 100 R 50 50 1 1 P
|
||||
X A 2 150 0 100 L 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_Q_NPN_CBE
|
||||
#
|
||||
DEF Device_Q_NPN_CBE Q 0 0 Y N 1 F N
|
||||
F0 "Q" 200 50 50 H V L CNN
|
||||
F1 "Device_Q_NPN_CBE" 200 -50 50 H V L CNN
|
||||
F2 "" 200 100 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
C 50 0 111 0 1 10 N
|
||||
P 2 0 1 0 25 25 100 100 N
|
||||
P 3 0 1 0 25 -25 100 -100 100 -100 N
|
||||
P 3 0 1 20 25 75 25 -75 25 -75 N
|
||||
P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F
|
||||
X C 1 100 200 100 D 50 50 1 1 P
|
||||
X B 2 -200 0 225 R 50 50 1 1 I
|
||||
X E 3 100 -200 100 U 50 50 1 1 P
|
||||
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
|
||||
#
|
||||
# Device_Thermistor_NTC
|
||||
#
|
||||
DEF Device_Thermistor_NTC TH 0 0 N Y 1 F N
|
||||
F0 "TH" -175 0 50 V V C CNN
|
||||
F1 "Device_Thermistor_NTC" 125 0 50 V V C CNN
|
||||
F2 "" 0 50 50 H I C CNN
|
||||
F3 "" 0 50 50 H I C CNN
|
||||
$FPLIST
|
||||
*NTC*
|
||||
*Thermistor*
|
||||
PIN?ARRAY*
|
||||
bornier*
|
||||
*Terminal?Block*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
A -126 88 7 -265 818 0 1 0 N -120 85 -125 95
|
||||
A -110 85 10 1800 -900 0 1 0 N -120 85 -110 75
|
||||
A -110 85 10 -900 0 0 1 0 N -110 75 -100 85
|
||||
A -110 110 10 0 900 0 1 0 N -100 110 -110 120
|
||||
A -110 110 10 900 1800 0 1 0 N -110 120 -120 110
|
||||
A -110 110 10 1800 -900 0 1 0 N -120 110 -110 100
|
||||
A -104 119 20 -1075 -253 0 1 0 N -110 100 -85 110
|
||||
S -40 100 40 -100 0 1 10 N
|
||||
P 2 0 1 0 -100 85 -100 110 N
|
||||
P 4 0 1 0 -70 100 -70 60 70 -60 70 -100 N
|
||||
P 6 0 1 0 -100 -145 -100 -55 -110 -85 -90 -85 -100 -55 -100 -65 F
|
||||
P 6 0 1 0 -70 -55 -70 -145 -80 -115 -60 -115 -70 -145 -70 -135 F
|
||||
X ~ 1 0 150 50 D 50 50 1 1 P
|
||||
X ~ 2 0 -150 50 U 50 50 1 1 P
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Device_Varistor
|
||||
#
|
||||
DEF Device_Varistor RV 0 0 N Y 1 F N
|
||||
F0 "RV" 125 0 50 V V C CNN
|
||||
F1 "Device_Varistor" -125 0 50 V V C CNN
|
||||
F2 "" -70 0 50 V I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
$FPLIST
|
||||
RV_*
|
||||
Varistor*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
T 0 -70 -80 50 0 0 0 U Normal 0 C C
|
||||
S -40 -100 40 100 0 1 10 N
|
||||
P 3 0 1 0 -75 100 -75 50 75 -50 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
|
||||
#
|
||||
# Regulator_Linear_LM7805_TO220
|
||||
#
|
||||
DEF Regulator_Linear_LM7805_TO220 U 0 10 Y Y 1 F N
|
||||
F0 "U" -150 125 50 H V C CNN
|
||||
F1 "Regulator_Linear_LM7805_TO220" 0 125 50 H V L CNN
|
||||
F2 "Package_TO_SOT_THT:TO-220-3_Vertical" 0 225 50 H I C CIN
|
||||
F3 "" 0 -50 50 H I C CNN
|
||||
$FPLIST
|
||||
TO?220*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -200 75 200 -200 0 1 10 f
|
||||
X VI 1 -300 0 100 R 50 50 1 1 W
|
||||
X GND 2 0 -300 100 U 50 50 1 1 W
|
||||
X VO 3 300 0 100 L 50 50 1 1 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Regulator_Linear_LM7815_TO220
|
||||
#
|
||||
DEF Regulator_Linear_LM7815_TO220 U 0 10 Y Y 1 F N
|
||||
F0 "U" -150 125 50 H V C CNN
|
||||
F1 "Regulator_Linear_LM7815_TO220" 0 125 50 H V L CNN
|
||||
F2 "Package_TO_SOT_THT:TO-220-3_Vertical" 0 225 50 H I C CIN
|
||||
F3 "" 0 -50 50 H I C CNN
|
||||
ALIAS LM7806_TO220 LM7808_TO220 LM7809_TO220 LM7810_TO220 LM7812_TO220 LM7815_TO220 LM7818_TO220 LM7824_TO220 LM78M05_TO220 SPX2920U-3.3_TO220 SPX2920U-5.0_TO220 LF15_TO220 LF18_TO220 LF25_TO220 LF33_TO220 LF50_TO220 LF60_TO220 LF80_TO220 LF85_TO220 LF120_TO220 LF47_TO220 LF90_TO220 LM341T-05_TO220 LM341T-12_TO220 LM341T-15_TO220 LM2937xT
|
||||
$FPLIST
|
||||
TO?220*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -200 75 200 -200 0 1 10 f
|
||||
X VI 1 -300 0 100 R 50 50 1 1 W
|
||||
X GND 2 0 -300 100 U 50 50 1 1 W
|
||||
X VO 3 300 0 100 L 50 50 1 1 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Regulator_Linear_LM7915_TO220
|
||||
#
|
||||
DEF Regulator_Linear_LM7915_TO220 U 0 10 Y Y 1 F N
|
||||
F0 "U" -150 -125 50 H V C CNN
|
||||
F1 "Regulator_Linear_LM7915_TO220" 0 -125 50 H V L CNN
|
||||
F2 "Package_TO_SOT_THT:TO-220-3_Vertical" 0 -200 50 H I C CIN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
ALIAS LM79M05_TO220 LM79M12_TO220 LM79M15_TO220 LM7906_TO220 LM7908_TO220 LM7909_TO220 LM7910_TO220 LM7915_TO220 LM7912_TO220 LM7918_TO220 LM7924_TO220 MC79M05_TO220 MC79M08_TO220 MC79M12_TO220 MC79M15_TO220
|
||||
$FPLIST
|
||||
TO?220*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -200 200 200 -75 0 1 10 f
|
||||
X GND 1 0 300 100 D 50 50 1 1 W
|
||||
X VI 2 -300 0 100 R 50 50 1 1 W
|
||||
X VO 3 300 0 100 L 50 50 1 1 w
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
# Relay_FINDER-32.21-x300
|
||||
#
|
||||
DEF Relay_FINDER-32.21-x300 K 0 40 Y Y 1 F N
|
||||
F0 "K" 450 150 50 H V L CNN
|
||||
F1 "Relay_FINDER-32.21-x300" 450 50 50 H V L CNN
|
||||
F2 "Relay_THT:Relay_SPST_Finder_32.21-x300" 1270 -30 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
ALIAS FINDER-36.11-4301 RM50-xx21
|
||||
$FPLIST
|
||||
Relay*SPST*Finder*32.21*x300*
|
||||
$ENDFPLIST
|
||||
DRAW
|
||||
S -400 200 400 -200 0 1 10 f
|
||||
S -325 75 -75 -75 0 1 10 N
|
||||
P 2 0 1 10 -300 -75 -100 75 N
|
||||
P 2 0 1 0 -200 -200 -200 -75 N
|
||||
P 2 0 1 0 -200 200 -200 75 N
|
||||
P 2 0 1 10 -75 0 -50 0 N
|
||||
P 2 0 1 10 -25 0 0 0 N
|
||||
P 2 0 1 10 25 0 50 0 N
|
||||
P 2 0 1 10 75 0 100 0 N
|
||||
P 2 0 1 10 125 0 150 0 N
|
||||
P 2 0 1 20 200 -100 125 150 N
|
||||
P 2 0 1 0 200 -100 200 -200 N
|
||||
P 2 0 1 0 300 100 300 200 N
|
||||
P 3 0 1 0 300 100 275 125 300 150 N
|
||||
X ~ 11 200 -300 100 U 50 50 1 1 P
|
||||
X ~ 14 300 300 100 D 50 50 1 1 P
|
||||
X ~ A1 -200 300 100 D 50 50 1 1 P
|
||||
X ~ A2 -200 -300 100 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_+5V
|
||||
#
|
||||
DEF power_+5V #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -150 50 H I C CNN
|
||||
F1 "power_+5V" 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 +5V 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
|
||||
#
|
||||
# power_GNDD
|
||||
#
|
||||
DEF power_GNDD #PWR 0 0 Y Y 1 F P
|
||||
F0 "#PWR" 0 -250 50 H I C CNN
|
||||
F1 "power_GNDD" 0 -125 50 H V C CNN
|
||||
F2 "" 0 0 50 H I C CNN
|
||||
F3 "" 0 0 50 H I C CNN
|
||||
DRAW
|
||||
S -50 -60 50 -80 0 1 10 F
|
||||
P 2 0 1 0 0 0 0 -60 N
|
||||
X GNDD 1 0 0 0 D 50 50 1 1 W N
|
||||
ENDDRAW
|
||||
ENDDEF
|
||||
#
|
||||
#End Library
|
1295
mixersupply/mixersupply.bak
Normal file
1295
mixersupply/mixersupply.bak
Normal file
File diff suppressed because it is too large
Load diff
5788
mixersupply/mixersupply.kicad_pcb
Normal file
5788
mixersupply/mixersupply.kicad_pcb
Normal file
File diff suppressed because it is too large
Load diff
5788
mixersupply/mixersupply.kicad_pcb-bak
Normal file
5788
mixersupply/mixersupply.kicad_pcb-bak
Normal file
File diff suppressed because it is too large
Load diff
862
mixersupply/mixersupply.net
Normal file
862
mixersupply/mixersupply.net
Normal file
|
@ -0,0 +1,862 @@
|
|||
(export (version D)
|
||||
(design
|
||||
(source /media/fisch/HDD/Projects/mixer/mixersupply/mixersupply.sch)
|
||||
(date "Fr 26 Okt 2018 01:18:56 CEST")
|
||||
(tool "Eeschema 5.0.1-33cea8e~68~ubuntu16.04.1")
|
||||
(sheet (number 1) (name /) (tstamps /)
|
||||
(title_block
|
||||
(title Mixersupply)
|
||||
(company)
|
||||
(rev 1)
|
||||
(date 2018-10-19)
|
||||
(source mixersupply.sch)
|
||||
(comment (number 1) (value ""))
|
||||
(comment (number 2) (value ""))
|
||||
(comment (number 3) (value ""))
|
||||
(comment (number 4) (value "")))))
|
||||
(components
|
||||
(comp (ref F1)
|
||||
(value "Fuse 1.6A T")
|
||||
(footprint mixersupply_fuse:Fuseholder0520)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part Fuse) (description Fuse))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA8F401))
|
||||
(comp (ref D5)
|
||||
(value DIODE)
|
||||
(footprint Diode_THT:D_A-405_P12.70mm_Horizontal)
|
||||
(libsource (lib Device) (part D) (description Diode))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA90880))
|
||||
(comp (ref Cp2)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA9461B))
|
||||
(comp (ref Cn2)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA94683))
|
||||
(comp (ref Cn6)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA946CF))
|
||||
(comp (ref Cp6)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA9471D))
|
||||
(comp (ref DB9V1)
|
||||
(value "Diode Bridge")
|
||||
(footprint Diode_THT:Diode_Bridge_16.7x16.7x6.3mm_P10.8mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part D_Bridge_+A-A) (description "Diode bridge, +ve/AC/-ve/AC"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA99D11))
|
||||
(comp (ref U1)
|
||||
(value LM7805_TO220)
|
||||
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
|
||||
(datasheet http://www.fairchildsemi.com/ds/LM/LM7805.pdf)
|
||||
(libsource (lib Regulator_Linear) (part LM7805_TO220) (description "Positive 1A 35V Linear Regulator, Fixed Output 5V, TO-220"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA9BAA4))
|
||||
(comp (ref Cl1)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA9DCA8))
|
||||
(comp (ref Cl3)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BA9DCFE))
|
||||
(comp (ref J3)
|
||||
(value "Conn Front Power LED")
|
||||
(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 /) (tstamps /))
|
||||
(tstamp 5BAAAD4C))
|
||||
(comp (ref RLED_PWR1)
|
||||
(value 220)
|
||||
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAAAFB0))
|
||||
(comp (ref Q1)
|
||||
(value BC337)
|
||||
(footprint Package_TO_SOT_THT:TO-92_Wide)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part Q_NPN_CBE) (description "NPN transistor, collector/base/emitter"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAB4103))
|
||||
(comp (ref R2)
|
||||
(value 10k)
|
||||
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAC5B2A))
|
||||
(comp (ref C10)
|
||||
(value 220u)
|
||||
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAC5BAC))
|
||||
(comp (ref Cp3)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BACFEFE))
|
||||
(comp (ref Cn3)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAD21EE))
|
||||
(comp (ref Cn1)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAD2240))
|
||||
(comp (ref Cp1)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAD229A))
|
||||
(comp (ref J1)
|
||||
(value "230V In")
|
||||
(footprint mixersupply_connectors:AC_Connector)
|
||||
(datasheet ~)
|
||||
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAE5D12))
|
||||
(comp (ref F2)
|
||||
(value "1A T")
|
||||
(footprint mixersupply_fuse:Fuseholder0520)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part Fuse) (description Fuse))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAEC65A))
|
||||
(comp (ref F3)
|
||||
(value "1A T")
|
||||
(footprint mixersupply_fuse:Fuseholder0520)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part Fuse) (description Fuse))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAEC8A6))
|
||||
(comp (ref R3)
|
||||
(value 820)
|
||||
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAEC912))
|
||||
(comp (ref Cp5)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAEC9BC))
|
||||
(comp (ref Cn5)
|
||||
(value CP)
|
||||
(footprint Capacitor_THT:CP_Radial_D10.0mm_P2.50mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAECA18))
|
||||
(comp (ref Cp4)
|
||||
(value 100n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAF9575))
|
||||
(comp (ref Cn4)
|
||||
(value 100n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAF961B))
|
||||
(comp (ref Cp7)
|
||||
(value 100n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAF9689))
|
||||
(comp (ref Cn7)
|
||||
(value 100n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BAF978F))
|
||||
(comp (ref R4)
|
||||
(value 820)
|
||||
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BB078D6))
|
||||
(comp (ref DLED_+12V1)
|
||||
(value LED)
|
||||
(footprint LED_THT:LED_D3.0mm_Clear)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part LED) (description "Light emitting diode"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BB079C7))
|
||||
(comp (ref DLED_-12V1)
|
||||
(value LED)
|
||||
(footprint LED_THT:LED_D3.0mm_Clear)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part LED) (description "Light emitting diode"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BB07DFF))
|
||||
(comp (ref RLED_5V1)
|
||||
(value 220)
|
||||
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BB2349E))
|
||||
(comp (ref DLED_5V1)
|
||||
(value LED)
|
||||
(footprint LED_THT:LED_D3.0mm_Clear)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part LED) (description "Light emitting diode"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BB23554))
|
||||
(comp (ref D2)
|
||||
(value 1N4001)
|
||||
(footprint Diode_THT:D_A-405_P12.70mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part D) (description Diode))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC27385))
|
||||
(comp (ref D4)
|
||||
(value 1N4001)
|
||||
(footprint Diode_THT:D_A-405_P12.70mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part D) (description Diode))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC27515))
|
||||
(comp (ref D1)
|
||||
(value 1N4001)
|
||||
(footprint Diode_THT:D_A-405_P12.70mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part D) (description Diode))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC2762F))
|
||||
(comp (ref D3)
|
||||
(value 1N4001)
|
||||
(footprint Diode_THT:D_A-405_P12.70mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part D) (description Diode))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC2778D))
|
||||
(comp (ref C5)
|
||||
(value 10n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC7C419))
|
||||
(comp (ref C2)
|
||||
(value 10n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC7C4B3))
|
||||
(comp (ref C3)
|
||||
(value 10n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC7C541))
|
||||
(comp (ref C4)
|
||||
(value 10n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC7C617))
|
||||
(comp (ref R1)
|
||||
(value 1k)
|
||||
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BCC3BD9))
|
||||
(comp (ref J2)
|
||||
(value "PWR Switch")
|
||||
(footprint mixersupply_connectors:2Pin_8mm_w_clipconnector)
|
||||
(datasheet ~)
|
||||
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD2B533))
|
||||
(comp (ref C1)
|
||||
(value 10n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD527B0))
|
||||
(comp (ref Cl2)
|
||||
(value 100n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD62732))
|
||||
(comp (ref Cl4)
|
||||
(value 100n)
|
||||
(footprint Capacitor_THT:C_Disc_D5.0mm_W2.5mm_P5.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD8B775))
|
||||
(comp (ref RV1)
|
||||
(value Varistor)
|
||||
(footprint Varistor:RV_Disc_D7mm_W3.4mm_P5mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part Varistor) (description "Voltage dependent resistor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BDC383D))
|
||||
(comp (ref J6)
|
||||
(value "Transformator Primary")
|
||||
(footprint mixersupply_connectors:2Pin_8mm_w_clipconnector)
|
||||
(datasheet ~)
|
||||
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC67AD5))
|
||||
(comp (ref J7)
|
||||
(value Transforer_15VAC)
|
||||
(footprint mixersupply_connectors:3Pin_4mm_w_clipconnector)
|
||||
(datasheet ~)
|
||||
(fields
|
||||
(field (name Notes) "Red, Black, Red"))
|
||||
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BC8CF2E))
|
||||
(comp (ref C25)
|
||||
(value "203M SF 250V AC")
|
||||
(footprint Capacitor_THT:C_Disc_D14.5mm_W5.0mm_P10.00mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BCEF457))
|
||||
(comp (ref U2)
|
||||
(value LM7815_TO220)
|
||||
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
|
||||
(datasheet http://www.fairchildsemi.com/ds/LM/LM7805.pdf)
|
||||
(libsource (lib Regulator_Linear) (part LM7815_TO220) (description "Positive 1A 35V Linear Regulator, Fixed Output 15V, TO-220"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD031A3))
|
||||
(comp (ref U3)
|
||||
(value LM7915_TO220)
|
||||
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
|
||||
(datasheet http://www.fairchildsemi.com/ds/LM/LM7905.pdf)
|
||||
(libsource (lib Regulator_Linear) (part LM7915_TO220) (description "Negative 1A 35V Linear Regulator, Fixed Output 15V, TO-220"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD0330F))
|
||||
(comp (ref K1)
|
||||
(value "DEG SDT-S-105LMR")
|
||||
(footprint "mixersupply_relay:Relais DEG SDT-S-105LMR")
|
||||
(datasheet http://gfinder.findernet.com/assets/Series/355/S32EN.pdf)
|
||||
(libsource (lib Relay) (part FINDER-32.21-x300) (description "FINDER 32.21-x300, Single Pole Relay SPST-NO, 6A"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD04C3D))
|
||||
(comp (ref R5)
|
||||
(value 100k)
|
||||
(footprint Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part R) (description Resistor))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BCA7585))
|
||||
(comp (ref TH1)
|
||||
(value Thermistor_NTC)
|
||||
(footprint Varistor:RV_Disc_D21.5mm_W4.8mm_P10mm)
|
||||
(datasheet ~)
|
||||
(libsource (lib Device) (part Thermistor_NTC) (description "Temperature dependent resistor, negative temperature coefficient"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BCBFCA3))
|
||||
(comp (ref J5)
|
||||
(value "+-15V Out")
|
||||
(footprint Connector_JST:JST_XH_B06B-XH-A_1x06_P2.50mm_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 5BD7A1B1))
|
||||
(comp (ref J4)
|
||||
(value "5V Out")
|
||||
(footprint Connector_JST:JST_XH_B05B-XH-A_1x05_P2.50mm_Vertical)
|
||||
(datasheet ~)
|
||||
(libsource (lib Connector) (part Conn_01x05_Male) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BDBCC61))
|
||||
(comp (ref J8)
|
||||
(value "Transformer 9VAC")
|
||||
(footprint mixersupply_connectors:2Pin_8mm_w_clipconnector)
|
||||
(datasheet ~)
|
||||
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
|
||||
(sheetpath (names /) (tstamps /))
|
||||
(tstamp 5BD541E4)))
|
||||
(libparts
|
||||
(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_01x03_Male)
|
||||
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp Connector*:*_1x??_*))
|
||||
(fields
|
||||
(field (name Reference) J)
|
||||
(field (name Value) Conn_01x03_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))))
|
||||
(libpart (lib Connector) (part Conn_01x05_Male)
|
||||
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp Connector*:*_1x??_*))
|
||||
(fields
|
||||
(field (name Reference) J)
|
||||
(field (name Value) Conn_01x05_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))))
|
||||
(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 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 CP)
|
||||
(description "Polarized capacitor")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp CP_*))
|
||||
(fields
|
||||
(field (name Reference) C)
|
||||
(field (name Value) CP))
|
||||
(pins
|
||||
(pin (num 1) (name ~) (type passive))
|
||||
(pin (num 2) (name ~) (type passive))))
|
||||
(libpart (lib Device) (part D)
|
||||
(description Diode)
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp TO-???*)
|
||||
(fp *_Diode_*)
|
||||
(fp *SingleDiode*)
|
||||
(fp D_*))
|
||||
(fields
|
||||
(field (name Reference) D)
|
||||
(field (name Value) D))
|
||||
(pins
|
||||
(pin (num 1) (name K) (type passive))
|
||||
(pin (num 2) (name A) (type passive))))
|
||||
(libpart (lib Device) (part D_Bridge_+A-A)
|
||||
(description "Diode bridge, +ve/AC/-ve/AC")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp D*Bridge*)
|
||||
(fp D*Rectifier*))
|
||||
(fields
|
||||
(field (name Reference) D)
|
||||
(field (name Value) D_Bridge_+A-A))
|
||||
(pins
|
||||
(pin (num 1) (name +) (type passive))
|
||||
(pin (num 2) (name ~~) (type passive))
|
||||
(pin (num 3) (name -) (type passive))
|
||||
(pin (num 4) (name ~~) (type passive))))
|
||||
(libpart (lib Device) (part Fuse)
|
||||
(description Fuse)
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp *Fuse*))
|
||||
(fields
|
||||
(field (name Reference) F)
|
||||
(field (name Value) Fuse))
|
||||
(pins
|
||||
(pin (num 1) (name ~) (type passive))
|
||||
(pin (num 2) (name ~) (type passive))))
|
||||
(libpart (lib Device) (part LED)
|
||||
(description "Light emitting diode")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp LED*)
|
||||
(fp LED_SMD:*)
|
||||
(fp LED_THT:*))
|
||||
(fields
|
||||
(field (name Reference) D)
|
||||
(field (name Value) LED))
|
||||
(pins
|
||||
(pin (num 1) (name K) (type passive))
|
||||
(pin (num 2) (name A) (type passive))))
|
||||
(libpart (lib Device) (part Q_NPN_CBE)
|
||||
(description "NPN transistor, collector/base/emitter")
|
||||
(docs ~)
|
||||
(fields
|
||||
(field (name Reference) Q)
|
||||
(field (name Value) Q_NPN_CBE))
|
||||
(pins
|
||||
(pin (num 1) (name C) (type passive))
|
||||
(pin (num 2) (name B) (type input))
|
||||
(pin (num 3) (name E) (type passive))))
|
||||
(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))))
|
||||
(libpart (lib Device) (part Thermistor_NTC)
|
||||
(description "Temperature dependent resistor, negative temperature coefficient")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp *NTC*)
|
||||
(fp *Thermistor*)
|
||||
(fp PIN?ARRAY*)
|
||||
(fp bornier*)
|
||||
(fp *Terminal?Block*))
|
||||
(fields
|
||||
(field (name Reference) TH)
|
||||
(field (name Value) Thermistor_NTC))
|
||||
(pins
|
||||
(pin (num 1) (name ~) (type passive))
|
||||
(pin (num 2) (name ~) (type passive))))
|
||||
(libpart (lib Device) (part Varistor)
|
||||
(description "Voltage dependent resistor")
|
||||
(docs ~)
|
||||
(footprints
|
||||
(fp RV_*)
|
||||
(fp Varistor*))
|
||||
(fields
|
||||
(field (name Reference) RV)
|
||||
(field (name Value) Varistor))
|
||||
(pins
|
||||
(pin (num 1) (name ~) (type passive))
|
||||
(pin (num 2) (name ~) (type passive))))
|
||||
(libpart (lib Regulator_Linear) (part LM7805_TO220)
|
||||
(aliases
|
||||
(alias LM7806_TO220)
|
||||
(alias LM7808_TO220)
|
||||
(alias LM7809_TO220)
|
||||
(alias LM7810_TO220)
|
||||
(alias LM7812_TO220)
|
||||
(alias LM7815_TO220)
|
||||
(alias LM7818_TO220)
|
||||
(alias LM7824_TO220)
|
||||
(alias LM78M05_TO220)
|
||||
(alias SPX2920U-3.3_TO220)
|
||||
(alias SPX2920U-5.0_TO220)
|
||||
(alias LF15_TO220)
|
||||
(alias LF18_TO220)
|
||||
(alias LF25_TO220)
|
||||
(alias LF33_TO220)
|
||||
(alias LF50_TO220)
|
||||
(alias LF60_TO220)
|
||||
(alias LF80_TO220)
|
||||
(alias LF85_TO220)
|
||||
(alias LF120_TO220)
|
||||
(alias LF47_TO220)
|
||||
(alias LF90_TO220)
|
||||
(alias LM341T-05_TO220)
|
||||
(alias LM341T-12_TO220)
|
||||
(alias LM341T-15_TO220)
|
||||
(alias LM2937xT))
|
||||
(description "Positive 1A 35V Linear Regulator, Fixed Output 5V, TO-220")
|
||||
(docs http://www.fairchildsemi.com/ds/LM/LM7805.pdf)
|
||||
(footprints
|
||||
(fp TO?220*))
|
||||
(fields
|
||||
(field (name Reference) U)
|
||||
(field (name Value) LM7805_TO220)
|
||||
(field (name Footprint) Package_TO_SOT_THT:TO-220-3_Vertical))
|
||||
(pins
|
||||
(pin (num 1) (name VI) (type power_in))
|
||||
(pin (num 2) (name GND) (type power_in))
|
||||
(pin (num 3) (name VO) (type power_out))))
|
||||
(libpart (lib Regulator_Linear) (part LM7905_TO220)
|
||||
(aliases
|
||||
(alias LM79M05_TO220)
|
||||
(alias LM79M12_TO220)
|
||||
(alias LM79M15_TO220)
|
||||
(alias LM7906_TO220)
|
||||
(alias LM7908_TO220)
|
||||
(alias LM7909_TO220)
|
||||
(alias LM7910_TO220)
|
||||
(alias LM7915_TO220)
|
||||
(alias LM7912_TO220)
|
||||
(alias LM7918_TO220)
|
||||
(alias LM7924_TO220)
|
||||
(alias MC79M05_TO220)
|
||||
(alias MC79M08_TO220)
|
||||
(alias MC79M12_TO220)
|
||||
(alias MC79M15_TO220))
|
||||
(description "Negative 1A 35V Linear Regulator, Fixed Output 5V, TO-220")
|
||||
(docs http://www.fairchildsemi.com/ds/LM/LM7905.pdf)
|
||||
(footprints
|
||||
(fp TO?220*))
|
||||
(fields
|
||||
(field (name Reference) U)
|
||||
(field (name Value) LM7905_TO220)
|
||||
(field (name Footprint) Package_TO_SOT_THT:TO-220-3_Vertical))
|
||||
(pins
|
||||
(pin (num 1) (name GND) (type power_in))
|
||||
(pin (num 2) (name VI) (type power_in))
|
||||
(pin (num 3) (name VO) (type power_out))))
|
||||
(libpart (lib Relay) (part FINDER-32.21-x300)
|
||||
(aliases
|
||||
(alias FINDER-36.11-4301)
|
||||
(alias RM50-xx21))
|
||||
(description "FINDER 32.21-x300, Single Pole Relay SPST-NO, 6A")
|
||||
(docs http://gfinder.findernet.com/assets/Series/355/S32EN.pdf)
|
||||
(footprints
|
||||
(fp Relay*SPST*Finder*32.21*x300*))
|
||||
(fields
|
||||
(field (name Reference) K)
|
||||
(field (name Value) FINDER-32.21-x300)
|
||||
(field (name Footprint) Relay_THT:Relay_SPST_Finder_32.21-x300))
|
||||
(pins
|
||||
(pin (num 11) (name ~) (type passive))
|
||||
(pin (num 14) (name ~) (type passive))
|
||||
(pin (num A1) (name ~) (type passive))
|
||||
(pin (num A2) (name ~) (type passive)))))
|
||||
(libraries
|
||||
(library (logical Connector)
|
||||
(uri /usr/share/kicad/library/Connector.lib))
|
||||
(library (logical Device)
|
||||
(uri /usr/share/kicad/library/Device.lib))
|
||||
(library (logical Regulator_Linear)
|
||||
(uri /usr/share/kicad/library/Regulator_Linear.lib))
|
||||
(library (logical Relay)
|
||||
(uri /usr/share/kicad/library/Relay.lib)))
|
||||
(nets
|
||||
(net (code 1) (name +5V)
|
||||
(node (ref R2) (pin 1))
|
||||
(node (ref D5) (pin 1))
|
||||
(node (ref Cl3) (pin 1))
|
||||
(node (ref U1) (pin 3))
|
||||
(node (ref RLED_5V1) (pin 1))
|
||||
(node (ref K1) (pin A1))
|
||||
(node (ref J4) (pin 4))
|
||||
(node (ref J4) (pin 5))
|
||||
(node (ref RLED_PWR1) (pin 2))
|
||||
(node (ref Cl4) (pin 1)))
|
||||
(net (code 2) (name "Net-(F1-Pad2)")
|
||||
(node (ref J2) (pin 2))
|
||||
(node (ref F1) (pin 2)))
|
||||
(net (code 3) (name "Net-(F1-Pad1)")
|
||||
(node (ref F1) (pin 1))
|
||||
(node (ref J1) (pin 1)))
|
||||
(net (code 4) (name "Net-(C10-Pad1)")
|
||||
(node (ref R2) (pin 2))
|
||||
(node (ref R5) (pin 1))
|
||||
(node (ref C10) (pin 1))
|
||||
(node (ref R1) (pin 1)))
|
||||
(net (code 5) (name "Net-(D5-Pad2)")
|
||||
(node (ref J3) (pin 1))
|
||||
(node (ref K1) (pin A2))
|
||||
(node (ref Q1) (pin 1))
|
||||
(node (ref D5) (pin 2)))
|
||||
(net (code 6) (name "Net-(F2-Pad2)")
|
||||
(node (ref F2) (pin 2))
|
||||
(node (ref J7) (pin 3)))
|
||||
(net (code 7) (name "Net-(F3-Pad2)")
|
||||
(node (ref J7) (pin 1))
|
||||
(node (ref F3) (pin 2)))
|
||||
(net (code 8) (name "Net-(J1-Pad2)")
|
||||
(node (ref J1) (pin 2))
|
||||
(node (ref RV1) (pin 2))
|
||||
(node (ref J6) (pin 1)))
|
||||
(net (code 9) (name "Net-(C25-Pad2)")
|
||||
(node (ref K1) (pin 11))
|
||||
(node (ref C25) (pin 2))
|
||||
(node (ref TH1) (pin 2))
|
||||
(node (ref J6) (pin 2)))
|
||||
(net (code 10) (name "Net-(C2-Pad1)")
|
||||
(node (ref C3) (pin 2))
|
||||
(node (ref D1) (pin 1))
|
||||
(node (ref D2) (pin 2))
|
||||
(node (ref F2) (pin 1))
|
||||
(node (ref C2) (pin 1)))
|
||||
(net (code 11) (name "Net-(C2-Pad2)")
|
||||
(node (ref Cn3) (pin 2))
|
||||
(node (ref C4) (pin 2))
|
||||
(node (ref Cn4) (pin 2))
|
||||
(node (ref U3) (pin 2))
|
||||
(node (ref C2) (pin 2))
|
||||
(node (ref Cn1) (pin 2))
|
||||
(node (ref Cn2) (pin 2))
|
||||
(node (ref D1) (pin 2))
|
||||
(node (ref D3) (pin 2)))
|
||||
(net (code 12) (name "Net-(C3-Pad1)")
|
||||
(node (ref U2) (pin 1))
|
||||
(node (ref Cp3) (pin 1))
|
||||
(node (ref C3) (pin 1))
|
||||
(node (ref D4) (pin 1))
|
||||
(node (ref Cp4) (pin 1))
|
||||
(node (ref Cp1) (pin 1))
|
||||
(node (ref C5) (pin 1))
|
||||
(node (ref D2) (pin 1))
|
||||
(node (ref Cp2) (pin 1)))
|
||||
(net (code 13) (name "Net-(C4-Pad1)")
|
||||
(node (ref F3) (pin 1))
|
||||
(node (ref C5) (pin 2))
|
||||
(node (ref C4) (pin 1))
|
||||
(node (ref D4) (pin 2))
|
||||
(node (ref D3) (pin 1)))
|
||||
(net (code 14) (name "Net-(Q1-Pad2)")
|
||||
(node (ref R1) (pin 2))
|
||||
(node (ref Q1) (pin 2)))
|
||||
(net (code 15) (name /9VAC_2)
|
||||
(node (ref DB9V1) (pin 2))
|
||||
(node (ref C1) (pin 1))
|
||||
(node (ref J8) (pin 2)))
|
||||
(net (code 16) (name /9VAC_1)
|
||||
(node (ref J8) (pin 1))
|
||||
(node (ref C1) (pin 2))
|
||||
(node (ref DB9V1) (pin 4)))
|
||||
(net (code 17) (name -15V)
|
||||
(node (ref Cn6) (pin 2))
|
||||
(node (ref J5) (pin 1))
|
||||
(node (ref J5) (pin 2))
|
||||
(node (ref DLED_-12V1) (pin 1))
|
||||
(node (ref Cn5) (pin 2))
|
||||
(node (ref U3) (pin 3))
|
||||
(node (ref Cn7) (pin 2)))
|
||||
(net (code 18) (name +15V)
|
||||
(node (ref J5) (pin 5))
|
||||
(node (ref J5) (pin 6))
|
||||
(node (ref Cp6) (pin 1))
|
||||
(node (ref U2) (pin 3))
|
||||
(node (ref Cp7) (pin 1))
|
||||
(node (ref Cp5) (pin 1))
|
||||
(node (ref R3) (pin 1)))
|
||||
(net (code 19) (name "Net-(C25-Pad1)")
|
||||
(node (ref J2) (pin 1))
|
||||
(node (ref RV1) (pin 1))
|
||||
(node (ref TH1) (pin 1))
|
||||
(node (ref C25) (pin 1))
|
||||
(node (ref K1) (pin 14)))
|
||||
(net (code 20) (name "Net-(J3-Pad2)")
|
||||
(node (ref RLED_PWR1) (pin 1))
|
||||
(node (ref J3) (pin 2)))
|
||||
(net (code 21) (name GNDD)
|
||||
(node (ref C10) (pin 2))
|
||||
(node (ref Cl2) (pin 2))
|
||||
(node (ref J4) (pin 3))
|
||||
(node (ref J4) (pin 2))
|
||||
(node (ref R5) (pin 2))
|
||||
(node (ref Cl4) (pin 2))
|
||||
(node (ref DLED_5V1) (pin 1))
|
||||
(node (ref J4) (pin 1))
|
||||
(node (ref Cl1) (pin 2))
|
||||
(node (ref Q1) (pin 3))
|
||||
(node (ref U1) (pin 2))
|
||||
(node (ref DB9V1) (pin 3))
|
||||
(node (ref Cl3) (pin 2)))
|
||||
(net (code 22) (name GNDA)
|
||||
(node (ref J7) (pin 2))
|
||||
(node (ref Cn2) (pin 1))
|
||||
(node (ref Cp6) (pin 2))
|
||||
(node (ref Cp2) (pin 2))
|
||||
(node (ref Cp7) (pin 2))
|
||||
(node (ref Cn7) (pin 1))
|
||||
(node (ref U3) (pin 1))
|
||||
(node (ref U2) (pin 2))
|
||||
(node (ref Cn4) (pin 1))
|
||||
(node (ref Cp1) (pin 2))
|
||||
(node (ref Cp4) (pin 2))
|
||||
(node (ref Cn6) (pin 1))
|
||||
(node (ref R4) (pin 1))
|
||||
(node (ref DLED_+12V1) (pin 1))
|
||||
(node (ref Cn5) (pin 1))
|
||||
(node (ref Cp5) (pin 2))
|
||||
(node (ref J5) (pin 3))
|
||||
(node (ref Cn1) (pin 1))
|
||||
(node (ref J5) (pin 4))
|
||||
(node (ref Cp3) (pin 2))
|
||||
(node (ref Cn3) (pin 1)))
|
||||
(net (code 23) (name "Net-(Cl1-Pad1)")
|
||||
(node (ref DB9V1) (pin 1))
|
||||
(node (ref U1) (pin 1))
|
||||
(node (ref Cl1) (pin 1))
|
||||
(node (ref Cl2) (pin 1)))
|
||||
(net (code 24) (name "Net-(DLED_+12V1-Pad2)")
|
||||
(node (ref R3) (pin 2))
|
||||
(node (ref DLED_+12V1) (pin 2)))
|
||||
(net (code 25) (name "Net-(DLED_-12V1-Pad2)")
|
||||
(node (ref R4) (pin 2))
|
||||
(node (ref DLED_-12V1) (pin 2)))
|
||||
(net (code 26) (name "Net-(DLED_5V1-Pad2)")
|
||||
(node (ref DLED_5V1) (pin 2))
|
||||
(node (ref RLED_5V1) (pin 2)))))
|
33
mixersupply/mixersupply.pro
Normal file
33
mixersupply/mixersupply.pro
Normal file
|
@ -0,0 +1,33 @@
|
|||
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]
|
1295
mixersupply/mixersupply.sch
Normal file
1295
mixersupply/mixersupply.sch
Normal file
File diff suppressed because it is too large
Load diff
BIN
mixersupply/mixersupply_20181023A.pdf
Normal file
BIN
mixersupply/mixersupply_20181023A.pdf
Normal file
Binary file not shown.
BIN
mixersupply/mixersupply_20181023_transparency.xcf
Normal file
BIN
mixersupply/mixersupply_20181023_transparency.xcf
Normal file
Binary file not shown.
|
@ -0,0 +1,19 @@
|
|||
(module 2Pin_4mm_w_clipconnector (layer F.Cu) (tedit 5BC4A3D8)
|
||||
(fp_text reference REF** (at 0 -6.35) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2Pin_4mm_w_clipconnector (at 0 -7.62) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5.08 -2.54) (end 5.08 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 5.08 3.81) (end -5.08 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -5.08 3.81) (end -5.08 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -5.08 -3.81) (end -3.81 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -3.81 -3.81) (end -3.81 -5.08) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -3.81 -5.08) (end 3.81 -5.08) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 3.81 -5.08) (end 3.81 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 3.81 -3.81) (end 5.08 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 5.08 -3.81) (end 5.08 -2.54) (layer F.SilkS) (width 0.15))
|
||||
(pad 1 thru_hole oval (at 2 0 90) (size 4.5 2.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at -2 0 90) (size 4.5 2.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
)
|
|
@ -0,0 +1,18 @@
|
|||
(module 2Pin_8mm_w_clipconnector (layer F.Cu) (tedit 5BC4A364)
|
||||
(fp_text reference REF** (at 0 -6.35) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 2Pin_8mm_w_clipconnector (at 0 -7.62) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 6.35 -3.81) (end 6.35 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 6.35 3.81) (end -6.35 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -6.35 3.81) (end -6.35 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -6.35 -3.81) (end -5.08 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -5.08 -3.81) (end -5.08 -5.08) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -5.08 -5.08) (end 5.08 -5.08) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 5.08 -5.08) (end 5.08 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 5.08 -3.81) (end 6.35 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(pad 1 thru_hole oval (at 4 0 90) (size 4.5 3.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at -4 0 90) (size 4.5 3.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
)
|
|
@ -0,0 +1,21 @@
|
|||
(module 3Pin_4mm_w_clipconnector (layer F.Cu) (tedit 5BC4A459)
|
||||
(fp_text reference REF** (at 0 -6.35) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value 3Pin_4mm_w_clipconnector (at 0 -7.62) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5.08 -2.54) (end 5.08 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 5.08 3.81) (end -8.89 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -8.89 3.81) (end -8.89 -2.54) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -8.89 -2.54) (end -8.89 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -8.89 -3.81) (end -7.62 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -7.62 -3.81) (end -7.62 -5.08) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -7.62 -5.08) (end 3.81 -5.08) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 3.81 -5.08) (end 3.81 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 3.81 -3.81) (end 5.08 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 5.08 -3.81) (end 5.08 -2.54) (layer F.SilkS) (width 0.15))
|
||||
(pad 1 thru_hole oval (at 2 0 90) (size 4.5 2.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at -2 0 90) (size 4.5 2.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at -6 0 90) (size 4.5 2.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
)
|
|
@ -0,0 +1,19 @@
|
|||
(module AC_Connector (layer F.Cu) (tedit 5BC49EDC)
|
||||
(fp_text reference REF** (at 0 -6.985) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value AC_Connector (at 0 -8.255) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -10.16 -3.5) (end 10.16 -3.5) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 10.16 -3.5) (end 10.16 3.5) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 10.16 3.5) (end -10.16 3.5) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -10.16 3.5) (end -10.16 -3.5) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 0 -3.556) (end 1.524 -3.556) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 1.524 -3.556) (end 1.524 3.556) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 1.524 3.556) (end -1.524 3.556) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -1.524 3.556) (end -1.524 -3.556) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -1.524 -3.556) (end 0 -3.556) (layer F.SilkS) (width 0.15))
|
||||
(pad 1 thru_hole circle (at -5.08 0) (size 6 6) (drill 2) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole circle (at 5.08 0) (size 6 6) (drill 2) (layers *.Cu *.Mask))
|
||||
)
|
16
mixersupply/mixersupply_fuse.pretty/Fuseholder0520.kicad_mod
Normal file
16
mixersupply/mixersupply_fuse.pretty/Fuseholder0520.kicad_mod
Normal file
|
@ -0,0 +1,16 @@
|
|||
(module Fuseholder0520 (layer F.Cu) (tedit 5BC4A14C)
|
||||
(fp_text reference REF** (at 0 -5.08) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value Fuseholder0520 (at 0 -6.35) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 13.97 -3.81) (end 13.97 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 13.97 3.81) (end -13.97 3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -13.97 3.81) (end -13.97 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -13.97 -3.81) (end 13.97 -3.81) (layer F.SilkS) (width 0.15))
|
||||
(pad 2 thru_hole oval (at 10.16 0 90) (size 4.5 3.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 5.08 0 90) (size 4.5 3.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole oval (at -5.08 0 90) (size 4.5 3.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole oval (at -10.16 0 90) (size 4.5 3.5) (drill 1.5) (layers *.Cu *.Mask))
|
||||
)
|
|
@ -0,0 +1,16 @@
|
|||
(module "Relais DEG SDT-S-105LMR" (layer F.Cu) (tedit 5BC4BB47)
|
||||
(fp_text reference REF** (at 0 -10.16) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value "Relais DEG SDT-S-105LMR" (at 0 -11.43) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -3.81 -2.54) (end 24.13 -2.54) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 24.13 -2.54) (end 24.13 10.16) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start 24.13 10.16) (end -3.81 10.16) (layer F.SilkS) (width 0.15))
|
||||
(fp_line (start -3.81 10.16) (end -3.81 -2.54) (layer F.SilkS) (width 0.15))
|
||||
(pad A1 thru_hole circle (at 0 0) (size 2 2) (drill 0.8) (layers *.Cu *.Mask))
|
||||
(pad A2 thru_hole circle (at 0 7.62) (size 2 2) (drill 0.8) (layers *.Cu *.Mask))
|
||||
(pad 11 thru_hole circle (at 16.51 7.62) (size 3 3) (drill 1.2) (layers *.Cu *.Mask))
|
||||
(pad 14 thru_hole circle (at 20.32 0) (size 3 3) (drill 1.2) (layers *.Cu *.Mask))
|
||||
)
|
1
schematic/mixer.kicad_pcb
Normal file
1
schematic/mixer.kicad_pcb
Normal file
|
@ -0,0 +1 @@
|
|||
(kicad_pcb (version 4) (host kicad "dummy file") )
|
33
schematic/mixer.pro
Normal file
33
schematic/mixer.pro
Normal file
|
@ -0,0 +1,33 @@
|
|||
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]
|
4
schematic/mixer.sch
Normal file
4
schematic/mixer.sch
Normal file
|
@ -0,0 +1,4 @@
|
|||
EESchema Schematic File Version 2
|
||||
EELAYER 25 0
|
||||
EELAYER END
|
||||
$EndSCHEMATC
|
BIN
schematic/mixerinput/Inputopampcircuit_1.png
Normal file
BIN
schematic/mixerinput/Inputopampcircuit_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
516
schematic/mixerinput/inputbuffer.bak
Normal file
516
schematic/mixerinput/inputbuffer.bak
Normal file
|
@ -0,0 +1,516 @@
|
|||
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
|
546
schematic/mixerinput/inputbuffer.sch
Normal file
546
schematic/mixerinput/inputbuffer.sch
Normal file
|
@ -0,0 +1,546 @@
|
|||
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
|
204
schematic/mixerinput/mixerinput-cache.lib
Normal file
204
schematic/mixerinput/mixerinput-cache.lib
Normal file
|
@ -0,0 +1,204 @@
|
|||
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
|
166
schematic/mixerinput/mixerinput.bak
Normal file
166
schematic/mixerinput/mixerinput.bak
Normal file
|
@ -0,0 +1,166 @@
|
|||
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
|
1082
schematic/mixerinput/mixerinput.kicad_pcb
Normal file
1082
schematic/mixerinput/mixerinput.kicad_pcb
Normal file
File diff suppressed because it is too large
Load diff
1082
schematic/mixerinput/mixerinput.kicad_pcb-bak
Normal file
1082
schematic/mixerinput/mixerinput.kicad_pcb-bak
Normal file
File diff suppressed because it is too large
Load diff
369
schematic/mixerinput/mixerinput.net
Normal file
369
schematic/mixerinput/mixerinput.net
Normal file
|
@ -0,0 +1,369 @@
|
|||
(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)))))
|
33
schematic/mixerinput/mixerinput.pro
Normal file
33
schematic/mixerinput/mixerinput.pro
Normal file
|
@ -0,0 +1,33 @@
|
|||
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]
|
166
schematic/mixerinput/mixerinput.sch
Normal file
166
schematic/mixerinput/mixerinput.sch
Normal file
|
@ -0,0 +1,166 @@
|
|||
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
|
276
schematic/mixerinput/outputbuffer.bak
Normal file
276
schematic/mixerinput/outputbuffer.bak
Normal file
|
@ -0,0 +1,276 @@
|
|||
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
|
184
schematic/mixeroutput/mixeroutput-cache.lib
Normal file
184
schematic/mixeroutput/mixeroutput-cache.lib
Normal file
|
@ -0,0 +1,184 @@
|
|||
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
|
174
schematic/mixeroutput/mixeroutput.bak
Normal file
174
schematic/mixeroutput/mixeroutput.bak
Normal file
|
@ -0,0 +1,174 @@
|
|||
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
|
33
schematic/mixeroutput/mixeroutput.pro
Normal file
33
schematic/mixeroutput/mixeroutput.pro
Normal file
|
@ -0,0 +1,33 @@
|
|||
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]
|
174
schematic/mixeroutput/mixeroutput.sch
Normal file
174
schematic/mixeroutput/mixeroutput.sch
Normal file
|
@ -0,0 +1,174 @@
|
|||
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
|
296
schematic/mixeroutput/outputbuffer.bak
Normal file
296
schematic/mixeroutput/outputbuffer.bak
Normal file
|
@ -0,0 +1,296 @@
|
|||
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
|
298
schematic/mixeroutput/outputbuffer.sch
Normal file
298
schematic/mixeroutput/outputbuffer.sch
Normal file
|
@ -0,0 +1,298 @@
|
|||
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
|
Loading…
Reference in a new issue