Showing preview only (1,186K chars total). Download the full file or copy to clipboard to get everything.
Repository: fotherja/EV_Charger
Branch: main
Commit: 3d65980aed00
Files: 21
Total size: 1.1 MB
Directory structure:
gitextract_4e8su9rc/
├── EV Charger BOM.xlsx
├── EV_Charger.ino
├── KiCad_Files/
│ ├── EV_Charger2-cache.lib
│ ├── EV_Charger2.kicad_pcb
│ ├── EV_Charger2.kicad_pcb-bak
│ ├── EV_Charger2.pro
│ ├── EV_Charger2.sch
│ ├── EV_Charger2.sch-bak
│ ├── GerbersV2/
│ │ ├── EV_Charger2-B_Cu.gbr
│ │ ├── EV_Charger2-B_Mask.gbr
│ │ ├── EV_Charger2-B_SilkS.gbr
│ │ ├── EV_Charger2-Edge_Cuts.gbr
│ │ ├── EV_Charger2-F_Cu.gbr
│ │ ├── EV_Charger2-F_Mask.gbr
│ │ ├── EV_Charger2-F_SilkS.gbr
│ │ ├── EV_Charger2-NPTH.drl
│ │ ├── EV_Charger2-PTH.drl
│ │ └── EV_Charger2-job.gbrjob
│ └── fp-info-cache
├── LICENSE.txt
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: EV_Charger.ino
================================================
/* EV Charger software
* James Fotherby 20th April 2022
*
* At Power On:
* 1) Ensure relays are open, configure PWM and ADC for running in the background
* 2) Perform GFCI test
* 3) Enter State_A
*
* Status A: (No vehicle present) CP: DC +12v -
* Status B: When a vehicle is plugged in, a diode and resistor pull the DC +12v down to about +9v. We then start our 1khz PWM signal
* Status C: When a vehicle is ready and wants to charge it'll pull the positive side of the PWM down further to 6v (or 3v). This prompts us to close the relays after another GFCI test
*
* We use timer 1 to output generate our PWM/DC voltage
* We synchronise our ADC readings to using Timer1 interrupts to read the low and high PWM regions and we continuously read the GFCI ADC
*
* These are the list of faults that we detect:
* 1) STARTUP GFCI TEST FAIL
* 2) GFCI DETECT
* 3) DIODE FAULT
* 4) VOLTAGE CLASS FAULT
* 5) START CHARGE GFCI TEST FAIL
*
* Changes:
* - 4/5/2022 - Added 4 second WDT reset
* - 22/5/2022 - Fixed bug in Timer interrupt which alternates the ADC channels
* - changed required successive faults from 100 to 10
* - 8/1/2024 - Increased GFCI_FAULT_THRESHOLD from 250 -> 300 because of occasional trips occuring with a Renault Zoe ZE50 2020
*
*/
// Pin definitions
#define Relay_1_Pin 7
#define Relay_2_Pin 8
#define Pilot_PWM_Pin 10
#define GFCI_Test_Pin 11
#define Indicator_LED 13
#define GFCI_ADC_Pin A0
#define Pilot_ReadADC_Pin A1
// State and fault definitions
#define STATE_A 1 // No EV connected
#define STATE_B 2 // EV Connected but not charging
#define STATE_C 3 // Charging
#define CHARGE_PWM_DUTY 350 // Seems to result in 7.4 kW charging rate for me. (Lower numbers = higher duty cycle and charge rates)
#define _12_VOLTS 12
#define _9_VOLTS 9
#define _6_VOLTS 6
#define _3_VOLTS 3
#define _DIODE_FAULT 1
#define _FAULT 0
#define FAIL 0
#define PASS 1
#define STARTUP_GFCI_TEST_FAIL 2
#define GFCI_DETECT 3
#define DIODE_FAULT 4
#define VOLTAGE_CLASS_FAULT 5
#define START_CHARGE_GFCI_TEST_FAIL 6
// ADC ranges for classifying voltage levels (923 = 12v and 285 = -12v)
#define POS_12V_MAX 936 // 12.5V
#define POS_12V_MIN 910 // 11.5V
#define POS_9V_MAX 868 // 10V
#define POS_9V_MIN 815 // 8V
#define POS_6V_MAX 789 // 7V
#define POS_6V_MIN 735 // 5V
#define POS_3V_MAX 708 // 4V
#define POS_3V_MIN 656 // 2V
#define NEG_12V_MAX 327
#define NEG_12V_MIN 245
#define GFCI_FAULT_THRESHOLD 300 // This is the ADC value that beyond which trips our GFCI detection system
#define GFCI_FAULT_ABORT_THRESHOLD 500 // If it's taking longer than this to test our GFCI it's clearly failing to work
#define FAULT_COUNT_THRESHOLD 10 // We have to have 10 successive trivial faults to trip out.
// Librarys
#include <avr/wdt.h>
// Global variable definitions (Globals are bad - I know!)
volatile int Pilot_Low_ADC;
volatile int Pilot_High_ADC;
volatile int GFCI_ADC;
volatile byte ADC_Channel = 0;
void Close_Relays();
void Open_Relays();
byte Read_Pilot_Voltage();
byte GFCI_Test();
void Fault_Handler(byte Fault_type);
// ######################################################################################################
// ------------------------------------------------------------------------------------------------------
// ######################################################################################################
void setup() {
delay(500);
noInterrupts();
Serial.begin(115200);
Serial.println("starting up...");
pinMode(Indicator_LED, OUTPUT);
// Configure Relay outputs
Open_Relays();
// Configue Pin 10 for PWM output 1kHz.
pinMode(Pilot_PWM_Pin, OUTPUT);
ICR1 = 1000; // A 16MHz XO with a 1/8 prescaler and 1/1000 up/down (phase correct) count leads to a 1kHz PWM wave.
TCCR1A = 0b00100010;
TCCR1B = 0b00010010; // Timer 1 configured for PWM Phase correct with OC1B enabled non inverting and a 1/8 prescaler
TIMSK1 = 0b00100001; // Enable Interrupts when timer counter at top and bottom (ie. middle of the PWM high and low sections)
OCR1B = 0; // Output +12v DC on the pilot
// Configure ADC Module
ADMUX = B01000000; // Set V_Ref to be AVcc, Set channel to A0
ADCSRA = B10001111; // Enable ADC, Enable conversion complete interrupt, set 128 Prescaler -> ADC Clk = 125KHz
// Enable Watch Dog
wdt_enable(WDTO_4S);
wdt_reset();
interrupts();
// Perform GFCI test
if(GFCI_Test() != PASS) {
Fault_Handler(STARTUP_GFCI_TEST_FAIL);
}
// OCR1B = CHARGE_PWM_DUTY;
// while(1) {
// delay(100);
// Serial.print(Pilot_Low_ADC); Serial.print(", "); Serial.print(Pilot_High_ADC); Serial.print(", "); Serial.println(GFCI_ADC);
//
// }
// Ready to start main loop
Serial.println("Starting in State A");
}
// ######################################################################################################
// ------------------------------------------------------------------------------------------------------
// ######################################################################################################
void loop() {
static byte Current_State = STATE_A;
static byte PVC;
wdt_reset();
delay(10);
PVC = Read_Pilot_Voltage(); // PVC = Pilot Voltage Classification
// ---- Fault detection --------------------------------------------------------------------------------
if(GFCI_ADC > GFCI_FAULT_THRESHOLD)
Fault_Handler(GFCI_DETECT);
if(PVC == _DIODE_FAULT)
Fault_Handler(DIODE_FAULT);
if(PVC == _FAULT)
Fault_Handler(VOLTAGE_CLASS_FAULT);
// ---- Main State machine logic -----------------------------------------------------------------------
switch (Current_State) {
case STATE_A:
if(PVC == _9_VOLTS or PVC == _6_VOLTS or PVC == _3_VOLTS) {
OCR1B = CHARGE_PWM_DUTY;
digitalWrite(Indicator_LED, HIGH);
Serial.println("State B");
Current_State = STATE_B;
}
break;
case STATE_B:
if(PVC == _12_VOLTS) {
OCR1B = 0;
digitalWrite(Indicator_LED, LOW);
Serial.println("State A");
Current_State = STATE_A;
}
else if(PVC == _6_VOLTS or PVC == _3_VOLTS) {
if(GFCI_Test() != PASS) {
Fault_Handler(START_CHARGE_GFCI_TEST_FAIL);
}
else {
Serial.println("State C");
Close_Relays();
Current_State = STATE_C;
}
}
break;
case STATE_C:
if(PVC == _12_VOLTS or PVC == _9_VOLTS) {
Open_Relays();
Serial.println("State B");
Current_State = STATE_B;
}
break;
}
}
// ######################################################################################################
// ------------------------------------------------------------------------------------------------------
// ######################################################################################################
byte Read_Pilot_Voltage()
{
static int Fault_Count = 0;
static int Previous_Value = _12_VOLTS;
// Here we take the Pilot voltages and classfy them into states
if((Pilot_Low_ADC > NEG_12V_MIN and Pilot_Low_ADC < NEG_12V_MAX) or OCR1B == 0) {
if(Pilot_High_ADC > POS_12V_MIN and Pilot_High_ADC < POS_12V_MAX) {
Previous_Value = _12_VOLTS; Fault_Count = 0;
return(_12_VOLTS);
}
else if(Pilot_High_ADC > POS_9V_MIN and Pilot_High_ADC < POS_9V_MAX) {
Previous_Value = _9_VOLTS; Fault_Count = 0;
return(_9_VOLTS);
}
else if(Pilot_High_ADC > POS_6V_MIN and Pilot_High_ADC < POS_6V_MAX) {
Previous_Value = _6_VOLTS; Fault_Count = 0;
return(_6_VOLTS);
}
else if(Pilot_High_ADC > POS_3V_MIN and Pilot_High_ADC < POS_3V_MAX) {
Previous_Value = _3_VOLTS; Fault_Count = 0;
return(_3_VOLTS);
}
else {
// The measured voltage is out of any expected range. We call this a fault condition
Fault_Count++;
if(Fault_Count > FAULT_COUNT_THRESHOLD)
return(_FAULT);
else
return(Previous_Value);
}
}
else {
// Diode fault - the negative PWM should always be -12v, if it's not we have a diode missing fault!
Fault_Count++;
if(Fault_Count > FAULT_COUNT_THRESHOLD)
return(_DIODE_FAULT);
else
return(Previous_Value);
}
}
byte GFCI_Test() // This routine energises the test coil on the current transformer using a 50Hz square wave
{
pinMode(GFCI_Test_Pin, OUTPUT);
delay(100);
unsigned long GFCI_TimeDiff, GFCI_Timestamp = millis();
while(1) {
digitalWrite(GFCI_Test_Pin, HIGH); delay(10);
digitalWrite(GFCI_Test_Pin, LOW); delay(10);
GFCI_TimeDiff = millis() - GFCI_Timestamp;
if(GFCI_ADC > GFCI_FAULT_THRESHOLD or GFCI_TimeDiff > GFCI_FAULT_ABORT_THRESHOLD)
break;
}
pinMode(GFCI_Test_Pin, INPUT);
Serial.print("Ground fault detection time: "); Serial.print(GFCI_TimeDiff); Serial.println(" ms");
delay(500); // Allows time for the GFCI circuitary to decay to zero
if(GFCI_TimeDiff < 100) {
Serial.println("GFCI Test Successful");
return(PASS);
}
else {
Serial.println("GFCI Test Unsuccessful");
return(FAIL);
}
}
void Fault_Handler(byte Fault_type)
{
Open_Relays();
OCR1B = 0;
Serial.print("FAULT: "); Serial.print(Fault_type);
while(1) {
delay(100);
digitalWrite(Indicator_LED, HIGH);
delay(100);
digitalWrite(Indicator_LED, LOW);
wdt_reset();
}
}
void Close_Relays()
{
pinMode(Relay_1_Pin, OUTPUT); pinMode(Relay_2_Pin, OUTPUT);
digitalWrite(Relay_1_Pin, HIGH); digitalWrite(Relay_2_Pin, HIGH);
}
void Open_Relays()
{
pinMode(Relay_1_Pin, OUTPUT); pinMode(Relay_2_Pin, OUTPUT);
digitalWrite(Relay_1_Pin, LOW); digitalWrite(Relay_2_Pin, LOW);
}
// ######################################################################################################
// ------------------------------------------------------------------------------------------------------
// ######################################################################################################
// This code runs when the PWM signal is in the middle of its low period
ISR(TIMER1_OVF_vect)
{
static byte selector = 0;
if(ADCSRA & 0b01000000) // If the ADC is still performing a conversion (it shouldn't be) then return
return;
if(selector) {
ADMUX = B01000000;
ADCSRA |= B01000000;
ADC_Channel = 0;
selector = 0;
}
else {
ADMUX = B01000001;
ADCSRA |= B01000000;
ADC_Channel = 1;
selector = 1;
}
}
// This code runs when the PWM signal is in the middle of its high period
ISR(TIMER1_CAPT_vect)
{
static byte selector = 0;
if(ADCSRA & 0b01000000)
return;
if(selector) {
ADMUX = B01000000;
ADCSRA |= B01000000;
ADC_Channel = 0;
selector = 0;
}
else {
ADMUX = B01000001;
ADCSRA |= B01000000;
ADC_Channel = 2;
selector = 1;
}
}
// Interrupt service routine for ADC conversion complete
ISR(ADC_vect)
{
unsigned char adcl = ADCL;
unsigned char adch = ADCH;
switch(ADC_Channel) {
case 0:
GFCI_ADC = (adch << 8) | adcl;
break;
case 1:
Pilot_Low_ADC = (adch << 8) | adcl;
break;
case 2:
Pilot_High_ADC = (adch << 8) | adcl;
break;
}
}
================================================
FILE: KiCad_Files/EV_Charger2-cache.lib
================================================
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# ARDUINO_PRO_MINI_ARDUINO_PRO_MINI
#
DEF ARDUINO_PRO_MINI_ARDUINO_PRO_MINI U 0 40 Y Y 1 L N
F0 "U" -500 1250 50 H V L BNN
F1 "ARDUINO_PRO_MINI_ARDUINO_PRO_MINI" -500 -1300 50 H V L BNN
F2 "MODULE_ARDUINO_PRO_MINI" 0 0 50 H I L BNN
F3 "" 0 0 50 H I L BNN
F4 "SparkFun Electronics" 0 0 50 H I L BNN "MANUFACTURER"
F5 "N/A" 0 0 50 H I L BNN "PARTREV"
F6 "Manufacturer Recommendations" 0 0 50 H I L BNN "STANDARD"
F7 "N/A" 0 0 50 H I L BNN "MAXIMUM_PACKAGE_HEIGHT"
DRAW
S -500 -1200 500 1200 0 0 10 f
X DTR JP1_1 700 700 200 L 40 40 0 0 I
X TXO JP1_2 700 600 200 L 40 40 0 0 B
X RXI JP1_3 700 500 200 L 40 40 0 0 B
X VCC JP1_4 700 1100 200 L 40 40 0 0 W
X GND JP1_5 700 -900 200 L 40 40 0 0 W
X GND JP1_6 700 -900 200 L 40 40 0 0 W
X A4 JP2_1 -700 400 200 R 40 40 0 0 B
X A5 JP2_2 -700 300 200 R 40 40 0 0 B
X A6 JP3_1 -700 700 200 R 40 40 0 0 I
X A7 JP3_2 -700 600 200 R 40 40 0 0 I
X RAW JP6_1 700 900 200 L 40 40 0 0 W
X MISO JP6_10 -700 -500 200 R 40 40 0 0 B
X MOSI JP6_11 -700 -600 200 R 40 40 0 0 B
X D10 JP6_12 -700 -700 200 R 40 40 0 0 B
X GND_1 JP6_2 700 -1000 200 L 40 40 0 0 W
X RST_1 JP6_3 -700 100 200 R 40 40 0 0 I
X VCC_1 JP6_4 700 1000 200 L 40 40 0 0 W
X A3 JP6_5 -700 -300 200 R 40 40 0 0 B
X A2 JP6_6 -700 -200 200 R 40 40 0 0 B
X A1 JP6_7 -700 -100 200 R 40 40 0 0 B
X A0 JP6_8 -700 0 200 R 40 40 0 0 B
X SCK JP6_9 -700 -400 200 R 40 40 0 0 B
X D9 JP7_1 700 -700 200 L 40 40 0 0 B
X RST_2 JP7_10 700 300 200 L 40 40 0 0 I
X RXI_2 JP7_11 700 100 200 L 40 40 0 0 B
X TXO_2 JP7_12 700 200 200 L 40 40 0 0 B
X D8 JP7_2 700 -600 200 L 40 40 0 0 B
X D7 JP7_3 700 -500 200 L 40 40 0 0 B
X D6 JP7_4 700 -400 200 L 40 40 0 0 B
X D5 JP7_5 700 -300 200 L 40 40 0 0 B
X D4 JP7_6 700 -200 200 L 40 40 0 0 B
X D3 JP7_7 700 -100 200 L 40 40 0 0 B
X D2 JP7_8 700 0 200 L 40 40 0 0 B
X GND_2 JP7_9 700 -1100 200 L 40 40 0 0 W
ENDDRAW
ENDDEF
#
# Amplifier_Operational_LM358
#
DEF Amplifier_Operational_LM358 U 0 5 Y Y 3 L N
F0 "U" 0 200 50 H V L CNN
F1 "Amplifier_Operational_LM358" 0 -200 50 H V L CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS LM358 AD8620 LMC6062 LMC6082 TL062 TL072 TL082 NE5532 SA5532 RC4558 RC4560 RC4580 LMV358 TS912 TSV912IDT TSV912IST TLC272 TLC277 MCP602 OPA1678 OPA2134 OPA2340 OPA2376xxD OPA2376xxDGK MC33078 MC33178 LM4562 OP249 OP275 ADA4075-2 MCP6002-xP MCP6002-xSN MCP6002-xMS LM7332 OPA2333xxD OPA2333xxDGK LMC6482 LT1492 LTC6081xMS8 LM6172 MCP6L92 NJM2043 NJM2114 NJM4556A NJM4558 NJM4559 NJM4560 NJM4580 NJM5532 ADA4807-2ARM OPA2691 LT6234 OPA2356xxD OPA2356xxDGK OPA1612AxD MC33172 OPA1602 TLV2372 LT6237 OPA2277 MCP6022 MCP6V67EMS
$FPLIST
SOIC*3.9x4.9mm*P1.27mm*
DIP*W7.62mm*
TO*99*
OnSemi*Micro8*
TSSOP*3x3mm*P0.65mm*
TSSOP*4.4x3mm*P0.65mm*
MSOP*3x3mm*P0.65mm*
SSOP*3.9x4.9mm*P0.635mm*
LFCSP*2x2mm*P0.5mm*
*SIP*
SOIC*5.3x6.2mm*P1.27mm*
$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
#
# Amplifier_Operational_OP07
#
DEF Amplifier_Operational_OP07 U 0 5 Y Y 1 F N
F0 "U" 50 250 50 H V L CNN
F1 "Amplifier_Operational_OP07" 50 150 50 H V L CNN
F2 "" 50 50 50 H I C CNN
F3 "" 50 150 50 H I C CNN
ALIAS OP77 LT1363 OPA134
$FPLIST
DIP*W7.62mm*
SOIC*3.9x4.9mm*P1.27mm*
TO*99*
$ENDFPLIST
DRAW
P 4 0 1 10 -200 200 200 0 -200 -200 -200 200 f
X VOS 1 0 -300 200 U 50 20 1 1 I
X - 2 -300 -100 100 R 50 50 1 1 I
X + 3 -300 100 100 R 50 50 1 1 I
X V- 4 -100 -300 150 U 50 50 1 1 W
X NC 5 0 100 100 D 50 50 1 1 N N
X ~ 6 300 0 100 L 50 50 1 1 O
X V+ 7 -100 300 150 D 50 50 1 1 W
X VOS 8 100 -300 250 U 50 20 1 1 I
ENDDRAW
ENDDEF
#
# Connector_Generic_Conn_01x04
#
DEF Connector_Generic_Conn_01x04 J 0 40 Y N 1 F N
F0 "J" 0 200 50 H V C CNN
F1 "Connector_Generic_Conn_01x04" 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 -50 -195 0 -205 1 1 6 N
S -50 -95 0 -105 1 1 6 N
S -50 5 0 -5 1 1 6 N
S -50 105 0 95 1 1 6 N
S -50 150 50 -250 1 1 10 f
X Pin_1 1 -200 100 150 R 50 50 1 1 P
X Pin_2 2 -200 0 150 R 50 50 1 1 P
X Pin_3 3 -200 -100 150 R 50 50 1 1 P
X Pin_4 4 -200 -200 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Connector_Screw_Terminal_01x02
#
DEF Connector_Screw_Terminal_01x02 J 0 40 Y N 1 F N
F0 "J" 0 100 50 H V C CNN
F1 "Connector_Screw_Terminal_01x02" 0 -200 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
TerminalBlock*:*
$ENDFPLIST
DRAW
C 0 -100 25 1 1 6 N
C 0 0 25 1 1 6 N
S -50 50 50 -150 1 1 10 f
P 2 1 1 6 -21 -87 13 -120 N
P 2 1 1 6 -21 13 13 -20 N
P 2 1 1 6 -14 -80 20 -113 N
P 2 1 1 6 -14 20 20 -13 N
X Pin_1 1 -200 0 150 R 50 50 1 1 P
X Pin_2 2 -200 -100 150 R 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 -40 0 1 0 F
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_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_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_R_POT_TRIM
#
DEF Device_R_POT_TRIM RV 0 40 Y N 1 F N
F0 "RV" -175 0 50 V V C CNN
F1 "Device_R_POT_TRIM" -100 0 50 V V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
$FPLIST
Potentiometer*
$ENDFPLIST
DRAW
S 40 100 -40 -100 0 1 10 N
P 2 0 1 0 60 30 60 -30 N
P 2 0 1 0 100 0 60 0 N
X 1 1 0 150 50 D 50 50 1 1 P
X 2 2 150 0 50 L 50 50 1 1 P
X 3 3 0 -150 50 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Diode_1N4148
#
DEF Diode_1N4148 D 0 40 N N 1 F N
F0 "D" 0 100 50 H V C CNN
F1 "Diode_1N4148" 0 -100 50 H V C CNN
F2 "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" 0 -175 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS 1N4448 1N4149 1N4151 1N914 BA243 BA244 BA282 BA283 BAV17 BAV18 BAV19 BAV20 BAV21 BAW75 BAW76 BAY93
$FPLIST
D*DO?35*
$ENDFPLIST
DRAW
P 2 0 1 10 -50 50 -50 -50 N
P 2 0 1 0 50 0 -50 0 N
P 4 0 1 10 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
#
# Diode_SM6T6V8A
#
DEF Diode_SM6T6V8A D 0 40 N N 1 F N
F0 "D" 0 100 50 H V C CNN
F1 "Diode_SM6T6V8A" 0 -100 50 H V C CNN
F2 "Diode_SMD:D_SMB" 0 -200 50 H I C CNN
F3 "" -50 0 50 H I C CNN
ALIAS SM6T7V5A SM6T10A SM6T12A SM6T15A SM6T18A SM6T22A SM6T24A SM6T27A SM6T30A SM6T33A SM6T36A SM6T39A SM6T56A SM6T68A SM6T75A SM6T100A SM6T150A SM6T200A SM6T220A
$FPLIST
D*SMB*
$ENDFPLIST
DRAW
P 3 0 1 10 -30 50 -50 50 -50 -50 N
P 4 0 1 10 50 50 50 -50 -50 0 50 50 N
X A1 1 -150 0 100 R 50 50 1 1 P
X A2 2 150 0 100 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# RAC10-15DK_277_RAC10-15DK_277
#
DEF RAC10-15DK_277_RAC10-15DK_277 PS 0 40 Y Y 1 L N
F0 "PS" -500 330 50 H V L BNN
F1 "RAC10-15DK_277_RAC10-15DK_277" -500 -330 50 H V L BNN
F2 "CONV_RAC10-15DK/277" 0 0 50 H I L BNN
F3 "" 0 0 50 H I L BNN
F4 "Manufacturer Recommendations" 0 0 50 H I L BNN "STANDARD"
F5 "8/2020" 0 0 50 H I L BNN "PARTREV"
F6 "RECOM" 0 0 50 H I L BNN "MANUFACTURER"
F7 "23.5mm" 0 0 50 H I L BNN "MAXIMUM_PACKAGE_HEIGHT"
DRAW
S -500 -300 500 300 0 0 10 f
X VAC_IN(N) 1 -700 -200 200 R 40 40 0 0 I
X VAC_IN(L) 2 -700 200 200 R 40 40 0 0 I
X -VOUT 3 700 -200 200 L 40 40 0 0 O
X COM 4 700 0 200 L 40 40 0 0 W
X +VOUT 5 700 200 200 L 40 40 0 0 O
ENDDRAW
ENDDEF
#
# Regulator_Linear_LM317_TO-220
#
DEF Regulator_Linear_LM317_TO-220 U 0 10 Y Y 1 F N
F0 "U" -150 125 50 H V C CNN
F1 "Regulator_Linear_LM317_TO-220" 0 125 50 H V L CNN
F2 "Package_TO_SOT_THT:TO-220-3_Vertical" 0 250 50 H I C CIN
F3 "" 0 0 50 H I C CNN
ALIAS AZ1117T-ADJ
$FPLIST
TO?220*
$ENDFPLIST
DRAW
S -200 75 200 -200 0 1 10 f
X ADJ 1 0 -300 100 U 50 50 1 1 I
X VO 2 300 0 100 L 50 50 1 1 w
X VI 3 -300 0 100 R 50 50 1 1 W
ENDDRAW
ENDDEF
#
# Regulator_Linear_LM337_TO220
#
DEF Regulator_Linear_LM337_TO220 U 0 10 Y Y 1 F N
F0 "U" -150 -125 50 H V C CNN
F1 "Regulator_Linear_LM337_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 LT1033C OM1323_TO220
$FPLIST
TO?220*
$ENDFPLIST
DRAW
S -200 200 200 -75 0 1 10 f
X ADJ 1 0 300 100 D 50 50 1 1 I
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
#
# T9VV1K15-12S_T9VV1K15-12S
#
DEF T9VV1K15-12S_T9VV1K15-12S K 0 40 Y N 1 L N
F0 "K" -204 219 50 H V L BNN
F1 "T9VV1K15-12S_T9VV1K15-12S" -209 -288 50 H V L BNN
F2 "RELAY_T9VV1K15-12S" 0 0 50 H I L BNN
F3 "" 0 0 50 H I L BNN
F4 "2027395-5" 0 0 50 H I L BNN "Comment"
F5 "40 A" 0 0 50 H I L BNN "Contact_Current_Rating_Max"
F6 "30 VDC" 0 0 50 H I L BNN "Contact_Switching_Voltage_Max"
DRAW
A -100 -75 25 -901 900 0 0 6 N -100 -50 -100 -100
A -100 -25 25 -901 900 0 0 6 N -100 0 -100 -50
A -100 25 25 -901 900 0 0 6 N -100 50 -100 0
A -100 75 25 -901 900 0 0 6 N -100 100 -100 50
P 2 0 0 6 -200 -200 200 -200 N
P 2 0 0 6 -200 -100 -100 -100 N
P 2 0 0 6 -200 100 -100 100 N
P 2 0 0 6 -200 200 -200 -200 N
P 2 0 0 6 60 50 100 -50 N
P 2 0 0 6 100 -100 200 -100 N
P 2 0 0 6 100 -50 100 -100 N
P 2 0 0 6 100 100 100 50 N
P 2 0 0 6 100 100 200 100 N
P 2 0 0 6 200 -200 200 -100 N
P 2 0 0 6 200 -100 200 200 N
P 2 0 0 6 200 200 -200 200 N
X ~ 1 -300 100 100 R 40 40 0 0 P
X ~ 2 -300 -100 100 R 40 40 0 0 P
X ~ 3 300 -100 100 L 40 40 0 0 P
X ~ 4 300 100 100 L 40 40 0 0 P
ENDDRAW
ENDDEF
#
# Transistor_BJT_BC337
#
DEF Transistor_BJT_BC337 Q 0 0 Y N 1 F N
F0 "Q" 200 75 50 H V L CNN
F1 "Transistor_BJT_BC337" 200 0 50 H V L CNN
F2 "Package_TO_SOT_THT:TO-92_Inline" 200 -75 50 H I L CIN
F3 "" 0 0 50 H I L CNN
ALIAS BC546 BC548 BC549 BC550 BC337 BC338
$FPLIST
TO?92*
$ENDFPLIST
DRAW
C 50 0 111 0 1 10 N
P 2 0 1 0 0 0 25 0 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 200 R 50 50 1 1 I
X E 3 100 -200 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# power_+12V
#
DEF power_+12V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_+12V" 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 +12V 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 -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_-12V
#
DEF power_-12V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 100 50 H I C CNN
F1 "power_-12V" 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 -12V 1 0 0 0 U 50 50 0 0 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_Earth
#
DEF power_Earth #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "power_Earth" 0 -150 50 H I C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 2 0 1 0 -25 -75 25 -75 N
P 2 0 1 0 -5 -100 5 -100 N
P 2 0 1 0 0 -50 0 0 N
P 2 0 1 0 50 -50 -50 -50 N
X Earth 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
#End Library
================================================
FILE: KiCad_Files/EV_Charger2.kicad_pcb
================================================
(kicad_pcb (version 20171130) (host pcbnew "(5.1.10)-1")
(general
(thickness 1.6)
(drawings 11)
(tracks 283)
(zones 0)
(modules 62)
(nets 61)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 1)
(user_trace_width 1)
(user_trace_width 6)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 4.50088 4.50088)
(pad_drill 1.99898)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GerbersV1/"))
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "Net-(C1-Pad2)")
(net 3 "Net-(C2-Pad1)")
(net 4 Earth)
(net 5 "Net-(C4-Pad1)")
(net 6 "Net-(D3-Pad1)")
(net 7 "Net-(D5-Pad2)")
(net 8 "Net-(J1-Pad4)")
(net 9 "Net-(Q1-Pad2)")
(net 10 "Net-(Q2-Pad2)")
(net 11 +5V)
(net 12 "Net-(R5-Pad1)")
(net 13 "Net-(R8-Pad1)")
(net 14 +12V)
(net 15 -12V)
(net 16 /GFCI)
(net 17 "Net-(J2-Pad2)")
(net 18 "Net-(J2-Pad3)")
(net 19 "Net-(J2-Pad4)")
(net 20 /GFCI_Test)
(net 21 "Net-(R18-Pad1)")
(net 22 /PWM_Read)
(net 23 /Relay_2_Drive)
(net 24 /Relay_1_Drive)
(net 25 /PWM)
(net 26 "Net-(D3-Pad2)")
(net 27 "Net-(J3-Pad1)")
(net 28 /L_In)
(net 29 /N_In)
(net 30 /L_Out)
(net 31 /N_Out)
(net 32 "Net-(U1-PadJP1_1)")
(net 33 "Net-(U1-PadJP1_2)")
(net 34 "Net-(U1-PadJP1_3)")
(net 35 "Net-(U1-PadJP2_1)")
(net 36 "Net-(U1-PadJP2_2)")
(net 37 "Net-(U1-PadJP3_2)")
(net 38 "Net-(U1-PadJP3_1)")
(net 39 "Net-(U1-PadJP6_3)")
(net 40 "Net-(U1-PadJP6_5)")
(net 41 "Net-(U1-PadJP6_6)")
(net 42 "Net-(U1-PadJP6_9)")
(net 43 "Net-(U1-PadJP6_10)")
(net 44 "Net-(U2-Pad1)")
(net 45 "Net-(U2-Pad5)")
(net 46 "Net-(U2-Pad8)")
(net 47 "Net-(U1-PadJP7_1)")
(net 48 "Net-(U1-PadJP7_5)")
(net 49 "Net-(U1-PadJP7_6)")
(net 50 "Net-(U1-PadJP7_7)")
(net 51 "Net-(F1-Pad1)")
(net 52 "Net-(R19-Pad1)")
(net 53 +15V)
(net 54 -15V)
(net 55 "Net-(C5-Pad1)")
(net 56 "Net-(D6-Pad2)")
(net 57 "Net-(D4-Pad1)")
(net 58 "Net-(D7-Pad2)")
(net 59 "Net-(U1-PadJP7_4)")
(net 60 "Net-(U1-PadJP7_8)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +12V)
(add_net +15V)
(add_net +5V)
(add_net -12V)
(add_net -15V)
(add_net /GFCI)
(add_net /GFCI_Test)
(add_net /L_In)
(add_net /L_Out)
(add_net /N_In)
(add_net /N_Out)
(add_net /PWM)
(add_net /PWM_Read)
(add_net /Relay_1_Drive)
(add_net /Relay_2_Drive)
(add_net Earth)
(add_net "Net-(C1-Pad1)")
(add_net "Net-(C1-Pad2)")
(add_net "Net-(C2-Pad1)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(C5-Pad1)")
(add_net "Net-(D3-Pad1)")
(add_net "Net-(D3-Pad2)")
(add_net "Net-(D4-Pad1)")
(add_net "Net-(D5-Pad2)")
(add_net "Net-(D6-Pad2)")
(add_net "Net-(D7-Pad2)")
(add_net "Net-(F1-Pad1)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(J2-Pad2)")
(add_net "Net-(J2-Pad3)")
(add_net "Net-(J2-Pad4)")
(add_net "Net-(J3-Pad1)")
(add_net "Net-(Q1-Pad2)")
(add_net "Net-(Q2-Pad2)")
(add_net "Net-(R18-Pad1)")
(add_net "Net-(R19-Pad1)")
(add_net "Net-(R5-Pad1)")
(add_net "Net-(R8-Pad1)")
(add_net "Net-(U1-PadJP1_1)")
(add_net "Net-(U1-PadJP1_2)")
(add_net "Net-(U1-PadJP1_3)")
(add_net "Net-(U1-PadJP2_1)")
(add_net "Net-(U1-PadJP2_2)")
(add_net "Net-(U1-PadJP3_1)")
(add_net "Net-(U1-PadJP3_2)")
(add_net "Net-(U1-PadJP6_10)")
(add_net "Net-(U1-PadJP6_3)")
(add_net "Net-(U1-PadJP6_5)")
(add_net "Net-(U1-PadJP6_6)")
(add_net "Net-(U1-PadJP6_9)")
(add_net "Net-(U1-PadJP7_1)")
(add_net "Net-(U1-PadJP7_4)")
(add_net "Net-(U1-PadJP7_5)")
(add_net "Net-(U1-PadJP7_6)")
(add_net "Net-(U1-PadJP7_7)")
(add_net "Net-(U1-PadJP7_8)")
(add_net "Net-(U2-Pad1)")
(add_net "Net-(U2-Pad5)")
(add_net "Net-(U2-Pad8)")
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 6260DD03)
(at 203 24)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /6268F20C)
(fp_text reference D7 (at 3.81 -2.06) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "1N749A 4.3V Zener" (at 3.81 2.06) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 +12V))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 58 "Net-(D7-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6249808D)
(at 235.75 37.75 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6251CAB4)
(fp_text reference R12 (at -2 2.5 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 /GFCI))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "Net-(D4-Pad1)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62489309)
(at 165.75 69.25)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(path /624E7990)
(fp_text reference R11 (at 7.62 -2.66) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K (at 7.62 2.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.3 -1.95) (end -1.05 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.3 1.95) (end 16.3 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.95) (end 16.3 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.95) (end -1.05 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.26 0) (end 12.18 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 3.06 0) (layer F.SilkS) (width 0.12))
(fp_line (start 12.18 -1.66) (end 3.06 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 12.18 1.66) (end 12.18 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 3.06 1.66) (end 12.18 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 3.06 -1.66) (end 3.06 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 15.24 0) (end 12.12 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 3.12 0) (layer F.Fab) (width 0.1))
(fp_line (start 12.12 -1.6) (end 3.12 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 12.12 1.6) (end 12.12 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 3.12 1.6) (end 12.12 1.6) (layer F.Fab) (width 0.1))
(fp_line (start 3.12 -1.6) (end 3.12 1.6) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 54 -15V))
(pad 2 thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 +15V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module T9VV1K15-12S:RELAY_T9VV1K15-12S (layer F.Cu) (tedit 62434318) (tstamp 6244BDB9)
(at 172.5 95 180)
(path /624CBE28)
(fp_text reference K1 (at 11.5 1.5) (layer F.SilkS)
(effects (font (size 1.400906 1.400906) (thickness 0.15)))
)
(fp_text value T9VV1K15-12S (at 0 5) (layer F.Fab)
(effects (font (size 1.401496 1.401496) (thickness 0.15)))
)
(fp_line (start -10.6393 5.0229) (end -10.6393 4.7729) (layer F.CrtYd) (width 0.05))
(fp_line (start -10.6393 17.4208) (end -10.6393 5.0229) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.92258 19.1709) (end -8.88918 19.1709) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.6727 0.2229) (end 9.6727 17.4208) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.2546 -0.5391) (end 10.4347 -0.5391) (layer F.CrtYd) (width 0.05))
(fp_line (start 15.005 -12.089) (end 15.005 -2.28922) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.1752 -13.8391) (end 13.2546 -13.8391) (layer F.CrtYd) (width 0.05))
(fp_line (start -12.925 2.51078) (end -12.925 -12.089) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.1752 -13.5891) (end 13.2546 -13.5891) (layer F.SilkS) (width 0.127))
(fp_line (start -12.675 2.51078) (end -12.675 -12.089) (layer F.SilkS) (width 0.127))
(fp_line (start -10.3893 17.4208) (end -10.3893 4.7729) (layer F.SilkS) (width 0.127))
(fp_line (start 13.2546 -0.7891) (end 10.1847 -0.7891) (layer F.SilkS) (width 0.127))
(fp_line (start -11.1513 4.0109) (end -11.1752 4.0109) (layer F.SilkS) (width 0.127))
(fp_line (start 9.4227 -0.0271) (end 9.4227 17.4208) (layer F.SilkS) (width 0.127))
(fp_line (start 14.755 -12.089) (end 14.755 -2.28922) (layer F.SilkS) (width 0.127))
(fp_line (start 7.92258 18.9209) (end -8.88918 18.9209) (layer F.SilkS) (width 0.127))
(fp_line (start -11.1752 -13.5891) (end 13.2546 -13.5891) (layer F.Fab) (width 0.127))
(fp_line (start -12.675 2.51078) (end -12.675 -12.089) (layer F.Fab) (width 0.127))
(fp_line (start -10.3893 17.4208) (end -10.3893 4.7729) (layer F.Fab) (width 0.127))
(fp_line (start 13.2546 -0.7891) (end 10.1847 -0.7891) (layer F.Fab) (width 0.127))
(fp_line (start -11.1513 4.0109) (end -11.1752 4.0109) (layer F.Fab) (width 0.127))
(fp_line (start 9.4227 -0.0271) (end 9.4227 17.4208) (layer F.Fab) (width 0.127))
(fp_line (start 14.755 -12.089) (end 14.755 -2.28922) (layer F.Fab) (width 0.127))
(fp_line (start 7.92258 18.9209) (end -8.88918 18.9209) (layer F.Fab) (width 0.127))
(fp_circle (center -5.08 8.89) (end -4.7625 8.89) (layer F.Fab) (width 0.127))
(fp_circle (center 5.08 8.89) (end 5.3975 8.89) (layer F.Fab) (width 0.127))
(fp_line (start 1.27 0) (end 6.92 0) (layer F.Fab) (width 0.127))
(fp_line (start -1.27 0) (end 1.27 1.27) (layer F.Fab) (width 0.127))
(fp_line (start -4.71 0) (end -1.27 0) (layer F.Fab) (width 0.127))
(fp_circle (center 7.29 0) (end 7.6075 0) (layer F.Fab) (width 0.127))
(fp_circle (center -5.08 0) (end -4.7625 0) (layer F.Fab) (width 0.127))
(fp_line (start 2.54 7.62) (end 5.08 7.62) (layer F.Fab) (width 0.127))
(fp_line (start 5.08 7.62) (end 5.08 8.49) (layer F.Fab) (width 0.127))
(fp_line (start -5.08 7.62) (end -2.54 7.62) (layer F.Fab) (width 0.127))
(fp_line (start -5.08 8.49) (end -5.08 7.62) (layer F.Fab) (width 0.127))
(fp_arc (start -11.4013 5.0229) (end -10.6393 5.0229) (angle -90) (layer F.CrtYd) (width 0.05))
(fp_arc (start -11.300187 2.635787) (end -12.9253 2.51078) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start -8.889187 17.420787) (end -10.6393 17.4208) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start 7.922587 17.420787) (end 7.92258 19.1709) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start 10.4347 0.2229) (end 10.4347 -0.5391) (angle -90) (layer F.CrtYd) (width 0.05))
(fp_arc (start 13.254734 -2.28936) (end 13.2546 -0.539094) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start 13.254597 -12.088997) (end 15.0047 -12.089) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start -11.175047 -12.089147) (end -11.1752 -13.8391) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start -11.1513 4.7729) (end -10.3893 4.7729) (angle -90) (layer F.SilkS) (width 0.127))
(fp_arc (start 10.1847 -0.0271) (end 10.1847 -0.7891) (angle -90) (layer F.SilkS) (width 0.127))
(fp_arc (start -8.889187 17.420787) (end -10.3893 17.4208) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start -11.175187 2.510787) (end -12.6753 2.51078) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start -11.175047 -12.089147) (end -11.1752 -13.5891) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start 13.254597 -12.088997) (end 14.7547 -12.089) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start 13.254734 -2.28936) (end 13.2546 -0.789094) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start 7.922587 17.420787) (end 7.92258 18.9209) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start -11.1513 4.7729) (end -10.3893 4.7729) (angle -90) (layer F.Fab) (width 0.127))
(fp_arc (start 10.1847 -0.0271) (end 10.1847 -0.7891) (angle -90) (layer F.Fab) (width 0.127))
(fp_arc (start -8.889187 17.420787) (end -10.3893 17.4208) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start -11.175187 2.510787) (end -12.6753 2.51078) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start -11.175047 -12.089147) (end -11.1752 -13.5891) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 13.254597 -12.088997) (end 14.7547 -12.089) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 13.254734 -2.28936) (end 13.2546 -0.789094) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 7.922587 17.420787) (end 7.92258 18.9209) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 1.905 7.62) (end 2.54 7.62) (angle -180) (layer F.Fab) (width 0.127))
(fp_arc (start 0.635 7.62) (end 1.27 7.62) (angle -180) (layer F.Fab) (width 0.127))
(fp_arc (start -0.635 7.62) (end 0 7.62) (angle -180) (layer F.Fab) (width 0.127))
(fp_arc (start -1.905 7.62) (end -1.27 7.62) (angle -180) (layer F.Fab) (width 0.127))
(pad 3 thru_hole oval (at -9.375 0 180) (size 2.67 5.34) (drill oval 1.78 3.33) (layers *.Cu *.Mask)
(net 31 /N_Out))
(pad 4 thru_hole oval (at 9.375 -3.43 180) (size 5.85 2.925) (drill oval 4 1.95) (layers *.Cu *.Mask)
(net 29 /N_In))
(pad 2 thru_hole circle (at -4.595 12.01 180) (size 1.635 1.635) (drill 1.09) (layers *.Cu *.Mask)
(net 7 "Net-(D5-Pad2)"))
(pad 1 thru_hole circle (at 5.565 12.01 180) (size 1.635 1.635) (drill 1.09) (layers *.Cu *.Mask)
(net 5 "Net-(C4-Pad1)"))
)
(module Resistors_ThroughHole:R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62481726)
(at 186.75 66.04 90)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(path /622DD234)
(fp_text reference R14 (at 7.62 -2.66 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 68R (at 7.62 2.66 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.3 -1.95) (end -1.05 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.3 1.95) (end 16.3 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.95) (end 16.3 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.95) (end -1.05 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.26 0) (end 12.18 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 3.06 0) (layer F.SilkS) (width 0.12))
(fp_line (start 12.18 -1.66) (end 3.06 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 12.18 1.66) (end 12.18 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 3.06 1.66) (end 12.18 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 3.06 -1.66) (end 3.06 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 15.24 0) (end 12.12 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 3.12 0) (layer F.Fab) (width 0.1))
(fp_line (start 12.12 -1.6) (end 3.12 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 12.12 1.6) (end 12.12 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 3.12 1.6) (end 12.12 1.6) (layer F.Fab) (width 0.1))
(fp_line (start 3.12 -1.6) (end 3.12 1.6) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "Net-(C5-Pad1)"))
(pad 2 thru_hole oval (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 +15V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62481723)
(at 193.548 66.04 90)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(path /622C8B22)
(fp_text reference R13 (at 7.62 -2.66 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 68R (at 7.62 2.66 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.3 -1.95) (end -1.05 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.3 1.95) (end 16.3 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.95) (end 16.3 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.95) (end -1.05 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.26 0) (end 12.18 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 3.06 0) (layer F.SilkS) (width 0.12))
(fp_line (start 12.18 -1.66) (end 3.06 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 12.18 1.66) (end 12.18 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 3.06 1.66) (end 12.18 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 3.06 -1.66) (end 3.06 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 15.24 0) (end 12.12 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 3.12 0) (layer F.Fab) (width 0.1))
(fp_line (start 12.12 -1.6) (end 3.12 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 12.12 1.6) (end 12.12 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 3.12 1.6) (end 12.12 1.6) (layer F.Fab) (width 0.1))
(fp_line (start 3.12 -1.6) (end 3.12 1.6) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C4-Pad1)"))
(pad 2 thru_hole oval (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 +15V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-92_Molded_Narrow (layer F.Cu) (tedit 58CE52AF) (tstamp 62489162)
(at 187.96 83.75 270)
(descr "TO-92 leads molded, narrow, drill 0.6mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /624D7AF0)
(fp_text reference Q2 (at 1.27 -3.56 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BC337 (at 1.27 2.79 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4 2.01) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 4 2.01) (end 4 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 1.27 -3.56 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 1.27 -2.6) (angle -135) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 1.27 -2.6) (angle 135) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 1.27 -1.27) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 10 "Net-(Q2-Pad2)"))
(pad 3 thru_hole circle (at 2.54 0) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 1 thru_hole rect (at 0 0) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 56 "Net-(D6-Pad2)"))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-92_Molded_Narrow.wrl
(offset (xyz 1.269999980926514 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62473F29)
(at 184.25 47.5)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6266B326)
(fp_text reference R17 (at 5.08 2.75) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2.2K (at 5.08 2.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 -12V))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62473D04)
(at 184.25 43.25)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6266DE12)
(fp_text reference R3 (at 5.08 -2.31) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2.2K (at 5.08 2.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 +12V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Potentiometers:Potentiometer_Trimmer_Bourns_PV36W (layer F.Cu) (tedit 5991F6F4) (tstamp 6246CB36)
(at 160.46 22.5)
(descr "Spindle Trimmer Potentiometer, Bourns PV36W, http://www.bourns.com/docs/Product-Datasheets/pv36.pdf")
(tags "Spindle Trimmer Potentiometer Bourns PV36W")
(path /626040FB)
(fp_text reference RV2 (at -4.46 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 5K (at 2.54 3.67) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -0.955 -1.14) (end 0.14 -1.14) (layer F.Fab) (width 0.1))
(fp_line (start -2.225 -2.42) (end -2.225 2.41) (layer F.Fab) (width 0.1))
(fp_line (start -2.225 2.41) (end -1.475 2.41) (layer F.Fab) (width 0.1))
(fp_line (start -1.475 2.41) (end -1.475 2.03) (layer F.Fab) (width 0.1))
(fp_line (start -1.475 2.03) (end 6.555 2.03) (layer F.Fab) (width 0.1))
(fp_line (start 6.555 2.03) (end 6.555 2.41) (layer F.Fab) (width 0.1))
(fp_line (start 6.555 2.41) (end 7.305 2.41) (layer F.Fab) (width 0.1))
(fp_line (start 7.305 2.41) (end 7.305 -2.42) (layer F.Fab) (width 0.1))
(fp_line (start 7.305 -2.42) (end -2.225 -2.42) (layer F.Fab) (width 0.1))
(fp_line (start -1.786 -0.444) (end -0.259 -1.971) (layer F.Fab) (width 0.1))
(fp_line (start -1.652 -0.31) (end -0.125 -1.837) (layer F.Fab) (width 0.1))
(fp_line (start -2.585 -0.78) (end -2.585 -2.78) (layer F.Fab) (width 0.1))
(fp_line (start -2.585 -2.78) (end -0.585 -2.78) (layer F.Fab) (width 0.1))
(fp_line (start -2.345 -2.54) (end -2.345 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start -2.345 2.53) (end -1.355 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start -1.355 2.53) (end -1.355 2.15) (layer F.SilkS) (width 0.12))
(fp_line (start -1.355 2.15) (end 6.435 2.15) (layer F.SilkS) (width 0.12))
(fp_line (start 6.435 2.15) (end 6.435 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start 6.435 2.53) (end 7.425 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start 7.425 2.53) (end 7.425 -2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 7.425 -2.54) (end -2.345 -2.54) (layer F.SilkS) (width 0.12))
(fp_line (start -1.831 -0.406) (end -0.22 -2.016) (layer F.SilkS) (width 0.12))
(fp_line (start -1.691 -0.265) (end -0.998 -0.957) (layer F.SilkS) (width 0.12))
(fp_line (start -0.958 -0.998) (end -0.079 -1.875) (layer F.SilkS) (width 0.12))
(fp_line (start -2.585 -0.78) (end -2.585 -2.78) (layer F.SilkS) (width 0.12))
(fp_line (start -2.585 -2.78) (end -0.585 -2.78) (layer F.SilkS) (width 0.12))
(fp_line (start 7.56 2.66) (end 7.56 -2.67) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.56 -2.67) (end -2.48 -2.67) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 -2.67) (end -2.48 2.66) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 2.66) (end 7.56 2.66) (layer F.CrtYd) (width 0.05))
(fp_arc (start -0.955 -1.14) (end -0.955 -2.295) (angle -179) (layer F.SilkS) (width 0.12))
(fp_arc (start -0.955 -1.14) (end 0.188 -0.98) (angle -99) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 2.54 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.62 1.62) (drill 0.9) (layers *.Cu *.Mask)
(net 52 "Net-(R19-Pad1)"))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.62 1.62) (drill 0.9) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 3 thru_hole circle (at 5.08 0 180) (size 1.62 1.62) (drill 0.9) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Potentiometers.3dshapes/Potentiometer_Trimmer_Bourns_PV36W.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Potentiometers:Potentiometer_Trimmer_Bourns_PV36W (layer F.Cu) (tedit 5991F6F4) (tstamp 6246CB33)
(at 182.96 22.5)
(descr "Spindle Trimmer Potentiometer, Bourns PV36W, http://www.bourns.com/docs/Product-Datasheets/pv36.pdf")
(tags "Spindle Trimmer Potentiometer Bourns PV36W")
(path /62601E30)
(fp_text reference RV1 (at 9.04 0.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 5K (at 2.54 3.67) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -0.955 -1.14) (end 0.14 -1.14) (layer F.Fab) (width 0.1))
(fp_line (start -2.225 -2.42) (end -2.225 2.41) (layer F.Fab) (width 0.1))
(fp_line (start -2.225 2.41) (end -1.475 2.41) (layer F.Fab) (width 0.1))
(fp_line (start -1.475 2.41) (end -1.475 2.03) (layer F.Fab) (width 0.1))
(fp_line (start -1.475 2.03) (end 6.555 2.03) (layer F.Fab) (width 0.1))
(fp_line (start 6.555 2.03) (end 6.555 2.41) (layer F.Fab) (width 0.1))
(fp_line (start 6.555 2.41) (end 7.305 2.41) (layer F.Fab) (width 0.1))
(fp_line (start 7.305 2.41) (end 7.305 -2.42) (layer F.Fab) (width 0.1))
(fp_line (start 7.305 -2.42) (end -2.225 -2.42) (layer F.Fab) (width 0.1))
(fp_line (start -1.786 -0.444) (end -0.259 -1.971) (layer F.Fab) (width 0.1))
(fp_line (start -1.652 -0.31) (end -0.125 -1.837) (layer F.Fab) (width 0.1))
(fp_line (start -2.585 -0.78) (end -2.585 -2.78) (layer F.Fab) (width 0.1))
(fp_line (start -2.585 -2.78) (end -0.585 -2.78) (layer F.Fab) (width 0.1))
(fp_line (start -2.345 -2.54) (end -2.345 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start -2.345 2.53) (end -1.355 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start -1.355 2.53) (end -1.355 2.15) (layer F.SilkS) (width 0.12))
(fp_line (start -1.355 2.15) (end 6.435 2.15) (layer F.SilkS) (width 0.12))
(fp_line (start 6.435 2.15) (end 6.435 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start 6.435 2.53) (end 7.425 2.53) (layer F.SilkS) (width 0.12))
(fp_line (start 7.425 2.53) (end 7.425 -2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 7.425 -2.54) (end -2.345 -2.54) (layer F.SilkS) (width 0.12))
(fp_line (start -1.831 -0.406) (end -0.22 -2.016) (layer F.SilkS) (width 0.12))
(fp_line (start -1.691 -0.265) (end -0.998 -0.957) (layer F.SilkS) (width 0.12))
(fp_line (start -0.958 -0.998) (end -0.079 -1.875) (layer F.SilkS) (width 0.12))
(fp_line (start -2.585 -0.78) (end -2.585 -2.78) (layer F.SilkS) (width 0.12))
(fp_line (start -2.585 -2.78) (end -0.585 -2.78) (layer F.SilkS) (width 0.12))
(fp_line (start 7.56 2.66) (end 7.56 -2.67) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.56 -2.67) (end -2.48 -2.67) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 -2.67) (end -2.48 2.66) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 2.66) (end 7.56 2.66) (layer F.CrtYd) (width 0.05))
(fp_arc (start -0.955 -1.14) (end -0.955 -2.295) (angle -179) (layer F.SilkS) (width 0.12))
(fp_arc (start -0.955 -1.14) (end 0.188 -0.98) (angle -99) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 2.54 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.62 1.62) (drill 0.9) (layers *.Cu *.Mask)
(net 21 "Net-(R18-Pad1)"))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.62 1.62) (drill 0.9) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 3 thru_hole circle (at 5.08 0 180) (size 1.62 1.62) (drill 0.9) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Potentiometers.3dshapes/Potentiometer_Trimmer_Bourns_PV36W.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_lateral_Type-II (layer F.Cu) (tedit 5880C40E) (tstamp 62467FA7)
(at 146.5 72.5 180)
(descr "Fuseholder, 5x20, open, horizontal, Type-II, lateral,")
(tags "Fuseholder 5x20 open horizontal Type-II lateral Sicherungshalter offen ")
(path /62587E31)
(fp_text reference F1 (at 7.61 -1.21) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Fuse (at 7.56 7.44) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.01 2.54) (end 15.36 2.54) (layer F.Fab) (width 0.1))
(fp_line (start -4.44 -0.01) (end 19.66 -0.01) (layer F.Fab) (width 0.1))
(fp_line (start 19.66 -0.01) (end 19.66 5.09) (layer F.Fab) (width 0.1))
(fp_line (start 19.66 5.09) (end -4.44 5.09) (layer F.Fab) (width 0.1))
(fp_line (start -4.44 5.09) (end -4.44 0.04) (layer F.Fab) (width 0.1))
(fp_line (start 10.96 -0.81) (end 10.96 5.89) (layer F.Fab) (width 0.1))
(fp_line (start 10.96 5.89) (end 20.51 5.89) (layer F.Fab) (width 0.1))
(fp_line (start 20.51 5.89) (end 20.51 -0.76) (layer F.Fab) (width 0.1))
(fp_line (start 20.51 -0.76) (end 10.96 -0.81) (layer F.Fab) (width 0.1))
(fp_line (start -5.14 -0.81) (end 4.21 -0.81) (layer F.Fab) (width 0.1))
(fp_line (start 4.21 -0.81) (end 4.21 5.89) (layer F.Fab) (width 0.1))
(fp_line (start 4.21 5.89) (end -5.14 5.89) (layer F.Fab) (width 0.1))
(fp_line (start -5.14 5.89) (end -5.14 -0.81) (layer F.Fab) (width 0.1))
(fp_line (start 10.91 2.54) (end 4.41 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 20.53 5.97) (end 16.72 5.97) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 5.97) (end 13.92 5.97) (layer F.SilkS) (width 0.12))
(fp_line (start 13.38 5.08) (end 13.92 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 19.64 5.08) (end 16.97 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 0) (end 13.67 0) (layer F.SilkS) (width 0.12))
(fp_line (start 19.64 0) (end 16.97 0) (layer F.SilkS) (width 0.12))
(fp_line (start 20.53 -0.89) (end 16.85 -0.89) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 -0.89) (end 13.8 -0.89) (layer F.SilkS) (width 0.12))
(fp_line (start -5.21 5.97) (end -1.52 5.97) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 5.97) (end 1.52 5.97) (layer F.SilkS) (width 0.12))
(fp_line (start 1.78 5.08) (end 1.65 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 1.78 5.08) (end 4.32 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start -4.44 5.08) (end -1.65 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start -5.21 -0.89) (end -1.4 -0.89) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 -0.89) (end 1.52 -0.89) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 0) (end 1.65 0) (layer F.SilkS) (width 0.12))
(fp_line (start -4.44 0) (end -1.65 0) (layer F.SilkS) (width 0.12))
(fp_line (start 20.53 -0.89) (end 20.53 5.97) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 5.97) (end 10.88 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 -0.89) (end 10.88 0) (layer F.SilkS) (width 0.12))
(fp_line (start -5.21 -0.89) (end -5.21 5.97) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 5.97) (end 4.32 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 -0.89) (end 4.32 0.13) (layer F.SilkS) (width 0.12))
(fp_line (start 13.38 5.08) (end 1.69 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 1.82 0) (end 13.38 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 2.54) (end 4.32 0) (layer F.SilkS) (width 0.12))
(fp_line (start -4.44 0) (end -4.44 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 4.32 5.08) (end 4.32 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 2.54) (end 10.88 0) (layer F.SilkS) (width 0.12))
(fp_line (start 19.64 0) (end 19.64 5.08) (layer F.SilkS) (width 0.12))
(fp_line (start 10.88 5.08) (end 10.88 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start -5.39 -1.42) (end 20.76 -1.42) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.39 -1.42) (end -5.39 6.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 20.76 6.5) (end 20.76 -1.42) (layer F.CrtYd) (width 0.05))
(fp_line (start 20.76 6.5) (end -5.39 6.5) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole circle (at 15.32 0 180) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
(net 28 /L_In))
(pad 2 thru_hole circle (at 15.32 5.08 180) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
(net 28 /L_In))
(pad 1 thru_hole circle (at 0 0 180) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
(net 51 "Net-(F1-Pad1)"))
(pad 1 thru_hole circle (at 0 5.08 180) (size 2.35 2.35) (drill 1.35) (layers *.Cu *.Mask)
(net 51 "Net-(F1-Pad1)"))
)
(module LM358AP:DIP794W45P254L959H508Q8 (layer F.Cu) (tedit 62434A94) (tstamp 62434292)
(at 225.52 72.255)
(path /62565F6B)
(fp_text reference U3 (at -3.52 -5.755) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM358 (at 10.865 5.607) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -4.785 -5.045) (end -4.785 5.045) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.785 -5.045) (end 4.785 5.045) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.785 5.045) (end -4.785 5.045) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.785 -5.045) (end -4.785 -5.045) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.175 -4.795) (end 3.175 4.795) (layer F.Fab) (width 0.127))
(fp_line (start -3.175 -4.795) (end -3.175 4.795) (layer F.Fab) (width 0.127))
(fp_line (start -3.175 4.795) (end 3.175 4.795) (layer F.SilkS) (width 0.127))
(fp_line (start -3.175 -4.795) (end 3.175 -4.795) (layer F.SilkS) (width 0.127))
(fp_line (start -3.175 4.795) (end 3.175 4.795) (layer F.Fab) (width 0.127))
(fp_line (start -3.175 -4.795) (end 3.175 -4.795) (layer F.Fab) (width 0.127))
(fp_circle (center -5.035 -3.81) (end -4.935 -3.81) (layer F.Fab) (width 0.2))
(fp_circle (center -5.035 -3.81) (end -4.935 -3.81) (layer F.SilkS) (width 0.2))
(pad 8 thru_hole circle (at 3.97 -3.81) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 14 +12V))
(pad 7 thru_hole circle (at 3.97 -1.27) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 6 "Net-(D3-Pad1)"))
(pad 6 thru_hole circle (at 3.97 1.27) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 26 "Net-(D3-Pad2)"))
(pad 5 thru_hole circle (at 3.97 3.81) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 4 thru_hole circle (at -3.97 3.81) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 15 -12V))
(pad 3 thru_hole circle (at -3.97 1.27) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 12 "Net-(R5-Pad1)"))
(pad 2 thru_hole circle (at -3.97 -1.27) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 25 /PWM))
(pad 1 thru_hole rect (at -3.97 -3.81) (size 1.13 1.13) (drill 0.78) (layers *.Cu *.Mask)
(net 13 "Net-(R8-Pad1)"))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_ISO7380 (layer F.Cu) (tedit 56D1B4CB) (tstamp 6245A3F3)
(at 137 33)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_ISO7380 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.85 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.1 0) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_ISO7380 (layer F.Cu) (tedit 56D1B4CB) (tstamp 6245A3E6)
(at 225 22.75)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 4.5 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_ISO7380 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.85 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.1 0) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_3.2mm_M3_ISO7380 (layer F.Cu) (tedit 56D1B4CB) (tstamp 6261052F)
(at 209.5 105)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0.5 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_3.2mm_M3_ISO7380 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.85 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 3.1 0) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask))
)
(module Socket_Strips:Socket_Strip_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 58CD5446) (tstamp 6244AAF6)
(at 218 112 90)
(descr "Through hole straight socket strip, 1x02, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x02 2.54mm single row")
(path /6292B417)
(fp_text reference J3 (at 3 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Screw_Terminal_01x02 (at 0 4.87 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 3.87) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end -1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 -2.33 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "Net-(J3-Pad1)"))
(model ${KISYS3DMOD}/Socket_Strips.3dshapes/Socket_Strip_Straight_1x02_Pitch2.54mm.wrl
(offset (xyz 0 -1.269999980926514 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(module Wire_Pads:SolderWirePad_single_2mmDrill (layer F.Cu) (tedit 6245A813) (tstamp 624693FA)
(at 208 112)
(fp_text reference GND (at 0 5) (layer F.SilkS)
(effects (font (size 3 3) (thickness 0.5)))
)
(fp_text value SolderWirePad_single_2mmDrill (at -0.635 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.50088 4.50088) (drill 1.99898) (layers *.Cu *.Mask)
(net 4 Earth))
)
(module Wire_Pads:SolderWirePad_single_2mmDrill (layer F.Cu) (tedit 6245A80A) (tstamp 624692CD)
(at 193 112)
(fp_text reference GND (at 0 5) (layer F.SilkS)
(effects (font (size 3 3) (thickness 0.5)))
)
(fp_text value SolderWirePad_single_2mmDrill (at -0.635 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.50088 4.50088) (drill 1.99898) (layers *.Cu *.Mask)
(net 4 Earth))
)
(module Wire_Pads:SolderWirePad_single_2mmDrill (layer F.Cu) (tedit 6245A7F9) (tstamp 6246920B)
(at 178 112)
(fp_text reference "N Out" (at 0 5) (layer F.SilkS)
(effects (font (size 3 3) (thickness 0.5)))
)
(fp_text value SolderWirePad_single_2mmDrill (at -0.635 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.50088 4.50088) (drill 1.99898) (layers *.Cu *.Mask)
(net 31 /N_Out))
)
(module Wire_Pads:SolderWirePad_single_2mmDrill (layer F.Cu) (tedit 62459F90) (tstamp 624691FE)
(at 163 112)
(fp_text reference "N In" (at 0 5) (layer F.SilkS)
(effects (font (size 3 3) (thickness 0.5)))
)
(fp_text value SolderWirePad_single_2mmDrill (at -0.635 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.50088 4.50088) (drill 1.99898) (layers *.Cu *.Mask)
(net 29 /N_In))
)
(module Wire_Pads:SolderWirePad_single_2mmDrill (layer F.Cu) (tedit 6245A143) (tstamp 624691EF)
(at 148 112)
(fp_text reference "L Out" (at 0 5) (layer F.SilkS)
(effects (font (size 3 3) (thickness 0.5)))
)
(fp_text value SolderWirePad_single_2mmDrill (at -0.635 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.50088 4.50088) (drill 1.99898) (layers *.Cu *.Mask)
(net 30 /L_Out))
)
(module Wire_Pads:SolderWirePad_single_2mmDrill (layer F.Cu) (tedit 6245A134) (tstamp 624691D2)
(at 133 112)
(fp_text reference "L In" (at 0 5) (layer F.SilkS)
(effects (font (size 3 3) (thickness 0.5)))
)
(fp_text value SolderWirePad_single_2mmDrill (at -0.635 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.50088 4.50088) (drill 1.99898) (layers *.Cu *.Mask)
(net 28 /L_In))
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6244AF75)
(at 195.58 92.71)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /624E539B)
(fp_text reference R20 (at 7.42 -2.21) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22K (at 5.08 2.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 /PWM_Read))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 +5V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6243A06B)
(at 147.755 22.115 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /62623E29)
(fp_text reference R19 (at 7.385 3.255 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 120R (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "Net-(R19-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 -12V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6243A068)
(at 169.98 22.115 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6261CA75)
(fp_text reference R18 (at 0.885 -3.02 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 240R (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(R18-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 +12V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm (layer F.Cu) (tedit 59650532) (tstamp 62439C4F)
(at 195 38 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /626D178E)
(fp_text reference J2 (at 3 -1) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x04 (at 0 9.95) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 3.81 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(J2-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "Net-(J2-Pad3)"))
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(J2-Pad4)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x04_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 62439AFE)
(at 164.265 27.83 270)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(path /62470A8C)
(fp_text reference C9 (at 5.17 -1.735 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 1.25 3.81 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
(fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
(fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
(fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
(fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
(fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
(fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
(fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
(fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
(fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
(fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
(fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 1.25 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 -12V))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 62439AFB)
(at 185.22 29.735 90)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(path /624705FA)
(fp_text reference C8 (at 1.735 3.78 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 1.25 3.81 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.1 -2.85) (end -1.6 -2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.1 2.85) (end 4.1 -2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 2.85) (end 4.1 2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -2.85) (end -1.6 2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start 3.811 -0.354) (end 3.811 0.354) (layer F.SilkS) (width 0.12))
(fp_line (start 3.771 -0.559) (end 3.771 0.559) (layer F.SilkS) (width 0.12))
(fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
(fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
(fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
(fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
(fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
(fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
(fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
(fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
(fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
(fp_arc (start 1.25 0) (end -1.05558 -1.18) (angle 125.8) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.25 0) (end -1.05558 1.18) (angle -125.8) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.25 0) (end 3.55558 -1.18) (angle 54.2) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0.861 -0.815 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 +12V))
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 62439AF8)
(at 159.185 34.18)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
(path /62662ED6)
(fp_text reference C7 (at -2.185 0.82) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nf (at 6.35 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.55 -1.4) (end -1.05 -1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.55 1.4) (end 3.55 -1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.4) (end 3.55 1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.4) (end -1.05 1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.01 0.996) (end 3.01 1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 3.01 -1.11) (end 3.01 -0.996) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 0.996) (end -0.51 1.11) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 -1.11) (end -0.51 -0.996) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 1.11) (end 3.01 1.11) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 -1.11) (end 3.01 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
(fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
(fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
(fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.25 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 54 -15V))
(pad 2 thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:C_Disc_D3.4mm_W2.1mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 62439AF5)
(at 183.95 33.545 180)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor")
(path /62676B26)
(fp_text reference C6 (at -2.05 -0.955) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at -3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.55 -1.4) (end -1.05 -1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.55 1.4) (end 3.55 -1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.4) (end 3.55 1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.4) (end -1.05 1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.01 0.996) (end 3.01 1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 3.01 -1.11) (end 3.01 -0.996) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 0.996) (end -0.51 1.11) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 -1.11) (end -0.51 -0.996) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 1.11) (end 3.01 1.11) (layer F.SilkS) (width 0.12))
(fp_line (start -0.51 -1.11) (end 3.01 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 2.95 -1.05) (end -0.45 -1.05) (layer F.Fab) (width 0.1))
(fp_line (start 2.95 1.05) (end 2.95 -1.05) (layer F.Fab) (width 0.1))
(fp_line (start -0.45 1.05) (end 2.95 1.05) (layer F.Fab) (width 0.1))
(fp_line (start -0.45 -1.05) (end -0.45 1.05) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.25 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 +15V))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/C_Disc_D3.4mm_W2.1mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-220-3_Vertical (layer F.Cu) (tedit 58CE52AD) (tstamp 6243A7C2)
(at 157.915 29.1 180)
(descr "TO-220-3, Vertical, RM 2.54mm")
(tags "TO-220-3 Vertical RM 2.54mm")
(path /625B0E2C)
(fp_text reference U6 (at 4.415 -3.62) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM337_TO220 (at 2.54 3.92) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.46 -2.5) (end -2.46 1.9) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 1.9) (end 7.54 1.9) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 1.9) (end 7.54 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 -2.5) (end -2.46 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -1.23) (end 7.54 -1.23) (layer F.Fab) (width 0.1))
(fp_line (start 0.69 -2.5) (end 0.69 -1.23) (layer F.Fab) (width 0.1))
(fp_line (start 4.39 -2.5) (end 4.39 -1.23) (layer F.Fab) (width 0.1))
(fp_line (start -2.58 -2.62) (end 7.66 -2.62) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 2.021) (end 7.66 2.021) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -2.62) (end -2.58 2.021) (layer F.SilkS) (width 0.12))
(fp_line (start 7.66 -2.62) (end 7.66 2.021) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -1.11) (end 7.66 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 0.69 -2.62) (end 0.69 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 4.391 -2.62) (end 4.391 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start -2.71 -2.75) (end -2.71 2.16) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 2.16) (end 7.79 2.16) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 2.16) (end 7.79 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 -2.75) (end -2.71 -2.75) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.54 -3.62) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 52 "Net-(R19-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 54 -15V))
(pad 3 thru_hole oval (at 5.08 0 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 15 -12V))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-220-3_Vertical.wrl
(offset (xyz 2.539999961853027 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-220-3_Vertical (layer F.Cu) (tedit 58CE52AD) (tstamp 62434298)
(at 176.965 27.195 270)
(descr "TO-220-3, Vertical, RM 2.54mm")
(tags "TO-220-3 Vertical RM 2.54mm")
(path /625AFE1E)
(fp_text reference U5 (at 7.805 3.465 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM317_TO-220 (at 2.54 3.92 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.46 -2.5) (end -2.46 1.9) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 1.9) (end 7.54 1.9) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 1.9) (end 7.54 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 -2.5) (end -2.46 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -1.23) (end 7.54 -1.23) (layer F.Fab) (width 0.1))
(fp_line (start 0.69 -2.5) (end 0.69 -1.23) (layer F.Fab) (width 0.1))
(fp_line (start 4.39 -2.5) (end 4.39 -1.23) (layer F.Fab) (width 0.1))
(fp_line (start -2.58 -2.62) (end 7.66 -2.62) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 2.021) (end 7.66 2.021) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -2.62) (end -2.58 2.021) (layer F.SilkS) (width 0.12))
(fp_line (start 7.66 -2.62) (end 7.66 2.021) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -1.11) (end 7.66 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 0.69 -2.62) (end 0.69 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start 4.391 -2.62) (end 4.391 -1.11) (layer F.SilkS) (width 0.12))
(fp_line (start -2.71 -2.75) (end -2.71 2.16) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 2.16) (end 7.79 2.16) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 2.16) (end 7.79 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 -2.75) (end -2.71 -2.75) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.54 -3.62 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 21 "Net-(R18-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 14 +12V))
(pad 3 thru_hole oval (at 5.08 0 270) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 53 +15V))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-220-3_Vertical.wrl
(offset (xyz 2.539999961853027 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P10.16mm_Horizontal (layer F.Cu) (tedit 5921392E) (tstamp 6243428C)
(at 203.2 106.585 90)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm")
(path /62349AB9)
(fp_text reference TVS1 (at 7.085 2.3 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value P6KE16CA (at 5.08 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.08 -1) (end 3.08 1) (layer F.Fab) (width 0.1))
(fp_line (start 3.08 1) (end 7.08 1) (layer F.Fab) (width 0.1))
(fp_line (start 7.08 1) (end 7.08 -1) (layer F.Fab) (width 0.1))
(fp_line (start 7.08 -1) (end 3.08 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 3.08 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 7.08 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.68 -1) (end 3.68 1) (layer F.Fab) (width 0.1))
(fp_line (start 3.02 -1.06) (end 3.02 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 3.02 1.06) (end 7.14 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 7.14 1.06) (end 7.14 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 7.14 -1.06) (end 3.02 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 3.02 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 7.14 0) (layer F.SilkS) (width 0.12))
(fp_line (start 3.68 -1.06) (end 3.68 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 11.25 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.35) (end 11.25 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(J3-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434289)
(at 194.31 86.995 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /622D52D1)
(fp_text reference R16 (at -2.005 0.19 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470R (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(Q2-Pad2)"))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 /Relay_2_Drive))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434286)
(at 198.12 86.995 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /622D3D31)
(fp_text reference R15 (at 11.995 -0.12 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470R (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(Q1-Pad2)"))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 /Relay_1_Drive))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434277)
(at 191.77 106.585 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6233C422)
(fp_text reference R10 (at 5.08 -2.31 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 /PWM_Read))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434274)
(at 195.58 96.425 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6233BD9E)
(fp_text reference R9 (at 12.075 0.08 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 /PWM_Read))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(J3-Pad1)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434271)
(at 199.39 96.425 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /62339948)
(fp_text reference R8 (at 12.075 -0.11 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(R8-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(J3-Pad1)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6243426E)
(at 235.75 50.665 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /62276D48)
(fp_text reference R7 (at 5.335 2.43 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "Net-(D4-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "Net-(D3-Pad2)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6243426B)
(at 230.765 47.365 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /62332B1E)
(fp_text reference R6 (at -2.365 -0.235 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(R5-Pad1)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434268)
(at 226.955 57.525 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6233254A)
(fp_text reference R5 (at 5.525 -2.455 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(R5-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 +5V))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 62434265)
(at 229.465 79.5 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /626380F9)
(fp_text reference R4 (at 5.08 -2.31) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47K (at 5.08 2.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "Net-(D3-Pad2)"))
(pad 2 thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad1)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 6243425F)
(at 218.035 91.94)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6226E832)
(fp_text reference R2 (at -2.035 1.06) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100K (at 5.08 0.635) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 624353F7)
(at 236.5 94.5 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6234FE13)
(fp_text reference R1 (at 5.08 2.5 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K (at 5.08 2.31 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 /GFCI_Test))
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(J1-Pad4)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module ARDUINO_PRO_MINI:MODULE_ARDUINO_PRO_MINI (layer F.Cu) (tedit 624348B3) (tstamp 6243911F)
(at 207 43)
(path /6251BE98)
(fp_text reference U1 (at -8 -17.635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ARDUINO_PRO_MINI (at 5.605 17.865) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -9.14 16.76) (end -9.14 -16.76) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.14 16.76) (end -9.14 16.76) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.14 -16.76) (end 9.14 16.76) (layer F.CrtYd) (width 0.05))
(fp_line (start -9.14 -16.76) (end 9.14 -16.76) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.89 -16.51) (end -8.89 -16.51) (layer F.Fab) (width 0.127))
(fp_line (start 8.89 16.51) (end 8.89 -16.51) (layer F.Fab) (width 0.127))
(fp_line (start -8.89 16.51) (end 8.89 16.51) (layer F.Fab) (width 0.127))
(fp_line (start -8.89 -16.51) (end -8.89 16.51) (layer F.Fab) (width 0.127))
(fp_line (start 8.89 -16.51) (end -8.89 -16.51) (layer F.SilkS) (width 0.127))
(fp_line (start 8.89 16.51) (end 8.89 -16.51) (layer F.SilkS) (width 0.127))
(fp_line (start -8.89 16.51) (end 8.89 16.51) (layer F.SilkS) (width 0.127))
(fp_line (start -8.89 -16.51) (end -8.89 16.51) (layer F.SilkS) (width 0.127))
(pad JP1_1 thru_hole circle (at 6.35 -15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 32 "Net-(U1-PadJP1_1)"))
(pad JP1_2 thru_hole circle (at 3.81 -15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 33 "Net-(U1-PadJP1_2)"))
(pad JP1_3 thru_hole circle (at 1.27 -15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 34 "Net-(U1-PadJP1_3)"))
(pad JP1_4 thru_hole circle (at -1.27 -15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 11 +5V))
(pad JP1_5 thru_hole circle (at -3.81 -15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 4 Earth))
(pad JP1_6 thru_hole circle (at -6.35 -15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 4 Earth))
(pad JP2_1 thru_hole circle (at 4.699 -1.397) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 35 "Net-(U1-PadJP2_1)"))
(pad JP2_2 thru_hole circle (at 4.699 -3.937) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 36 "Net-(U1-PadJP2_2)"))
(pad JP3_2 thru_hole circle (at 4.699 6.477) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 37 "Net-(U1-PadJP3_2)"))
(pad JP3_1 thru_hole circle (at 4.699 9.017) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 38 "Net-(U1-PadJP3_1)"))
(pad JP6_1 thru_hole circle (at 7.62 -12.7) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 58 "Net-(D7-Pad2)"))
(pad JP6_2 thru_hole circle (at 7.62 -10.16) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 4 Earth))
(pad JP6_3 thru_hole circle (at 7.62 -7.62) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 39 "Net-(U1-PadJP6_3)"))
(pad JP6_4 thru_hole circle (at 7.62 -5.08) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 11 +5V))
(pad JP6_5 thru_hole circle (at 7.62 -2.54) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 40 "Net-(U1-PadJP6_5)"))
(pad JP6_6 thru_hole circle (at 7.62 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 41 "Net-(U1-PadJP6_6)"))
(pad JP6_7 thru_hole circle (at 7.62 2.54) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 22 /PWM_Read))
(pad JP6_8 thru_hole circle (at 7.62 5.08) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 16 /GFCI))
(pad JP6_9 thru_hole circle (at 7.62 7.62) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 42 "Net-(U1-PadJP6_9)"))
(pad JP6_10 thru_hole circle (at 7.62 10.16) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 43 "Net-(U1-PadJP6_10)"))
(pad JP6_11 thru_hole circle (at 7.62 12.7) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 20 /GFCI_Test))
(pad JP6_12 thru_hole circle (at 7.62 15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 25 /PWM))
(pad JP7_1 thru_hole circle (at -7.62 15.24) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 47 "Net-(U1-PadJP7_1)"))
(pad JP7_2 thru_hole circle (at -7.62 12.7) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 23 /Relay_2_Drive))
(pad JP7_3 thru_hole circle (at -7.62 10.16) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 24 /Relay_1_Drive))
(pad JP7_4 thru_hole circle (at -7.62 7.62) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 59 "Net-(U1-PadJP7_4)"))
(pad JP7_5 thru_hole circle (at -7.62 5.08) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 48 "Net-(U1-PadJP7_5)"))
(pad JP7_6 thru_hole circle (at -7.62 2.54) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 49 "Net-(U1-PadJP7_6)"))
(pad JP7_7 thru_hole circle (at -7.62 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 50 "Net-(U1-PadJP7_7)"))
(pad JP7_8 thru_hole circle (at -7.62 -2.54) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 60 "Net-(U1-PadJP7_8)"))
(pad JP7_9 thru_hole circle (at -7.62 -5.08) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 4 Earth))
(pad JP7_10 thru_hole circle (at -7.62 -7.62) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 17 "Net-(J2-Pad2)"))
(pad JP7_11 thru_hole circle (at -7.62 -10.16) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 18 "Net-(J2-Pad3)"))
(pad JP7_12 thru_hole circle (at -7.62 -12.7) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 19 "Net-(J2-Pad4)"))
)
(module RAC10-15DK_277:CONV_RAC10-15DK_277 (layer F.Cu) (tedit 62434907) (tstamp 62438DD9)
(at 154 51)
(path /6251CCC6)
(fp_text reference PS1 (at -22.105 -14.989) (layer F.SilkS)
(effects (font (size 1.4 1.4) (thickness 0.15)))
)
(fp_text value RAC10-15DK_277 (at -5 -2.5) (layer F.Fab)
(effects (font (size 1.4 1.4) (thickness 0.15)))
)
(fp_circle (center -27.25 -10.16) (end -27.05 -10.16) (layer F.Fab) (width 0.4))
(fp_circle (center -27.25 -10.16) (end -27.05 -10.16) (layer F.SilkS) (width 0.4))
(fp_line (start 26.5 13.95) (end -26.5 13.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 26.5 -13.95) (end 26.5 13.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -26.5 -13.95) (end 26.5 -13.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -26.5 13.95) (end -26.5 -13.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 26.25 13.7) (end -26.25 13.7) (layer F.SilkS) (width 0.127))
(fp_line (start 26.25 -13.7) (end 26.25 13.7) (layer F.SilkS) (width 0.127))
(fp_line (start -26.25 -13.7) (end 26.25 -13.7) (layer F.SilkS) (width 0.127))
(fp_line (start -26.25 13.7) (end -26.25 -13.7) (layer F.SilkS) (width 0.127))
(fp_line (start 26.25 13.7) (end -26.25 13.7) (layer F.Fab) (width 0.127))
(fp_line (start 26.25 -13.7) (end 26.25 13.7) (layer F.Fab) (width 0.127))
(fp_line (start -26.25 -13.7) (end 26.25 -13.7) (layer F.Fab) (width 0.127))
(fp_line (start -26.25 13.7) (end -26.25 -13.7) (layer F.Fab) (width 0.127))
(pad 3 thru_hole circle (at 22.86 10.16) (size 2.03 2.03) (drill 1.35) (layers *.Cu *.Mask)
(net 54 -15V))
(pad 5 thru_hole circle (at 22.86 -10.16) (size 2.03 2.03) (drill 1.35) (layers *.Cu *.Mask)
(net 53 +15V))
(pad 4 thru_hole circle (at 22.86 0) (size 2.03 2.03) (drill 1.35) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole circle (at -22.86 10.16) (size 2.03 2.03) (drill 1.35) (layers *.Cu *.Mask)
(net 51 "Net-(F1-Pad1)"))
(pad 1 thru_hole rect (at -22.86 -10.16) (size 2.03 2.03) (drill 1.35) (layers *.Cu *.Mask)
(net 29 /N_In))
)
(module T9VV1K15-12S:RELAY_T9VV1K15-12S (layer F.Cu) (tedit 62434318) (tstamp 6244BE8B)
(at 142.5 95 180)
(path /624CF45F)
(fp_text reference K2 (at 12 1.5) (layer F.SilkS)
(effects (font (size 1.400906 1.400906) (thickness 0.15)))
)
(fp_text value T9VV1K15-12S (at 0 5) (layer F.Fab)
(effects (font (size 1.401496 1.401496) (thickness 0.15)))
)
(fp_line (start -10.6393 5.0229) (end -10.6393 4.7729) (layer F.CrtYd) (width 0.05))
(fp_line (start -10.6393 17.4208) (end -10.6393 5.0229) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.92258 19.1709) (end -8.88918 19.1709) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.6727 0.2229) (end 9.6727 17.4208) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.2546 -0.5391) (end 10.4347 -0.5391) (layer F.CrtYd) (width 0.05))
(fp_line (start 15.005 -12.089) (end 15.005 -2.28922) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.1752 -13.8391) (end 13.2546 -13.8391) (layer F.CrtYd) (width 0.05))
(fp_line (start -12.925 2.51078) (end -12.925 -12.089) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.1752 -13.5891) (end 13.2546 -13.5891) (layer F.SilkS) (width 0.127))
(fp_line (start -12.675 2.51078) (end -12.675 -12.089) (layer F.SilkS) (width 0.127))
(fp_line (start -10.3893 17.4208) (end -10.3893 4.7729) (layer F.SilkS) (width 0.127))
(fp_line (start 13.2546 -0.7891) (end 10.1847 -0.7891) (layer F.SilkS) (width 0.127))
(fp_line (start -11.1513 4.0109) (end -11.1752 4.0109) (layer F.SilkS) (width 0.127))
(fp_line (start 9.4227 -0.0271) (end 9.4227 17.4208) (layer F.SilkS) (width 0.127))
(fp_line (start 14.755 -12.089) (end 14.755 -2.28922) (layer F.SilkS) (width 0.127))
(fp_line (start 7.92258 18.9209) (end -8.88918 18.9209) (layer F.SilkS) (width 0.127))
(fp_line (start -11.1752 -13.5891) (end 13.2546 -13.5891) (layer F.Fab) (width 0.127))
(fp_line (start -12.675 2.51078) (end -12.675 -12.089) (layer F.Fab) (width 0.127))
(fp_line (start -10.3893 17.4208) (end -10.3893 4.7729) (layer F.Fab) (width 0.127))
(fp_line (start 13.2546 -0.7891) (end 10.1847 -0.7891) (layer F.Fab) (width 0.127))
(fp_line (start -11.1513 4.0109) (end -11.1752 4.0109) (layer F.Fab) (width 0.127))
(fp_line (start 9.4227 -0.0271) (end 9.4227 17.4208) (layer F.Fab) (width 0.127))
(fp_line (start 14.755 -12.089) (end 14.755 -2.28922) (layer F.Fab) (width 0.127))
(fp_line (start 7.92258 18.9209) (end -8.88918 18.9209) (layer F.Fab) (width 0.127))
(fp_circle (center -5.08 8.89) (end -4.7625 8.89) (layer F.Fab) (width 0.127))
(fp_circle (center 5.08 8.89) (end 5.3975 8.89) (layer F.Fab) (width 0.127))
(fp_line (start 1.27 0) (end 6.92 0) (layer F.Fab) (width 0.127))
(fp_line (start -1.27 0) (end 1.27 1.27) (layer F.Fab) (width 0.127))
(fp_line (start -4.71 0) (end -1.27 0) (layer F.Fab) (width 0.127))
(fp_circle (center 7.29 0) (end 7.6075 0) (layer F.Fab) (width 0.127))
(fp_circle (center -5.08 0) (end -4.7625 0) (layer F.Fab) (width 0.127))
(fp_line (start 2.54 7.62) (end 5.08 7.62) (layer F.Fab) (width 0.127))
(fp_line (start 5.08 7.62) (end 5.08 8.49) (layer F.Fab) (width 0.127))
(fp_line (start -5.08 7.62) (end -2.54 7.62) (layer F.Fab) (width 0.127))
(fp_line (start -5.08 8.49) (end -5.08 7.62) (layer F.Fab) (width 0.127))
(fp_arc (start -11.4013 5.0229) (end -10.6393 5.0229) (angle -90) (layer F.CrtYd) (width 0.05))
(fp_arc (start -11.300187 2.635787) (end -12.9253 2.51078) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start -8.889187 17.420787) (end -10.6393 17.4208) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start 7.922587 17.420787) (end 7.92258 19.1709) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start 10.4347 0.2229) (end 10.4347 -0.5391) (angle -90) (layer F.CrtYd) (width 0.05))
(fp_arc (start 13.254734 -2.28936) (end 13.2546 -0.539094) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start 13.254597 -12.088997) (end 15.0047 -12.089) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start -11.175047 -12.089147) (end -11.1752 -13.8391) (angle -89.9998) (layer F.CrtYd) (width 0.05))
(fp_arc (start -11.1513 4.7729) (end -10.3893 4.7729) (angle -90) (layer F.SilkS) (width 0.127))
(fp_arc (start 10.1847 -0.0271) (end 10.1847 -0.7891) (angle -90) (layer F.SilkS) (width 0.127))
(fp_arc (start -8.889187 17.420787) (end -10.3893 17.4208) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start -11.175187 2.510787) (end -12.6753 2.51078) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start -11.175047 -12.089147) (end -11.1752 -13.5891) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start 13.254597 -12.088997) (end 14.7547 -12.089) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start 13.254734 -2.28936) (end 13.2546 -0.789094) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start 7.922587 17.420787) (end 7.92258 18.9209) (angle -89.9998) (layer F.SilkS) (width 0.127))
(fp_arc (start -11.1513 4.7729) (end -10.3893 4.7729) (angle -90) (layer F.Fab) (width 0.127))
(fp_arc (start 10.1847 -0.0271) (end 10.1847 -0.7891) (angle -90) (layer F.Fab) (width 0.127))
(fp_arc (start -8.889187 17.420787) (end -10.3893 17.4208) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start -11.175187 2.510787) (end -12.6753 2.51078) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start -11.175047 -12.089147) (end -11.1752 -13.5891) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 13.254597 -12.088997) (end 14.7547 -12.089) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 13.254734 -2.28936) (end 13.2546 -0.789094) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 7.922587 17.420787) (end 7.92258 18.9209) (angle -89.9998) (layer F.Fab) (width 0.127))
(fp_arc (start 1.905 7.62) (end 2.54 7.62) (angle -180) (layer F.Fab) (width 0.127))
(fp_arc (start 0.635 7.62) (end 1.27 7.62) (angle -180) (layer F.Fab) (width 0.127))
(fp_arc (start -0.635 7.62) (end 0 7.62) (angle -180) (layer F.Fab) (width 0.127))
(fp_arc (start -1.905 7.62) (end -1.27 7.62) (angle -180) (layer F.Fab) (width 0.127))
(pad 3 thru_hole oval (at -9.375 0 180) (size 2.67 5.34) (drill oval 1.78 3.33) (layers *.Cu *.Mask)
(net 30 /L_Out))
(pad 4 thru_hole oval (at 9.375 -3.43 180) (size 5.85 2.925) (drill oval 4 1.95) (layers *.Cu *.Mask)
(net 28 /L_In))
(pad 2 thru_hole circle (at -4.595 12.01 180) (size 1.635 1.635) (drill 1.09) (layers *.Cu *.Mask)
(net 55 "Net-(C5-Pad1)"))
(pad 1 thru_hole circle (at 5.565 12.01 180) (size 1.635 1.635) (drill 1.09) (layers *.Cu *.Mask)
(net 56 "Net-(D6-Pad2)"))
)
(module Housings_DIP:DIP-8_W7.62mm (layer F.Cu) (tedit 59C78D6B) (tstamp 6243428F)
(at 226.925 103.37 180)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(path /6226CA08)
(fp_text reference U2 (at -2.54 7.62) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value OP07 (at 3.81 7.62) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 8.95) (end 6.46 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 9.15) (end 8.7 9.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 3.94 5.9) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 44 "Net-(U2-Pad1)"))
(pad 5 thru_hole oval (at 7.62 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "Net-(U2-Pad5)"))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(pad 6 thru_hole oval (at 7.62 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)"))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 7 thru_hole oval (at 7.62 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 +12V))
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 -12V))
(pad 8 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "Net-(U2-Pad8)"))
(model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-92_Molded_Narrow (layer F.Cu) (tedit 58CE52AF) (tstamp 62434256)
(at 187.96 78.105 270)
(descr "TO-92 leads molded, narrow, drill 0.6mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /622B3215)
(fp_text reference Q1 (at 1.27 -3.56 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BC337 (at 1.27 2.79 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer F.SilkS) (width 0.12))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 4 2.01) (end 4 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 -3.56 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 1.27 -2.6) (angle -135) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 1.27 -2.6) (angle 135) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 1.27 -1.27) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 9 "Net-(Q1-Pad2)"))
(pad 3 thru_hole circle (at 2.54 0) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 1 thru_hole rect (at 0 0) (size 1 1) (drill 0.6) (layers *.Cu *.Mask)
(net 7 "Net-(D5-Pad2)"))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-92_Molded_Narrow.wrl
(offset (xyz 1.269999980926514 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm (layer F.Cu) (tedit 59650532) (tstamp 62436A3F)
(at 228 112 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /6228F512)
(fp_text reference J1 (at 3 -0.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x04 (at 0 9.95 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(J1-Pad4)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x04_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 62434250)
(at 156.21 78.75 270)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /622E44E5)
(fp_text reference D6 (at -2 1.71 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4148 (at 3.81 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "Net-(C5-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 56 "Net-(D6-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 6243424D)
(at 159.25 76.25 270)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /622E7425)
(fp_text reference D5 (at 3.81 -2.06 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4148 (at 3.81 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C4-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(D5-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 6243424A)
(at 232.505 63.365 270)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /62277A17)
(fp_text reference D4 (at 10.16 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "1N749A 4.3V Zener" (at 3.81 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "Net-(D4-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(D3-Pad1)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 62434247)
(at 235.68 70.985 90)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /622791AC)
(fp_text reference D3 (at -2.54 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "1N749A 4.3V Zener" (at 3.81 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(D3-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "Net-(D3-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 62434244)
(at 231.25 90.82 90)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /62291897)
(fp_text reference D2 (at 6.32 -2.25 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4148 (at 3.81 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_ThroughHole:D_DO-35_SOD27_P7.62mm_Horizontal (layer F.Cu) (tedit 5921392F) (tstamp 62434241)
(at 234.25 83.2 270)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(path /62292EA1)
(fp_text reference D1 (at 1.3 -2.25 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4148 (at 3.81 2.06 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.81 -1) (end 1.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 1) (end 5.81 1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 1) (end 5.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.81 0) (layer F.Fab) (width 0.1))
(fp_line (start 2.41 -1) (end 2.41 1) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 -1.06) (end 1.75 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 1.06) (end 5.87 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 1.06) (end 5.87 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 5.87 -1.06) (end 1.75 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.75 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.64 0) (end 5.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 2.41 -1.06) (end 2.41 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 8.7 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.35) (end 8.7 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 Earth))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 597BC7C2) (tstamp 6243423E)
(at 186.69 70.485 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(path /622DD925)
(fp_text reference C5 (at 1.25 -3.81) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100uF (at 1.25 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start 1.25 -2.55) (end 1.25 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start 1.29 -2.55) (end 1.29 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -2.549) (end 1.33 2.549) (layer F.SilkS) (width 0.12))
(fp_line (start 1.37 -2.548) (end 1.37 2.548) (layer F.SilkS) (width 0.12))
(fp_line (start 1.41 -2.546) (end 1.41 2.546) (layer F.SilkS) (width 0.12))
(fp_line (start 1.45 -2.543) (end 1.45 2.543) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 -2.539) (end 1.49 2.539) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 -2.535) (end 1.53 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 0.98) (end 1.53 2.535) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 -2.531) (end 1.57 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 0.98) (end 1.57 2.531) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -2.525) (end 1.61 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 0.98) (end 1.61 2.525) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -2.519) (end 1.65 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 0.98) (end 1.65 2.519) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -2.513) (end 1.69 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 0.98) (end 1.69 2.513) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 -2.506) (end 1.73 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 0.98) (end 1.73 2.506) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 -2.498) (end 1.77 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 0.98) (end 1.77 2.498) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -2.489) (end 1.81 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 0.98) (end 1.81 2.489) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 -2.48) (end 1.85 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 0.98) (end 1.85 2.48) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -2.47) (end 1.89 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.98) (end 1.89 2.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 -2.46) (end 1.93 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 0.98) (end 1.93 2.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 -2.448) (end 1.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 0.98) (end 1.971 2.448) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 -2.436) (end 2.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 0.98) (end 2.011 2.436) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 -2.424) (end 2.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 0.98) (end 2.051 2.424) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 -2.41) (end 2.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 0.98) (end 2.091 2.41) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 -2.396) (end 2.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 0.98) (end 2.131 2.396) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 -2.382) (end 2.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 0.98) (end 2.171 2.382) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 -2.366) (end 2.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 0.98) (end 2.211 2.366) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 -2.35) (end 2.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 0.98) (end 2.251 2.35) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 -2.333) (end 2.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 0.98) (end 2.291 2.333) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 -2.315) (end 2.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 0.98) (end 2.331 2.315) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 -2.296) (end 2.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 0.98) (end 2.371 2.296) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 -2.276) (end 2.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 0.98) (end 2.411 2.276) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 -2.256) (end 2.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 0.98) (end 2.451 2.256) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 -2.234) (end 2.491 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 0.98) (end 2.491 2.234) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 -2.212) (end 2.531 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 0.98) (end 2.531 2.212) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 -2.189) (end 2.571 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 0.98) (end 2.571 2.189) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 -2.165) (end 2.611 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 0.98) (end 2.611 2.165) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 -2.14) (end 2.651 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 0.98) (end 2.651 2.14) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 -2.113) (end 2.691 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 0.98) (end 2.691 2.113) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 -2.086) (end 2.731 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 0.98) (end 2.731 2.086) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 -2.058) (end 2.771 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 0.98) (end 2.771 2.058) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 -2.028) (end 2.811 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 0.98) (end 2.811 2.028) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 -1.997) (end 2.851 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 0.98) (end 2.851 1.997) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 -1.965) (end 2.891 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 0.98) (end 2.891 1.965) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 -1.932) (end 2.931 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 0.98) (end 2.931 1.932) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 -1.897) (end 2.971 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 0.98) (end 2.971 1.897) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 -1.861) (end 3.011 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 0.98) (end 3.011 1.861) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 -1.823) (end 3.051 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 0.98) (end 3.051 1.823) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 -1.783) (end 3.091 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 0.98) (end 3.091 1.783) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 -1.742) (end 3.131 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 0.98) (end 3.131 1.742) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 -1.699) (end 3.171 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 0.98) (end 3.171 1.699) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 -1.654) (end 3.211 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 0.98) (end 3.211 1.654) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 -1.606) (end 3.251 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 0.98) (end 3.251 1.606) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 -1.556) (end 3.291 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 0.98) (end 3.291 1.556) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 -1.504) (end 3.331 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 0.98) (end 3.331 1.504) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 -1.448) (end 3.371 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 0.98) (end 3.371 1.448) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 -1.39) (end 3.411 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 0.98) (end 3.411 1.39) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 -1.327) (end 3.451 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 0.98) (end 3.451 1.327) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 -1.261) (end 3.491 1.261) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 -1.189) (end 3.531 1.189) (layer F.SilkS) (width 0.12))
(fp_line (start 3.571 -1.112) (end 3.571 1.112) (layer F.SilkS) (width 0.12))
(fp_line (start 3.611 -1.028) (end 3.611 1.028) (layer F.SilkS) (width 0.12))
(fp_line (start 3.651 -0.934) (end 3.651 0.934) (layer F.SilkS) (width 0.12))
(fp_line (start 3.691 -0.829) (end 3.691 0.829) (layer F.SilkS) (width 0.12))
(fp_line (start 3.731 -0.707) (end 3.731 0.707) (layer F.SilkS) (width 0.12))
(fp_line (start 3.771 -0.559) (e
gitextract_4e8su9rc/ ├── EV Charger BOM.xlsx ├── EV_Charger.ino ├── KiCad_Files/ │ ├── EV_Charger2-cache.lib │ ├── EV_Charger2.kicad_pcb │ ├── EV_Charger2.kicad_pcb-bak │ ├── EV_Charger2.pro │ ├── EV_Charger2.sch │ ├── EV_Charger2.sch-bak │ ├── GerbersV2/ │ │ ├── EV_Charger2-B_Cu.gbr │ │ ├── EV_Charger2-B_Mask.gbr │ │ ├── EV_Charger2-B_SilkS.gbr │ │ ├── EV_Charger2-Edge_Cuts.gbr │ │ ├── EV_Charger2-F_Cu.gbr │ │ ├── EV_Charger2-F_Mask.gbr │ │ ├── EV_Charger2-F_SilkS.gbr │ │ ├── EV_Charger2-NPTH.drl │ │ ├── EV_Charger2-PTH.drl │ │ └── EV_Charger2-job.gbrjob │ └── fp-info-cache ├── LICENSE.txt └── README.md
Condensed preview — 21 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,246K chars).
[
{
"path": "EV_Charger.ino",
"chars": 13825,
"preview": "/* EV Charger software\r\n * James Fotherby 20th April 2022\r\n * \r\n * At Power On:\r\n * 1) Ensure relays are open, conf"
},
{
"path": "KiCad_Files/EV_Charger2-cache.lib",
"chars": 13083,
"preview": "EESchema-LIBRARY Version 2.4\r\n#encoding utf-8\r\n#\r\n# ARDUINO_PRO_MINI_ARDUINO_PRO_MINI\r\n#\r\nDEF ARDUINO_PRO_MINI_ARDUINO_P"
},
{
"path": "KiCad_Files/EV_Charger2.kicad_pcb",
"chars": 340187,
"preview": "(kicad_pcb (version 20171130) (host pcbnew \"(5.1.10)-1\")\r\n\r\n (general\r\n (thickness 1.6)\r\n (drawings 11)\r\n (tra"
},
{
"path": "KiCad_Files/EV_Charger2.kicad_pcb-bak",
"chars": 340043,
"preview": "(kicad_pcb (version 20171130) (host pcbnew \"(5.1.10)-1\")\r\n\r\n (general\r\n (thickness 1.6)\r\n (drawings 11)\r\n (tra"
},
{
"path": "KiCad_Files/EV_Charger2.pro",
"chars": 4038,
"preview": "update=05/04/2022 21:39:54\r\nversion=1\r\nlast_client=kicad\r\n[general]\r\nversion=1\r\nRootSch=\r\nBoardNm=\r\n[cvpcb]\r\nversion=1\r\n"
},
{
"path": "KiCad_Files/EV_Charger2.sch",
"chars": 37031,
"preview": "EESchema Schematic File Version 4\r\nEELAYER 30 0\r\nEELAYER END\r\n$Descr A4 11693 8268\r\nencoding utf-8\r\nSheet 1 1\r\nTitle \"EV"
},
{
"path": "KiCad_Files/EV_Charger2.sch-bak",
"chars": 37031,
"preview": "EESchema Schematic File Version 4\r\nEELAYER 30 0\r\nEELAYER END\r\n$Descr A4 11693 8268\r\nencoding utf-8\r\nSheet 1 1\r\nTitle \"EV"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-B_Cu.gbr",
"chars": 234145,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-B_Mask.gbr",
"chars": 7582,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-B_SilkS.gbr",
"chars": 480,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-Edge_Cuts.gbr",
"chars": 724,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-F_Cu.gbr",
"chars": 30026,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-F_Mask.gbr",
"chars": 7582,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-F_SilkS.gbr",
"chars": 108574,
"preview": "%TF.GenerationSoftware,KiCad,Pcbnew,(5.1.10)-1*%\r\n%TF.CreationDate,2022-04-20T23:12:05+01:00*%\r\n%TF.ProjectId,EV_Charger"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-NPTH.drl",
"chars": 349,
"preview": "M48\r\n; DRILL file {KiCad (5.1.10)-1} date 04/20/22 23:12:51\r\n; FORMAT={-:-/ absolute / inch / decimal}\r\n; #@! TF.Creatio"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-PTH.drl",
"chars": 3759,
"preview": "M48\r\n; DRILL file {KiCad (5.1.10)-1} date 04/20/22 23:12:51\r\n; FORMAT={-:-/ absolute / inch / decimal}\r\n; #@! TF.Creatio"
},
{
"path": "KiCad_Files/GerbersV2/EV_Charger2-job.gbrjob",
"chars": 2300,
"preview": "{\r\n \"Header\":\r\n {\r\n \"GenerationSoftware\":\r\n {\r\n \"Vendor\": \"KiCad\",\r\n \"Application\": \"Pcbnew\",\r\n "
},
{
"path": "KiCad_Files/fp-info-cache",
"chars": 3,
"preview": "0\r\n"
},
{
"path": "LICENSE.txt",
"chars": 1075,
"preview": "MIT License\n\nCopyright (c) [2022] [James Fotherby]\n\nPermission is hereby granted, free of charge, to any person obtainin"
},
{
"path": "README.md",
"chars": 188,
"preview": "# EV_Charger\nArduino Uno Code for EV Charger together with the design files etc\n\nThis project is documented in detail he"
}
]
// ... and 1 more files (download for full content)
About this extraction
This page contains the full source code of the fotherja/EV_Charger GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 21 files (1.1 MB), approximately 559.2k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.