├── inout_ii ├── test │ └── test.txt ├── inout_ii.kicad_pcb └── inout_ii.pro ├── four_bit_1 ├── two_bit_columns.sch ├── four_bit_1.kicad_pcb └── four_bit_1.pro ├── four_bit_2 ├── two_bit_columns.sch ├── four_bit_2.kicad_pcb └── four_bit_2.pro ├── four_bit_3 ├── two_bit_columns.sch ├── four_bit_3.kicad_pcb └── four_bit_3.pro ├── four_bit_4 ├── two_bit_columns.sch ├── four_bit_4.kicad_pcb └── four_bit_4.pro ├── .gitignore ├── alarms ├── alarms.kicad_pcb └── alarms.pro ├── scaler ├── scaler.kicad_pcb ├── scaler.pro ├── clock_divider.sch └── a01_2.sch ├── timer ├── timer.kicad_pcb ├── timer.pro ├── clock_divider.sch └── a02_1.sch ├── inout_i ├── inout_i.kicad_pcb └── inout_i.pro ├── inout_iv ├── inout_iv.kicad_pcb └── inout_iv.pro ├── inout_v ├── inout_v.kicad_pcb └── inout_v.pro ├── inout_vi ├── inout_vi.kicad_pcb └── inout_vi.pro ├── dsky ├── keyboard │ ├── keyboard.kicad_pcb │ └── keyboard.pro ├── backplane │ ├── backplane.kicad_pcb │ ├── backplane.pro │ └── backplane.sch ├── indicator_driver │ ├── indicator_driver.kicad_pcb-bak │ ├── indicator_driver.pro │ ├── relay_driver.sch │ ├── nonlatching_relay.sch │ └── line_driver.sch ├── digital_indicator │ ├── fp-lib-table │ ├── digital_indicator.pro │ ├── sign.sch │ └── 7SD.sch └── alarm_indicator │ └── alarm_indicator.pro ├── inout_iii ├── inout_iii.kicad_pcb └── inout_iii.pro ├── inout_vii ├── inout_vii.kicad_pcb └── inout_vii.pro ├── sq_register ├── sq_register.kicad_pcb └── sq_register.pro ├── crosspoint_ii ├── crosspoint_ii.kicad_pcb └── crosspoint_ii.pro ├── rupt_service ├── rupt_service.kicad_pcb └── rupt_service.pro ├── service_gates ├── service_gates.kicad_pcb └── service_gates.pro ├── stage_branch ├── stage_branch.kicad_pcb └── stage_branch.pro ├── ch77_alarm_box ├── ch77_alarm_box.kicad_pcb ├── ch77_alarm_box.pro └── ch77_alarm_box.sch ├── counter_cell_i ├── counter_cell_i.kicad_pcb └── counter_cell_i.pro ├── counter_cell_ii ├── counter_cell_ii.kicad_pcb └── counter_cell_ii.pro ├── crosspoint_nqi ├── crosspoint_nqi.kicad_pcb └── crosspoint_nqi.pro ├── parity_s_register ├── parity_s_register.kicad_pcb └── parity_s_register.pro ├── fixed_erasable_memory ├── fixed_erasable_memory.kicad_pcb └── fixed_erasable_memory.pro ├── memory_timing_addressing ├── memory_timing_addressing.kicad_pcb └── memory_timing_addressing.pro ├── LICENSE ├── libs ├── agc_footprints.pretty │ ├── R8_746.kicad_mod │ ├── EC2-12NU.kicad_mod │ ├── EC2-12TNU.kicad_mod │ ├── SHF-108-01-L-D-SM.kicad_mod │ ├── SHF-120-01-L-D-SM.kicad_mod │ └── PCN10A-128P.kicad_mod ├── agc_kicad_components.bck └── agc_kicad_components.dcm └── README.md /inout_ii/test/test.txt: -------------------------------------------------------------------------------- 1 | U17003 2 | U17048 3 | -------------------------------------------------------------------------------- /four_bit_1/two_bit_columns.sch: -------------------------------------------------------------------------------- 1 | ../common/two_bit_columns.sch -------------------------------------------------------------------------------- /four_bit_2/two_bit_columns.sch: -------------------------------------------------------------------------------- 1 | ../common/two_bit_columns.sch -------------------------------------------------------------------------------- /four_bit_3/two_bit_columns.sch: -------------------------------------------------------------------------------- 1 | ../common/two_bit_columns.sch -------------------------------------------------------------------------------- /four_bit_4/two_bit_columns.sch: -------------------------------------------------------------------------------- 1 | ../common/two_bit_columns.sch -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.v 2 | *.xml 3 | *.bak 4 | *-cache.lib 5 | *.net 6 | -------------------------------------------------------------------------------- /alarms/alarms.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /scaler/scaler.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /timer/timer.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_i/inout_i.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_ii/inout_ii.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_iv/inout_iv.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_v/inout_v.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_vi/inout_vi.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /dsky/keyboard/keyboard.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /four_bit_1/four_bit_1.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /four_bit_2/four_bit_2.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /four_bit_3/four_bit_3.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /four_bit_4/four_bit_4.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_iii/inout_iii.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /inout_vii/inout_vii.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /sq_register/sq_register.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /crosspoint_ii/crosspoint_ii.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /dsky/backplane/backplane.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /rupt_service/rupt_service.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /service_gates/service_gates.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /stage_branch/stage_branch.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /ch77_alarm_box/ch77_alarm_box.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /counter_cell_i/counter_cell_i.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /counter_cell_ii/counter_cell_ii.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /crosspoint_nqi/crosspoint_nqi.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /parity_s_register/parity_s_register.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /dsky/indicator_driver/indicator_driver.kicad_pcb-bak: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /fixed_erasable_memory/fixed_erasable_memory.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /memory_timing_addressing/memory_timing_addressing.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 4) (host kicad "dummy file") ) 2 | -------------------------------------------------------------------------------- /dsky/digital_indicator/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name agc_footprints)(type KiCad)(uri /home/mstewart/agc_hardware/libs/agc_footprints.pretty)(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Mike Stewart 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /libs/agc_footprints.pretty/R8_746.kicad_mod: -------------------------------------------------------------------------------- 1 | (module R8_746 (layer F.Cu) (tedit 58E5E040) 2 | (fp_text reference REF** (at 0 2.54) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value R8_746 (at 0 -2.54) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (pad 8 smd rect (at 0 -0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 9 | (pad 3 smd rect (at 0 0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 10 | (pad 7 smd rect (at 0.64 -0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 11 | (pad 4 smd rect (at 0.64 0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 12 | (pad 6 smd rect (at 1.28 -0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 13 | (pad 5 smd rect (at 1.28 0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 14 | (pad 9 smd rect (at -0.64 -0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 15 | (pad 2 smd rect (at -0.64 0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 16 | (pad 10 smd rect (at -1.28 -0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 17 | (pad 1 smd rect (at -1.28 0.85) (size 0.35 0.9) (layers F.Cu F.Paste F.Mask)) 18 | ) 19 | -------------------------------------------------------------------------------- /alarms/alarms.pro: -------------------------------------------------------------------------------- 1 | update=Fri 19 Oct 2018 09:12:37 AM CDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=cmos4000 39 | LibName8=adc-dac 40 | LibName9=memory 41 | LibName10=xilinx 42 | LibName11=microcontrollers 43 | LibName12=dsp 44 | LibName13=microchip 45 | LibName14=analog_switches 46 | LibName15=motorola 47 | LibName16=texas 48 | LibName17=intel 49 | LibName18=audio 50 | LibName19=interface 51 | LibName20=digital-audio 52 | LibName21=philips 53 | LibName22=display 54 | LibName23=cypress 55 | LibName24=siliconi 56 | LibName25=opto 57 | LibName26=atmel 58 | LibName27=contrib 59 | LibName28=valves 60 | LibName29=agc_kicad_components 61 | -------------------------------------------------------------------------------- /dsky/alarm_indicator/alarm_indicator.pro: -------------------------------------------------------------------------------- 1 | update=Sun 06 Nov 2016 12:15:03 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir= 29 | [eeschema/libraries] 30 | LibName1=power 31 | LibName2=device 32 | LibName3=transistors 33 | LibName4=conn 34 | LibName5=linear 35 | LibName6=regul 36 | LibName7=74xx 37 | LibName8=cmos4000 38 | LibName9=adc-dac 39 | LibName10=memory 40 | LibName11=xilinx 41 | LibName12=microcontrollers 42 | LibName13=dsp 43 | LibName14=microchip 44 | LibName15=analog_switches 45 | LibName16=motorola 46 | LibName17=texas 47 | LibName18=intel 48 | LibName19=audio 49 | LibName20=interface 50 | LibName21=digital-audio 51 | LibName22=philips 52 | LibName23=display 53 | LibName24=cypress 54 | LibName25=siliconi 55 | LibName26=opto 56 | LibName27=atmel 57 | LibName28=contrib 58 | LibName29=valves 59 | [general] 60 | version=1 61 | -------------------------------------------------------------------------------- /inout_i/inout_i.pro: -------------------------------------------------------------------------------- 1 | update=Sun 10 Apr 2016 04:14:00 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /inout_v/inout_v.pro: -------------------------------------------------------------------------------- 1 | update=Sat 16 Apr 2016 11:44:48 AM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /scaler/scaler.pro: -------------------------------------------------------------------------------- 1 | update=Fri 23 Oct 2015 09:55:17 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /four_bit_1/four_bit_1.pro: -------------------------------------------------------------------------------- 1 | update=Wed 30 Dec 2015 10:16:33 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /four_bit_2/four_bit_2.pro: -------------------------------------------------------------------------------- 1 | update=Mon 04 Jan 2016 10:43:18 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /four_bit_3/four_bit_3.pro: -------------------------------------------------------------------------------- 1 | update=Tue 05 Jan 2016 07:50:21 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /four_bit_4/four_bit_4.pro: -------------------------------------------------------------------------------- 1 | update=Tue 05 Jan 2016 10:05:42 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /inout_ii/inout_ii.pro: -------------------------------------------------------------------------------- 1 | update=Sat 09 Apr 2016 02:11:47 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /inout_iii/inout_iii.pro: -------------------------------------------------------------------------------- 1 | update=Mon 11 Apr 2016 11:24:09 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /inout_iv/inout_iv.pro: -------------------------------------------------------------------------------- 1 | update=Sat 02 Apr 2016 04:00:32 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /inout_vi/inout_vi.pro: -------------------------------------------------------------------------------- 1 | update=Sun 17 Apr 2016 01:15:27 AM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /inout_vii/inout_vii.pro: -------------------------------------------------------------------------------- 1 | update=Sun 17 Apr 2016 10:32:47 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /libs/agc_footprints.pretty/EC2-12NU.kicad_mod: -------------------------------------------------------------------------------- 1 | (module EC2-12NU (layer F.Cu) (tedit 592282DA) 2 | (fp_text reference REF** (at 0 0) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value EC2-12NU (at 0 4.445) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start 7.4 -3.65) (end -7.4 -3.65) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 7.4 3.65) (end 7.4 -3.65) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start -7.4 3.65) (end 7.4 3.65) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -7.4 -3.65) (end -7.4 3.65) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -6.35 -1.27) (end -6.35 1.27) (layer F.SilkS) (width 0.15)) 13 | (pad 1 thru_hole circle (at -6.35 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 14 | (pad 12 thru_hole circle (at -6.35 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 15 | (pad 3 thru_hole circle (at -1.27 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 16 | (pad 10 thru_hole circle (at -1.27 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 17 | (pad 9 thru_hole circle (at 1.27 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 18 | (pad 4 thru_hole circle (at 1.27 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 19 | (pad 5 thru_hole circle (at 3.81 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 20 | (pad 8 thru_hole circle (at 3.81 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 21 | ) 22 | -------------------------------------------------------------------------------- /rupt_service/rupt_service.pro: -------------------------------------------------------------------------------- 1 | update=Sat 20 Feb 2016 12:13:45 AM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /sq_register/sq_register.pro: -------------------------------------------------------------------------------- 1 | update=Tue 24 Jan 2017 09:14:00 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir=../libs 29 | [eeschema/libraries] 30 | LibName1=power 31 | LibName2=device 32 | LibName3=transistors 33 | LibName4=conn 34 | LibName5=linear 35 | LibName6=regul 36 | LibName7=agc_kicad_components 37 | LibName8=cmos4000 38 | LibName9=adc-dac 39 | LibName10=memory 40 | LibName11=xilinx 41 | LibName12=microcontrollers 42 | LibName13=dsp 43 | LibName14=microchip 44 | LibName15=analog_switches 45 | LibName16=motorola 46 | LibName17=texas 47 | LibName18=intel 48 | LibName19=audio 49 | LibName20=interface 50 | LibName21=digital-audio 51 | LibName22=philips 52 | LibName23=display 53 | LibName24=cypress 54 | LibName25=siliconi 55 | LibName26=opto 56 | LibName27=atmel 57 | LibName28=contrib 58 | LibName29=valves 59 | [general] 60 | version=1 61 | -------------------------------------------------------------------------------- /ch77_alarm_box/ch77_alarm_box.pro: -------------------------------------------------------------------------------- 1 | update=Fri 19 Oct 2018 09:15:01 AM CDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=cmos4000 39 | LibName8=adc-dac 40 | LibName9=memory 41 | LibName10=xilinx 42 | LibName11=microcontrollers 43 | LibName12=dsp 44 | LibName13=microchip 45 | LibName14=analog_switches 46 | LibName15=motorola 47 | LibName16=texas 48 | LibName17=intel 49 | LibName18=audio 50 | LibName19=interface 51 | LibName20=digital-audio 52 | LibName21=philips 53 | LibName22=display 54 | LibName23=cypress 55 | LibName24=siliconi 56 | LibName25=opto 57 | LibName26=atmel 58 | LibName27=contrib 59 | LibName28=valves 60 | LibName29=agc_kicad_components 61 | -------------------------------------------------------------------------------- /counter_cell_i/counter_cell_i.pro: -------------------------------------------------------------------------------- 1 | update=Fri 19 Oct 2018 09:17:38 AM CDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /counter_cell_ii/counter_cell_ii.pro: -------------------------------------------------------------------------------- 1 | update=Sun 13 Mar 2016 01:42:48 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /crosspoint_ii/crosspoint_ii.pro: -------------------------------------------------------------------------------- 1 | update=Sat 19 Dec 2015 01:08:07 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /crosspoint_nqi/crosspoint_nqi.pro: -------------------------------------------------------------------------------- 1 | update=Wed 25 Nov 2015 11:21:56 AM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /service_gates/service_gates.pro: -------------------------------------------------------------------------------- 1 | update=Wed 23 Dec 2015 10:01:22 AM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /parity_s_register/parity_s_register.pro: -------------------------------------------------------------------------------- 1 | update=Sat 30 Jan 2016 10:31:49 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /dsky/keyboard/keyboard.pro: -------------------------------------------------------------------------------- 1 | update=Sun 06 Nov 2016 01:41:17 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=74xx 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | LibName30=agc_kicad_components 62 | -------------------------------------------------------------------------------- /fixed_erasable_memory/fixed_erasable_memory.pro: -------------------------------------------------------------------------------- 1 | update=Tue 23 Feb 2016 08:00:23 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /dsky/backplane/backplane.pro: -------------------------------------------------------------------------------- 1 | update=Mon 10 Jul 2017 12:07:33 AM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir=../../libs 29 | [eeschema/libraries] 30 | LibName1=power 31 | LibName2=device 32 | LibName3=transistors 33 | LibName4=conn 34 | LibName5=linear 35 | LibName6=regul 36 | LibName7=74xx 37 | LibName8=cmos4000 38 | LibName9=adc-dac 39 | LibName10=memory 40 | LibName11=xilinx 41 | LibName12=microcontrollers 42 | LibName13=dsp 43 | LibName14=microchip 44 | LibName15=analog_switches 45 | LibName16=motorola 46 | LibName17=texas 47 | LibName18=intel 48 | LibName19=audio 49 | LibName20=interface 50 | LibName21=digital-audio 51 | LibName22=philips 52 | LibName23=display 53 | LibName24=cypress 54 | LibName25=siliconi 55 | LibName26=opto 56 | LibName27=atmel 57 | LibName28=contrib 58 | LibName29=valves 59 | LibName30=agc_kicad_components 60 | [general] 61 | version=1 62 | -------------------------------------------------------------------------------- /memory_timing_addressing/memory_timing_addressing.pro: -------------------------------------------------------------------------------- 1 | update=Sat 06 Feb 2016 05:39:02 PM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=agc_kicad_components 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | -------------------------------------------------------------------------------- /dsky/digital_indicator/digital_indicator.pro: -------------------------------------------------------------------------------- 1 | update=Sun 06 Nov 2016 10:48:55 AM PST 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [general] 27 | version=1 28 | [eeschema] 29 | version=1 30 | LibDir=../../libs 31 | [eeschema/libraries] 32 | LibName1=power 33 | LibName2=device 34 | LibName3=transistors 35 | LibName4=conn 36 | LibName5=linear 37 | LibName6=regul 38 | LibName7=74xx 39 | LibName8=cmos4000 40 | LibName9=adc-dac 41 | LibName10=memory 42 | LibName11=xilinx 43 | LibName12=microcontrollers 44 | LibName13=dsp 45 | LibName14=microchip 46 | LibName15=analog_switches 47 | LibName16=motorola 48 | LibName17=texas 49 | LibName18=intel 50 | LibName19=audio 51 | LibName20=interface 52 | LibName21=digital-audio 53 | LibName22=philips 54 | LibName23=display 55 | LibName24=cypress 56 | LibName25=siliconi 57 | LibName26=opto 58 | LibName27=atmel 59 | LibName28=contrib 60 | LibName29=valves 61 | LibName30=agc_kicad_components 62 | -------------------------------------------------------------------------------- /libs/agc_kicad_components.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP +28VDC 4 | K POWER, PWR 5 | $ENDCMP 6 | # 7 | $CMP +4VDC 8 | K POWER, PWR 9 | $ENDCMP 10 | # 11 | $CMP +4VSW 12 | K POWER, PWR 13 | $ENDCMP 14 | # 15 | $CMP 74HC02 16 | D Quad Nor2 17 | K TTL Nor2 18 | $ENDCMP 19 | # 20 | $CMP 74HC04 21 | D Hextuple Nor1 22 | K Nor1 23 | $ENDCMP 24 | # 25 | $CMP 74HC244 26 | D 8 bits Bus Buffer 3 State out 27 | K TTL Buffer BUS 3State 28 | $ENDCMP 29 | # 30 | $CMP 74HC27 31 | D Triple Nor3 32 | K Nor3 33 | $ENDCMP 34 | # 35 | $CMP 74HC4002 36 | D Dual Nor4 37 | K CMOS Nor4 38 | $ENDCMP 39 | # 40 | $CMP 74LVC06 41 | D Inverting Hex Open Drain Buffer 42 | K INVERTING CMOS OPEN DRAIN BUFFER 43 | $ENDCMP 44 | # 45 | $CMP 74LVC07 46 | D Hex Open Drain Buffer 47 | K CMOS OPEN DRAIN BUFFER 48 | $ENDCMP 49 | # 50 | $CMP EC2-12NU 51 | D Non-Latching DPDT Relay 52 | K latching dpdt relay 53 | $ENDCMP 54 | # 55 | $CMP EC2-12NU_poles 56 | D Latching DPDT Relay 57 | K latching dpdt relay 58 | $ENDCMP 59 | # 60 | $CMP EC2-12TNU 61 | D Non-Latching DPDT Relay 62 | K latching dpdt relay 63 | $ENDCMP 64 | # 65 | $CMP EC2-12TNU_poles 66 | D Non-Latching DPDT Relay 67 | K latching dpdt relay 68 | $ENDCMP 69 | # 70 | $CMP MR0A16A 71 | D Everspin Technologies 64k x 16 Parallel MRAM 72 | K 64k x 16 mram 73 | F http://www.everspin.com/PDF/EST_MR0A16A_prod.pdf 74 | $ENDCMP 75 | # 76 | $CMP SPDT_BUT_LIT 77 | D Button 78 | K Switch SPDT 79 | $ENDCMP 80 | # 81 | $CMP SST39VF200A 82 | D Silicon Storage Technology (SST) 128k x 16 Flash ROM 83 | K 128k x 16 flash rom 84 | F http://ww1.microchip.com/downloads/en/DeviceDoc/25001A.pdf 85 | $ENDCMP 86 | # 87 | #End Doc Library 88 | -------------------------------------------------------------------------------- /libs/agc_kicad_components.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | $CMP +28VDC 4 | K POWER, PWR 5 | $ENDCMP 6 | # 7 | $CMP +4VDC 8 | K POWER, PWR 9 | $ENDCMP 10 | # 11 | $CMP +4VSW 12 | K POWER, PWR 13 | $ENDCMP 14 | # 15 | $CMP 74HC02 16 | D Quad Nor2 17 | K TTL Nor2 18 | $ENDCMP 19 | # 20 | $CMP 74HC04 21 | D Hextuple Nor1 22 | K Nor1 23 | $ENDCMP 24 | # 25 | $CMP 74HC244 26 | D 8 bits Bus Buffer 3 State out 27 | K TTL Buffer BUS 3State 28 | $ENDCMP 29 | # 30 | $CMP 74HC27 31 | D Triple Nor3 32 | K Nor3 33 | $ENDCMP 34 | # 35 | $CMP 74HC4002 36 | D Dual Nor4 37 | K CMOS Nor4 38 | $ENDCMP 39 | # 40 | $CMP 74LVC06 41 | D Inverting Hex Open Drain Buffer 42 | K INVERTING CMOS OPEN DRAIN BUFFER 43 | $ENDCMP 44 | # 45 | $CMP 74LVC07 46 | D Hex Open Drain Buffer 47 | K CMOS OPEN DRAIN BUFFER 48 | $ENDCMP 49 | # 50 | $CMP EC2-12NU 51 | D Non-Latching DPDT Relay 52 | K latching dpdt relay 53 | $ENDCMP 54 | # 55 | $CMP EC2-12NU_poles 56 | D Latching DPDT Relay 57 | K latching dpdt relay 58 | $ENDCMP 59 | # 60 | $CMP EC2-12TNU 61 | D Non-Latching DPDT Relay 62 | K latching dpdt relay 63 | $ENDCMP 64 | # 65 | $CMP EC2-12TNU_poles 66 | D Non-Latching DPDT Relay 67 | K latching dpdt relay 68 | $ENDCMP 69 | # 70 | $CMP MR0A16A 71 | D Everspin Technologies 64k x 16 Parallel MRAM 72 | K 64k x 16 mram 73 | F http://www.everspin.com/PDF/EST_MR0A16A_prod.pdf 74 | $ENDCMP 75 | # 76 | $CMP SPDT_BUT_LIT 77 | D Button 78 | K Switch SPDT 79 | $ENDCMP 80 | # 81 | $CMP SST39VF200A 82 | D Silicon Storage Technology (SST) 128k x 16 Flash ROM 83 | K 128k x 16 flash rom 84 | F http://ww1.microchip.com/downloads/en/DeviceDoc/25001A.pdf 85 | $ENDCMP 86 | # 87 | #End Doc Library 88 | -------------------------------------------------------------------------------- /libs/agc_footprints.pretty/EC2-12TNU.kicad_mod: -------------------------------------------------------------------------------- 1 | (module EC2-12TNU (layer F.Cu) (tedit 59224712) 2 | (fp_text reference REF** (at 0 0) (layer F.SilkS) 3 | (effects (font (size 1 1) (thickness 0.15))) 4 | ) 5 | (fp_text value EC2-12TNU (at 0 4.445) (layer F.Fab) 6 | (effects (font (size 1 1) (thickness 0.15))) 7 | ) 8 | (fp_line (start 7.4 -3.65) (end -7.4 -3.65) (layer F.SilkS) (width 0.15)) 9 | (fp_line (start 7.4 3.65) (end 7.4 -3.65) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start -7.4 3.65) (end 7.4 3.65) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -7.4 -3.65) (end -7.4 3.65) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -6.35 -1.27) (end -6.35 1.27) (layer F.SilkS) (width 0.15)) 13 | (pad 1 thru_hole circle (at -6.35 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 14 | (pad 12 thru_hole circle (at -6.35 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 15 | (pad 3 thru_hole circle (at -1.27 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 16 | (pad 10 thru_hole circle (at -1.27 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 17 | (pad 9 thru_hole circle (at 1.27 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 18 | (pad 4 thru_hole circle (at 1.27 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 19 | (pad 5 thru_hole circle (at 3.81 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 20 | (pad 8 thru_hole circle (at 3.81 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 21 | (pad 6 thru_hole circle (at 6.35 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 22 | (pad 7 thru_hole circle (at 6.35 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 23 | ) 24 | -------------------------------------------------------------------------------- /timer/timer.pro: -------------------------------------------------------------------------------- 1 | update=Sat 22 Oct 2016 04:46:18 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir=../libs 29 | [eeschema/libraries] 30 | LibName1=power 31 | LibName2=device 32 | LibName3=transistors 33 | LibName4=conn 34 | LibName5=linear 35 | LibName6=regul 36 | LibName7=agc_kicad_components 37 | LibName8=cmos4000 38 | LibName9=adc-dac 39 | LibName10=memory 40 | LibName11=xilinx 41 | LibName12=microcontrollers 42 | LibName13=dsp 43 | LibName14=microchip 44 | LibName15=analog_switches 45 | LibName16=motorola 46 | LibName17=texas 47 | LibName18=intel 48 | LibName19=audio 49 | LibName20=interface 50 | LibName21=digital-audio 51 | LibName22=philips 52 | LibName23=display 53 | LibName24=cypress 54 | LibName25=siliconi 55 | LibName26=opto 56 | LibName27=atmel 57 | LibName28=contrib 58 | LibName29=valves 59 | [general] 60 | version=1 61 | [schematic_editor] 62 | version=1 63 | PageLayoutDescrFile= 64 | PlotDirectoryName= 65 | SubpartIdSeparator=0 66 | SubpartFirstId=65 67 | NetFmtName= 68 | SpiceForceRefPrefix=0 69 | SpiceUseNetNumbers=0 70 | LabSize=60 71 | ERC_TestSimilarLabels=1 72 | -------------------------------------------------------------------------------- /stage_branch/stage_branch.pro: -------------------------------------------------------------------------------- 1 | update=Sat 22 Oct 2016 11:31:19 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir=../libs 29 | [eeschema/libraries] 30 | LibName1=power 31 | LibName2=device 32 | LibName3=transistors 33 | LibName4=conn 34 | LibName5=linear 35 | LibName6=regul 36 | LibName7=agc_kicad_components 37 | LibName8=cmos4000 38 | LibName9=adc-dac 39 | LibName10=memory 40 | LibName11=xilinx 41 | LibName12=microcontrollers 42 | LibName13=dsp 43 | LibName14=microchip 44 | LibName15=analog_switches 45 | LibName16=motorola 46 | LibName17=texas 47 | LibName18=intel 48 | LibName19=audio 49 | LibName20=interface 50 | LibName21=digital-audio 51 | LibName22=philips 52 | LibName23=display 53 | LibName24=cypress 54 | LibName25=siliconi 55 | LibName26=opto 56 | LibName27=atmel 57 | LibName28=contrib 58 | LibName29=valves 59 | [general] 60 | version=1 61 | [schematic_editor] 62 | version=1 63 | PageLayoutDescrFile= 64 | PlotDirectoryName= 65 | SubpartIdSeparator=0 66 | SubpartFirstId=65 67 | NetFmtName=Pcbnew 68 | SpiceForceRefPrefix=0 69 | SpiceUseNetNumbers=0 70 | LabSize=60 71 | ERC_TestSimilarLabels=1 72 | -------------------------------------------------------------------------------- /dsky/indicator_driver/indicator_driver.pro: -------------------------------------------------------------------------------- 1 | update=Fri 19 May 2017 07:39:21 PM PDT 2 | version=1 3 | last_client=kicad 4 | [pcbnew] 5 | version=1 6 | LastNetListRead= 7 | UseCmpFile=1 8 | PadDrill=0.600000000000 9 | PadDrillOvalY=0.600000000000 10 | PadSizeH=1.500000000000 11 | PadSizeV=1.500000000000 12 | PcbTextSizeV=1.500000000000 13 | PcbTextSizeH=1.500000000000 14 | PcbTextThickness=0.300000000000 15 | ModuleTextSizeV=1.000000000000 16 | ModuleTextSizeH=1.000000000000 17 | ModuleTextSizeThickness=0.150000000000 18 | SolderMaskClearance=0.000000000000 19 | SolderMaskMinWidth=0.000000000000 20 | DrawSegmentWidth=0.200000000000 21 | BoardOutlineThickness=0.100000000000 22 | ModuleOutlineThickness=0.150000000000 23 | [cvpcb] 24 | version=1 25 | NetIExt=net 26 | [eeschema] 27 | version=1 28 | LibDir=../../libs 29 | [eeschema/libraries] 30 | LibName1=power 31 | LibName2=device 32 | LibName3=transistors 33 | LibName4=conn 34 | LibName5=linear 35 | LibName6=regul 36 | LibName7=74xx 37 | LibName8=cmos4000 38 | LibName9=adc-dac 39 | LibName10=memory 40 | LibName11=xilinx 41 | LibName12=microcontrollers 42 | LibName13=dsp 43 | LibName14=microchip 44 | LibName15=analog_switches 45 | LibName16=motorola 46 | LibName17=texas 47 | LibName18=intel 48 | LibName19=audio 49 | LibName20=interface 50 | LibName21=digital-audio 51 | LibName22=philips 52 | LibName23=display 53 | LibName24=cypress 54 | LibName25=siliconi 55 | LibName26=opto 56 | LibName27=atmel 57 | LibName28=contrib 58 | LibName29=valves 59 | LibName30=agc_kicad_components 60 | [schematic_editor] 61 | version=1 62 | PageLayoutDescrFile= 63 | PlotDirectoryName= 64 | SubpartIdSeparator=0 65 | SubpartFirstId=65 66 | NetFmtName= 67 | SpiceAjustPassiveValues=0 68 | LabSize=60 69 | ERC_TestSimilarLabels=1 70 | [general] 71 | version=1 72 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AGC Hardware 2 | This repository contains KiCAD projects and libraries for a replica of the Apollo Guidance Computer. The schematics have, for the most part, been digitized directly from [the original schematics](http://klabs.org/history/ech/agc_schematics/) for the computer and ND-1021042, the LEM Primary Guidance, Navigation, and Control System Manual, [Volume I](https://archive.org/details/acelectroniclmma00acel) and [Volume II](https://archive.org/details/acelectroniclmma00acel_0). The schematics have been peppered with metadata required for digital simulation using my [agc\_simulation](https://github.com/thewonderidiot/agc_simulation) repository. 3 | 4 | # Current Status 5 | All logic modules (A1-A24) have been digitized and appear to be operating correctly in simulation. Additionally, one custom module, fixed\_erasable\_memory, has been designed. The simulation is able to completely pass the AGC Block Two Self-Check present in Aurora 12 (the only program we have so far with the complete version), so the central processor wiring is correct. Interfaces still need to be fully tested. 6 | 7 | The current focus is on designing and building a working DSKY replica, which will make further interface testing significantly easier. The digital indicator and alarm indicator modules are done, and the Indicator Driver Module has been digitized. 8 | 9 | ND-1021042, which contains all of the schematics missing from Eldon Hall's set, has recently become available. Once the DSKY is functioning, I plan to do another pass through A1-A24 and check for differences between the schematics, ND-1021042, and my digitizations. I may or may not end up implementing accurate memory modules after that. 10 | 11 | # Differences from the Real Thing 12 | * Modern 74HC-series components are used due to the unavailability of RTL logic chips. 13 | * I've taken advantage of the nearly-infinite fanout of 74HC chips to remove all fanout expansion gates. 14 | * To reduce chip count, I've not limited myself to using only 3-input NOR gates; I also use NOT gates, 2-input NOR gates, and 4-input NOR gates, where applicable. Combined with the deletion of fanout expansion gates, the total chip count is roughly half of the original's. 15 | * Again due to the nature of 74HC logic, outputs of NOR gates cannot be directly connected together as was possible with RTL. Where this is necessary (cross-module buses and >4 input gates), I've inserted fast open-drain buffers with accompanying pullup resistors. This gives very close to the same behavior, as the fan-in expander gates of the original were operating effectively open-collector lines. 16 | * I've been fairly liberal about moving sections of logic around to make modules more stand-alone, and to condense related logic all into the same module. This facilited much easier development, and I anticipate it to make bench-testing individual modules easier when I've actually gotten boards manufactured. I also believe it to have significantly reduced the number of signals that will be going across the final backplane, although I have no numbers to back this up. 17 | * The implementation for fixed and erasable memory module is custom, by me. It replaces all Tray B modules with the exception of the analog alarms module and the clock oscillator module. 18 | -------------------------------------------------------------------------------- /libs/agc_footprints.pretty/SHF-108-01-L-D-SM.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SHF-108-01-L-D-SM (layer F.Cu) (tedit 58F43437) 2 | (attr smd) 3 | (fp_text reference REF** (at 0.635 5.08) (layer F.SilkS) 4 | (effects (font (size 1 1) (thickness 0.15))) 5 | ) 6 | (fp_text value SHF-108-01-L-D-SM (at 0 -5.08) (layer F.Fab) 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | ) 9 | (fp_line (start 8.255 -2.54) (end 8.255 2.54) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start 8.255 -3.048) (end 7.239 -3.048) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start 7.239 -3.048) (end 7.239 -2.54) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start 8.255 -3.048) (end 8.255 -2.54) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start 6.985 -2.54) (end 7.239 -2.54) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 5.08 -2.54) (end 6.985 -2.54) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start 8.255 2.54) (end 5.08 2.54) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start 1.143 -3.048) (end 1.27 -3.048) (layer F.SilkS) (width 0.15)) 17 | (fp_line (start -0.127 -3.048) (end 0.127 -3.048) (layer F.SilkS) (width 0.15)) 18 | (fp_line (start -1.143 -3.048) (end -1.27 -3.048) (layer F.SilkS) (width 0.15)) 19 | (fp_line (start -8.255 2.54) (end -5.08 2.54) (layer F.SilkS) (width 0.15)) 20 | (fp_line (start -5.08 -2.54) (end -6.985 -2.54) (layer F.SilkS) (width 0.15)) 21 | (fp_line (start -1.27 -2.54) (end -1.27 -3.048) (layer F.SilkS) (width 0.15)) 22 | (fp_line (start 1.27 -3.048) (end 1.27 -2.54) (layer F.SilkS) (width 0.15)) 23 | (fp_line (start -6.985 -2.54) (end -7.239 -2.54) (layer F.SilkS) (width 0.15)) 24 | (fp_line (start -8.255 -3.048) (end -8.255 -2.54) (layer F.SilkS) (width 0.15)) 25 | (fp_line (start -7.239 -3.048) (end -7.239 -2.54) (layer F.SilkS) (width 0.15)) 26 | (fp_line (start -8.255 -3.048) (end -7.239 -3.048) (layer F.SilkS) (width 0.15)) 27 | (fp_line (start -8.255 -2.54) (end -8.255 2.54) (layer F.SilkS) (width 0.15)) 28 | (pad 15 smd rect (at 4.445 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 29 | (pad 13 smd rect (at 3.175 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 30 | (pad 1 smd rect (at -4.445 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 31 | (pad 3 smd rect (at -3.175 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 32 | (pad 7 smd rect (at -0.635 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 33 | (pad 5 smd rect (at -1.905 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 34 | (pad 11 smd rect (at 1.905 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 35 | (pad 9 smd rect (at 0.635 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 36 | (pad 10 smd rect (at 0.635 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 37 | (pad 12 smd rect (at 1.905 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 38 | (pad 16 smd rect (at 4.445 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 39 | (pad 14 smd rect (at 3.175 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 40 | (pad 6 smd rect (at -1.905 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 41 | (pad 8 smd rect (at -0.635 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 42 | (pad 4 smd rect (at -3.175 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 43 | (pad 2 smd rect (at -4.445 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 44 | ) 45 | -------------------------------------------------------------------------------- /dsky/digital_indicator/sign.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:agc_kicad_components 32 | LIBS:digital_indicator-cache 33 | EELAYER 26 0 34 | EELAYER END 35 | $Descr A4 11693 8268 36 | encoding utf-8 37 | Sheet 25 25 38 | Title "" 39 | Date "" 40 | Rev "" 41 | Comp "" 42 | Comment1 "" 43 | Comment2 "" 44 | Comment3 "" 45 | Comment4 "" 46 | $EndDescr 47 | $Comp 48 | L LED D58 49 | U 1 1 5871C85D 50 | P 3150 1450 51 | AR Path="/5871AD6C/5871C85D" Ref="D58" Part="1" 52 | AR Path="/5871F4B8/5871C85D" Ref="D100" Part="1" 53 | AR Path="/5871F7C5/5871C85D" Ref="D142" Part="1" 54 | F 0 "D142" H 3150 1550 50 0000 C CNN 55 | F 1 "LED" H 3150 1350 50 0000 C CNN 56 | F 2 "LEDs:LED-0603" H 3150 1450 60 0001 C CNN 57 | F 3 "" H 3150 1450 60 0000 C CNN 58 | 1 3150 1450 59 | -1 0 0 1 60 | $EndComp 61 | Wire Wire Line 62 | 3800 1450 3750 1450 63 | $Comp 64 | L R R6 65 | U 1 1 5871C865 66 | P 3600 1450 67 | AR Path="/5871AD6C/5871C865" Ref="R6" Part="1" 68 | AR Path="/5871F4B8/5871C865" Ref="R9" Part="1" 69 | AR Path="/5871F7C5/5871C865" Ref="R12" Part="1" 70 | F 0 "R12" V 3680 1450 50 0000 C CNN 71 | F 1 "1k" V 3600 1450 50 0000 C CNN 72 | F 2 "Resistors_SMD:R_0603" V 3530 1450 30 0001 C CNN 73 | F 3 "" H 3600 1450 30 0000 C CNN 74 | 1 3600 1450 75 | 0 -1 1 0 76 | $EndComp 77 | Wire Wire Line 78 | 3350 1450 3450 1450 79 | Text HLabel 3800 1450 2 60 Output ~ 0 80 | MINUS 81 | Wire Wire Line 82 | 2950 1450 2900 1450 83 | $Comp 84 | L LED D57 85 | U 1 1 5871C870 86 | P 3150 1750 87 | AR Path="/5871AD6C/5871C870" Ref="D57" Part="1" 88 | AR Path="/5871F4B8/5871C870" Ref="D99" Part="1" 89 | AR Path="/5871F7C5/5871C870" Ref="D141" Part="1" 90 | F 0 "D141" H 3150 1850 50 0000 C CNN 91 | F 1 "LED" H 3150 1650 50 0000 C CNN 92 | F 2 "LEDs:LED-0603" H 3150 1750 60 0001 C CNN 93 | F 3 "" H 3150 1750 60 0000 C CNN 94 | 1 3150 1750 95 | -1 0 0 1 96 | $EndComp 97 | Wire Wire Line 98 | 3750 1750 3800 1750 99 | $Comp 100 | L R R7 101 | U 1 1 5871C878 102 | P 3600 1750 103 | AR Path="/5871AD6C/5871C878" Ref="R7" Part="1" 104 | AR Path="/5871F4B8/5871C878" Ref="R10" Part="1" 105 | AR Path="/5871F7C5/5871C878" Ref="R13" Part="1" 106 | F 0 "R13" V 3680 1750 50 0000 C CNN 107 | F 1 "500" V 3600 1750 50 0000 C CNN 108 | F 2 "Resistors_SMD:R_0603" V 3530 1750 30 0001 C CNN 109 | F 3 "" H 3600 1750 30 0000 C CNN 110 | 1 3600 1750 111 | 0 -1 1 0 112 | $EndComp 113 | Wire Wire Line 114 | 3350 1750 3450 1750 115 | Wire Wire Line 116 | 2900 1750 2950 1750 117 | $Comp 118 | L LED D59 119 | U 1 1 5871C882 120 | P 3150 2050 121 | AR Path="/5871AD6C/5871C882" Ref="D59" Part="1" 122 | AR Path="/5871F4B8/5871C882" Ref="D101" Part="1" 123 | AR Path="/5871F7C5/5871C882" Ref="D143" Part="1" 124 | F 0 "D143" H 3150 2150 50 0000 C CNN 125 | F 1 "LED" H 3150 1950 50 0000 C CNN 126 | F 2 "LEDs:LED-0603" H 3150 2050 60 0001 C CNN 127 | F 3 "" H 3150 2050 60 0000 C CNN 128 | 1 3150 2050 129 | -1 0 0 1 130 | $EndComp 131 | Wire Wire Line 132 | 2900 2050 2950 2050 133 | Connection ~ 2900 1750 134 | Text HLabel 3800 1750 2 60 Output ~ 0 135 | PLUS 136 | Wire Wire Line 137 | 2900 1400 2900 2050 138 | Connection ~ 2900 1450 139 | $Comp 140 | L +12V #PWR044 141 | U 1 1 58DA4063 142 | P 2900 1400 143 | AR Path="/5871AD6C/58DA4063" Ref="#PWR044" Part="1" 144 | AR Path="/5871F4B8/58DA4063" Ref="#PWR045" Part="1" 145 | AR Path="/5871F7C5/58DA4063" Ref="#PWR046" Part="1" 146 | F 0 "#PWR046" H 2900 1250 50 0001 C CNN 147 | F 1 "+12V" H 2900 1540 50 0000 C CNN 148 | F 2 "" H 2900 1400 60 0000 C CNN 149 | F 3 "" H 2900 1400 60 0000 C CNN 150 | 1 2900 1400 151 | 1 0 0 -1 152 | $EndComp 153 | Wire Wire Line 154 | 3400 2050 3350 2050 155 | Wire Wire Line 156 | 3400 2050 3400 1750 157 | Connection ~ 3400 1750 158 | $EndSCHEMATC 159 | -------------------------------------------------------------------------------- /dsky/indicator_driver/relay_driver.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:agc_kicad_components 32 | EELAYER 25 0 33 | EELAYER END 34 | $Descr A4 11693 8268 35 | encoding utf-8 36 | Sheet 7 12 37 | Title "" 38 | Date "" 39 | Rev "" 40 | Comp "" 41 | Comment1 "" 42 | Comment2 "" 43 | Comment3 "" 44 | Comment4 "" 45 | $EndDescr 46 | Wire Wire Line 47 | 4650 3250 5350 3250 48 | $Comp 49 | L R R1 50 | U 1 1 58294489 51 | P 4500 3250 52 | AR Path="/5829417C/58294489" Ref="R1" Part="1" 53 | AR Path="/5829E335/58294489" Ref="R4" Part="1" 54 | AR Path="/582A3A7D/58294489" Ref="R7" Part="1" 55 | F 0 "R7" V 4580 3250 50 0000 C CNN 56 | F 1 "10k" V 4500 3250 50 0000 C CNN 57 | F 2 "" V 4430 3250 30 0000 C CNN 58 | F 3 "" H 4500 3250 30 0000 C CNN 59 | 1 4500 3250 60 | 0 1 1 0 61 | $EndComp 62 | Wire Wire Line 63 | 4350 3250 4150 3250 64 | Text HLabel 4150 3250 0 60 Input ~ 0 65 | RELAY_SELECT 66 | $Comp 67 | L R R2 68 | U 1 1 582945F4 69 | P 4800 3000 70 | AR Path="/5829417C/582945F4" Ref="R2" Part="1" 71 | AR Path="/5829E335/582945F4" Ref="R5" Part="1" 72 | AR Path="/582A3A7D/582945F4" Ref="R8" Part="1" 73 | F 0 "R8" V 4880 3000 50 0000 C CNN 74 | F 1 "2k" V 4800 3000 50 0000 C CNN 75 | F 2 "" V 4730 3000 30 0000 C CNN 76 | F 3 "" H 4800 3000 30 0000 C CNN 77 | 1 4800 3000 78 | 1 0 0 -1 79 | $EndComp 80 | Wire Wire Line 81 | 4800 3150 4800 3250 82 | Connection ~ 4800 3250 83 | $Comp 84 | L C C1 85 | U 1 1 58294769 86 | P 5100 3000 87 | AR Path="/5829417C/58294769" Ref="C1" Part="1" 88 | AR Path="/5829E335/58294769" Ref="C2" Part="1" 89 | AR Path="/582A3A7D/58294769" Ref="C3" Part="1" 90 | F 0 "C3" H 5125 3100 50 0000 L CNN 91 | F 1 "0.1uF" H 5125 2900 50 0000 L CNN 92 | F 2 "" H 5138 2850 30 0000 C CNN 93 | F 3 "" H 5100 3000 60 0000 C CNN 94 | 1 5100 3000 95 | 1 0 0 -1 96 | $EndComp 97 | Wire Wire Line 98 | 5100 3150 5100 3250 99 | Connection ~ 5100 3250 100 | Wire Wire Line 101 | 4800 2850 4800 2750 102 | Wire Wire Line 103 | 4800 2750 6550 2750 104 | Wire Wire Line 105 | 5100 2750 5100 2850 106 | $Comp 107 | L +12V #PWR07 108 | U 1 1 582948F6 109 | P 5650 2650 110 | AR Path="/5829417C/582948F6" Ref="#PWR07" Part="1" 111 | AR Path="/5829E335/582948F6" Ref="#PWR08" Part="1" 112 | AR Path="/582A3A7D/582948F6" Ref="#PWR09" Part="1" 113 | F 0 "#PWR09" H 5650 2500 50 0001 C CNN 114 | F 1 "+12V" H 5650 2790 50 0000 C CNN 115 | F 2 "" H 5650 2650 60 0000 C CNN 116 | F 3 "" H 5650 2650 60 0000 C CNN 117 | 1 5650 2650 118 | 1 0 0 -1 119 | $EndComp 120 | Wire Wire Line 121 | 5650 2650 5650 3050 122 | $Comp 123 | L Q_PNP_CBE Q1 124 | U 1 1 58294F03 125 | P 5550 3250 126 | AR Path="/5829417C/58294F03" Ref="Q1" Part="1" 127 | AR Path="/5829E335/58294F03" Ref="Q3" Part="1" 128 | AR Path="/582A3A7D/58294F03" Ref="Q5" Part="1" 129 | F 0 "Q5" H 5850 3300 50 0000 R CNN 130 | F 1 "PN2907A" H 6100 3200 50 0000 R CNN 131 | F 2 "" H 5750 3350 29 0000 C CNN 132 | F 3 "" H 5550 3250 60 0000 C CNN 133 | 1 5550 3250 134 | 1 0 0 1 135 | $EndComp 136 | Connection ~ 5100 2750 137 | $Comp 138 | L Q_PNP_CBE Q2 139 | U 1 1 58295184 140 | P 6450 3250 141 | AR Path="/5829417C/58295184" Ref="Q2" Part="1" 142 | AR Path="/5829E335/58295184" Ref="Q4" Part="1" 143 | AR Path="/582A3A7D/58295184" Ref="Q6" Part="1" 144 | F 0 "Q6" H 6750 3300 50 0000 R CNN 145 | F 1 "PN2907A" H 7000 3200 50 0000 R CNN 146 | F 2 "" H 6650 3350 29 0000 C CNN 147 | F 3 "" H 6450 3250 60 0000 C CNN 148 | 1 6450 3250 149 | 1 0 0 1 150 | $EndComp 151 | Wire Wire Line 152 | 6550 2750 6550 3050 153 | Connection ~ 5650 2750 154 | Wire Wire Line 155 | 5650 3450 5650 3800 156 | Wire Wire Line 157 | 5650 3800 7100 3800 158 | $Comp 159 | L R R3 160 | U 1 1 5829548D 161 | P 6200 3550 162 | AR Path="/5829417C/5829548D" Ref="R3" Part="1" 163 | AR Path="/5829E335/5829548D" Ref="R6" Part="1" 164 | AR Path="/582A3A7D/5829548D" Ref="R9" Part="1" 165 | F 0 "R9" V 6280 3550 50 0000 C CNN 166 | F 1 "10k" V 6200 3550 50 0000 C CNN 167 | F 2 "" V 6130 3550 30 0000 C CNN 168 | F 3 "" H 6200 3550 30 0000 C CNN 169 | 1 6200 3550 170 | 1 0 0 -1 171 | $EndComp 172 | Wire Wire Line 173 | 6200 3400 6200 3250 174 | Wire Wire Line 175 | 6200 3250 6250 3250 176 | Wire Wire Line 177 | 6200 3700 6200 3800 178 | Connection ~ 6200 3800 179 | Wire Wire Line 180 | 6550 3450 6550 3500 181 | Wire Wire Line 182 | 6550 3500 7100 3500 183 | Text HLabel 7100 3500 2 60 Output ~ 0 184 | RELAY_BIT 185 | Text HLabel 7100 3800 2 60 Output ~ 0 186 | RELAY_BIT/ 187 | Text Notes 6600 4250 2 60 ~ 0 188 | Adapted from R-700 volume III and the LGC ICD. 189 | $EndSCHEMATC 190 | -------------------------------------------------------------------------------- /libs/agc_footprints.pretty/SHF-120-01-L-D-SM.kicad_mod: -------------------------------------------------------------------------------- 1 | (module SHF-120-01-L-D-SM (layer F.Cu) (tedit 58E5D159) 2 | (attr smd) 3 | (fp_text reference REF** (at 0.635 5.08) (layer F.SilkS) 4 | (effects (font (size 1 1) (thickness 0.15))) 5 | ) 6 | (fp_text value SHF-120-01-L-D-SM (at 0 -5.08) (layer F.Fab) 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | ) 9 | (fp_line (start -15.875 -2.54) (end -15.875 2.54) (layer F.SilkS) (width 0.15)) 10 | (fp_line (start -15.875 -3.048) (end -14.859 -3.048) (layer F.SilkS) (width 0.15)) 11 | (fp_line (start -14.859 -3.048) (end -14.859 -2.54) (layer F.SilkS) (width 0.15)) 12 | (fp_line (start -15.875 -3.048) (end -15.875 -2.54) (layer F.SilkS) (width 0.15)) 13 | (fp_line (start -14.605 -2.54) (end -14.859 -2.54) (layer F.SilkS) (width 0.15)) 14 | (fp_line (start 1.27 -3.048) (end 1.27 -2.54) (layer F.SilkS) (width 0.15)) 15 | (fp_line (start -1.27 -2.54) (end -1.27 -3.048) (layer F.SilkS) (width 0.15)) 16 | (fp_line (start -12.7 -2.54) (end -14.605 -2.54) (layer F.SilkS) (width 0.15)) 17 | (fp_line (start -15.875 2.54) (end -12.7 2.54) (layer F.SilkS) (width 0.15)) 18 | (fp_line (start -1.143 -3.048) (end -1.27 -3.048) (layer F.SilkS) (width 0.15)) 19 | (fp_line (start -0.127 -3.048) (end 0.127 -3.048) (layer F.SilkS) (width 0.15)) 20 | (fp_line (start 1.143 -3.048) (end 1.27 -3.048) (layer F.SilkS) (width 0.15)) 21 | (fp_line (start 15.875 2.54) (end 12.7 2.54) (layer F.SilkS) (width 0.15)) 22 | (fp_line (start 12.7 -2.54) (end 14.605 -2.54) (layer F.SilkS) (width 0.15)) 23 | (fp_line (start 14.605 -2.54) (end 14.859 -2.54) (layer F.SilkS) (width 0.15)) 24 | (fp_line (start 15.875 -3.048) (end 15.875 -2.54) (layer F.SilkS) (width 0.15)) 25 | (fp_line (start 14.859 -3.048) (end 14.859 -2.54) (layer F.SilkS) (width 0.15)) 26 | (fp_line (start 15.875 -3.048) (end 14.859 -3.048) (layer F.SilkS) (width 0.15)) 27 | (fp_line (start 15.875 -2.54) (end 15.875 2.54) (layer F.SilkS) (width 0.15)) 28 | (pad 2 smd rect (at -12.065 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 29 | (pad 4 smd rect (at -10.795 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 30 | (pad 8 smd rect (at -8.255 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 31 | (pad 6 smd rect (at -9.525 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 32 | (pad 14 smd rect (at -4.445 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 33 | (pad 16 smd rect (at -3.175 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 34 | (pad 12 smd rect (at -5.715 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 35 | (pad 10 smd rect (at -6.985 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 36 | (pad 26 smd rect (at 3.175 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 37 | (pad 28 smd rect (at 4.445 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 38 | (pad 32 smd rect (at 6.985 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 39 | (pad 30 smd rect (at 5.715 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 40 | (pad 22 smd rect (at 0.635 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 41 | (pad 24 smd rect (at 1.905 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 42 | (pad 20 smd rect (at -0.635 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 43 | (pad 18 smd rect (at -1.905 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 44 | (pad 38 smd rect (at 10.795 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 45 | (pad 40 smd rect (at 12.065 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 46 | (pad 36 smd rect (at 9.525 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 47 | (pad 34 smd rect (at 8.255 -2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 48 | (pad 9 smd rect (at -6.985 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 49 | (pad 11 smd rect (at -5.715 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 50 | (pad 5 smd rect (at -9.525 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 51 | (pad 7 smd rect (at -8.255 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 52 | (pad 3 smd rect (at -10.795 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 53 | (pad 1 smd rect (at -12.065 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 54 | (pad 13 smd rect (at -4.445 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 55 | (pad 15 smd rect (at -3.175 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 56 | (pad 19 smd rect (at -0.635 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 57 | (pad 17 smd rect (at -1.905 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 58 | (pad 23 smd rect (at 1.905 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 59 | (pad 21 smd rect (at 0.635 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 60 | (pad 39 smd rect (at 12.065 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 61 | (pad 37 smd rect (at 10.795 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 62 | (pad 25 smd rect (at 3.175 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 63 | (pad 27 smd rect (at 4.445 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 64 | (pad 31 smd rect (at 6.985 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 65 | (pad 29 smd rect (at 5.715 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 66 | (pad 35 smd rect (at 9.525 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 67 | (pad 33 smd rect (at 8.255 2.032) (size 0.7366 2.794) (layers F.Cu F.Paste F.Mask)) 68 | ) 69 | -------------------------------------------------------------------------------- /dsky/indicator_driver/nonlatching_relay.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:agc_kicad_components 32 | EELAYER 25 0 33 | EELAYER END 34 | $Descr A4 11693 8268 35 | encoding utf-8 36 | Sheet 11 12 37 | Title "" 38 | Date "" 39 | Rev "" 40 | Comp "" 41 | Comment1 "" 42 | Comment2 "" 43 | Comment3 "" 44 | Comment4 "" 45 | $EndDescr 46 | $Comp 47 | L EC2-12NU K21 48 | U 1 1 582E9908 49 | P 6450 2600 50 | AR Path="/582E87BD/582E9908" Ref="K21" Part="1" 51 | AR Path="/582FE107/582E9908" Ref="K22" Part="1" 52 | F 0 "K22" H 6450 3000 60 0000 C CNN 53 | F 1 "EC2-12NU" H 6450 2175 60 0000 C CNN 54 | F 2 "" H 6450 2550 60 0000 C CNN 55 | F 3 "" H 6450 2550 60 0000 C CNN 56 | 1 6450 2600 57 | 1 0 0 -1 58 | $EndComp 59 | Wire Wire Line 60 | 6800 2900 6900 2900 61 | Wire Wire Line 62 | 6900 2900 6900 3300 63 | $Comp 64 | L GND #PWR016 65 | U 1 1 582E9BB0 66 | P 6900 3300 67 | AR Path="/582E87BD/582E9BB0" Ref="#PWR016" Part="1" 68 | AR Path="/582FE107/582E9BB0" Ref="#PWR018" Part="1" 69 | F 0 "#PWR018" H 6900 3050 50 0001 C CNN 70 | F 1 "GND" H 6900 3150 50 0000 C CNN 71 | F 2 "" H 6900 3300 60 0000 C CNN 72 | F 3 "" H 6900 3300 60 0000 C CNN 73 | 1 6900 3300 74 | 1 0 0 -1 75 | $EndComp 76 | $Comp 77 | L D D89 78 | U 1 1 582E9BCC 79 | P 6450 3250 80 | AR Path="/582E87BD/582E9BCC" Ref="D89" Part="1" 81 | AR Path="/582FE107/582E9BCC" Ref="D90" Part="1" 82 | F 0 "D90" H 6450 3350 50 0000 C CNN 83 | F 1 "D" H 6450 3150 50 0000 C CNN 84 | F 2 "" H 6450 3250 60 0000 C CNN 85 | F 3 "" H 6450 3250 60 0000 C CNN 86 | 1 6450 3250 87 | 1 0 0 -1 88 | $EndComp 89 | Wire Wire Line 90 | 6900 3250 6600 3250 91 | Connection ~ 6900 3250 92 | Wire Wire Line 93 | 6300 3250 6050 3250 94 | Wire Wire Line 95 | 6050 3250 6050 2900 96 | Wire Wire Line 97 | 5150 2900 6100 2900 98 | Wire Wire Line 99 | 5150 2850 5150 2900 100 | Connection ~ 6050 2900 101 | Text HLabel 3650 2650 0 60 Input ~ 0 102 | RELAY_SET 103 | Wire Wire Line 104 | 4150 2650 4850 2650 105 | $Comp 106 | L R R24 107 | U 1 1 582EC118 108 | P 4000 2650 109 | AR Path="/582FE107/582EC118" Ref="R24" Part="1" 110 | AR Path="/582E87BD/582EC118" Ref="R22" Part="1" 111 | F 0 "R24" V 4080 2650 50 0000 C CNN 112 | F 1 "10k" V 4000 2650 50 0000 C CNN 113 | F 2 "" V 3930 2650 30 0000 C CNN 114 | F 3 "" H 4000 2650 30 0000 C CNN 115 | 1 4000 2650 116 | 0 1 1 0 117 | $EndComp 118 | Wire Wire Line 119 | 3850 2650 3650 2650 120 | $Comp 121 | L R R25 122 | U 1 1 582EC121 123 | P 4300 2400 124 | AR Path="/582FE107/582EC121" Ref="R25" Part="1" 125 | AR Path="/582E87BD/582EC121" Ref="R23" Part="1" 126 | F 0 "R25" V 4380 2400 50 0000 C CNN 127 | F 1 "2k" V 4300 2400 50 0000 C CNN 128 | F 2 "" V 4230 2400 30 0000 C CNN 129 | F 3 "" H 4300 2400 30 0000 C CNN 130 | 1 4300 2400 131 | 1 0 0 -1 132 | $EndComp 133 | Wire Wire Line 134 | 4300 2550 4300 2650 135 | Connection ~ 4300 2650 136 | $Comp 137 | L C C5 138 | U 1 1 582EC12A 139 | P 4600 2400 140 | AR Path="/582FE107/582EC12A" Ref="C5" Part="1" 141 | AR Path="/582E87BD/582EC12A" Ref="C4" Part="1" 142 | F 0 "C5" H 4625 2500 50 0000 L CNN 143 | F 1 "0.1uF" H 4625 2300 50 0000 L CNN 144 | F 2 "" H 4638 2250 30 0000 C CNN 145 | F 3 "" H 4600 2400 60 0000 C CNN 146 | 1 4600 2400 147 | 1 0 0 -1 148 | $EndComp 149 | Wire Wire Line 150 | 4600 2550 4600 2650 151 | Connection ~ 4600 2650 152 | Wire Wire Line 153 | 4300 2250 4300 2150 154 | Wire Wire Line 155 | 4600 2150 4600 2250 156 | $Comp 157 | L +12V #PWR019 158 | U 1 1 582EC136 159 | P 5150 2050 160 | AR Path="/582FE107/582EC136" Ref="#PWR019" Part="1" 161 | AR Path="/582E87BD/582EC136" Ref="#PWR017" Part="1" 162 | F 0 "#PWR019" H 5150 1900 50 0001 C CNN 163 | F 1 "+12V" H 5150 2190 50 0000 C CNN 164 | F 2 "" H 5150 2050 60 0000 C CNN 165 | F 3 "" H 5150 2050 60 0000 C CNN 166 | 1 5150 2050 167 | 1 0 0 -1 168 | $EndComp 169 | Wire Wire Line 170 | 5150 2050 5150 2450 171 | $Comp 172 | L Q_PNP_CBE Q12 173 | U 1 1 582EC13D 174 | P 5050 2650 175 | AR Path="/582FE107/582EC13D" Ref="Q12" Part="1" 176 | AR Path="/582E87BD/582EC13D" Ref="Q11" Part="1" 177 | F 0 "Q12" H 5400 2700 50 0000 R CNN 178 | F 1 "PN2907A" H 5600 2600 50 0000 R CNN 179 | F 2 "" H 5250 2750 29 0000 C CNN 180 | F 3 "" H 5050 2650 60 0000 C CNN 181 | 1 5050 2650 182 | 1 0 0 1 183 | $EndComp 184 | Connection ~ 4600 2150 185 | Connection ~ 5150 2150 186 | Wire Wire Line 187 | 4300 2150 5150 2150 188 | Wire Wire Line 189 | 6800 2350 6900 2350 190 | Text HLabel 6900 2350 2 60 Output ~ 0 191 | C1 192 | Wire Wire Line 193 | 6800 2650 6900 2650 194 | Text HLabel 6900 2650 2 60 Output ~ 0 195 | C2 196 | Text HLabel 6000 2250 0 60 Input ~ 0 197 | NC1 198 | Wire Wire Line 199 | 6000 2250 6100 2250 200 | Text HLabel 6000 2450 0 60 Input ~ 0 201 | NO1 202 | Wire Wire Line 203 | 6000 2450 6100 2450 204 | Text HLabel 6000 2550 0 60 Input ~ 0 205 | NC2 206 | Wire Wire Line 207 | 6000 2550 6100 2550 208 | Text HLabel 6000 2750 0 60 Input ~ 0 209 | NO2 210 | Wire Wire Line 211 | 6000 2750 6100 2750 212 | $EndSCHEMATC 213 | -------------------------------------------------------------------------------- /timer/clock_divider.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:agc_kicad_components 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | EELAYER 26 0 32 | EELAYER END 33 | $Descr A4 11693 8268 34 | encoding utf-8 35 | Sheet 6 7 36 | Title "" 37 | Date "" 38 | Rev "" 39 | Comp "" 40 | Comment1 "" 41 | Comment2 "" 42 | Comment3 "" 43 | Comment4 "" 44 | $EndDescr 45 | $Comp 46 | L 74HC27 U2102 47 | U 1 1 562522C4 48 | P 2500 2800 49 | AR Path="/5621C075/5625169D/562522C4" Ref="U2102" Part="1" 50 | AR Path="/5621C075/5627FC18/562522C4" Ref="U2107" Part="1" 51 | AR Path="/5626F63A/563493D5/562522C4" Ref="U2118" Part="1" 52 | F 0 "U2118" H 2500 2850 60 0000 C CNN 53 | F 1 "74HC27" H 2500 2750 60 0001 C CNN 54 | F 2 "" H 2500 2800 60 0000 C CNN 55 | F 3 "" H 2500 2800 60 0000 C CNN 56 | 1 2500 2800 57 | 1 0 0 -1 58 | $EndComp 59 | $Comp 60 | L 74HC27 U2102 61 | U 2 1 562522CC 62 | P 2500 3500 63 | AR Path="/5621C075/5625169D/562522CC" Ref="U2102" Part="2" 64 | AR Path="/5621C075/5627FC18/562522CC" Ref="U2107" Part="2" 65 | AR Path="/5626F63A/563493D5/562522CC" Ref="U2118" Part="2" 66 | F 0 "U2118" H 2500 3550 60 0000 C CNN 67 | F 1 "74HC27" H 2500 3450 60 0001 C CNN 68 | F 2 "" H 2500 3500 60 0000 C CNN 69 | F 3 "" H 2500 3500 60 0000 C CNN 70 | F 4 "1" H 2700 3550 60 0000 C CIN "Initial" 71 | 2 2500 3500 72 | 1 0 0 -1 73 | $EndComp 74 | Wire Wire Line 75 | 3100 3250 3100 3750 76 | Wire Wire Line 77 | 3100 3250 1900 3050 78 | Wire Wire Line 79 | 1900 3050 1900 2950 80 | Wire Wire Line 81 | 3100 2550 3100 3050 82 | Wire Wire Line 83 | 3100 3050 1900 3250 84 | Wire Wire Line 85 | 1900 3250 1900 3350 86 | Wire Wire Line 87 | 3100 4200 3100 3950 88 | Wire Wire Line 89 | 3100 3950 1900 3750 90 | Wire Wire Line 91 | 1900 3750 1900 3650 92 | Wire Wire Line 93 | 3100 3750 1900 3950 94 | Wire Wire Line 95 | 1900 3950 1900 4100 96 | Connection ~ 3100 3500 97 | Wire Wire Line 98 | 3100 2550 1900 2350 99 | Wire Wire Line 100 | 1900 2350 1900 2200 101 | Connection ~ 3100 2800 102 | Wire Wire Line 103 | 3100 2100 3100 2350 104 | Wire Wire Line 105 | 3100 2350 1900 2550 106 | Wire Wire Line 107 | 1900 2550 1900 2650 108 | Wire Wire Line 109 | 4450 3250 4450 4450 110 | Wire Wire Line 111 | 4450 3250 3250 3050 112 | Wire Wire Line 113 | 3250 3050 3250 2900 114 | Wire Wire Line 115 | 4450 1850 4450 3050 116 | Wire Wire Line 117 | 4450 3050 3250 3250 118 | Wire Wire Line 119 | 3250 3250 3250 3400 120 | Wire Wire Line 121 | 3250 3600 3100 3600 122 | Connection ~ 3100 3600 123 | Wire Wire Line 124 | 3250 2700 3100 2700 125 | Connection ~ 3100 2700 126 | Wire Wire Line 127 | 1450 2800 1900 2800 128 | Wire Wire Line 129 | 1750 3500 1900 3500 130 | Wire Wire Line 131 | 1900 2000 1900 1850 132 | Wire Wire Line 133 | 1900 1850 4450 1850 134 | Connection ~ 4450 2800 135 | Wire Wire Line 136 | 1900 4300 1900 4450 137 | Wire Wire Line 138 | 1900 4450 4450 4450 139 | Connection ~ 4450 3500 140 | $Comp 141 | L 74HC02 U2101 142 | U 1 1 5625233C 143 | P 2500 2100 144 | AR Path="/5621C075/5625169D/5625233C" Ref="U2101" Part="1" 145 | AR Path="/5621C075/5627FC18/5625233C" Ref="U2106" Part="1" 146 | AR Path="/5626F63A/563493D5/5625233C" Ref="U2117" Part="1" 147 | F 0 "U2117" H 2500 2150 60 0000 C CNN 148 | F 1 "74HC02" H 2550 2050 60 0001 C CNN 149 | F 2 "" H 2500 2100 60 0000 C CNN 150 | F 3 "" H 2500 2100 60 0000 C CNN 151 | 1 2500 2100 152 | 1 0 0 -1 153 | $EndComp 154 | $Comp 155 | L 74HC02 U2101 156 | U 4 1 56252343 157 | P 2500 4200 158 | AR Path="/5621C075/5625169D/56252343" Ref="U2101" Part="4" 159 | AR Path="/5621C075/5627FC18/56252343" Ref="U2106" Part="4" 160 | AR Path="/5626F63A/563493D5/56252343" Ref="U2117" Part="4" 161 | F 0 "U2117" H 2500 4250 60 0000 C CNN 162 | F 1 "74HC02" H 2550 4150 60 0001 C CNN 163 | F 2 "" H 2500 4200 60 0000 C CNN 164 | F 3 "" H 2500 4200 60 0000 C CNN 165 | 4 2500 4200 166 | 1 0 0 -1 167 | $EndComp 168 | $Comp 169 | L 74HC02 U2101 170 | U 2 1 5625234A 171 | P 3850 2800 172 | AR Path="/5621C075/5625169D/5625234A" Ref="U2101" Part="2" 173 | AR Path="/5621C075/5627FC18/5625234A" Ref="U2106" Part="2" 174 | AR Path="/5626F63A/563493D5/5625234A" Ref="U2117" Part="2" 175 | F 0 "U2117" H 3850 2850 60 0000 C CNN 176 | F 1 "74HC02" H 3900 2750 60 0001 C CNN 177 | F 2 "" H 3850 2800 60 0000 C CNN 178 | F 3 "" H 3850 2800 60 0000 C CNN 179 | F 4 "1" H 4050 2850 60 0000 C CIN "Initial" 180 | 2 3850 2800 181 | 1 0 0 -1 182 | $EndComp 183 | $Comp 184 | L 74HC02 U2101 185 | U 3 1 56252351 186 | P 3850 3500 187 | AR Path="/5621C075/5625169D/56252351" Ref="U2101" Part="3" 188 | AR Path="/5621C075/5627FC18/56252351" Ref="U2106" Part="3" 189 | AR Path="/5626F63A/563493D5/56252351" Ref="U2117" Part="3" 190 | F 0 "U2117" H 3850 3550 60 0000 C CNN 191 | F 1 "74HC02" H 3900 3450 60 0001 C CNN 192 | F 2 "" H 3850 3500 60 0000 C CNN 193 | F 3 "" H 3850 3500 60 0000 C CNN 194 | 3 3850 3500 195 | 1 0 0 -1 196 | $EndComp 197 | Wire Wire Line 198 | 1750 2800 1750 3500 199 | Text HLabel 1450 2800 0 60 Input ~ 0 200 | F 201 | Connection ~ 1750 2800 202 | Wire Wire Line 203 | 3100 2100 5100 2100 204 | Wire Wire Line 205 | 3100 2550 5100 2550 206 | Wire Wire Line 207 | 4450 2800 4900 2800 208 | Wire Wire Line 209 | 4450 3500 4900 3500 210 | Connection ~ 3100 2550 211 | Wire Wire Line 212 | 3100 4200 5100 4200 213 | Text HLabel 5100 2100 2 60 Output ~ 0 214 | D 215 | Text HLabel 5100 2550 2 60 Output ~ 0 216 | B 217 | Text HLabel 5100 3750 2 60 Output ~ 0 218 | A 219 | Text HLabel 5100 4200 2 60 Output ~ 0 220 | C 221 | Text HLabel 4900 2800 2 60 Output ~ 0 222 | FS/ 223 | Text HLabel 4900 3500 2 60 Output ~ 0 224 | FS 225 | Wire Wire Line 226 | 3100 3750 5100 3750 227 | Connection ~ 3100 3750 228 | Connection ~ 3100 2100 229 | Connection ~ 3100 4200 230 | $EndSCHEMATC 231 | -------------------------------------------------------------------------------- /dsky/backplane/backplane.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:agc_kicad_components 32 | LIBS:backplane-cache 33 | EELAYER 26 0 34 | EELAYER END 35 | $Descr A4 11693 8268 36 | encoding utf-8 37 | Sheet 1 5 38 | Title "" 39 | Date "" 40 | Rev "" 41 | Comp "" 42 | Comment1 "" 43 | Comment2 "" 44 | Comment3 "" 45 | Comment4 "" 46 | $EndDescr 47 | $Sheet 48 | S 1650 4250 1350 1400 49 | U 59251213 50 | F0 "idm_connectors" 60 51 | F1 "idm_connectors.sch" 60 52 | $EndSheet 53 | $Comp 54 | L CONN_02X25 J9 55 | U 1 1 594D9195 56 | P 9650 2350 57 | F 0 "J9" H 9650 3765 50 0000 C CNN 58 | F 1 "CONN_02X25" H 9650 3674 50 0000 C CNN 59 | F 2 "" H 9650 1600 60 0000 C CNN 60 | F 3 "" H 9650 1600 60 0000 C CNN 61 | 1 9650 2350 62 | 1 0 0 -1 63 | $EndComp 64 | Text GLabel 9350 1150 0 60 Output ~ 0 65 | +14VSW 66 | Wire Wire Line 67 | 9350 1150 9400 1150 68 | Text GLabel 9950 1150 2 60 Output ~ 0 69 | RLYB01 70 | Wire Wire Line 71 | 9900 1150 9950 1150 72 | Text GLabel 9350 1250 0 60 Output ~ 0 73 | RLYB06 74 | Wire Wire Line 75 | 9350 1250 9400 1250 76 | Text GLabel 9950 1250 2 60 Output ~ 0 77 | POTHI 78 | Wire Wire Line 79 | 9900 1250 9950 1250 80 | Text GLabel 9350 1350 0 60 Input ~ 0 81 | POTLO 82 | Wire Wire Line 83 | 9350 1350 9400 1350 84 | Wire Wire Line 85 | 9900 1350 10850 1350 86 | Wire Wire Line 87 | 10850 1350 10850 1500 88 | $Comp 89 | L GND #PWR? 90 | U 1 1 594D93DC 91 | P 10850 1500 92 | F 0 "#PWR?" H 10850 1250 50 0001 C CNN 93 | F 1 "GND" H 10855 1327 50 0000 C CNN 94 | F 2 "" H 10850 1500 60 0000 C CNN 95 | F 3 "" H 10850 1500 60 0000 C CNN 96 | 1 10850 1500 97 | 1 0 0 -1 98 | $EndComp 99 | Text GLabel 9350 1450 0 60 Output ~ 0 100 | RLYB02 101 | Wire Wire Line 102 | 9350 1450 9400 1450 103 | Text GLabel 9950 1450 2 60 Output ~ 0 104 | RLYB07 105 | Wire Wire Line 106 | 9900 1450 9950 1450 107 | Text GLabel 9350 1550 0 60 Output ~ 0 108 | RYWD12 109 | Wire Wire Line 110 | 9350 1550 9400 1550 111 | Text GLabel 9950 1550 2 60 Output ~ 0 112 | RLYB11 113 | Wire Wire Line 114 | 9900 1550 9950 1550 115 | Text GLabel 9350 1650 0 60 Input ~ 0 116 | PTPA_INHIBIT 117 | Wire Wire Line 118 | 9350 1650 9400 1650 119 | Text GLabel 9950 1650 2 60 Input ~ 0 120 | RR_LOCKON_EN 121 | Wire Wire Line 122 | 9950 1650 9900 1650 123 | Wire Wire Line 124 | 9400 1750 8450 1750 125 | Wire Wire Line 126 | 8450 1750 8450 1600 127 | $Comp 128 | L +28VDC #PWR? 129 | U 1 1 594D94BA 130 | P 8450 1600 131 | F 0 "#PWR?" H 8450 1450 50 0001 C CNN 132 | F 1 "+28VDC" H 8465 1773 50 0000 C CNN 133 | F 2 "" H 8450 1600 60 0000 C CNN 134 | F 3 "" H 8450 1600 60 0000 C CNN 135 | 1 8450 1600 136 | 1 0 0 -1 137 | $EndComp 138 | Text GLabel 9950 1750 2 60 Output ~ 0 139 | RLYB03 140 | Wire Wire Line 141 | 9900 1750 9950 1750 142 | Text GLabel 9350 1850 0 60 Output ~ 0 143 | RLYB08 144 | Wire Wire Line 145 | 9350 1850 9400 1850 146 | Text GLabel 9950 1850 2 60 Output ~ 0 147 | RYWD13 148 | Wire Wire Line 149 | 9900 1850 9950 1850 150 | Text GLabel 9350 1950 0 60 Output ~ 0 151 | STBY 152 | Wire Wire Line 153 | 9350 1950 9400 1950 154 | Text GLabel 9950 1950 2 60 Output ~ 0 155 | COMP_ACTY 156 | Wire Wire Line 157 | 9900 1950 9950 1950 158 | Text GLabel 9350 2050 0 60 Output ~ 0 159 | ISS_WARNING 160 | Wire Wire Line 161 | 9350 2050 9400 2050 162 | $Sheet 163 | S 1650 2650 1250 1300 164 | U 594D95BE 165 | F0 "decoder_connections" 60 166 | F1 "decoder_connections.sch" 60 167 | F2 "ROW12" O R 2900 2750 60 168 | F3 "ROW11" O R 2900 2850 60 169 | F4 "ROW10" O R 2900 2950 60 170 | F5 "ROW9" O R 2900 3050 60 171 | F6 "ROW8" O R 2900 3150 60 172 | F7 "ROW6" O R 2900 3350 60 173 | F8 "ROW4" O R 2900 3550 60 174 | F9 "ROW2" O R 2900 3750 60 175 | F10 "ROW5" O R 2900 3450 60 176 | F11 "ROW3" O R 2900 3650 60 177 | F12 "ROW1" O R 2900 3850 60 178 | F13 "ROW7" O R 2900 3250 60 179 | F14 "RYWD16" I L 1650 2750 60 180 | F15 "RYWD14" I L 1650 2850 60 181 | F16 "RYWD13" I L 1650 2950 60 182 | F17 "RYWD12" I L 1650 3050 60 183 | $EndSheet 184 | $Sheet 185 | S 3500 2650 750 2450 186 | U 594DEBAB 187 | F0 "relay_matrix" 60 188 | F1 "relay_matrix.sch" 60 189 | F2 "RLYB10" I L 3500 4100 60 190 | F3 "RLYB09" I L 3500 4200 60 191 | F4 "RLYB11" I L 3500 4000 60 192 | F5 "ROW1" I L 3500 3850 60 193 | F6 "ROW2" I L 3500 3750 60 194 | F7 "ROW3" I L 3500 3650 60 195 | F8 "ROW4" I L 3500 3550 60 196 | F9 "ROW5" I L 3500 3450 60 197 | F10 "ROW6" I L 3500 3350 60 198 | F11 "ROW7" I L 3500 3250 60 199 | F12 "ROW8" I L 3500 3150 60 200 | F13 "ROW9" I L 3500 3050 60 201 | F14 "ROW10" I L 3500 2950 60 202 | F15 "RLYB08" I L 3500 4300 60 203 | F16 "RLYB07" I L 3500 4400 60 204 | F17 "RLYB06" I L 3500 4500 60 205 | F18 "RLYB05" I L 3500 4600 60 206 | F19 "RLYB02" I L 3500 4900 60 207 | F20 "RLYB01" I L 3500 5000 60 208 | F21 "RLYB04" I L 3500 4700 60 209 | F22 "RLYB03" I L 3500 4800 60 210 | F23 "ROW11" I L 3500 2850 60 211 | F24 "ROW12" I L 3500 2750 60 212 | $EndSheet 213 | Wire Wire Line 214 | 2900 2750 3500 2750 215 | Wire Wire Line 216 | 3500 2850 2900 2850 217 | Wire Wire Line 218 | 2900 2950 3500 2950 219 | Wire Wire Line 220 | 3500 3050 2900 3050 221 | Wire Wire Line 222 | 2900 3150 3500 3150 223 | Wire Wire Line 224 | 3500 3250 2900 3250 225 | Wire Wire Line 226 | 2900 3350 3500 3350 227 | Wire Wire Line 228 | 3500 3450 2900 3450 229 | Wire Wire Line 230 | 2900 3550 3500 3550 231 | Wire Wire Line 232 | 3500 3650 2900 3650 233 | Wire Wire Line 234 | 2900 3750 3500 3750 235 | Wire Wire Line 236 | 3500 3850 2900 3850 237 | $Sheet 238 | S 5150 3250 1400 750 239 | U 595C7459 240 | F0 "signal_flow" 60 241 | F1 "signal_flow.sch" 60 242 | F2 "EV250" I L 5150 3350 60 243 | F3 "OSGRD" I L 5150 3550 60 244 | F4 "EVHII_FLSH" I L 5150 3450 60 245 | F5 "LVWHI" I L 5150 3700 60 246 | F6 "PGNS_WARN" O R 6550 3350 60 247 | F7 "ALARM_COM" I L 5150 3900 60 248 | F8 "LVYHI" I L 5150 3800 60 249 | $EndSheet 250 | $EndSCHEMATC 251 | -------------------------------------------------------------------------------- /dsky/indicator_driver/line_driver.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:agc_kicad_components 32 | EELAYER 25 0 33 | EELAYER END 34 | $Descr A4 11693 8268 35 | encoding utf-8 36 | Sheet 9 12 37 | Title "" 38 | Date "" 39 | Rev "" 40 | Comp "" 41 | Comment1 "" 42 | Comment2 "" 43 | Comment3 "" 44 | Comment4 "" 45 | $EndDescr 46 | $Comp 47 | L D D81 48 | U 1 1 582B1340 49 | P 3200 2200 50 | AR Path="/582AE841/582B1340" Ref="D81" Part="1" 51 | AR Path="/582C01D3/582B1340" Ref="D85" Part="1" 52 | F 0 "D81" H 3200 2300 50 0000 C CNN 53 | F 1 "1N4148" H 3200 2100 50 0000 C CNN 54 | F 2 "" H 3200 2200 60 0000 C CNN 55 | F 3 "" H 3200 2200 60 0000 C CNN 56 | 1 3200 2200 57 | 1 0 0 -1 58 | $EndComp 59 | $Comp 60 | L D D82 61 | U 1 1 582B1403 62 | P 3200 2550 63 | AR Path="/582AE841/582B1403" Ref="D82" Part="1" 64 | AR Path="/582C01D3/582B1403" Ref="D86" Part="1" 65 | F 0 "D82" H 3200 2650 50 0000 C CNN 66 | F 1 "1N4148" H 3200 2450 50 0000 C CNN 67 | F 2 "" H 3200 2550 60 0000 C CNN 68 | F 3 "" H 3200 2550 60 0000 C CNN 69 | 1 3200 2550 70 | 1 0 0 -1 71 | $EndComp 72 | $Comp 73 | L D D83 74 | U 1 1 582B141D 75 | P 3200 2900 76 | AR Path="/582AE841/582B141D" Ref="D83" Part="1" 77 | AR Path="/582C01D3/582B141D" Ref="D87" Part="1" 78 | F 0 "D83" H 3200 3000 50 0000 C CNN 79 | F 1 "1N4148" H 3200 2800 50 0000 C CNN 80 | F 2 "" H 3200 2900 60 0000 C CNN 81 | F 3 "" H 3200 2900 60 0000 C CNN 82 | 1 3200 2900 83 | 1 0 0 -1 84 | $EndComp 85 | $Comp 86 | L D D84 87 | U 1 1 582B1438 88 | P 3200 3250 89 | AR Path="/582AE841/582B1438" Ref="D84" Part="1" 90 | AR Path="/582C01D3/582B1438" Ref="D88" Part="1" 91 | F 0 "D84" H 3200 3350 50 0000 C CNN 92 | F 1 "1N4148" H 3200 3150 50 0000 C CNN 93 | F 2 "" H 3200 3250 60 0000 C CNN 94 | F 3 "" H 3200 3250 60 0000 C CNN 95 | 1 3200 3250 96 | 1 0 0 -1 97 | $EndComp 98 | $Comp 99 | L R R10 100 | U 1 1 582B14F9 101 | P 2900 3600 102 | AR Path="/582AE841/582B14F9" Ref="R10" Part="1" 103 | AR Path="/582C01D3/582B14F9" Ref="R16" Part="1" 104 | F 0 "R10" V 2980 3600 50 0000 C CNN 105 | F 1 "1k" V 2900 3600 50 0000 C CNN 106 | F 2 "" V 2830 3600 30 0000 C CNN 107 | F 3 "" H 2900 3600 30 0000 C CNN 108 | 1 2900 3600 109 | 1 0 0 -1 110 | $EndComp 111 | $Comp 112 | L R R11 113 | U 1 1 582B1AC1 114 | P 2700 3600 115 | AR Path="/582AE841/582B1AC1" Ref="R11" Part="1" 116 | AR Path="/582C01D3/582B1AC1" Ref="R17" Part="1" 117 | F 0 "R11" V 2780 3600 50 0000 C CNN 118 | F 1 "1k" V 2700 3600 50 0000 C CNN 119 | F 2 "" V 2630 3600 30 0000 C CNN 120 | F 3 "" H 2700 3600 30 0000 C CNN 121 | 1 2700 3600 122 | 1 0 0 -1 123 | $EndComp 124 | $Comp 125 | L R R12 126 | U 1 1 582B1B16 127 | P 2500 3600 128 | AR Path="/582AE841/582B1B16" Ref="R12" Part="1" 129 | AR Path="/582C01D3/582B1B16" Ref="R18" Part="1" 130 | F 0 "R12" V 2580 3600 50 0000 C CNN 131 | F 1 "1k" V 2500 3600 50 0000 C CNN 132 | F 2 "" V 2430 3600 30 0000 C CNN 133 | F 3 "" H 2500 3600 30 0000 C CNN 134 | 1 2500 3600 135 | 1 0 0 -1 136 | $EndComp 137 | $Comp 138 | L R R13 139 | U 1 1 582B1B1C 140 | P 2300 3600 141 | AR Path="/582AE841/582B1B1C" Ref="R13" Part="1" 142 | AR Path="/582C01D3/582B1B1C" Ref="R19" Part="1" 143 | F 0 "R13" V 2380 3600 50 0000 C CNN 144 | F 1 "1k" V 2300 3600 50 0000 C CNN 145 | F 2 "" V 2230 3600 30 0000 C CNN 146 | F 3 "" H 2300 3600 30 0000 C CNN 147 | 1 2300 3600 148 | 1 0 0 -1 149 | $EndComp 150 | Wire Wire Line 151 | 2300 3750 2300 3850 152 | Wire Wire Line 153 | 2300 3850 2900 3850 154 | Wire Wire Line 155 | 2500 3850 2500 3750 156 | Wire Wire Line 157 | 2700 3850 2700 3750 158 | Connection ~ 2500 3850 159 | Wire Wire Line 160 | 2900 3850 2900 3750 161 | Connection ~ 2700 3850 162 | $Comp 163 | L GND #PWR010 164 | U 1 1 582B1BA1 165 | P 2600 3950 166 | AR Path="/582AE841/582B1BA1" Ref="#PWR010" Part="1" 167 | AR Path="/582C01D3/582B1BA1" Ref="#PWR013" Part="1" 168 | F 0 "#PWR013" H 2600 3700 50 0001 C CNN 169 | F 1 "GND" H 2600 3800 50 0000 C CNN 170 | F 2 "" H 2600 3950 60 0000 C CNN 171 | F 3 "" H 2600 3950 60 0000 C CNN 172 | 1 2600 3950 173 | 1 0 0 -1 174 | $EndComp 175 | Wire Wire Line 176 | 2600 3950 2600 3850 177 | Connection ~ 2600 3850 178 | Wire Wire Line 179 | 2150 3250 3050 3250 180 | Wire Wire Line 181 | 2900 3250 2900 3450 182 | Wire Wire Line 183 | 2150 2900 3050 2900 184 | Wire Wire Line 185 | 2700 2900 2700 3450 186 | Wire Wire Line 187 | 2150 2550 3050 2550 188 | Wire Wire Line 189 | 2500 2550 2500 3450 190 | Wire Wire Line 191 | 2150 2200 3050 2200 192 | Wire Wire Line 193 | 2300 2200 2300 3450 194 | Connection ~ 2300 2200 195 | Text HLabel 2150 2200 0 60 Input ~ 0 196 | RELAY_ADDR_4 197 | Text HLabel 2150 2550 0 60 Input ~ 0 198 | RELAY_ADDR_3 199 | Connection ~ 2500 2550 200 | Text HLabel 2150 2900 0 60 Input ~ 0 201 | RELAY_ADDR_2 202 | Connection ~ 2700 2900 203 | Text HLabel 2150 3250 0 60 Input ~ 0 204 | RELAY_ADDR_1 205 | Connection ~ 2900 3250 206 | Wire Wire Line 207 | 3350 2200 3500 2200 208 | Wire Wire Line 209 | 3350 2550 4000 2550 210 | Wire Wire Line 211 | 3500 2150 3500 3250 212 | Wire Wire Line 213 | 3500 2900 3350 2900 214 | Connection ~ 3500 2550 215 | Wire Wire Line 216 | 3500 3250 3350 3250 217 | Connection ~ 3500 2900 218 | Connection ~ 3500 2200 219 | $Comp 220 | L R R14 221 | U 1 1 582B2579 222 | P 3500 2000 223 | AR Path="/582AE841/582B2579" Ref="R14" Part="1" 224 | AR Path="/582C01D3/582B2579" Ref="R20" Part="1" 225 | F 0 "R14" V 3580 2000 50 0000 C CNN 226 | F 1 "100k" V 3500 2000 50 0000 C CNN 227 | F 2 "" V 3430 2000 30 0000 C CNN 228 | F 3 "" H 3500 2000 30 0000 C CNN 229 | 1 3500 2000 230 | 1 0 0 -1 231 | $EndComp 232 | $Comp 233 | L +12V #PWR011 234 | U 1 1 582B258A 235 | P 3500 1850 236 | AR Path="/582AE841/582B258A" Ref="#PWR011" Part="1" 237 | AR Path="/582C01D3/582B258A" Ref="#PWR014" Part="1" 238 | F 0 "#PWR014" H 3500 1700 50 0001 C CNN 239 | F 1 "+12V" H 3500 1990 50 0000 C CNN 240 | F 2 "" H 3500 1850 60 0000 C CNN 241 | F 3 "" H 3500 1850 60 0000 C CNN 242 | 1 3500 1850 243 | 1 0 0 -1 244 | $EndComp 245 | $Comp 246 | L Q_NPN_CBE Q7 247 | U 1 1 582B2973 248 | P 4200 2550 249 | AR Path="/582AE841/582B2973" Ref="Q7" Part="1" 250 | AR Path="/582C01D3/582B2973" Ref="Q9" Part="1" 251 | F 0 "Q7" H 4500 2600 50 0000 R CNN 252 | F 1 "PN2222AA" H 4750 2500 50 0000 R CNN 253 | F 2 "" H 4400 2650 29 0000 C CNN 254 | F 3 "" H 4200 2550 60 0000 C CNN 255 | 1 4200 2550 256 | 1 0 0 -1 257 | $EndComp 258 | Wire Wire Line 259 | 4300 2750 4300 2950 260 | Wire Wire Line 261 | 4300 2950 4700 2950 262 | $Comp 263 | L Q_NPN_CBE Q8 264 | U 1 1 582B2AA5 265 | P 4900 2950 266 | AR Path="/582AE841/582B2AA5" Ref="Q8" Part="1" 267 | AR Path="/582C01D3/582B2AA5" Ref="Q10" Part="1" 268 | F 0 "Q8" H 5200 3000 50 0000 R CNN 269 | F 1 "PN2222AA" H 5450 2900 50 0000 R CNN 270 | F 2 "" H 5100 3050 29 0000 C CNN 271 | F 3 "" H 4900 2950 60 0000 C CNN 272 | 1 4900 2950 273 | 1 0 0 -1 274 | $EndComp 275 | $Comp 276 | L GND #PWR012 277 | U 1 1 582B2C0D 278 | P 5000 3450 279 | AR Path="/582AE841/582B2C0D" Ref="#PWR012" Part="1" 280 | AR Path="/582C01D3/582B2C0D" Ref="#PWR015" Part="1" 281 | F 0 "#PWR015" H 5000 3200 50 0001 C CNN 282 | F 1 "GND" H 5000 3300 50 0000 C CNN 283 | F 2 "" H 5000 3450 60 0000 C CNN 284 | F 3 "" H 5000 3450 60 0000 C CNN 285 | 1 5000 3450 286 | 1 0 0 -1 287 | $EndComp 288 | Wire Wire Line 289 | 5000 3150 5000 3450 290 | $Comp 291 | L R R15 292 | U 1 1 582B2CB4 293 | P 4600 3150 294 | AR Path="/582AE841/582B2CB4" Ref="R15" Part="1" 295 | AR Path="/582C01D3/582B2CB4" Ref="R21" Part="1" 296 | F 0 "R15" V 4680 3150 50 0000 C CNN 297 | F 1 "5k" V 4600 3150 50 0000 C CNN 298 | F 2 "" V 4530 3150 30 0000 C CNN 299 | F 3 "" H 4600 3150 30 0000 C CNN 300 | 1 4600 3150 301 | 1 0 0 -1 302 | $EndComp 303 | Wire Wire Line 304 | 4600 3300 4600 3350 305 | Wire Wire Line 306 | 4600 3350 5000 3350 307 | Connection ~ 5000 3350 308 | Wire Wire Line 309 | 4600 3000 4600 2950 310 | Connection ~ 4600 2950 311 | Wire Wire Line 312 | 4300 2350 4300 2250 313 | Wire Wire Line 314 | 4300 2250 5000 2250 315 | Wire Wire Line 316 | 5000 2000 5000 2750 317 | Connection ~ 5000 2250 318 | Wire Wire Line 319 | 5000 2000 5450 2000 320 | Text HLabel 5450 2000 2 60 Output ~ 0 321 | RELAY_LINE 322 | $EndSCHEMATC 323 | -------------------------------------------------------------------------------- /libs/agc_footprints.pretty/PCN10A-128P.kicad_mod: -------------------------------------------------------------------------------- 1 | (module PCN10A-128P (layer F.Cu) (tedit 59227FE7) 2 | (descr 107) 3 | (fp_text reference REF** (at 0 4.445) (layer F.SilkS) 4 | (effects (font (size 1 1) (thickness 0.15))) 5 | ) 6 | (fp_text value PCN10A-128P (at 0 -6.985) (layer F.Fab) 7 | (effects (font (size 1 1) (thickness 0.15))) 8 | ) 9 | (pad "" np_thru_hole circle (at -44.45 5.08) (size 2.8 2.8) (drill 2.8) (layers *.Cu *.Mask)) 10 | (pad "" np_thru_hole circle (at 44.45 5.08) (size 2.8 2.8) (drill 2.8) (layers *.Cu *.Mask)) 11 | (pad 123 thru_hole circle (at 39.37 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 12 | (pad 3 thru_hole circle (at -39.37 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 13 | (pad 7 thru_hole circle (at -36.83 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 14 | (pad 119 thru_hole circle (at 36.83 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 15 | (pad 115 thru_hole circle (at 34.29 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 16 | (pad 11 thru_hole circle (at -34.29 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 17 | (pad 111 thru_hole circle (at 31.75 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 18 | (pad 15 thru_hole circle (at -31.75 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 19 | (pad 19 thru_hole circle (at -29.21 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 20 | (pad 24 thru_hole circle (at 29.21 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 21 | (pad 23 thru_hole circle (at -26.67 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 22 | (pad 27 thru_hole circle (at -24.13 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 23 | (pad 31 thru_hole circle (at -21.59 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 24 | (pad 35 thru_hole circle (at -19.05 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 25 | (pad 39 thru_hole circle (at -16.51 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 26 | (pad 43 thru_hole circle (at -13.97 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 27 | (pad 47 thru_hole circle (at -11.43 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 28 | (pad 51 thru_hole circle (at -8.89 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 29 | (pad 55 thru_hole circle (at -6.35 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 30 | (pad 103 thru_hole circle (at 26.67 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 31 | (pad 99 thru_hole circle (at 24.13 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 32 | (pad 95 thru_hole circle (at 21.59 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 33 | (pad 91 thru_hole circle (at 19.05 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 34 | (pad 87 thru_hole circle (at 16.51 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 35 | (pad 83 thru_hole circle (at 13.97 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 36 | (pad 79 thru_hole circle (at 11.43 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 37 | (pad 75 thru_hole circle (at 8.89 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 38 | (pad 71 thru_hole circle (at 6.35 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 39 | (pad 67 thru_hole circle (at 3.81 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 40 | (pad 59 thru_hole circle (at -3.81 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 41 | (pad NC3 thru_hole circle (at 1.27 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 42 | (pad 63 thru_hole circle (at -1.27 0) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 43 | (pad 62 thru_hole circle (at -1.27 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 44 | (pad NC2 thru_hole circle (at 1.27 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 45 | (pad 58 thru_hole circle (at -3.81 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 46 | (pad 66 thru_hole circle (at 3.81 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 47 | (pad 70 thru_hole circle (at 6.35 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 48 | (pad 74 thru_hole circle (at 8.89 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 49 | (pad 78 thru_hole circle (at 11.43 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 50 | (pad 82 thru_hole circle (at 13.97 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 51 | (pad 86 thru_hole circle (at 16.51 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 52 | (pad 90 thru_hole circle (at 19.05 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 53 | (pad 94 thru_hole circle (at 21.59 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 54 | (pad 98 thru_hole circle (at 24.13 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 55 | (pad 102 thru_hole circle (at 26.67 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 56 | (pad 54 thru_hole circle (at -6.35 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 57 | (pad 50 thru_hole circle (at -8.89 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 58 | (pad 46 thru_hole circle (at -11.43 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 59 | (pad 42 thru_hole circle (at -13.97 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 60 | (pad 38 thru_hole circle (at -16.51 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 61 | (pad 34 thru_hole circle (at -19.05 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 62 | (pad 30 thru_hole circle (at -21.59 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 63 | (pad 26 thru_hole circle (at -24.13 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 64 | (pad 22 thru_hole circle (at -26.67 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 65 | (pad 106 thru_hole circle (at 29.21 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 66 | (pad 18 thru_hole circle (at -29.21 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 67 | (pad 14 thru_hole circle (at -31.75 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 68 | (pad 110 thru_hole circle (at 31.75 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 69 | (pad 10 thru_hole circle (at -34.29 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 70 | (pad 114 thru_hole circle (at 34.29 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 71 | (pad 118 thru_hole circle (at 36.83 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 72 | (pad 6 thru_hole circle (at -36.83 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 73 | (pad 2 thru_hole circle (at -39.37 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 74 | (pad 122 thru_hole circle (at 39.37 -2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 75 | (pad 121 thru_hole circle (at 39.37 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 76 | (pad 1 thru_hole circle (at -39.37 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 77 | (pad 5 thru_hole circle (at -36.83 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 78 | (pad 117 thru_hole circle (at 36.83 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 79 | (pad 113 thru_hole circle (at 34.29 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 80 | (pad 9 thru_hole circle (at -34.29 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 81 | (pad 109 thru_hole circle (at 31.75 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 82 | (pad 13 thru_hole circle (at -31.75 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 83 | (pad 17 thru_hole circle (at -29.21 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 84 | (pad 105 thru_hole circle (at 29.21 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 85 | (pad 21 thru_hole circle (at -26.67 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 86 | (pad 25 thru_hole circle (at -24.13 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 87 | (pad 29 thru_hole circle (at -21.59 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 88 | (pad 33 thru_hole circle (at -19.05 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 89 | (pad 37 thru_hole circle (at -16.51 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 90 | (pad 41 thru_hole circle (at -13.97 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 91 | (pad 45 thru_hole circle (at -11.43 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 92 | (pad 49 thru_hole circle (at -8.89 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 93 | (pad 53 thru_hole circle (at -6.35 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 94 | (pad 101 thru_hole circle (at 26.67 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 95 | (pad 97 thru_hole circle (at 24.13 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 96 | (pad 93 thru_hole circle (at 21.59 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 97 | (pad 89 thru_hole circle (at 19.05 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 98 | (pad 85 thru_hole circle (at 16.51 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 99 | (pad 81 thru_hole circle (at 13.97 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 100 | (pad 77 thru_hole circle (at 11.43 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 101 | (pad 73 thru_hole circle (at 8.89 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 102 | (pad 69 thru_hole circle (at 6.35 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 103 | (pad 65 thru_hole circle (at 3.81 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 104 | (pad 57 thru_hole circle (at -3.81 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 105 | (pad NC1 thru_hole circle (at 1.27 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 106 | (pad 61 thru_hole circle (at -1.27 -5.08) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 107 | (pad 64 thru_hole circle (at -1.27 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 108 | (pad NC4 thru_hole circle (at 1.27 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 109 | (pad 60 thru_hole circle (at -3.81 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 110 | (pad 68 thru_hole circle (at 3.81 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 111 | (pad 72 thru_hole circle (at 6.35 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 112 | (pad 76 thru_hole circle (at 8.89 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 113 | (pad 80 thru_hole circle (at 11.43 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 114 | (pad 84 thru_hole circle (at 13.97 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 115 | (pad 88 thru_hole circle (at 16.51 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 116 | (pad 92 thru_hole circle (at 19.05 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 117 | (pad 96 thru_hole circle (at 21.59 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 118 | (pad 100 thru_hole circle (at 24.13 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 119 | (pad 104 thru_hole circle (at 26.67 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 120 | (pad 56 thru_hole circle (at -6.35 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 121 | (pad 52 thru_hole circle (at -8.89 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 122 | (pad 48 thru_hole circle (at -11.43 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 123 | (pad 44 thru_hole circle (at -13.97 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 124 | (pad 40 thru_hole circle (at -16.51 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 125 | (pad 36 thru_hole circle (at -19.05 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 126 | (pad 32 thru_hole circle (at -21.59 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 127 | (pad 28 thru_hole circle (at -24.13 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 128 | (pad 24 thru_hole circle (at -26.67 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 129 | (pad 108 thru_hole circle (at 29.21 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 130 | (pad 20 thru_hole circle (at -29.21 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 131 | (pad 16 thru_hole circle (at -31.75 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 132 | (pad 112 thru_hole circle (at 31.75 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 133 | (pad 12 thru_hole circle (at -34.29 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 134 | (pad 116 thru_hole circle (at 34.29 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 135 | (pad 120 thru_hole circle (at 36.83 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 136 | (pad 8 thru_hole circle (at -36.83 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 137 | (pad 4 thru_hole circle (at -39.37 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 138 | (pad 124 thru_hole circle (at 39.37 2.54) (size 1.524 1.524) (drill 0.8) (layers *.Cu *.Mask)) 139 | ) 140 | -------------------------------------------------------------------------------- /dsky/digital_indicator/7SD.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:74xx 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:agc_kicad_components 32 | LIBS:digital_indicator-cache 33 | EELAYER 26 0 34 | EELAYER END 35 | $Descr A4 11693 8268 36 | encoding utf-8 37 | Sheet 19 25 38 | Title "" 39 | Date "" 40 | Rev "" 41 | Comp "" 42 | Comment1 "" 43 | Comment2 "" 44 | Comment3 "" 45 | Comment4 "" 46 | $EndDescr 47 | $Comp 48 | L LED D165 49 | U 1 1 5870A873 50 | P 5600 2600 51 | AR Path="/58714278/5870A873" Ref="D165" Part="1" 52 | AR Path="/58709A98/5870A873" Ref="D7" Part="1" 53 | AR Path="/5870BA6D/5870A873" Ref="D14" Part="1" 54 | AR Path="/5870C280/5870A873" Ref="D39" Part="1" 55 | AR Path="/5870C70C/5870A873" Ref="D46" Part="1" 56 | AR Path="/5870D5D9/5870A873" Ref="D23" Part="1" 57 | AR Path="/5870D5E2/5870A873" Ref="D30" Part="1" 58 | AR Path="/58710C39/5870A873" Ref="D81" Part="1" 59 | AR Path="/58710C42/5870A873" Ref="D88" Part="1" 60 | AR Path="/58710C4B/5870A873" Ref="D60" Part="1" 61 | AR Path="/58710C54/5870A873" Ref="D67" Part="1" 62 | AR Path="/58711173/5870A873" Ref="D74" Part="1" 63 | AR Path="/58712055/5870A873" Ref="D123" Part="1" 64 | AR Path="/5871205E/5870A873" Ref="D130" Part="1" 65 | AR Path="/58712067/5870A873" Ref="D102" Part="1" 66 | AR Path="/58712070/5870A873" Ref="D109" Part="1" 67 | AR Path="/58712079/5870A873" Ref="D116" Part="1" 68 | AR Path="/58714281/5870A873" Ref="D172" Part="1" 69 | AR Path="/5871428A/5870A873" Ref="D144" Part="1" 70 | AR Path="/58714293/5870A873" Ref="D151" Part="1" 71 | AR Path="/5871429C/5870A873" Ref="D158" Part="1" 72 | F 0 "D7" H 5600 2700 50 0000 C CNN 73 | F 1 "LED" H 5600 2500 50 0000 C CNN 74 | F 2 "LEDs:LED-0603" H 5600 2600 60 0001 C CNN 75 | F 3 "" H 5600 2600 60 0000 C CNN 76 | 1 5600 2600 77 | -1 0 0 1 78 | $EndComp 79 | Wire Wire Line 80 | 5800 2600 5850 2600 81 | Text HLabel 5850 2600 2 60 Output ~ 0 82 | SEG_A 83 | $Comp 84 | L LED D166 85 | U 1 1 5870A886 86 | P 5600 2900 87 | AR Path="/58714278/5870A886" Ref="D166" Part="1" 88 | AR Path="/58709A98/5870A886" Ref="D8" Part="1" 89 | AR Path="/5870BA6D/5870A886" Ref="D15" Part="1" 90 | AR Path="/5870C280/5870A886" Ref="D40" Part="1" 91 | AR Path="/5870C70C/5870A886" Ref="D47" Part="1" 92 | AR Path="/5870D5D9/5870A886" Ref="D24" Part="1" 93 | AR Path="/5870D5E2/5870A886" Ref="D31" Part="1" 94 | AR Path="/58710C39/5870A886" Ref="D82" Part="1" 95 | AR Path="/58710C42/5870A886" Ref="D89" Part="1" 96 | AR Path="/58710C4B/5870A886" Ref="D61" Part="1" 97 | AR Path="/58710C54/5870A886" Ref="D68" Part="1" 98 | AR Path="/58711173/5870A886" Ref="D75" Part="1" 99 | AR Path="/58712055/5870A886" Ref="D124" Part="1" 100 | AR Path="/5871205E/5870A886" Ref="D131" Part="1" 101 | AR Path="/58712067/5870A886" Ref="D103" Part="1" 102 | AR Path="/58712070/5870A886" Ref="D110" Part="1" 103 | AR Path="/58712079/5870A886" Ref="D117" Part="1" 104 | AR Path="/58714281/5870A886" Ref="D173" Part="1" 105 | AR Path="/5871428A/5870A886" Ref="D145" Part="1" 106 | AR Path="/58714293/5870A886" Ref="D152" Part="1" 107 | AR Path="/5871429C/5870A886" Ref="D159" Part="1" 108 | F 0 "D8" H 5600 3000 50 0000 C CNN 109 | F 1 "LED" H 5600 2800 50 0000 C CNN 110 | F 2 "LEDs:LED-0603" H 5600 2900 60 0001 C CNN 111 | F 3 "" H 5600 2900 60 0000 C CNN 112 | 1 5600 2900 113 | -1 0 0 1 114 | $EndComp 115 | Wire Wire Line 116 | 5800 2900 5850 2900 117 | Text HLabel 5850 2900 2 60 Output ~ 0 118 | SEG_B 119 | $Comp 120 | L LED D167 121 | U 1 1 5870A898 122 | P 5600 3200 123 | AR Path="/58714278/5870A898" Ref="D167" Part="1" 124 | AR Path="/58709A98/5870A898" Ref="D9" Part="1" 125 | AR Path="/5870BA6D/5870A898" Ref="D16" Part="1" 126 | AR Path="/5870C280/5870A898" Ref="D41" Part="1" 127 | AR Path="/5870C70C/5870A898" Ref="D48" Part="1" 128 | AR Path="/5870D5D9/5870A898" Ref="D25" Part="1" 129 | AR Path="/5870D5E2/5870A898" Ref="D32" Part="1" 130 | AR Path="/58710C39/5870A898" Ref="D83" Part="1" 131 | AR Path="/58710C42/5870A898" Ref="D90" Part="1" 132 | AR Path="/58710C4B/5870A898" Ref="D62" Part="1" 133 | AR Path="/58710C54/5870A898" Ref="D69" Part="1" 134 | AR Path="/58711173/5870A898" Ref="D76" Part="1" 135 | AR Path="/58712055/5870A898" Ref="D125" Part="1" 136 | AR Path="/5871205E/5870A898" Ref="D132" Part="1" 137 | AR Path="/58712067/5870A898" Ref="D104" Part="1" 138 | AR Path="/58712070/5870A898" Ref="D111" Part="1" 139 | AR Path="/58712079/5870A898" Ref="D118" Part="1" 140 | AR Path="/58714281/5870A898" Ref="D174" Part="1" 141 | AR Path="/5871428A/5870A898" Ref="D146" Part="1" 142 | AR Path="/58714293/5870A898" Ref="D153" Part="1" 143 | AR Path="/5871429C/5870A898" Ref="D160" Part="1" 144 | F 0 "D9" H 5600 3300 50 0000 C CNN 145 | F 1 "LED" H 5600 3100 50 0000 C CNN 146 | F 2 "LEDs:LED-0603" H 5600 3200 60 0001 C CNN 147 | F 3 "" H 5600 3200 60 0000 C CNN 148 | 1 5600 3200 149 | -1 0 0 1 150 | $EndComp 151 | Wire Wire Line 152 | 5800 3200 5850 3200 153 | Text HLabel 5850 3200 2 60 Output ~ 0 154 | SEG_C 155 | $Comp 156 | L LED D168 157 | U 1 1 5870A8AA 158 | P 5600 3500 159 | AR Path="/58714278/5870A8AA" Ref="D168" Part="1" 160 | AR Path="/58709A98/5870A8AA" Ref="D10" Part="1" 161 | AR Path="/5870BA6D/5870A8AA" Ref="D17" Part="1" 162 | AR Path="/5870C280/5870A8AA" Ref="D42" Part="1" 163 | AR Path="/5870C70C/5870A8AA" Ref="D49" Part="1" 164 | AR Path="/5870D5D9/5870A8AA" Ref="D26" Part="1" 165 | AR Path="/5870D5E2/5870A8AA" Ref="D33" Part="1" 166 | AR Path="/58710C39/5870A8AA" Ref="D84" Part="1" 167 | AR Path="/58710C42/5870A8AA" Ref="D91" Part="1" 168 | AR Path="/58710C4B/5870A8AA" Ref="D63" Part="1" 169 | AR Path="/58710C54/5870A8AA" Ref="D70" Part="1" 170 | AR Path="/58711173/5870A8AA" Ref="D77" Part="1" 171 | AR Path="/58712055/5870A8AA" Ref="D126" Part="1" 172 | AR Path="/5871205E/5870A8AA" Ref="D133" Part="1" 173 | AR Path="/58712067/5870A8AA" Ref="D105" Part="1" 174 | AR Path="/58712070/5870A8AA" Ref="D112" Part="1" 175 | AR Path="/58712079/5870A8AA" Ref="D119" Part="1" 176 | AR Path="/58714281/5870A8AA" Ref="D175" Part="1" 177 | AR Path="/5871428A/5870A8AA" Ref="D147" Part="1" 178 | AR Path="/58714293/5870A8AA" Ref="D154" Part="1" 179 | AR Path="/5871429C/5870A8AA" Ref="D161" Part="1" 180 | F 0 "D10" H 5600 3600 50 0000 C CNN 181 | F 1 "LED" H 5600 3400 50 0000 C CNN 182 | F 2 "LEDs:LED-0603" H 5600 3500 60 0001 C CNN 183 | F 3 "" H 5600 3500 60 0000 C CNN 184 | 1 5600 3500 185 | -1 0 0 -1 186 | $EndComp 187 | Wire Wire Line 188 | 5800 3500 5850 3500 189 | Text HLabel 5850 3500 2 60 Output ~ 0 190 | SEG_D 191 | $Comp 192 | L LED D169 193 | U 1 1 5870A8BE 194 | P 5600 3800 195 | AR Path="/58714278/5870A8BE" Ref="D169" Part="1" 196 | AR Path="/58709A98/5870A8BE" Ref="D11" Part="1" 197 | AR Path="/5870BA6D/5870A8BE" Ref="D18" Part="1" 198 | AR Path="/5870C280/5870A8BE" Ref="D43" Part="1" 199 | AR Path="/5870C70C/5870A8BE" Ref="D50" Part="1" 200 | AR Path="/5870D5D9/5870A8BE" Ref="D27" Part="1" 201 | AR Path="/5870D5E2/5870A8BE" Ref="D34" Part="1" 202 | AR Path="/58710C39/5870A8BE" Ref="D85" Part="1" 203 | AR Path="/58710C42/5870A8BE" Ref="D92" Part="1" 204 | AR Path="/58710C4B/5870A8BE" Ref="D64" Part="1" 205 | AR Path="/58710C54/5870A8BE" Ref="D71" Part="1" 206 | AR Path="/58711173/5870A8BE" Ref="D78" Part="1" 207 | AR Path="/58712055/5870A8BE" Ref="D127" Part="1" 208 | AR Path="/5871205E/5870A8BE" Ref="D134" Part="1" 209 | AR Path="/58712067/5870A8BE" Ref="D106" Part="1" 210 | AR Path="/58712070/5870A8BE" Ref="D113" Part="1" 211 | AR Path="/58712079/5870A8BE" Ref="D120" Part="1" 212 | AR Path="/58714281/5870A8BE" Ref="D176" Part="1" 213 | AR Path="/5871428A/5870A8BE" Ref="D148" Part="1" 214 | AR Path="/58714293/5870A8BE" Ref="D155" Part="1" 215 | AR Path="/5871429C/5870A8BE" Ref="D162" Part="1" 216 | F 0 "D11" H 5600 3900 50 0000 C CNN 217 | F 1 "LED" H 5600 3700 50 0000 C CNN 218 | F 2 "LEDs:LED-0603" H 5600 3800 60 0001 C CNN 219 | F 3 "" H 5600 3800 60 0000 C CNN 220 | 1 5600 3800 221 | -1 0 0 -1 222 | $EndComp 223 | Wire Wire Line 224 | 5800 3800 5850 3800 225 | Text HLabel 5850 3800 2 60 Output ~ 0 226 | SEG_E 227 | $Comp 228 | L LED D170 229 | U 1 1 5870A8D0 230 | P 5600 4100 231 | AR Path="/58714278/5870A8D0" Ref="D170" Part="1" 232 | AR Path="/58709A98/5870A8D0" Ref="D12" Part="1" 233 | AR Path="/5870BA6D/5870A8D0" Ref="D19" Part="1" 234 | AR Path="/5870C280/5870A8D0" Ref="D44" Part="1" 235 | AR Path="/5870C70C/5870A8D0" Ref="D51" Part="1" 236 | AR Path="/5870D5D9/5870A8D0" Ref="D28" Part="1" 237 | AR Path="/5870D5E2/5870A8D0" Ref="D35" Part="1" 238 | AR Path="/58710C39/5870A8D0" Ref="D86" Part="1" 239 | AR Path="/58710C42/5870A8D0" Ref="D93" Part="1" 240 | AR Path="/58710C4B/5870A8D0" Ref="D65" Part="1" 241 | AR Path="/58710C54/5870A8D0" Ref="D72" Part="1" 242 | AR Path="/58711173/5870A8D0" Ref="D79" Part="1" 243 | AR Path="/58712055/5870A8D0" Ref="D128" Part="1" 244 | AR Path="/5871205E/5870A8D0" Ref="D135" Part="1" 245 | AR Path="/58712067/5870A8D0" Ref="D107" Part="1" 246 | AR Path="/58712070/5870A8D0" Ref="D114" Part="1" 247 | AR Path="/58712079/5870A8D0" Ref="D121" Part="1" 248 | AR Path="/58714281/5870A8D0" Ref="D177" Part="1" 249 | AR Path="/5871428A/5870A8D0" Ref="D149" Part="1" 250 | AR Path="/58714293/5870A8D0" Ref="D156" Part="1" 251 | AR Path="/5871429C/5870A8D0" Ref="D163" Part="1" 252 | F 0 "D12" H 5600 4200 50 0000 C CNN 253 | F 1 "LED" H 5600 4000 50 0000 C CNN 254 | F 2 "LEDs:LED-0603" H 5600 4100 60 0001 C CNN 255 | F 3 "" H 5600 4100 60 0000 C CNN 256 | 1 5600 4100 257 | -1 0 0 -1 258 | $EndComp 259 | Wire Wire Line 260 | 5800 4100 5850 4100 261 | Text HLabel 5850 4100 2 60 Output ~ 0 262 | SEG_F 263 | $Comp 264 | L LED D171 265 | U 1 1 5870A8E2 266 | P 5600 2300 267 | AR Path="/58714278/5870A8E2" Ref="D171" Part="1" 268 | AR Path="/58709A98/5870A8E2" Ref="D13" Part="1" 269 | AR Path="/5870BA6D/5870A8E2" Ref="D20" Part="1" 270 | AR Path="/5870C280/5870A8E2" Ref="D45" Part="1" 271 | AR Path="/5870C70C/5870A8E2" Ref="D52" Part="1" 272 | AR Path="/5870D5D9/5870A8E2" Ref="D29" Part="1" 273 | AR Path="/5870D5E2/5870A8E2" Ref="D36" Part="1" 274 | AR Path="/58710C39/5870A8E2" Ref="D87" Part="1" 275 | AR Path="/58710C42/5870A8E2" Ref="D94" Part="1" 276 | AR Path="/58710C4B/5870A8E2" Ref="D66" Part="1" 277 | AR Path="/58710C54/5870A8E2" Ref="D73" Part="1" 278 | AR Path="/58711173/5870A8E2" Ref="D80" Part="1" 279 | AR Path="/58712055/5870A8E2" Ref="D129" Part="1" 280 | AR Path="/5871205E/5870A8E2" Ref="D136" Part="1" 281 | AR Path="/58712067/5870A8E2" Ref="D108" Part="1" 282 | AR Path="/58712070/5870A8E2" Ref="D115" Part="1" 283 | AR Path="/58712079/5870A8E2" Ref="D122" Part="1" 284 | AR Path="/58714281/5870A8E2" Ref="D178" Part="1" 285 | AR Path="/5871428A/5870A8E2" Ref="D150" Part="1" 286 | AR Path="/58714293/5870A8E2" Ref="D157" Part="1" 287 | AR Path="/5871429C/5870A8E2" Ref="D164" Part="1" 288 | F 0 "D13" H 5600 2400 50 0000 C CNN 289 | F 1 "LED" H 5600 2200 50 0000 C CNN 290 | F 2 "LEDs:LED-0603" H 5600 2300 60 0001 C CNN 291 | F 3 "" H 5600 2300 60 0000 C CNN 292 | 1 5600 2300 293 | -1 0 0 1 294 | $EndComp 295 | Wire Wire Line 296 | 5800 2300 5850 2300 297 | Text HLabel 5850 2300 2 60 Output ~ 0 298 | SEG_G 299 | Wire Wire Line 300 | 4350 2300 4400 2300 301 | Connection ~ 4350 2300 302 | $Comp 303 | L +12V #PWR039 304 | U 1 1 58CC67AA 305 | P 4350 2150 306 | AR Path="/58714278/58CC67AA" Ref="#PWR039" Part="1" 307 | AR Path="/58709A98/58CC67AA" Ref="#PWR023" Part="1" 308 | AR Path="/5870BA6D/58CC67AA" Ref="#PWR024" Part="1" 309 | AR Path="/5870C280/58CC67AA" Ref="#PWR025" Part="1" 310 | AR Path="/5870C70C/58CC67AA" Ref="#PWR026" Part="1" 311 | AR Path="/5870D5D9/58CC67AA" Ref="#PWR027" Part="1" 312 | AR Path="/5870D5E2/58CC67AA" Ref="#PWR028" Part="1" 313 | AR Path="/58710C39/58CC67AA" Ref="#PWR029" Part="1" 314 | AR Path="/58710C42/58CC67AA" Ref="#PWR030" Part="1" 315 | AR Path="/58710C4B/58CC67AA" Ref="#PWR031" Part="1" 316 | AR Path="/58710C54/58CC67AA" Ref="#PWR032" Part="1" 317 | AR Path="/58711173/58CC67AA" Ref="#PWR033" Part="1" 318 | AR Path="/58712055/58CC67AA" Ref="#PWR034" Part="1" 319 | AR Path="/5871205E/58CC67AA" Ref="#PWR035" Part="1" 320 | AR Path="/58712067/58CC67AA" Ref="#PWR036" Part="1" 321 | AR Path="/58712070/58CC67AA" Ref="#PWR037" Part="1" 322 | AR Path="/58712079/58CC67AA" Ref="#PWR038" Part="1" 323 | AR Path="/58714281/58CC67AA" Ref="#PWR040" Part="1" 324 | AR Path="/5871428A/58CC67AA" Ref="#PWR041" Part="1" 325 | AR Path="/58714293/58CC67AA" Ref="#PWR042" Part="1" 326 | AR Path="/5871429C/58CC67AA" Ref="#PWR043" Part="1" 327 | F 0 "#PWR023" H 4350 2000 50 0001 C CNN 328 | F 1 "+12V" H 4350 2290 50 0000 C CNN 329 | F 2 "" H 4350 2150 60 0000 C CNN 330 | F 3 "" H 4350 2150 60 0000 C CNN 331 | 1 4350 2150 332 | 1 0 0 -1 333 | $EndComp 334 | $Comp 335 | L R8_BUSSED RN1 336 | U 1 1 58EB610D 337 | P 4700 2600 338 | AR Path="/58709A98/58EB610D" Ref="RN1" Part="1" 339 | AR Path="/5870BA6D/58EB610D" Ref="RN2" Part="1" 340 | AR Path="/5870D5D9/58EB610D" Ref="RN3" Part="1" 341 | AR Path="/5870D5E2/58EB610D" Ref="RN4" Part="1" 342 | AR Path="/5870C280/58EB610D" Ref="RN5" Part="1" 343 | AR Path="/5870C70C/58EB610D" Ref="RN6" Part="1" 344 | AR Path="/58710C4B/58EB610D" Ref="RN7" Part="1" 345 | AR Path="/58710C54/58EB610D" Ref="RN8" Part="1" 346 | AR Path="/58711173/58EB610D" Ref="RN9" Part="1" 347 | AR Path="/58710C39/58EB610D" Ref="RN10" Part="1" 348 | AR Path="/58710C42/58EB610D" Ref="RN11" Part="1" 349 | AR Path="/58712067/58EB610D" Ref="RN12" Part="1" 350 | AR Path="/58712070/58EB610D" Ref="RN13" Part="1" 351 | AR Path="/58712079/58EB610D" Ref="RN14" Part="1" 352 | AR Path="/58712055/58EB610D" Ref="RN15" Part="1" 353 | AR Path="/5871205E/58EB610D" Ref="RN16" Part="1" 354 | AR Path="/5871428A/58EB610D" Ref="RN17" Part="1" 355 | AR Path="/58714293/58EB610D" Ref="RN18" Part="1" 356 | AR Path="/5871429C/58EB610D" Ref="RN19" Part="1" 357 | AR Path="/58714278/58EB610D" Ref="RN20" Part="1" 358 | AR Path="/58714281/58EB610D" Ref="RN21" Part="1" 359 | AR Path="/58EB610D" Ref="RN21" Part="1" 360 | F 0 "RN1" H 4700 3000 60 0000 C CNN 361 | F 1 "R8_BUSSED" H 4700 2100 60 0000 C CNN 362 | F 2 "agc_footprints:R8_746" H 4900 2350 60 0001 C CNN 363 | F 3 "" H 4900 2350 60 0001 C CNN 364 | 1 4700 2600 365 | 1 0 0 -1 366 | $EndComp 367 | Wire Wire Line 368 | 4350 2150 4350 2400 369 | Wire Wire Line 370 | 4350 2400 4400 2400 371 | Wire Wire Line 372 | 5000 2300 5400 2300 373 | Wire Wire Line 374 | 5000 2400 5350 2400 375 | Wire Wire Line 376 | 5350 2400 5350 2600 377 | Wire Wire Line 378 | 5350 2600 5400 2600 379 | Wire Wire Line 380 | 5000 2500 5300 2500 381 | Wire Wire Line 382 | 5300 2500 5300 2900 383 | Wire Wire Line 384 | 5300 2900 5400 2900 385 | Wire Wire Line 386 | 5000 2600 5250 2600 387 | Wire Wire Line 388 | 5250 2600 5250 3200 389 | Wire Wire Line 390 | 5250 3200 5400 3200 391 | Wire Wire Line 392 | 5000 2700 5200 2700 393 | Wire Wire Line 394 | 5200 2700 5200 3500 395 | Wire Wire Line 396 | 5200 3500 5400 3500 397 | Wire Wire Line 398 | 5000 2800 5150 2800 399 | Wire Wire Line 400 | 5150 2800 5150 3800 401 | Wire Wire Line 402 | 5150 3800 5400 3800 403 | Wire Wire Line 404 | 5000 2900 5100 2900 405 | Wire Wire Line 406 | 5100 2900 5100 4100 407 | Wire Wire Line 408 | 5100 4100 5400 4100 409 | NoConn ~ 5000 3000 410 | $EndSCHEMATC 411 | -------------------------------------------------------------------------------- /scaler/clock_divider.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:agc_kicad_components 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:scaler-cache 32 | EELAYER 25 0 33 | EELAYER END 34 | $Descr A4 11693 8268 35 | encoding utf-8 36 | Sheet 15 35 37 | Title "" 38 | Date "" 39 | Rev "" 40 | Comp "" 41 | Comment1 "" 42 | Comment2 "" 43 | Comment3 "" 44 | Comment4 "" 45 | $EndDescr 46 | $Comp 47 | L 74HC27 U1102 48 | U 1 1 562B307E 49 | P 2550 1900 50 | AR Path="/562BF6E2/562C1A68/562B307E" Ref="U1102" Part="1" 51 | AR Path="/562BF6E2/562C361B/562B307E" Ref="U1102" Part="3" 52 | AR Path="/562BF6E2/562C5332/562B307E" Ref="U1104" Part="2" 53 | AR Path="/562BF6E2/562C5346/562B307E" Ref="U1107" Part="1" 54 | AR Path="/562BF6E2/562C8636/562B307E" Ref="U1107" Part="3" 55 | AR Path="/562BF6E2/562C864A/562B307E" Ref="U1109" Part="2" 56 | AR Path="/562BF6E2/562C865E/562B307E" Ref="U1112" Part="1" 57 | AR Path="/562BF6E2/562C8672/562B307E" Ref="U1112" Part="3" 58 | AR Path="/562BF6E2/562CCCD6/562B307E" Ref="U1114" Part="2" 59 | AR Path="/562BF6E2/562CCCEA/562B307E" Ref="U1117" Part="1" 60 | AR Path="/562BF6E2/562CCCFE/562B307E" Ref="U1117" Part="3" 61 | AR Path="/562BF6E2/562CCD12/562B307E" Ref="U1119" Part="2" 62 | AR Path="/562BF6E2/562CCD26/562B307E" Ref="U1122" Part="1" 63 | AR Path="/562BF6E2/562CCD3A/562B307E" Ref="U1122" Part="3" 64 | AR Path="/562BF6E2/562CCD4E/562B307E" Ref="U1124" Part="2" 65 | AR Path="/562BF6E2/562CCD62/562B307E" Ref="U1127" Part="1" 66 | AR Path="/56533507/56535F1F/562B307E" Ref="U1133" Part="1" 67 | AR Path="/56533507/56535F42/562B307E" Ref="U1133" Part="3" 68 | AR Path="/56533507/56535F65/562B307E" Ref="U1135" Part="2" 69 | AR Path="/56533507/56535F88/562B307E" Ref="U1138" Part="1" 70 | AR Path="/56533507/56535FAB/562B307E" Ref="U1138" Part="3" 71 | AR Path="/56533507/56535FCE/562B307E" Ref="U1140" Part="2" 72 | AR Path="/56533507/56535FF1/562B307E" Ref="U1143" Part="1" 73 | AR Path="/56533507/56536014/562B307E" Ref="U1143" Part="3" 74 | AR Path="/56533507/56536035/562B307E" Ref="U1145" Part="2" 75 | AR Path="/56533507/56536058/562B307E" Ref="U1148" Part="1" 76 | AR Path="/56533507/5653607B/562B307E" Ref="U1148" Part="3" 77 | AR Path="/56533507/5653609E/562B307E" Ref="U1150" Part="2" 78 | AR Path="/56533507/565360C1/562B307E" Ref="U1153" Part="1" 79 | AR Path="/56533507/565360E4/562B307E" Ref="U1153" Part="3" 80 | AR Path="/56533507/56536107/562B307E" Ref="U1155" Part="2" 81 | AR Path="/56533507/5653612A/562B307E" Ref="U1158" Part="1" 82 | F 0 "U1158" H 2550 1950 60 0000 C CNN 83 | F 1 "74HC27" H 2550 1850 60 0001 C CNN 84 | F 2 "" H 2550 1900 60 0000 C CNN 85 | F 3 "" H 2550 1900 60 0000 C CNN 86 | 1 2550 1900 87 | 1 0 0 -1 88 | $EndComp 89 | $Comp 90 | L 74HC27 U1102 91 | U 2 1 562B317D 92 | P 2550 2600 93 | AR Path="/562BF6E2/562C1A68/562B317D" Ref="U1102" Part="2" 94 | AR Path="/562BF6E2/562C361B/562B317D" Ref="U1104" Part="1" 95 | AR Path="/562BF6E2/562C5332/562B317D" Ref="U1104" Part="3" 96 | AR Path="/562BF6E2/562C5346/562B317D" Ref="U1107" Part="2" 97 | AR Path="/562BF6E2/562C8636/562B317D" Ref="U1109" Part="1" 98 | AR Path="/562BF6E2/562C864A/562B317D" Ref="U1109" Part="3" 99 | AR Path="/562BF6E2/562C865E/562B317D" Ref="U1112" Part="2" 100 | AR Path="/562BF6E2/562C8672/562B317D" Ref="U1114" Part="1" 101 | AR Path="/562BF6E2/562CCCD6/562B317D" Ref="U1114" Part="3" 102 | AR Path="/562BF6E2/562CCCEA/562B317D" Ref="U1117" Part="2" 103 | AR Path="/562BF6E2/562CCCFE/562B317D" Ref="U1119" Part="1" 104 | AR Path="/562BF6E2/562CCD12/562B317D" Ref="U1119" Part="3" 105 | AR Path="/562BF6E2/562CCD26/562B317D" Ref="U1122" Part="2" 106 | AR Path="/562BF6E2/562CCD3A/562B317D" Ref="U1124" Part="1" 107 | AR Path="/562BF6E2/562CCD4E/562B317D" Ref="U1124" Part="3" 108 | AR Path="/562BF6E2/562CCD62/562B317D" Ref="U1127" Part="2" 109 | AR Path="/56533507/56535F1F/562B317D" Ref="U1133" Part="2" 110 | AR Path="/56533507/56535F42/562B317D" Ref="U1135" Part="1" 111 | AR Path="/56533507/56535F65/562B317D" Ref="U1135" Part="3" 112 | AR Path="/56533507/56535F88/562B317D" Ref="U1138" Part="2" 113 | AR Path="/56533507/56535FAB/562B317D" Ref="U1140" Part="1" 114 | AR Path="/56533507/56535FCE/562B317D" Ref="U1140" Part="3" 115 | AR Path="/56533507/56535FF1/562B317D" Ref="U1143" Part="2" 116 | AR Path="/56533507/56536014/562B317D" Ref="U1145" Part="1" 117 | AR Path="/56533507/56536035/562B317D" Ref="U1145" Part="3" 118 | AR Path="/56533507/56536058/562B317D" Ref="U1148" Part="2" 119 | AR Path="/56533507/5653607B/562B317D" Ref="U1150" Part="1" 120 | AR Path="/56533507/5653609E/562B317D" Ref="U1150" Part="3" 121 | AR Path="/56533507/565360C1/562B317D" Ref="U1153" Part="2" 122 | AR Path="/56533507/565360E4/562B317D" Ref="U1155" Part="1" 123 | AR Path="/56533507/56536107/562B317D" Ref="U1155" Part="3" 124 | AR Path="/56533507/5653612A/562B317D" Ref="U1158" Part="2" 125 | F 0 "U1158" H 2550 2650 60 0000 C CNN 126 | F 1 "74HC27" H 2550 2550 60 0001 C CNN 127 | F 2 "" H 2550 2600 60 0000 C CNN 128 | F 3 "" H 2550 2600 60 0000 C CNN 129 | 2 2550 2600 130 | 1 0 0 -1 131 | $EndComp 132 | $Comp 133 | L 74HC02 U1101 134 | U 1 1 562B323A 135 | P 2550 1200 136 | AR Path="/562BF6E2/562C1A68/562B323A" Ref="U1101" Part="1" 137 | AR Path="/562BF6E2/562C361B/562B323A" Ref="U1103" Part="1" 138 | AR Path="/562BF6E2/562C5332/562B323A" Ref="U1105" Part="1" 139 | AR Path="/562BF6E2/562C5346/562B323A" Ref="U1106" Part="1" 140 | AR Path="/562BF6E2/562C8636/562B323A" Ref="U1108" Part="1" 141 | AR Path="/562BF6E2/562C864A/562B323A" Ref="U1110" Part="1" 142 | AR Path="/562BF6E2/562C865E/562B323A" Ref="U1111" Part="1" 143 | AR Path="/562BF6E2/562C8672/562B323A" Ref="U1113" Part="1" 144 | AR Path="/562BF6E2/562CCCD6/562B323A" Ref="U1115" Part="1" 145 | AR Path="/562BF6E2/562CCCEA/562B323A" Ref="U1116" Part="1" 146 | AR Path="/562BF6E2/562CCCFE/562B323A" Ref="U1118" Part="1" 147 | AR Path="/562BF6E2/562CCD12/562B323A" Ref="U1120" Part="1" 148 | AR Path="/562BF6E2/562CCD26/562B323A" Ref="U1121" Part="1" 149 | AR Path="/562BF6E2/562CCD3A/562B323A" Ref="U1123" Part="1" 150 | AR Path="/562BF6E2/562CCD4E/562B323A" Ref="U1125" Part="1" 151 | AR Path="/562BF6E2/562CCD62/562B323A" Ref="U1126" Part="1" 152 | AR Path="/56533507/56535F1F/562B323A" Ref="U1132" Part="1" 153 | AR Path="/56533507/56535F42/562B323A" Ref="U1134" Part="1" 154 | AR Path="/56533507/56535F65/562B323A" Ref="U1136" Part="1" 155 | AR Path="/56533507/56535F88/562B323A" Ref="U1137" Part="1" 156 | AR Path="/56533507/56535FAB/562B323A" Ref="U1139" Part="1" 157 | AR Path="/56533507/56535FCE/562B323A" Ref="U1141" Part="1" 158 | AR Path="/56533507/56535FF1/562B323A" Ref="U1142" Part="1" 159 | AR Path="/56533507/56536014/562B323A" Ref="U1144" Part="1" 160 | AR Path="/56533507/56536035/562B323A" Ref="U1146" Part="1" 161 | AR Path="/56533507/56536058/562B323A" Ref="U1147" Part="1" 162 | AR Path="/56533507/5653607B/562B323A" Ref="U1149" Part="1" 163 | AR Path="/56533507/5653609E/562B323A" Ref="U1151" Part="1" 164 | AR Path="/56533507/565360C1/562B323A" Ref="U1152" Part="1" 165 | AR Path="/56533507/565360E4/562B323A" Ref="U1154" Part="1" 166 | AR Path="/56533507/56536107/562B323A" Ref="U1156" Part="1" 167 | AR Path="/56533507/5653612A/562B323A" Ref="U1157" Part="1" 168 | F 0 "U1157" H 2550 1250 60 0000 C CNN 169 | F 1 "74HC02" H 2600 1150 60 0001 C CNN 170 | F 2 "" H 2550 1200 60 0000 C CNN 171 | F 3 "" H 2550 1200 60 0000 C CNN 172 | F 4 "1" H 2800 1200 60 0000 C CIN "Initial" 173 | 1 2550 1200 174 | 1 0 0 -1 175 | $EndComp 176 | $Comp 177 | L 74HC02 U1101 178 | U 2 1 562B333D 179 | P 2550 3300 180 | AR Path="/562BF6E2/562C1A68/562B333D" Ref="U1101" Part="2" 181 | AR Path="/562BF6E2/562C361B/562B333D" Ref="U1103" Part="2" 182 | AR Path="/562BF6E2/562C5332/562B333D" Ref="U1105" Part="2" 183 | AR Path="/562BF6E2/562C5346/562B333D" Ref="U1106" Part="2" 184 | AR Path="/562BF6E2/562C8636/562B333D" Ref="U1108" Part="2" 185 | AR Path="/562BF6E2/562C864A/562B333D" Ref="U1110" Part="2" 186 | AR Path="/562BF6E2/562C865E/562B333D" Ref="U1111" Part="2" 187 | AR Path="/562BF6E2/562C8672/562B333D" Ref="U1113" Part="2" 188 | AR Path="/562BF6E2/562CCCD6/562B333D" Ref="U1115" Part="2" 189 | AR Path="/562BF6E2/562CCCEA/562B333D" Ref="U1116" Part="2" 190 | AR Path="/562BF6E2/562CCCFE/562B333D" Ref="U1118" Part="2" 191 | AR Path="/562BF6E2/562CCD12/562B333D" Ref="U1120" Part="2" 192 | AR Path="/562BF6E2/562CCD26/562B333D" Ref="U1121" Part="2" 193 | AR Path="/562BF6E2/562CCD3A/562B333D" Ref="U1123" Part="2" 194 | AR Path="/562BF6E2/562CCD4E/562B333D" Ref="U1125" Part="2" 195 | AR Path="/562BF6E2/562CCD62/562B333D" Ref="U1126" Part="2" 196 | AR Path="/56533507/56535F1F/562B333D" Ref="U1132" Part="2" 197 | AR Path="/56533507/56535F42/562B333D" Ref="U1134" Part="2" 198 | AR Path="/56533507/56535F65/562B333D" Ref="U1136" Part="2" 199 | AR Path="/56533507/56535F88/562B333D" Ref="U1137" Part="2" 200 | AR Path="/56533507/56535FAB/562B333D" Ref="U1139" Part="2" 201 | AR Path="/56533507/56535FCE/562B333D" Ref="U1141" Part="2" 202 | AR Path="/56533507/56535FF1/562B333D" Ref="U1142" Part="2" 203 | AR Path="/56533507/56536014/562B333D" Ref="U1144" Part="2" 204 | AR Path="/56533507/56536035/562B333D" Ref="U1146" Part="2" 205 | AR Path="/56533507/56536058/562B333D" Ref="U1147" Part="2" 206 | AR Path="/56533507/5653607B/562B333D" Ref="U1149" Part="2" 207 | AR Path="/56533507/5653609E/562B333D" Ref="U1151" Part="2" 208 | AR Path="/56533507/565360C1/562B333D" Ref="U1152" Part="2" 209 | AR Path="/56533507/565360E4/562B333D" Ref="U1154" Part="2" 210 | AR Path="/56533507/56536107/562B333D" Ref="U1156" Part="2" 211 | AR Path="/56533507/5653612A/562B333D" Ref="U1157" Part="2" 212 | F 0 "U1157" H 2550 3350 60 0000 C CNN 213 | F 1 "74HC02" H 2600 3250 60 0001 C CNN 214 | F 2 "" H 2550 3300 60 0000 C CNN 215 | F 3 "" H 2550 3300 60 0000 C CNN 216 | 2 2550 3300 217 | 1 0 0 -1 218 | $EndComp 219 | $Comp 220 | L 74HC02 U1101 221 | U 3 1 562B3400 222 | P 4000 1900 223 | AR Path="/562BF6E2/562C1A68/562B3400" Ref="U1101" Part="3" 224 | AR Path="/562BF6E2/562C361B/562B3400" Ref="U1103" Part="3" 225 | AR Path="/562BF6E2/562C5332/562B3400" Ref="U1105" Part="3" 226 | AR Path="/562BF6E2/562C5346/562B3400" Ref="U1106" Part="3" 227 | AR Path="/562BF6E2/562C8636/562B3400" Ref="U1108" Part="3" 228 | AR Path="/562BF6E2/562C864A/562B3400" Ref="U1110" Part="3" 229 | AR Path="/562BF6E2/562C865E/562B3400" Ref="U1111" Part="3" 230 | AR Path="/562BF6E2/562C8672/562B3400" Ref="U1113" Part="3" 231 | AR Path="/562BF6E2/562CCCD6/562B3400" Ref="U1115" Part="3" 232 | AR Path="/562BF6E2/562CCCEA/562B3400" Ref="U1116" Part="3" 233 | AR Path="/562BF6E2/562CCCFE/562B3400" Ref="U1118" Part="3" 234 | AR Path="/562BF6E2/562CCD12/562B3400" Ref="U1120" Part="3" 235 | AR Path="/562BF6E2/562CCD26/562B3400" Ref="U1121" Part="3" 236 | AR Path="/562BF6E2/562CCD3A/562B3400" Ref="U1123" Part="3" 237 | AR Path="/562BF6E2/562CCD4E/562B3400" Ref="U1125" Part="3" 238 | AR Path="/562BF6E2/562CCD62/562B3400" Ref="U1126" Part="3" 239 | AR Path="/56533507/56535F1F/562B3400" Ref="U1132" Part="3" 240 | AR Path="/56533507/56535F42/562B3400" Ref="U1134" Part="3" 241 | AR Path="/56533507/56535F65/562B3400" Ref="U1136" Part="3" 242 | AR Path="/56533507/56535F88/562B3400" Ref="U1137" Part="3" 243 | AR Path="/56533507/56535FAB/562B3400" Ref="U1139" Part="3" 244 | AR Path="/56533507/56535FCE/562B3400" Ref="U1141" Part="3" 245 | AR Path="/56533507/56535FF1/562B3400" Ref="U1142" Part="3" 246 | AR Path="/56533507/56536014/562B3400" Ref="U1144" Part="3" 247 | AR Path="/56533507/56536035/562B3400" Ref="U1146" Part="3" 248 | AR Path="/56533507/56536058/562B3400" Ref="U1147" Part="3" 249 | AR Path="/56533507/5653607B/562B3400" Ref="U1149" Part="3" 250 | AR Path="/56533507/5653609E/562B3400" Ref="U1151" Part="3" 251 | AR Path="/56533507/565360C1/562B3400" Ref="U1152" Part="3" 252 | AR Path="/56533507/565360E4/562B3400" Ref="U1154" Part="3" 253 | AR Path="/56533507/56536107/562B3400" Ref="U1156" Part="3" 254 | AR Path="/56533507/5653612A/562B3400" Ref="U1157" Part="3" 255 | F 0 "U1157" H 4000 1950 60 0000 C CNN 256 | F 1 "74HC02" H 4050 1850 60 0001 C CNN 257 | F 2 "" H 4000 1900 60 0000 C CNN 258 | F 3 "" H 4000 1900 60 0000 C CNN 259 | 3 4000 1900 260 | 1 0 0 -1 261 | $EndComp 262 | $Comp 263 | L 74HC02 U1101 264 | U 4 1 562B34AD 265 | P 4000 2600 266 | AR Path="/562BF6E2/562C1A68/562B34AD" Ref="U1101" Part="4" 267 | AR Path="/562BF6E2/562C361B/562B34AD" Ref="U1103" Part="4" 268 | AR Path="/562BF6E2/562C5332/562B34AD" Ref="U1105" Part="4" 269 | AR Path="/562BF6E2/562C5346/562B34AD" Ref="U1106" Part="4" 270 | AR Path="/562BF6E2/562C8636/562B34AD" Ref="U1108" Part="4" 271 | AR Path="/562BF6E2/562C864A/562B34AD" Ref="U1110" Part="4" 272 | AR Path="/562BF6E2/562C865E/562B34AD" Ref="U1111" Part="4" 273 | AR Path="/562BF6E2/562C8672/562B34AD" Ref="U1113" Part="4" 274 | AR Path="/562BF6E2/562CCCD6/562B34AD" Ref="U1115" Part="4" 275 | AR Path="/562BF6E2/562CCCEA/562B34AD" Ref="U1116" Part="4" 276 | AR Path="/562BF6E2/562CCCFE/562B34AD" Ref="U1118" Part="4" 277 | AR Path="/562BF6E2/562CCD12/562B34AD" Ref="U1120" Part="4" 278 | AR Path="/562BF6E2/562CCD26/562B34AD" Ref="U1121" Part="4" 279 | AR Path="/562BF6E2/562CCD3A/562B34AD" Ref="U1123" Part="4" 280 | AR Path="/562BF6E2/562CCD4E/562B34AD" Ref="U1125" Part="4" 281 | AR Path="/562BF6E2/562CCD62/562B34AD" Ref="U1126" Part="4" 282 | AR Path="/56533507/56535F1F/562B34AD" Ref="U1132" Part="4" 283 | AR Path="/56533507/56535F42/562B34AD" Ref="U1134" Part="4" 284 | AR Path="/56533507/56535F65/562B34AD" Ref="U1136" Part="4" 285 | AR Path="/56533507/56535F88/562B34AD" Ref="U1137" Part="4" 286 | AR Path="/56533507/56535FAB/562B34AD" Ref="U1139" Part="4" 287 | AR Path="/56533507/56535FCE/562B34AD" Ref="U1141" Part="4" 288 | AR Path="/56533507/56535FF1/562B34AD" Ref="U1142" Part="4" 289 | AR Path="/56533507/56536014/562B34AD" Ref="U1144" Part="4" 290 | AR Path="/56533507/56536035/562B34AD" Ref="U1146" Part="4" 291 | AR Path="/56533507/56536058/562B34AD" Ref="U1147" Part="4" 292 | AR Path="/56533507/5653607B/562B34AD" Ref="U1149" Part="4" 293 | AR Path="/56533507/5653609E/562B34AD" Ref="U1151" Part="4" 294 | AR Path="/56533507/565360C1/562B34AD" Ref="U1152" Part="4" 295 | AR Path="/56533507/565360E4/562B34AD" Ref="U1154" Part="4" 296 | AR Path="/56533507/56536107/562B34AD" Ref="U1156" Part="4" 297 | AR Path="/56533507/5653612A/562B34AD" Ref="U1157" Part="4" 298 | F 0 "U1157" H 4000 2650 60 0000 C CNN 299 | F 1 "74HC02" H 4050 2550 60 0001 C CNN 300 | F 2 "" H 4000 2600 60 0000 C CNN 301 | F 3 "" H 4000 2600 60 0000 C CNN 302 | F 4 "1" H 4250 2600 60 0000 C CIN "Initial" 303 | 4 4000 2600 304 | 1 0 0 -1 305 | $EndComp 306 | Wire Wire Line 307 | 3150 1650 3150 2150 308 | Wire Wire Line 309 | 3150 1650 1950 1450 310 | Wire Wire Line 311 | 1950 1450 1950 1300 312 | Wire Wire Line 313 | 3150 1200 3150 1450 314 | Wire Wire Line 315 | 3150 1450 1950 1650 316 | Wire Wire Line 317 | 1950 1650 1950 1750 318 | Wire Wire Line 319 | 3150 2350 3150 2850 320 | Wire Wire Line 321 | 3150 2350 1950 2150 322 | Wire Wire Line 323 | 1950 2150 1950 2050 324 | Wire Wire Line 325 | 3150 2150 1950 2350 326 | Wire Wire Line 327 | 1950 2350 1950 2450 328 | Connection ~ 3150 1900 329 | Wire Wire Line 330 | 3150 2850 1950 3050 331 | Wire Wire Line 332 | 1950 3050 1950 3200 333 | Connection ~ 3150 2600 334 | Wire Wire Line 335 | 3150 3300 3150 3050 336 | Wire Wire Line 337 | 3150 3050 1950 2850 338 | Wire Wire Line 339 | 1950 2850 1950 2750 340 | Wire Wire Line 341 | 1700 1900 1950 1900 342 | Wire Wire Line 343 | 1850 1900 1850 2600 344 | Wire Wire Line 345 | 1850 2600 1950 2600 346 | Wire Wire Line 347 | 4600 2350 4600 3600 348 | Wire Wire Line 349 | 4600 2350 3400 2150 350 | Wire Wire Line 351 | 3400 2150 3400 2000 352 | Wire Wire Line 353 | 4600 900 4600 2150 354 | Wire Wire Line 355 | 4600 2150 3400 2350 356 | Wire Wire Line 357 | 3400 2350 3400 2500 358 | Wire Wire Line 359 | 3400 2700 3150 2700 360 | Connection ~ 3150 2700 361 | Wire Wire Line 362 | 3400 1800 3150 1800 363 | Connection ~ 3150 1800 364 | Wire Wire Line 365 | 4600 900 1950 900 366 | Wire Wire Line 367 | 1950 900 1950 1100 368 | Connection ~ 4600 1900 369 | Wire Wire Line 370 | 4600 3600 1950 3600 371 | Wire Wire Line 372 | 1950 3600 1950 3400 373 | Connection ~ 4600 2600 374 | Wire Wire Line 375 | 4600 2600 4800 2600 376 | Wire Wire Line 377 | 4600 1900 4800 1900 378 | Wire Wire Line 379 | 3150 1200 4800 1200 380 | Wire Wire Line 381 | 3150 3300 4800 3300 382 | Connection ~ 1850 1900 383 | Text HLabel 1700 1900 0 60 Input ~ 0 384 | F 385 | Text HLabel 4800 2600 2 60 Output ~ 0 386 | FS 387 | Text HLabel 4800 1900 2 60 Output ~ 0 388 | FS/ 389 | Text HLabel 4800 1200 2 60 Output ~ 0 390 | A 391 | Text HLabel 4800 3300 2 60 Output ~ 0 392 | B 393 | $EndSCHEMATC 394 | -------------------------------------------------------------------------------- /timer/a02_1.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:agc_kicad_components 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | EELAYER 26 0 32 | EELAYER END 33 | $Descr A2 23386 16535 34 | encoding utf-8 35 | Sheet 2 7 36 | Title "" 37 | Date "" 38 | Rev "" 39 | Comp "" 40 | Comment1 "" 41 | Comment2 "" 42 | Comment3 "" 43 | Comment4 "" 44 | $EndDescr 45 | $Comp 46 | L 74HC04 U2103 47 | U 2 1 561ADEF1 48 | P 3200 3450 49 | F 0 "U2103" H 3200 3500 60 0000 C CNN 50 | F 1 "74HC04" H 3200 3200 60 0001 C CNN 51 | F 2 "" H 3200 3450 60 0000 C CNN 52 | F 3 "" H 3200 3450 60 0000 C CNN 53 | 2 3200 3450 54 | 1 0 0 -1 55 | $EndComp 56 | $Comp 57 | L 74HC02 U2104 58 | U 1 1 561AE177 59 | P 6900 1100 60 | F 0 "U2104" H 6900 1150 60 0000 C CNN 61 | F 1 "74HC02" H 6950 1050 60 0001 C CNN 62 | F 2 "" H 6900 1100 60 0000 C CNN 63 | F 3 "" H 6900 1100 60 0000 C CNN 64 | 1 6900 1100 65 | 1 0 0 -1 66 | $EndComp 67 | $Comp 68 | L 74HC04 U2103 69 | U 3 1 561AE24E 70 | P 8300 1100 71 | F 0 "U2103" H 8300 1150 60 0000 C CNN 72 | F 1 "74HC04" H 8300 850 60 0001 C CNN 73 | F 2 "" H 8300 1100 60 0000 C CNN 74 | F 3 "" H 8300 1100 60 0000 C CNN 75 | 3 8300 1100 76 | 1 0 0 -1 77 | $EndComp 78 | $Comp 79 | L 74HC04 U2103 80 | U 4 1 561AE65B 81 | P 5000 5200 82 | F 0 "U2103" H 5000 5250 60 0000 C CNN 83 | F 1 "74HC04" H 5000 4950 60 0001 C CNN 84 | F 2 "" H 5000 5200 60 0000 C CNN 85 | F 3 "" H 5000 5200 60 0000 C CNN 86 | F 4 "1" H 5250 5200 60 0000 C CIN "Initial" 87 | 4 5000 5200 88 | 1 0 0 -1 89 | $EndComp 90 | $Comp 91 | L 74HC04 U2103 92 | U 5 1 561AE708 93 | P 6250 5200 94 | F 0 "U2103" H 6250 5250 60 0000 C CNN 95 | F 1 "74HC04" H 6250 4950 60 0001 C CNN 96 | F 2 "" H 6250 5200 60 0000 C CNN 97 | F 3 "" H 6250 5200 60 0000 C CNN 98 | 5 6250 5200 99 | 1 0 0 -1 100 | $EndComp 101 | $Comp 102 | L 74HC04 U2103 103 | U 6 1 561AE781 104 | P 7700 5200 105 | F 0 "U2103" H 7700 5250 60 0000 C CNN 106 | F 1 "74HC04" H 7700 4950 60 0001 C CNN 107 | F 2 "" H 7700 5200 60 0000 C CNN 108 | F 3 "" H 7700 5200 60 0000 C CNN 109 | F 4 "1" H 7950 5200 60 0000 C CIN "Initial" 110 | 6 7700 5200 111 | 1 0 0 -1 112 | $EndComp 113 | $Comp 114 | L 74HC04 U2105 115 | U 1 1 561AF486 116 | P 8200 3850 117 | F 0 "U2105" H 8200 3900 60 0000 C CNN 118 | F 1 "74HC04" H 8200 3600 60 0001 C CNN 119 | F 2 "" H 8200 3850 60 0000 C CNN 120 | F 3 "" H 8200 3850 60 0000 C CNN 121 | 1 8200 3850 122 | 1 0 0 -1 123 | $EndComp 124 | $Comp 125 | L 74HC04 U2105 126 | U 2 1 561AF566 127 | P 9650 3850 128 | F 0 "U2105" H 9650 3900 60 0000 C CNN 129 | F 1 "74HC04" H 9650 3600 60 0001 C CNN 130 | F 2 "" H 9650 3850 60 0000 C CNN 131 | F 3 "" H 9650 3850 60 0000 C CNN 132 | 2 9650 3850 133 | 1 0 0 -1 134 | $EndComp 135 | $Comp 136 | L 74HC04 U2105 137 | U 3 1 561AF5FF 138 | P 9650 4350 139 | F 0 "U2105" H 9650 4400 60 0000 C CNN 140 | F 1 "74HC04" H 9650 4100 60 0001 C CNN 141 | F 2 "" H 9650 4350 60 0000 C CNN 142 | F 3 "" H 9650 4350 60 0000 C CNN 143 | 3 9650 4350 144 | 1 0 0 -1 145 | $EndComp 146 | $Comp 147 | L 74HC04 U2108 148 | U 6 1 561B46BF 149 | P 5250 4100 150 | F 0 "U2108" H 5250 4150 60 0000 C CNN 151 | F 1 "74HC04" H 5250 3850 60 0001 C CNN 152 | F 2 "" H 5250 4100 60 0000 C CNN 153 | F 3 "" H 5250 4100 60 0000 C CNN 154 | 6 5250 4100 155 | 1 0 0 -1 156 | $EndComp 157 | $Comp 158 | L 74HC04 U2108 159 | U 1 1 561B437A 160 | P 9900 2200 161 | F 0 "U2108" H 9900 2250 60 0000 C CNN 162 | F 1 "74HC04" H 9900 1950 60 0001 C CNN 163 | F 2 "" H 9900 2200 60 0000 C CNN 164 | F 3 "" H 9900 2200 60 0000 C CNN 165 | F 4 "1" H 10150 2200 60 0000 C CIN "Initial" 166 | 1 9900 2200 167 | 1 0 0 -1 168 | $EndComp 169 | $Comp 170 | L 74HC04 U2108 171 | U 3 1 561B449B 172 | P 9900 2800 173 | F 0 "U2108" H 9900 2850 60 0000 C CNN 174 | F 1 "74HC04" H 9900 2550 60 0001 C CNN 175 | F 2 "" H 9900 2800 60 0000 C CNN 176 | F 3 "" H 9900 2800 60 0000 C CNN 177 | F 4 "1" H 10150 2800 60 0000 C CIN "Initial" 178 | 3 9900 2800 179 | 1 0 0 -1 180 | $EndComp 181 | $Comp 182 | L 74HC04 U2108 183 | U 4 1 561B4C96 184 | P 11300 2800 185 | F 0 "U2108" H 11300 2850 60 0000 C CNN 186 | F 1 "74HC04" H 11300 2550 60 0001 C CNN 187 | F 2 "" H 11300 2800 60 0000 C CNN 188 | F 3 "" H 11300 2800 60 0000 C CNN 189 | 4 11300 2800 190 | 1 0 0 -1 191 | $EndComp 192 | $Comp 193 | L 74HC04 U2108 194 | U 2 1 561B4DCD 195 | P 12750 2100 196 | F 0 "U2108" H 12750 2150 60 0000 C CNN 197 | F 1 "74HC04" H 12750 1850 60 0001 C CNN 198 | F 2 "" H 12750 2100 60 0000 C CNN 199 | F 3 "" H 12750 2100 60 0000 C CNN 200 | 2 12750 2100 201 | 1 0 0 -1 202 | $EndComp 203 | $Comp 204 | L 74HC04 U2108 205 | U 5 1 561B4E9C 206 | P 12750 2800 207 | F 0 "U2108" H 12750 2850 60 0000 C CNN 208 | F 1 "74HC04" H 12750 2550 60 0001 C CNN 209 | F 2 "" H 12750 2800 60 0000 C CNN 210 | F 3 "" H 12750 2800 60 0000 C CNN 211 | 5 12750 2800 212 | 1 0 0 -1 213 | $EndComp 214 | $Comp 215 | L 74HC02 U2104 216 | U 2 1 561CF871 217 | P 11300 2100 218 | F 0 "U2104" H 11300 2150 60 0000 C CNN 219 | F 1 "74HC02" H 11350 2050 60 0001 C CNN 220 | F 2 "" H 11300 2100 60 0000 C CNN 221 | F 3 "" H 11300 2100 60 0000 C CNN 222 | 2 11300 2100 223 | 1 0 0 -1 224 | $EndComp 225 | $Comp 226 | L 74HC02 U2109 227 | U 1 1 56216AA9 228 | P 5200 6250 229 | F 0 "U2109" H 5200 6300 60 0000 C CNN 230 | F 1 "74HC02" H 5250 6200 60 0001 C CNN 231 | F 2 "" H 5200 6250 60 0000 C CNN 232 | F 3 "" H 5200 6250 60 0000 C CNN 233 | 1 5200 6250 234 | 1 0 0 -1 235 | $EndComp 236 | $Comp 237 | L 74HC02 U2109 238 | U 2 1 56216B74 239 | P 6500 6250 240 | F 0 "U2109" H 6500 6300 60 0000 C CNN 241 | F 1 "74HC02" H 6550 6200 60 0001 C CNN 242 | F 2 "" H 6500 6250 60 0000 C CNN 243 | F 3 "" H 6500 6250 60 0000 C CNN 244 | 2 6500 6250 245 | 1 0 0 -1 246 | $EndComp 247 | $Comp 248 | L 74HC02 U2109 249 | U 3 1 56219E7B 250 | P 7800 6250 251 | F 0 "U2109" H 7800 6300 60 0000 C CNN 252 | F 1 "74HC02" H 7850 6200 60 0001 C CNN 253 | F 2 "" H 7800 6250 60 0000 C CNN 254 | F 3 "" H 7800 6250 60 0000 C CNN 255 | 3 7800 6250 256 | 1 0 0 -1 257 | $EndComp 258 | $Comp 259 | L 74HC02 U2109 260 | U 4 1 56219F4C 261 | P 9100 6250 262 | F 0 "U2109" H 9100 6300 60 0000 C CNN 263 | F 1 "74HC02" H 9150 6200 60 0001 C CNN 264 | F 2 "" H 9100 6250 60 0000 C CNN 265 | F 3 "" H 9100 6250 60 0000 C CNN 266 | F 4 "1" H 9350 6250 60 0000 C CIN "Initial" 267 | 4 9100 6250 268 | 1 0 0 -1 269 | $EndComp 270 | $Comp 271 | L 74HC04 U2105 272 | U 5 1 56241968 273 | P 12250 6250 274 | F 0 "U2105" H 12250 6300 60 0000 C CNN 275 | F 1 "74HC04" H 12250 6000 60 0001 C CNN 276 | F 2 "" H 12250 6250 60 0000 C CNN 277 | F 3 "" H 12250 6250 60 0000 C CNN 278 | F 4 "1" H 12500 6250 60 0000 C CIN "Initial" 279 | 5 12250 6250 280 | 1 0 0 -1 281 | $EndComp 282 | $Comp 283 | L 74HC04 U2105 284 | U 6 1 56241E95 285 | P 7800 6950 286 | F 0 "U2105" H 7800 7000 60 0000 C CNN 287 | F 1 "74HC04" H 7800 6700 60 0001 C CNN 288 | F 2 "" H 7800 6950 60 0000 C CNN 289 | F 3 "" H 7800 6950 60 0000 C CNN 290 | F 4 "1" H 8050 6950 60 0000 C CIN "Initial" 291 | 6 7800 6950 292 | 1 0 0 -1 293 | $EndComp 294 | Text Label 5800 6250 0 60 ~ 0 295 | ovfstb_r1 296 | Text Label 7100 6250 0 60 ~ 0 297 | ovfstb_r2 298 | Text Label 8400 6250 0 60 ~ 0 299 | ovfstb_r3 300 | Text Label 9800 6250 0 60 ~ 0 301 | ovfstb_r4 302 | $Comp 303 | L 74HC04 U2105 304 | U 4 1 562418C1 305 | P 10700 6250 306 | F 0 "U2105" H 10700 6300 60 0000 C CNN 307 | F 1 "74HC04" H 10700 6000 60 0001 C CNN 308 | F 2 "" H 10700 6250 60 0000 C CNN 309 | F 3 "" H 10700 6250 60 0000 C CNN 310 | 4 10700 6250 311 | 1 0 0 -1 312 | $EndComp 313 | Text Label 11300 6250 0 60 ~ 0 314 | ovfstb_r5 315 | Text Label 12900 6250 0 60 ~ 0 316 | ovfstb_r6 317 | Text Label 11900 2100 0 60 ~ 0 318 | oddset 319 | $Comp 320 | L 74HC04 U2110 321 | U 1 1 561CD62B 322 | P 8600 4800 323 | F 0 "U2110" H 8600 4850 60 0000 C CNN 324 | F 1 "74HC04" H 8600 4550 60 0001 C CNN 325 | F 2 "" H 8600 4800 60 0000 C CNN 326 | F 3 "" H 8600 4800 60 0000 C CNN 327 | F 4 "1" H 8850 4800 60 0000 C CIN "Initial" 328 | 1 8600 4800 329 | 1 0 0 -1 330 | $EndComp 331 | Text Notes 9000 4550 2 60 ~ 0 332 | Moved from A24-2 333 | $Comp 334 | L 74HC04 U2110 335 | U 2 1 561D58A1 336 | P 11450 4050 337 | F 0 "U2110" H 11450 4100 60 0000 C CNN 338 | F 1 "74HC04" H 11450 3800 60 0001 C CNN 339 | F 2 "" H 11450 4050 60 0000 C CNN 340 | F 3 "" H 11450 4050 60 0000 C CNN 341 | 2 11450 4050 342 | 1 0 0 -1 343 | $EndComp 344 | Text HLabel 2950 2200 0 60 Input ~ 0 345 | CLOCK 346 | Text HLabel 10500 2000 0 60 Input ~ 0 347 | STOP 348 | Text HLabel 3850 3750 2 60 Output ~ 0 349 | PHS2 350 | Text HLabel 3850 3450 2 60 Output ~ 0 351 | PHS2/ 352 | Text HLabel 7800 750 2 60 Output ~ 0 353 | PHS4 354 | Text HLabel 9000 1100 2 60 Output ~ 0 355 | PHS4/ 356 | Text HLabel 9450 4800 2 60 Output ~ 0 357 | PHS3/ 358 | Text HLabel 7250 4100 2 60 Output ~ 0 359 | RT/ 360 | Text HLabel 8600 5450 2 60 Output ~ 0 361 | CT 362 | Text HLabel 8600 5200 2 60 Output ~ 0 363 | CT/ 364 | Text HLabel 10350 3550 2 60 Output ~ 0 365 | WT 366 | Text HLabel 10350 3850 2 60 Output ~ 0 367 | WT/ 368 | Text HLabel 10300 4350 2 60 Output ~ 0 369 | TT/ 370 | Text Label 12150 2800 2 60 ~ 0 371 | evnset 372 | Text HLabel 10600 2400 2 60 Output ~ 0 373 | RINGA/ 374 | Text HLabel 10600 2600 2 60 Output ~ 0 375 | RINGB/ 376 | Text HLabel 13400 2100 2 60 Output ~ 0 377 | ODDSET/ 378 | Text HLabel 13400 2800 2 60 Output ~ 0 379 | EVNSET/ 380 | Text HLabel 8500 6950 2 60 Output ~ 0 381 | OVFSTB/ 382 | Text HLabel 12200 3550 2 60 Output ~ 0 383 | MONWT 384 | Text HLabel 12200 4550 2 60 Output ~ 0 385 | Q2A 386 | Text HLabel 12200 4050 2 60 Output ~ 0 387 | CLK 388 | $Comp 389 | L 74HC04 U2110 390 | U 5 1 56249542 391 | P 6550 4100 392 | F 0 "U2110" H 6550 4150 60 0000 C CNN 393 | F 1 "74HC04" H 6550 3850 60 0001 C CNN 394 | F 2 "" H 6550 4100 60 0000 C CNN 395 | F 3 "" H 6550 4100 60 0000 C CNN 396 | 5 6550 4100 397 | 1 0 0 -1 398 | $EndComp 399 | Text HLabel 7250 4350 2 60 Output ~ 0 400 | RT 401 | Text Notes 6900 3850 2 60 ~ 0 402 | Moved from A02-3 403 | $Sheet 404 | S 3100 2050 950 750 405 | U 5625169D 406 | F0 "cdiv_1" 60 407 | F1 "clock_divider.sch" 60 408 | F2 "F" I L 3100 2200 60 409 | F3 "D" O R 4050 2700 60 410 | F4 "B" O R 4050 2500 60 411 | F5 "A" O R 4050 2400 60 412 | F6 "C" O R 4050 2600 60 413 | F7 "FS/" O R 4050 2250 60 414 | F8 "FS" O R 4050 2150 60 415 | $EndSheet 416 | $Comp 417 | L 74HC04 U2103 418 | U 1 1 561ADDE0 419 | P 5200 2000 420 | F 0 "U2103" H 5200 2050 60 0000 C CNN 421 | F 1 "74HC04" H 5200 1750 60 0001 C CNN 422 | F 2 "" H 5200 2000 60 0000 C CNN 423 | F 3 "" H 5200 2000 60 0000 C CNN 424 | F 4 "1" H 5450 2000 60 0000 C CIN "Initial" 425 | 1 5200 2000 426 | 1 0 0 -1 427 | $EndComp 428 | NoConn ~ 4100 2150 429 | $Sheet 430 | S 7900 1850 950 750 431 | U 5627FC18 432 | F0 "cdiv_2" 60 433 | F1 "clock_divider.sch" 60 434 | F2 "F" I L 7900 2000 60 435 | F3 "D" O R 8850 2500 60 436 | F4 "B" O R 8850 2300 60 437 | F5 "A" O R 8850 2200 60 438 | F6 "C" O R 8850 2400 60 439 | F7 "FS/" O R 8850 2050 60 440 | F8 "FS" O R 8850 1950 60 441 | $EndSheet 442 | NoConn ~ 8950 1950 443 | NoConn ~ 8950 2050 444 | NoConn ~ 8950 2200 445 | NoConn ~ 8950 2300 446 | Wire Wire Line 447 | 2450 3150 4200 3150 448 | Wire Wire Line 449 | 2450 3150 2450 3750 450 | Connection ~ 2450 3450 451 | Wire Wire Line 452 | 3800 3450 3850 3450 453 | Wire Wire Line 454 | 7500 1100 7700 1100 455 | Wire Wire Line 456 | 4050 2400 5950 2400 457 | Wire Wire Line 458 | 6850 5200 7100 5200 459 | Wire Wire Line 460 | 7000 4800 7000 5450 461 | Wire Wire Line 462 | 7000 5450 8600 5450 463 | Connection ~ 7000 5200 464 | Wire Wire Line 465 | 8900 1100 9000 1100 466 | Wire Wire Line 467 | 7800 750 7650 750 468 | Wire Wire Line 469 | 7650 750 7650 1100 470 | Connection ~ 7650 1100 471 | Wire Wire Line 472 | 8950 3550 8950 4350 473 | Wire Wire Line 474 | 10500 2200 10700 2200 475 | Wire Wire Line 476 | 11900 2100 12150 2100 477 | Wire Wire Line 478 | 10500 2800 10700 2800 479 | Wire Wire Line 480 | 11900 2800 12150 2800 481 | Wire Wire Line 482 | 10500 2000 10700 2000 483 | Wire Wire Line 484 | 10600 2400 10550 2400 485 | Wire Wire Line 486 | 10550 2400 10550 2200 487 | Connection ~ 10550 2200 488 | Wire Wire Line 489 | 10550 2800 10550 2600 490 | Wire Wire Line 491 | 10550 2600 10600 2600 492 | Connection ~ 10550 2800 493 | Wire Wire Line 494 | 5800 6250 5800 6550 495 | Wire Wire Line 496 | 5800 6350 5900 6350 497 | Wire Wire Line 498 | 7100 6250 7100 6950 499 | Wire Wire Line 500 | 7100 6350 7200 6350 501 | Wire Wire Line 502 | 8400 6250 8400 6150 503 | Wire Wire Line 504 | 8400 6150 8500 6150 505 | Wire Wire Line 506 | 7100 6750 4600 6750 507 | Wire Wire Line 508 | 4600 6750 4600 6350 509 | Connection ~ 7100 6350 510 | Wire Wire Line 511 | 7150 5950 9750 5950 512 | Wire Wire Line 513 | 5800 6550 8500 6550 514 | Wire Wire Line 515 | 8500 6550 8500 6350 516 | Connection ~ 5800 6350 517 | Connection ~ 7100 6750 518 | Wire Wire Line 519 | 8400 6950 8500 6950 520 | Wire Wire Line 521 | 9700 6250 10100 6250 522 | Wire Wire Line 523 | 5850 5850 12900 5850 524 | Wire Wire Line 525 | 8400 5200 8400 5600 526 | Wire Wire Line 527 | 8400 5600 4600 5600 528 | Wire Wire Line 529 | 4600 5600 4600 6150 530 | Wire Wire Line 531 | 11300 6250 11650 6250 532 | Wire Wire Line 533 | 9200 4800 9450 4800 534 | Wire Wire Line 535 | 10250 3850 10350 3850 536 | Wire Wire Line 537 | 10700 3550 10700 4550 538 | Connection ~ 10700 4050 539 | Wire Wire Line 540 | 10300 4050 10850 4050 541 | Wire Wire Line 542 | 8300 5200 8600 5200 543 | Wire Wire Line 544 | 8000 4800 7000 4800 545 | Wire Wire Line 546 | 2450 3750 3850 3750 547 | Wire Wire Line 548 | 2950 2200 3100 2200 549 | Wire Wire Line 550 | 4050 2500 4350 2500 551 | Connection ~ 4600 2400 552 | Wire Wire Line 553 | 4050 2600 4200 2600 554 | Wire Wire Line 555 | 4200 2600 4200 3150 556 | Wire Wire Line 557 | 4050 2150 4100 2150 558 | Wire Wire Line 559 | 8850 1950 8950 1950 560 | Wire Wire Line 561 | 8850 2050 8950 2050 562 | Wire Wire Line 563 | 8850 2200 8950 2200 564 | Wire Wire Line 565 | 8850 2300 8950 2300 566 | Wire Wire Line 567 | 5950 2400 5950 1200 568 | Wire Wire Line 569 | 5950 1200 6300 1200 570 | Wire Wire Line 571 | 8850 2500 9200 2500 572 | Wire Wire Line 573 | 9200 2500 9200 2200 574 | Wire Wire Line 575 | 9200 2200 9300 2200 576 | Wire Wire Line 577 | 8850 2400 9150 2400 578 | Wire Wire Line 579 | 9150 2400 9150 2800 580 | Wire Wire Line 581 | 9150 2800 9300 2800 582 | Wire Wire Line 583 | 6150 1000 6150 2000 584 | Wire Wire Line 585 | 6150 1000 6300 1000 586 | Connection ~ 6150 2000 587 | Wire Wire Line 588 | 5800 2000 7900 2000 589 | Wire Wire Line 590 | 7400 2250 4050 2250 591 | Wire Wire Line 592 | 4350 2500 4350 5200 593 | Wire Wire Line 594 | 4350 5200 4400 5200 595 | Wire Wire Line 596 | 7400 2250 7400 3850 597 | Wire Wire Line 598 | 7400 3850 7600 3850 599 | Wire Wire Line 600 | 4050 2700 4500 2700 601 | Wire Wire Line 602 | 4500 2700 4500 2000 603 | Wire Wire Line 604 | 4500 2000 4600 2000 605 | Connection ~ 8400 5200 606 | Wire Wire Line 607 | 2600 3450 2450 3450 608 | Wire Wire Line 609 | 13400 2100 13350 2100 610 | Wire Wire Line 611 | 13400 2800 13350 2800 612 | Wire Wire Line 613 | 8800 3850 9050 3850 614 | Connection ~ 8950 3850 615 | Wire Wire Line 616 | 10250 4350 10300 4350 617 | Wire Wire Line 618 | 8950 4350 9050 4350 619 | Wire Wire Line 620 | 10350 3550 8950 3550 621 | Wire Wire Line 622 | 10700 4550 10850 4550 623 | Wire Wire Line 624 | 10700 3550 10850 3550 625 | Wire Wire Line 626 | 12200 4050 12050 4050 627 | Wire Wire Line 628 | 11750 4550 12200 4550 629 | Wire Wire Line 630 | 12200 3550 11750 3550 631 | Wire Wire Line 632 | 10300 3850 10300 4050 633 | Connection ~ 10300 3850 634 | Wire Wire Line 635 | 4600 2400 4600 4100 636 | Wire Wire Line 637 | 4600 4100 4650 4100 638 | Wire Wire Line 639 | 5850 4100 5950 4100 640 | Wire Wire Line 641 | 5900 4100 5900 4350 642 | Wire Wire Line 643 | 5900 4350 7250 4350 644 | Connection ~ 5900 4100 645 | Wire Wire Line 646 | 7250 4100 7150 4100 647 | Wire Wire Line 648 | 5650 5200 5600 5200 649 | Wire Wire Line 650 | 7100 6950 7200 6950 651 | Wire Wire Line 652 | 9750 5950 9750 6250 653 | Connection ~ 9750 6250 654 | Wire Wire Line 655 | 12850 6250 12900 6250 656 | Wire Wire Line 657 | 12900 6250 12900 5850 658 | Wire Wire Line 659 | 7150 5950 7150 6150 660 | Wire Wire Line 661 | 7150 6150 7200 6150 662 | Wire Wire Line 663 | 5850 5850 5850 6150 664 | Wire Wire Line 665 | 5850 6150 5900 6150 666 | $Comp 667 | L 74LVC06 U2148 668 | U 1 1 58883669 669 | P 11300 3550 670 | F 0 "U2148" H 11450 3700 60 0000 C CNN 671 | F 1 "74LVC06" H 11550 3450 60 0000 C CNN 672 | F 2 "" H 11300 3550 60 0000 C CNN 673 | F 3 "" H 11300 3550 60 0000 C CNN 674 | 1 11300 3550 675 | 1 0 0 -1 676 | $EndComp 677 | $Comp 678 | L 74LVC06 U2148 679 | U 2 1 5888662D 680 | P 11300 4550 681 | F 0 "U2148" H 11450 4700 60 0000 C CNN 682 | F 1 "74LVC06" H 11550 4450 60 0000 C CNN 683 | F 2 "" H 11300 4550 60 0000 C CNN 684 | F 3 "" H 11300 4550 60 0000 C CNN 685 | 2 11300 4550 686 | 1 0 0 -1 687 | $EndComp 688 | $EndSCHEMATC 689 | -------------------------------------------------------------------------------- /ch77_alarm_box/ch77_alarm_box.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:cmos4000 9 | LIBS:adc-dac 10 | LIBS:memory 11 | LIBS:xilinx 12 | LIBS:microcontrollers 13 | LIBS:dsp 14 | LIBS:microchip 15 | LIBS:analog_switches 16 | LIBS:motorola 17 | LIBS:texas 18 | LIBS:intel 19 | LIBS:audio 20 | LIBS:interface 21 | LIBS:digital-audio 22 | LIBS:philips 23 | LIBS:display 24 | LIBS:cypress 25 | LIBS:siliconi 26 | LIBS:opto 27 | LIBS:atmel 28 | LIBS:contrib 29 | LIBS:valves 30 | LIBS:agc_kicad_components 31 | EELAYER 26 0 32 | EELAYER END 33 | $Descr A4 11693 8268 34 | encoding utf-8 35 | Sheet 1 2 36 | Title "" 37 | Date "" 38 | Rev "" 39 | Comp "" 40 | Comment1 "" 41 | Comment2 "" 42 | Comment3 "" 43 | Comment4 "" 44 | $EndDescr 45 | $Sheet 46 | S 2150 1250 1200 3450 47 | U 58846789 48 | F0 "RestartMonitor" 60 49 | F1 "restart_monitor.sch" 60 50 | F2 "MWL01" I L 2150 1700 60 51 | F3 "MWL02" I L 2150 1800 60 52 | F4 "MWL03" I L 2150 1900 60 53 | F5 "MWL04" I L 2150 2000 60 54 | F6 "MWL05" I L 2150 2100 60 55 | F7 "MWL06" I L 2150 2200 60 56 | F8 "MT01" I L 2150 1350 60 57 | F9 "MWSG" I L 2150 2550 60 58 | F10 "MT12" I L 2150 1550 60 59 | F11 "MWCH" I L 2150 2450 60 60 | F12 "MRCH" I L 2150 2350 60 61 | F13 "MPAL/" I L 2150 2700 60 62 | F14 "MT05" I L 2150 1450 60 63 | F15 "MTCAL/" I L 2150 2800 60 64 | F16 "MRPTAL/" I L 2150 2900 60 65 | F17 "MWATCH/" I L 2150 3000 60 66 | F18 "MVFAIL/" I L 2150 3100 60 67 | F19 "MCTRAL/" I L 2150 3200 60 68 | F20 "MSCAFL/" I L 2150 3300 60 69 | F21 "MSCDBL/" I L 2150 3400 60 70 | F22 "MDT01" O R 3350 1350 60 71 | F23 "MDT02" O R 3350 1450 60 72 | F24 "MDT03" O R 3350 1550 60 73 | F25 "MDT04" O R 3350 1650 60 74 | F26 "MDT05" O R 3350 1750 60 75 | F27 "MDT06" O R 3350 1850 60 76 | F28 "MDT07" O R 3350 1950 60 77 | F29 "MDT08" O R 3350 2050 60 78 | F30 "MDT09" O R 3350 2150 60 79 | F31 "MDT10" O R 3350 2250 60 80 | F32 "MDT11" O R 3350 2350 60 81 | F33 "MDT12" O R 3350 2450 60 82 | F34 "MDT13" O R 3350 2550 60 83 | F35 "MDT14" O R 3350 2650 60 84 | F36 "MDT15" O R 3350 2750 60 85 | F37 "MDT16" O R 3350 2850 60 86 | F38 "MNHSBF" O R 3350 3000 60 87 | F39 "MNHNC" O R 3350 3100 60 88 | F40 "MNHRPT" O R 3350 3200 60 89 | F41 "MTCSAI" O R 3350 3300 60 90 | F42 "MSTRT" O R 3350 3400 60 91 | F43 "MSTP" O R 3350 3500 60 92 | F44 "MSBSTP" O R 3350 3600 60 93 | F45 "MRDCH" O R 3350 3700 60 94 | F46 "MLDCH" O R 3350 3800 60 95 | F47 "MONPAR" O R 3350 3900 60 96 | F48 "MONWBK" O R 3350 4000 60 97 | F49 "MLOAD" O R 3350 4100 60 98 | F50 "MREAD" O R 3350 4200 60 99 | F51 "NHALGA" O R 3350 4300 60 100 | F52 "DOSCAL" O R 3350 4400 60 101 | F53 "DBLTST" O R 3350 4500 60 102 | F54 "MAMU" O R 3350 4600 60 103 | $EndSheet 104 | Text GLabel 2050 1350 0 60 Input ~ 0 105 | MT01 106 | Wire Wire Line 107 | 2050 1350 2150 1350 108 | Text GLabel 2050 1450 0 60 Input ~ 0 109 | MT05 110 | Wire Wire Line 111 | 2050 1450 2150 1450 112 | Text GLabel 2050 1550 0 60 Input ~ 0 113 | MT12 114 | Wire Wire Line 115 | 2050 1550 2150 1550 116 | Text GLabel 2050 1700 0 60 Input ~ 0 117 | MWL01 118 | Wire Wire Line 119 | 2050 1700 2150 1700 120 | Text GLabel 2050 1800 0 60 Input ~ 0 121 | MWL02 122 | Wire Wire Line 123 | 2050 1800 2150 1800 124 | Text GLabel 2050 1900 0 60 Input ~ 0 125 | MWL03 126 | Wire Wire Line 127 | 2050 1900 2150 1900 128 | Text GLabel 2050 2000 0 60 Input ~ 0 129 | MWL04 130 | Wire Wire Line 131 | 2050 2000 2150 2000 132 | Text GLabel 2050 2100 0 60 Input ~ 0 133 | MWL05 134 | Wire Wire Line 135 | 2050 2100 2150 2100 136 | Text GLabel 2050 2200 0 60 Input ~ 0 137 | MWL06 138 | Wire Wire Line 139 | 2050 2200 2150 2200 140 | Text GLabel 2050 2350 0 60 Input ~ 0 141 | MRCH 142 | Wire Wire Line 143 | 2050 2350 2150 2350 144 | Text GLabel 2050 2450 0 60 Input ~ 0 145 | MWCH 146 | Wire Wire Line 147 | 2050 2450 2150 2450 148 | Text GLabel 2050 2550 0 60 Input ~ 0 149 | MWSG 150 | Wire Wire Line 151 | 2050 2550 2150 2550 152 | Text GLabel 2050 2700 0 60 Input ~ 0 153 | MPAL/ 154 | Wire Wire Line 155 | 2050 2700 2150 2700 156 | Text GLabel 2050 2800 0 60 Input ~ 0 157 | MTCAL/ 158 | Wire Wire Line 159 | 2050 2800 2150 2800 160 | Text GLabel 2050 2900 0 60 Input ~ 0 161 | MRPTAL/ 162 | Wire Wire Line 163 | 2050 2900 2150 2900 164 | Text GLabel 2050 3000 0 60 Input ~ 0 165 | MWATCH/ 166 | Wire Wire Line 167 | 2050 3000 2150 3000 168 | Text GLabel 2050 3100 0 60 Input ~ 0 169 | MVFAIL/ 170 | Wire Wire Line 171 | 2050 3100 2150 3100 172 | Text GLabel 2050 3200 0 60 Input ~ 0 173 | MCTRAL/ 174 | Wire Wire Line 175 | 2050 3200 2150 3200 176 | Text GLabel 2050 3300 0 60 Input ~ 0 177 | MSCAFL/ 178 | Wire Wire Line 179 | 2050 3300 2150 3300 180 | Text GLabel 2050 3400 0 60 Input ~ 0 181 | MSCDBL/ 182 | Wire Wire Line 183 | 2050 3400 2150 3400 184 | Text GLabel 3450 1350 2 60 Output ~ 0 185 | MDT01 186 | Wire Wire Line 187 | 3450 1350 3350 1350 188 | Text GLabel 3450 1450 2 60 Output ~ 0 189 | MDT02 190 | Wire Wire Line 191 | 3450 1450 3350 1450 192 | Text GLabel 3450 1550 2 60 Output ~ 0 193 | MDT03 194 | Wire Wire Line 195 | 3450 1550 3350 1550 196 | Text GLabel 3450 1650 2 60 Output ~ 0 197 | MDT04 198 | Wire Wire Line 199 | 3450 1650 3350 1650 200 | Text GLabel 3450 1750 2 60 Output ~ 0 201 | MDT05 202 | Wire Wire Line 203 | 3450 1750 3350 1750 204 | Text GLabel 3450 1850 2 60 Output ~ 0 205 | MDT06 206 | Wire Wire Line 207 | 3450 1850 3350 1850 208 | Text GLabel 3450 1950 2 60 Output ~ 0 209 | MDT07 210 | Wire Wire Line 211 | 3450 1950 3350 1950 212 | Text GLabel 3450 2050 2 60 Output ~ 0 213 | MDT08 214 | Wire Wire Line 215 | 3450 2050 3350 2050 216 | Text GLabel 3450 2150 2 60 Output ~ 0 217 | MDT09 218 | Wire Wire Line 219 | 3450 2150 3350 2150 220 | Text GLabel 3450 2250 2 60 Output ~ 0 221 | MDT10 222 | Wire Wire Line 223 | 3450 2250 3350 2250 224 | Text GLabel 3450 2350 2 60 Output ~ 0 225 | MDT11 226 | Wire Wire Line 227 | 3450 2350 3350 2350 228 | Text GLabel 3450 2450 2 60 Output ~ 0 229 | MDT12 230 | Wire Wire Line 231 | 3450 2450 3350 2450 232 | Text GLabel 3450 2550 2 60 Output ~ 0 233 | MDT13 234 | Wire Wire Line 235 | 3450 2550 3350 2550 236 | Text GLabel 3450 2650 2 60 Output ~ 0 237 | MDT14 238 | Wire Wire Line 239 | 3450 2650 3350 2650 240 | Text GLabel 3450 2750 2 60 Output ~ 0 241 | MDT15 242 | Wire Wire Line 243 | 3450 2750 3350 2750 244 | Text GLabel 3450 2850 2 60 Output ~ 0 245 | MDT16 246 | Wire Wire Line 247 | 3450 2850 3350 2850 248 | Text GLabel 3450 3000 2 60 Output ~ 0 249 | MNHSBF 250 | Wire Wire Line 251 | 3450 3000 3350 3000 252 | Text GLabel 3450 3100 2 60 Output ~ 0 253 | MNHNC 254 | Wire Wire Line 255 | 3450 3100 3350 3100 256 | Text GLabel 3450 3200 2 60 Output ~ 0 257 | MNHRPT 258 | Wire Wire Line 259 | 3450 3200 3350 3200 260 | Text GLabel 3450 3300 2 60 Output ~ 0 261 | MTCSAI 262 | Wire Wire Line 263 | 3450 3300 3350 3300 264 | Text GLabel 3450 3400 2 60 Output ~ 0 265 | MSTRT 266 | Wire Wire Line 267 | 3450 3400 3350 3400 268 | Text GLabel 3450 3500 2 60 Output ~ 0 269 | MSTP 270 | Wire Wire Line 271 | 3450 3500 3350 3500 272 | Text GLabel 3450 3600 2 60 Output ~ 0 273 | MSBSTP 274 | Wire Wire Line 275 | 3450 3600 3350 3600 276 | Text GLabel 3450 3700 2 60 Output ~ 0 277 | MRDCH 278 | Wire Wire Line 279 | 3450 3700 3350 3700 280 | Text GLabel 3450 3800 2 60 Output ~ 0 281 | MLDCH 282 | Wire Wire Line 283 | 3450 3800 3350 3800 284 | Text GLabel 3450 3900 2 60 Output ~ 0 285 | MONPAR 286 | Wire Wire Line 287 | 3450 3900 3350 3900 288 | Text GLabel 3450 4000 2 60 Output ~ 0 289 | MONWBK 290 | Wire Wire Line 291 | 3450 4000 3350 4000 292 | Text GLabel 3450 4100 2 60 Output ~ 0 293 | MLOAD 294 | Wire Wire Line 295 | 3450 4100 3350 4100 296 | Text GLabel 3450 4200 2 60 Output ~ 0 297 | MREAD 298 | Wire Wire Line 299 | 3450 4200 3350 4200 300 | Text GLabel 3450 4300 2 60 Output ~ 0 301 | NHALGA 302 | Wire Wire Line 303 | 3450 4300 3350 4300 304 | Text GLabel 3450 4400 2 60 Output ~ 0 305 | DOSCAL 306 | Wire Wire Line 307 | 3450 4400 3350 4400 308 | Text GLabel 3450 4500 2 60 Output ~ 0 309 | DBLTST 310 | Wire Wire Line 311 | 3450 4500 3350 4500 312 | Text GLabel 3450 4600 2 60 Output ~ 0 313 | MAMU 314 | Wire Wire Line 315 | 3450 4600 3350 4600 316 | $Comp 317 | L CONN_02X32 P1 318 | U 1 1 588922C0 319 | P 7750 2400 320 | F 0 "P1" H 7750 4050 50 0000 C CNN 321 | F 1 "CONN_02X32" V 7750 2400 50 0000 C CNN 322 | F 2 "" H 7750 2000 60 0000 C CNN 323 | F 3 "" H 7750 2000 60 0000 C CNN 324 | 1 7750 2400 325 | 1 0 0 -1 326 | $EndComp 327 | Text GLabel 7400 950 0 60 Output ~ 0 328 | MT01 329 | Wire Wire Line 330 | 7400 950 7500 950 331 | Text GLabel 7400 1050 0 60 Output ~ 0 332 | MT05 333 | Wire Wire Line 334 | 7400 1050 7500 1050 335 | Text GLabel 7400 1150 0 60 Output ~ 0 336 | MT12 337 | Wire Wire Line 338 | 7400 1150 7500 1150 339 | Text GLabel 7400 1250 0 60 Output ~ 0 340 | MWL01 341 | Wire Wire Line 342 | 7400 1250 7500 1250 343 | Text GLabel 7400 1350 0 60 Output ~ 0 344 | MWL02 345 | Wire Wire Line 346 | 7400 1350 7500 1350 347 | Text GLabel 7400 1450 0 60 Output ~ 0 348 | MWL03 349 | Wire Wire Line 350 | 7400 1450 7500 1450 351 | Text GLabel 7400 1550 0 60 Output ~ 0 352 | MWL04 353 | Wire Wire Line 354 | 7400 1550 7500 1550 355 | Text GLabel 7400 1650 0 60 Output ~ 0 356 | MWL05 357 | Wire Wire Line 358 | 7400 1650 7500 1650 359 | Text GLabel 7400 1750 0 60 Output ~ 0 360 | MWL06 361 | Wire Wire Line 362 | 7400 1750 7500 1750 363 | Text GLabel 7400 1850 0 60 Output ~ 0 364 | MRCH 365 | Wire Wire Line 366 | 7400 1850 7500 1850 367 | Text GLabel 7400 1950 0 60 Output ~ 0 368 | MWCH 369 | Wire Wire Line 370 | 7400 1950 7500 1950 371 | Text GLabel 7400 2050 0 60 Output ~ 0 372 | MWSG 373 | Wire Wire Line 374 | 7400 2050 7500 2050 375 | Text GLabel 7400 2150 0 60 Output ~ 0 376 | MPAL/ 377 | Wire Wire Line 378 | 7400 2150 7500 2150 379 | Text GLabel 7400 2250 0 60 Output ~ 0 380 | MTCAL/ 381 | Wire Wire Line 382 | 7400 2250 7500 2250 383 | Text GLabel 7400 2350 0 60 Output ~ 0 384 | MRPTAL/ 385 | Wire Wire Line 386 | 7400 2350 7500 2350 387 | Text GLabel 7400 2450 0 60 Output ~ 0 388 | MWATCH/ 389 | Wire Wire Line 390 | 7400 2450 7500 2450 391 | Text GLabel 7400 2550 0 60 Output ~ 0 392 | MVFAIL/ 393 | Wire Wire Line 394 | 7400 2550 7500 2550 395 | Text GLabel 7400 2650 0 60 Output ~ 0 396 | MCTRAL/ 397 | Wire Wire Line 398 | 7400 2650 7500 2650 399 | Text GLabel 7400 2750 0 60 Output ~ 0 400 | MSCAFL/ 401 | Wire Wire Line 402 | 7400 2750 7500 2750 403 | Text GLabel 7400 2850 0 60 Output ~ 0 404 | MSCDBL/ 405 | Wire Wire Line 406 | 7400 2850 7500 2850 407 | Text GLabel 8100 850 2 60 Input ~ 0 408 | MDT01 409 | Wire Wire Line 410 | 8100 850 8000 850 411 | Text GLabel 8100 950 2 60 Input ~ 0 412 | MDT02 413 | Wire Wire Line 414 | 8100 950 8000 950 415 | Text GLabel 8100 1050 2 60 Input ~ 0 416 | MDT03 417 | Wire Wire Line 418 | 8100 1050 8000 1050 419 | Text GLabel 8100 1150 2 60 Input ~ 0 420 | MDT04 421 | Wire Wire Line 422 | 8100 1150 8000 1150 423 | Text GLabel 8100 1250 2 60 Input ~ 0 424 | MDT05 425 | Wire Wire Line 426 | 8100 1250 8000 1250 427 | Text GLabel 8100 1350 2 60 Input ~ 0 428 | MDT06 429 | Wire Wire Line 430 | 8100 1350 8000 1350 431 | Text GLabel 8100 1450 2 60 Input ~ 0 432 | MDT07 433 | Wire Wire Line 434 | 8100 1450 8000 1450 435 | Text GLabel 8100 1550 2 60 Input ~ 0 436 | MDT08 437 | Wire Wire Line 438 | 8100 1550 8000 1550 439 | Text GLabel 8100 1650 2 60 Input ~ 0 440 | MDT09 441 | Wire Wire Line 442 | 8100 1650 8000 1650 443 | Text GLabel 8100 1750 2 60 Input ~ 0 444 | MDT10 445 | Wire Wire Line 446 | 8100 1750 8000 1750 447 | Text GLabel 8100 1850 2 60 Input ~ 0 448 | MDT11 449 | Wire Wire Line 450 | 8100 1850 8000 1850 451 | Text GLabel 8100 1950 2 60 Input ~ 0 452 | MDT12 453 | Wire Wire Line 454 | 8100 1950 8000 1950 455 | Text GLabel 8100 2050 2 60 Input ~ 0 456 | MDT13 457 | Wire Wire Line 458 | 8100 2050 8000 2050 459 | Text GLabel 8100 2150 2 60 Input ~ 0 460 | MDT14 461 | Wire Wire Line 462 | 8100 2150 8000 2150 463 | Text GLabel 8100 2250 2 60 Input ~ 0 464 | MDT15 465 | Wire Wire Line 466 | 8100 2250 8000 2250 467 | Text GLabel 8100 2350 2 60 Input ~ 0 468 | MDT16 469 | Wire Wire Line 470 | 8100 2350 8000 2350 471 | Text GLabel 8100 2450 2 60 Input ~ 0 472 | MNHSBF 473 | Wire Wire Line 474 | 8100 2450 8000 2450 475 | Text GLabel 8100 2550 2 60 Input ~ 0 476 | MNHNC 477 | Wire Wire Line 478 | 8100 2550 8000 2550 479 | Text GLabel 8100 2650 2 60 Input ~ 0 480 | MNHRPT 481 | Wire Wire Line 482 | 8100 2650 8000 2650 483 | Text GLabel 8100 2750 2 60 Input ~ 0 484 | MTCSAI 485 | Wire Wire Line 486 | 8100 2750 8000 2750 487 | Text GLabel 8100 2850 2 60 Input ~ 0 488 | MSTRT 489 | Wire Wire Line 490 | 8100 2850 8000 2850 491 | Text GLabel 8100 2950 2 60 Input ~ 0 492 | MSTP 493 | Wire Wire Line 494 | 8100 2950 8000 2950 495 | Text GLabel 8100 3050 2 60 Input ~ 0 496 | MSBSTP 497 | Wire Wire Line 498 | 8100 3050 8000 3050 499 | Text GLabel 8100 3150 2 60 Input ~ 0 500 | MRDCH 501 | Wire Wire Line 502 | 8100 3150 8000 3150 503 | Text GLabel 8100 3250 2 60 Input ~ 0 504 | MLDCH 505 | Wire Wire Line 506 | 8100 3250 8000 3250 507 | Text GLabel 8100 3350 2 60 Input ~ 0 508 | MONPAR 509 | Wire Wire Line 510 | 8100 3350 8000 3350 511 | Text GLabel 8100 3450 2 60 Input ~ 0 512 | MONWBK 513 | Wire Wire Line 514 | 8100 3450 8000 3450 515 | Text GLabel 8100 3550 2 60 Input ~ 0 516 | MLOAD 517 | Wire Wire Line 518 | 8100 3550 8000 3550 519 | Text GLabel 8100 3650 2 60 Input ~ 0 520 | MREAD 521 | Wire Wire Line 522 | 8100 3650 8000 3650 523 | Text GLabel 8100 3750 2 60 Input ~ 0 524 | NHALGA 525 | Wire Wire Line 526 | 8100 3750 8000 3750 527 | Text GLabel 8100 3850 2 60 Input ~ 0 528 | DOSCAL 529 | Wire Wire Line 530 | 8100 3850 8000 3850 531 | Text GLabel 8100 3950 2 60 Input ~ 0 532 | DBLTST 533 | Wire Wire Line 534 | 8100 3950 8000 3950 535 | Text GLabel 7400 2950 0 60 Input ~ 0 536 | MAMU 537 | Wire Wire Line 538 | 7400 2950 7500 2950 539 | $Comp 540 | L +4VSW #PWR01 541 | U 1 1 588989DA 542 | P 6850 800 543 | F 0 "#PWR01" H 6850 650 50 0001 C CNN 544 | F 1 "+4VSW" H 6850 940 50 0000 C CNN 545 | F 2 "" H 6850 800 60 0000 C CNN 546 | F 3 "" H 6850 800 60 0000 C CNN 547 | 1 6850 800 548 | 1 0 0 -1 549 | $EndComp 550 | Wire Wire Line 551 | 6850 800 6850 850 552 | Wire Wire Line 553 | 6850 850 7500 850 554 | $Comp 555 | L GND #PWR02 556 | U 1 1 588990E2 557 | P 7400 4050 558 | F 0 "#PWR02" H 7400 3800 50 0001 C CNN 559 | F 1 "GND" H 7400 3900 50 0000 C CNN 560 | F 2 "" H 7400 4050 60 0000 C CNN 561 | F 3 "" H 7400 4050 60 0000 C CNN 562 | 1 7400 4050 563 | 1 0 0 -1 564 | $EndComp 565 | Wire Wire Line 566 | 7400 3050 7400 4050 567 | Wire Wire Line 568 | 7400 3950 7500 3950 569 | Wire Wire Line 570 | 7400 3850 7500 3850 571 | Connection ~ 7400 3950 572 | Wire Wire Line 573 | 7400 3750 7500 3750 574 | Connection ~ 7400 3850 575 | Wire Wire Line 576 | 7400 3650 7500 3650 577 | Connection ~ 7400 3750 578 | Wire Wire Line 579 | 7400 3550 7500 3550 580 | Connection ~ 7400 3650 581 | Wire Wire Line 582 | 7400 3450 7500 3450 583 | Connection ~ 7400 3550 584 | Wire Wire Line 585 | 7400 3350 7500 3350 586 | Connection ~ 7400 3450 587 | Wire Wire Line 588 | 7400 3250 7500 3250 589 | Connection ~ 7400 3350 590 | Wire Wire Line 591 | 7400 3150 7500 3150 592 | Connection ~ 7400 3250 593 | Wire Wire Line 594 | 7400 3050 7500 3050 595 | Connection ~ 7400 3150 596 | $Comp 597 | L 74HC04 U77001 598 | U 7 1 588AB574 599 | P 4600 4750 600 | F 0 "U77001" H 4600 4800 60 0000 C CNN 601 | F 1 "74HC04" H 4600 4700 60 0001 C CNN 602 | F 2 "" H 4600 4750 60 0000 C CNN 603 | F 3 "" H 4600 4750 60 0000 C CNN 604 | 7 4600 4750 605 | 1 0 0 -1 606 | $EndComp 607 | $Comp 608 | L 74HC04 U77002 609 | U 7 1 588AB850 610 | P 5000 4750 611 | F 0 "U77002" H 5000 4800 60 0000 C CNN 612 | F 1 "74HC04" H 5000 4700 60 0001 C CNN 613 | F 2 "" H 5000 4750 60 0000 C CNN 614 | F 3 "" H 5000 4750 60 0000 C CNN 615 | 7 5000 4750 616 | 1 0 0 -1 617 | $EndComp 618 | $Comp 619 | L 74HC4002 U77003 620 | U 3 1 588ACABD 621 | P 5400 4750 622 | F 0 "U77003" H 5400 4800 60 0000 C CNN 623 | F 1 "74HC4002" H 5400 4700 47 0001 C CNN 624 | F 2 "" H 5400 4750 60 0000 C CNN 625 | F 3 "" H 5400 4750 60 0000 C CNN 626 | 3 5400 4750 627 | 1 0 0 -1 628 | $EndComp 629 | $Comp 630 | L 74LVC07 U77004 631 | U 7 1 588AD529 632 | P 5800 4750 633 | F 0 "U77004" H 5800 4800 60 0000 C CNN 634 | F 1 "74LVC07" H 5800 4700 60 0001 C CNN 635 | F 2 "" H 5800 4750 60 0000 C CNN 636 | F 3 "" H 5800 4750 60 0000 C CNN 637 | 7 5800 4750 638 | 1 0 0 -1 639 | $EndComp 640 | $Comp 641 | L 74HC02 U77005 642 | U 5 1 588AE614 643 | P 6200 4750 644 | F 0 "U77005" H 6200 4800 60 0000 C CNN 645 | F 1 "74HC02" H 6200 4700 60 0001 C CNN 646 | F 2 "" H 6200 4750 60 0000 C CNN 647 | F 3 "" H 6200 4750 60 0000 C CNN 648 | 5 6200 4750 649 | 1 0 0 -1 650 | $EndComp 651 | $Comp 652 | L 74HC02 U77006 653 | U 5 1 588AE90A 654 | P 6600 4750 655 | F 0 "U77006" H 6600 4800 60 0000 C CNN 656 | F 1 "74HC02" H 6600 4700 60 0001 C CNN 657 | F 2 "" H 6600 4750 60 0000 C CNN 658 | F 3 "" H 6600 4750 60 0000 C CNN 659 | 5 6600 4750 660 | 1 0 0 -1 661 | $EndComp 662 | $Comp 663 | L 74HC02 U77007 664 | U 5 1 588B10C7 665 | P 7000 4750 666 | F 0 "U77007" H 7000 4800 60 0000 C CNN 667 | F 1 "74HC02" H 7000 4700 60 0001 C CNN 668 | F 2 "" H 7000 4750 60 0000 C CNN 669 | F 3 "" H 7000 4750 60 0000 C CNN 670 | 5 7000 4750 671 | 1 0 0 -1 672 | $EndComp 673 | $Comp 674 | L 74HC04 U77008 675 | U 7 1 588B889E 676 | P 7400 4750 677 | F 0 "U77008" H 7400 4800 60 0000 C CNN 678 | F 1 "74HC04" H 7400 4700 60 0001 C CNN 679 | F 2 "" H 7400 4750 60 0000 C CNN 680 | F 3 "" H 7400 4750 60 0000 C CNN 681 | 7 7400 4750 682 | 1 0 0 -1 683 | $EndComp 684 | $Comp 685 | L 74HC02 U77009 686 | U 5 1 588B9857 687 | P 7800 4750 688 | F 0 "U77009" H 7800 4800 60 0000 C CNN 689 | F 1 "74HC02" H 7800 4700 60 0001 C CNN 690 | F 2 "" H 7800 4750 60 0000 C CNN 691 | F 3 "" H 7800 4750 60 0000 C CNN 692 | 5 7800 4750 693 | 1 0 0 -1 694 | $EndComp 695 | $Comp 696 | L 74HC02 U77010 697 | U 5 1 588B985D 698 | P 8200 4750 699 | F 0 "U77010" H 8200 4800 60 0000 C CNN 700 | F 1 "74HC02" H 8200 4700 60 0001 C CNN 701 | F 2 "" H 8200 4750 60 0000 C CNN 702 | F 3 "" H 8200 4750 60 0000 C CNN 703 | 5 8200 4750 704 | 1 0 0 -1 705 | $EndComp 706 | $Comp 707 | L 74HC02 U77011 708 | U 5 1 588BE30F 709 | P 5600 5750 710 | F 0 "U77011" H 5600 5800 60 0000 C CNN 711 | F 1 "74HC02" H 5600 5700 60 0001 C CNN 712 | F 2 "" H 5600 5750 60 0000 C CNN 713 | F 3 "" H 5600 5750 60 0000 C CNN 714 | 5 5600 5750 715 | 1 0 0 -1 716 | $EndComp 717 | $Comp 718 | L 74HC04 U77012 719 | U 7 1 588BE315 720 | P 6000 5750 721 | F 0 "U77012" H 6000 5800 60 0000 C CNN 722 | F 1 "74HC04" H 6000 5700 60 0001 C CNN 723 | F 2 "" H 6000 5750 60 0000 C CNN 724 | F 3 "" H 6000 5750 60 0000 C CNN 725 | 7 6000 5750 726 | 1 0 0 -1 727 | $EndComp 728 | $Comp 729 | L 74HC27 U77013 730 | U 4 1 588BE97E 731 | P 6400 5750 732 | F 0 "U77013" H 6400 5800 60 0000 C CNN 733 | F 1 "74HC27" H 6400 5700 60 0001 C CNN 734 | F 2 "" H 6400 5750 60 0000 C CNN 735 | F 3 "" H 6400 5750 60 0000 C CNN 736 | 4 6400 5750 737 | 1 0 0 -1 738 | $EndComp 739 | $Comp 740 | L 74HC27 U77014 741 | U 4 1 588BEB33 742 | P 6800 5750 743 | F 0 "U77014" H 6800 5800 60 0000 C CNN 744 | F 1 "74HC27" H 6800 5700 60 0001 C CNN 745 | F 2 "" H 6800 5750 60 0000 C CNN 746 | F 3 "" H 6800 5750 60 0000 C CNN 747 | 4 6800 5750 748 | 1 0 0 -1 749 | $EndComp 750 | $Comp 751 | L 74HC27 U77015 752 | U 4 1 588BEBFD 753 | P 7200 5750 754 | F 0 "U77015" H 7200 5800 60 0000 C CNN 755 | F 1 "74HC27" H 7200 5700 60 0001 C CNN 756 | F 2 "" H 7200 5750 60 0000 C CNN 757 | F 3 "" H 7200 5750 60 0000 C CNN 758 | 4 7200 5750 759 | 1 0 0 -1 760 | $EndComp 761 | Wire Wire Line 762 | 4600 4500 8200 4500 763 | Connection ~ 5000 4500 764 | Connection ~ 5400 4500 765 | Connection ~ 5800 4500 766 | Connection ~ 6200 4500 767 | Connection ~ 7800 4500 768 | Connection ~ 7400 4500 769 | Connection ~ 7000 4500 770 | Connection ~ 6600 4500 771 | Wire Wire Line 772 | 4600 5000 8200 5000 773 | Connection ~ 7800 5000 774 | Connection ~ 7400 5000 775 | Connection ~ 7000 5000 776 | Connection ~ 6600 5000 777 | Connection ~ 6200 5000 778 | Connection ~ 5800 5000 779 | Connection ~ 5400 5000 780 | Connection ~ 5000 5000 781 | Wire Wire Line 782 | 5600 5500 7200 5500 783 | Wire Wire Line 784 | 5600 6000 7200 6000 785 | Connection ~ 6000 5500 786 | Connection ~ 6400 5500 787 | Connection ~ 6800 5500 788 | Connection ~ 6800 6000 789 | Connection ~ 6400 6000 790 | Connection ~ 6000 6000 791 | $Comp 792 | L GND #PWR? 793 | U 1 1 588BFC04 794 | P 6400 6050 795 | F 0 "#PWR?" H 6400 5800 50 0001 C CNN 796 | F 1 "GND" H 6400 5900 50 0000 C CNN 797 | F 2 "" H 6400 6050 60 0000 C CNN 798 | F 3 "" H 6400 6050 60 0000 C CNN 799 | 1 6400 6050 800 | 1 0 0 -1 801 | $EndComp 802 | Wire Wire Line 803 | 6400 6000 6400 6050 804 | $Comp 805 | L +4VSW #PWR? 806 | U 1 1 588C16EE 807 | P 6400 5450 808 | F 0 "#PWR?" H 6400 5300 50 0001 C CNN 809 | F 1 "+4VSW" H 6400 5590 50 0000 C CNN 810 | F 2 "" H 6400 5450 60 0000 C CNN 811 | F 3 "" H 6400 5450 60 0000 C CNN 812 | 1 6400 5450 813 | 1 0 0 -1 814 | $EndComp 815 | Wire Wire Line 816 | 6400 5450 6400 5500 817 | $Comp 818 | L GND #PWR? 819 | U 1 1 588C2023 820 | P 6400 5050 821 | F 0 "#PWR?" H 6400 4800 50 0001 C CNN 822 | F 1 "GND" H 6400 4900 50 0000 C CNN 823 | F 2 "" H 6400 5050 60 0000 C CNN 824 | F 3 "" H 6400 5050 60 0000 C CNN 825 | 1 6400 5050 826 | 1 0 0 -1 827 | $EndComp 828 | Wire Wire Line 829 | 6400 5050 6400 5000 830 | Connection ~ 6400 5000 831 | $Comp 832 | L +4VSW #PWR? 833 | U 1 1 588C22E1 834 | P 6400 4450 835 | F 0 "#PWR?" H 6400 4300 50 0001 C CNN 836 | F 1 "+4VSW" H 6400 4590 50 0000 C CNN 837 | F 2 "" H 6400 4450 60 0000 C CNN 838 | F 3 "" H 6400 4450 60 0000 C CNN 839 | 1 6400 4450 840 | 1 0 0 -1 841 | $EndComp 842 | Wire Wire Line 843 | 6400 4450 6400 4500 844 | Connection ~ 6400 4500 845 | $EndSCHEMATC 846 | -------------------------------------------------------------------------------- /scaler/a01_2.sch: -------------------------------------------------------------------------------- 1 | EESchema Schematic File Version 2 2 | LIBS:power 3 | LIBS:device 4 | LIBS:transistors 5 | LIBS:conn 6 | LIBS:linear 7 | LIBS:regul 8 | LIBS:agc_kicad_components 9 | LIBS:cmos4000 10 | LIBS:adc-dac 11 | LIBS:memory 12 | LIBS:xilinx 13 | LIBS:microcontrollers 14 | LIBS:dsp 15 | LIBS:microchip 16 | LIBS:analog_switches 17 | LIBS:motorola 18 | LIBS:texas 19 | LIBS:intel 20 | LIBS:audio 21 | LIBS:interface 22 | LIBS:digital-audio 23 | LIBS:philips 24 | LIBS:display 25 | LIBS:cypress 26 | LIBS:siliconi 27 | LIBS:opto 28 | LIBS:atmel 29 | LIBS:contrib 30 | LIBS:valves 31 | LIBS:scaler-cache 32 | EELAYER 25 0 33 | EELAYER END 34 | $Descr A2 23386 16535 35 | encoding utf-8 36 | Sheet 19 35 37 | Title "" 38 | Date "" 39 | Rev "" 40 | Comp "" 41 | Comment1 "" 42 | Comment2 "" 43 | Comment3 "" 44 | Comment4 "" 45 | $EndDescr 46 | $Sheet 47 | S 2100 2100 1000 550 48 | U 56535F1F 49 | F0 "scaler_s18" 60 50 | F1 "clock_divider.sch" 60 51 | F2 "F" I L 2100 2200 60 52 | F3 "FS" O R 3100 2200 60 53 | F4 "FS/" O R 3100 2300 60 54 | F5 "A" O R 3100 2450 60 55 | F6 "B" O R 3100 2550 60 56 | $EndSheet 57 | Wire Wire Line 58 | 3100 2450 3850 2450 59 | Wire Wire Line 60 | 3100 2200 3250 2200 61 | Wire Wire Line 62 | 3100 2300 3650 2300 63 | Wire Wire Line 64 | 3100 2550 3250 2550 65 | Text HLabel 3250 2550 2 60 Output ~ 0 66 | F18B 67 | Text HLabel 3250 2200 2 60 Output ~ 0 68 | FS18 69 | Wire Wire Line 70 | 3750 2450 3750 2200 71 | Wire Wire Line 72 | 3750 2200 4250 2200 73 | Wire Wire Line 74 | 3650 2300 3650 1800 75 | Wire Wire Line 76 | 3650 1800 3750 1800 77 | Text HLabel 3850 2450 2 60 Output ~ 0 78 | F18A 79 | Connection ~ 3750 2450 80 | $Sheet 81 | S 4250 2100 1000 550 82 | U 56535F42 83 | F0 "scaler_s19" 60 84 | F1 "clock_divider.sch" 60 85 | F2 "F" I L 4250 2200 60 86 | F3 "FS" O R 5250 2200 60 87 | F4 "FS/" O R 5250 2300 60 88 | F5 "A" O R 5250 2450 60 89 | F6 "B" O R 5250 2550 60 90 | $EndSheet 91 | Wire Wire Line 92 | 5250 2450 6000 2450 93 | Wire Wire Line 94 | 5250 2200 5400 2200 95 | Wire Wire Line 96 | 5250 2300 5800 2300 97 | Wire Wire Line 98 | 5250 2550 5400 2550 99 | Text HLabel 5400 2550 2 60 Output ~ 0 100 | F19B 101 | Text HLabel 5400 2200 2 60 Output ~ 0 102 | FS19 103 | Wire Wire Line 104 | 5900 2450 5900 2200 105 | Wire Wire Line 106 | 5900 2200 6400 2200 107 | Wire Wire Line 108 | 5800 2300 5800 1800 109 | Wire Wire Line 110 | 5800 1800 5900 1800 111 | Text HLabel 6000 2450 2 60 Output ~ 0 112 | F19A 113 | Connection ~ 5900 2450 114 | $Sheet 115 | S 6400 2100 1000 550 116 | U 56535F65 117 | F0 "scaler_s20" 60 118 | F1 "clock_divider.sch" 60 119 | F2 "F" I L 6400 2200 60 120 | F3 "FS" O R 7400 2200 60 121 | F4 "FS/" O R 7400 2300 60 122 | F5 "A" O R 7400 2450 60 123 | F6 "B" O R 7400 2550 60 124 | $EndSheet 125 | Wire Wire Line 126 | 7400 2450 8150 2450 127 | Wire Wire Line 128 | 7400 2200 7550 2200 129 | Wire Wire Line 130 | 7400 2300 7950 2300 131 | Wire Wire Line 132 | 7400 2550 7550 2550 133 | Text HLabel 7550 2550 2 60 Output ~ 0 134 | F20B 135 | Text HLabel 7550 2200 2 60 Output ~ 0 136 | FS20 137 | Wire Wire Line 138 | 8050 2450 8050 2200 139 | Wire Wire Line 140 | 8050 2200 8550 2200 141 | Wire Wire Line 142 | 7950 2300 7950 1800 143 | Wire Wire Line 144 | 7950 1800 8050 1800 145 | Text HLabel 8150 2450 2 60 Output ~ 0 146 | F20A 147 | Connection ~ 8050 2450 148 | $Sheet 149 | S 8550 2100 1000 550 150 | U 56535F88 151 | F0 "scaler_s21" 60 152 | F1 "clock_divider.sch" 60 153 | F2 "F" I L 8550 2200 60 154 | F3 "FS" O R 9550 2200 60 155 | F4 "FS/" O R 9550 2300 60 156 | F5 "A" O R 9550 2450 60 157 | F6 "B" O R 9550 2550 60 158 | $EndSheet 159 | Wire Wire Line 160 | 9550 2450 10300 2450 161 | Wire Wire Line 162 | 9550 2200 9700 2200 163 | Wire Wire Line 164 | 9550 2300 10100 2300 165 | Wire Wire Line 166 | 9550 2550 9700 2550 167 | Text HLabel 9700 2550 2 60 Output ~ 0 168 | F21B 169 | Text HLabel 9700 2200 2 60 Output ~ 0 170 | FS21 171 | Wire Wire Line 172 | 10200 2450 10200 2200 173 | Wire Wire Line 174 | 10200 2200 10700 2200 175 | Wire Wire Line 176 | 10100 2300 10100 1800 177 | Wire Wire Line 178 | 10100 1800 10200 1800 179 | Text HLabel 10300 2450 2 60 Output ~ 0 180 | F21A 181 | Connection ~ 10200 2450 182 | $Sheet 183 | S 10700 2100 1000 550 184 | U 56535FAB 185 | F0 "scaler_s22" 60 186 | F1 "clock_divider.sch" 60 187 | F2 "F" I L 10700 2200 60 188 | F3 "FS" O R 11700 2200 60 189 | F4 "FS/" O R 11700 2300 60 190 | F5 "A" O R 11700 2450 60 191 | F6 "B" O R 11700 2550 60 192 | $EndSheet 193 | Wire Wire Line 194 | 11700 2450 12450 2450 195 | Wire Wire Line 196 | 11700 2200 11850 2200 197 | Wire Wire Line 198 | 11700 2300 12250 2300 199 | Wire Wire Line 200 | 11700 2550 11850 2550 201 | Text HLabel 11850 2550 2 60 Output ~ 0 202 | F22B 203 | Text HLabel 11850 2200 2 60 Output ~ 0 204 | FS22 205 | Wire Wire Line 206 | 12350 2450 12350 2200 207 | Wire Wire Line 208 | 12350 2200 12850 2200 209 | Wire Wire Line 210 | 12250 2300 12250 1800 211 | Wire Wire Line 212 | 12250 1800 12350 1800 213 | Text HLabel 12450 2450 2 60 Output ~ 0 214 | F22A 215 | Connection ~ 12350 2450 216 | $Sheet 217 | S 12850 2100 1000 550 218 | U 56535FCE 219 | F0 "scaler_s23" 60 220 | F1 "clock_divider.sch" 60 221 | F2 "F" I L 12850 2200 60 222 | F3 "FS" O R 13850 2200 60 223 | F4 "FS/" O R 13850 2300 60 224 | F5 "A" O R 13850 2450 60 225 | F6 "B" O R 13850 2550 60 226 | $EndSheet 227 | Wire Wire Line 228 | 13850 2450 14600 2450 229 | Wire Wire Line 230 | 13850 2200 14000 2200 231 | Wire Wire Line 232 | 13850 2300 14400 2300 233 | Wire Wire Line 234 | 13850 2550 14000 2550 235 | Text HLabel 14000 2550 2 60 Output ~ 0 236 | F23B 237 | Text HLabel 14000 2200 2 60 Output ~ 0 238 | FS23 239 | Wire Wire Line 240 | 14500 2450 14500 2200 241 | Wire Wire Line 242 | 14500 2200 15000 2200 243 | Wire Wire Line 244 | 14400 2300 14400 1800 245 | Wire Wire Line 246 | 14400 1800 14500 1800 247 | Text HLabel 14600 2450 2 60 Output ~ 0 248 | F23A 249 | Connection ~ 14500 2450 250 | $Sheet 251 | S 15000 2100 1000 550 252 | U 56535FF1 253 | F0 "scaler_s24" 60 254 | F1 "clock_divider.sch" 60 255 | F2 "F" I L 15000 2200 60 256 | F3 "FS" O R 16000 2200 60 257 | F4 "FS/" O R 16000 2300 60 258 | F5 "A" O R 16000 2450 60 259 | F6 "B" O R 16000 2550 60 260 | $EndSheet 261 | Wire Wire Line 262 | 16000 2450 16750 2450 263 | Wire Wire Line 264 | 16000 2200 16150 2200 265 | Wire Wire Line 266 | 16000 2300 16550 2300 267 | Wire Wire Line 268 | 16000 2550 16150 2550 269 | Text HLabel 16150 2550 2 60 Output ~ 0 270 | F24B 271 | Text HLabel 16150 2200 2 60 Output ~ 0 272 | FS24 273 | Wire Wire Line 274 | 16650 2450 16650 2200 275 | Wire Wire Line 276 | 16650 2200 17150 2200 277 | Wire Wire Line 278 | 16550 2300 16550 1800 279 | Wire Wire Line 280 | 16550 1800 16650 1800 281 | Text HLabel 16750 2450 2 60 Output ~ 0 282 | F24A 283 | Connection ~ 16650 2450 284 | $Sheet 285 | S 17150 2100 1000 550 286 | U 56536014 287 | F0 "scaler_s25" 60 288 | F1 "clock_divider.sch" 60 289 | F2 "F" I L 17150 2200 60 290 | F3 "FS" O R 18150 2200 60 291 | F4 "FS/" O R 18150 2300 60 292 | F5 "A" O R 18150 2450 60 293 | F6 "B" O R 18150 2550 60 294 | $EndSheet 295 | Wire Wire Line 296 | 18150 2450 18900 2450 297 | Wire Wire Line 298 | 18150 2200 18300 2200 299 | Wire Wire Line 300 | 18150 2300 18700 2300 301 | Wire Wire Line 302 | 18150 2550 18300 2550 303 | Text HLabel 18300 2550 2 60 Output ~ 0 304 | F25B 305 | Text HLabel 18300 2200 2 60 Output ~ 0 306 | FS25 307 | Wire Wire Line 308 | 18700 2300 18700 1800 309 | Wire Wire Line 310 | 18700 1800 18800 1800 311 | Text HLabel 18900 2450 2 60 Output ~ 0 312 | F25A 313 | Connection ~ 18800 2450 314 | $Sheet 315 | S 2100 4200 1000 550 316 | U 56536035 317 | F0 "scaler_s26" 60 318 | F1 "clock_divider.sch" 60 319 | F2 "F" I L 2100 4300 60 320 | F3 "FS" O R 3100 4300 60 321 | F4 "FS/" O R 3100 4400 60 322 | F5 "A" O R 3100 4550 60 323 | F6 "B" O R 3100 4650 60 324 | $EndSheet 325 | Wire Wire Line 326 | 3100 4550 3850 4550 327 | Wire Wire Line 328 | 3100 4300 3250 4300 329 | Wire Wire Line 330 | 3100 4400 3650 4400 331 | Wire Wire Line 332 | 3100 4650 3250 4650 333 | Text HLabel 3250 4650 2 60 Output ~ 0 334 | F26B 335 | Text HLabel 3250 4300 2 60 Output ~ 0 336 | FS26 337 | Wire Wire Line 338 | 3750 4550 3750 4300 339 | Wire Wire Line 340 | 3750 4300 4250 4300 341 | Wire Wire Line 342 | 3650 4400 3650 3900 343 | Wire Wire Line 344 | 3650 3900 3750 3900 345 | Text HLabel 3850 4550 2 60 Output ~ 0 346 | F26A 347 | Connection ~ 3750 4550 348 | $Sheet 349 | S 4250 4200 1000 550 350 | U 56536058 351 | F0 "scaler_s27" 60 352 | F1 "clock_divider.sch" 60 353 | F2 "F" I L 4250 4300 60 354 | F3 "FS" O R 5250 4300 60 355 | F4 "FS/" O R 5250 4400 60 356 | F5 "A" O R 5250 4550 60 357 | F6 "B" O R 5250 4650 60 358 | $EndSheet 359 | Wire Wire Line 360 | 5250 4550 6000 4550 361 | Wire Wire Line 362 | 5250 4300 5400 4300 363 | Wire Wire Line 364 | 5250 4400 5800 4400 365 | Wire Wire Line 366 | 5250 4650 5400 4650 367 | Text HLabel 5400 4650 2 60 Output ~ 0 368 | F27B 369 | Text HLabel 5400 4300 2 60 Output ~ 0 370 | FS27 371 | Wire Wire Line 372 | 5900 4550 5900 4300 373 | Wire Wire Line 374 | 5900 4300 6400 4300 375 | Wire Wire Line 376 | 5800 4400 5800 3900 377 | Wire Wire Line 378 | 5800 3900 5900 3900 379 | Text HLabel 6000 4550 2 60 Output ~ 0 380 | F27A 381 | Connection ~ 5900 4550 382 | $Sheet 383 | S 6400 4200 1000 550 384 | U 5653607B 385 | F0 "scaler_s28" 60 386 | F1 "clock_divider.sch" 60 387 | F2 "F" I L 6400 4300 60 388 | F3 "FS" O R 7400 4300 60 389 | F4 "FS/" O R 7400 4400 60 390 | F5 "A" O R 7400 4550 60 391 | F6 "B" O R 7400 4650 60 392 | $EndSheet 393 | Wire Wire Line 394 | 7400 4550 8150 4550 395 | Wire Wire Line 396 | 7400 4300 7550 4300 397 | Wire Wire Line 398 | 7400 4400 7950 4400 399 | Wire Wire Line 400 | 7400 4650 7550 4650 401 | Text HLabel 7550 4650 2 60 Output ~ 0 402 | F28B 403 | Text HLabel 7550 4300 2 60 Output ~ 0 404 | FS28 405 | Wire Wire Line 406 | 8050 4550 8050 4300 407 | Wire Wire Line 408 | 8050 4300 8550 4300 409 | Wire Wire Line 410 | 7950 4400 7950 3900 411 | Wire Wire Line 412 | 7950 3900 8050 3900 413 | Text HLabel 8150 4550 2 60 Output ~ 0 414 | F28A 415 | Connection ~ 8050 4550 416 | $Sheet 417 | S 8550 4200 1000 550 418 | U 5653609E 419 | F0 "scaler_s29" 60 420 | F1 "clock_divider.sch" 60 421 | F2 "F" I L 8550 4300 60 422 | F3 "FS" O R 9550 4300 60 423 | F4 "FS/" O R 9550 4400 60 424 | F5 "A" O R 9550 4550 60 425 | F6 "B" O R 9550 4650 60 426 | $EndSheet 427 | Wire Wire Line 428 | 9550 4550 10300 4550 429 | Wire Wire Line 430 | 9550 4300 9700 4300 431 | Wire Wire Line 432 | 9550 4400 10100 4400 433 | Wire Wire Line 434 | 9550 4650 9700 4650 435 | Text HLabel 9700 4650 2 60 Output ~ 0 436 | F29B 437 | Text HLabel 9700 4300 2 60 Output ~ 0 438 | FS29 439 | Wire Wire Line 440 | 10200 4550 10200 4300 441 | Wire Wire Line 442 | 10200 4300 10700 4300 443 | Wire Wire Line 444 | 10100 4400 10100 3900 445 | Wire Wire Line 446 | 10100 3900 10200 3900 447 | Text HLabel 10300 4550 2 60 Output ~ 0 448 | F29A 449 | Connection ~ 10200 4550 450 | $Sheet 451 | S 10700 4200 1000 550 452 | U 565360C1 453 | F0 "scaler_s30" 60 454 | F1 "clock_divider.sch" 60 455 | F2 "F" I L 10700 4300 60 456 | F3 "FS" O R 11700 4300 60 457 | F4 "FS/" O R 11700 4400 60 458 | F5 "A" O R 11700 4550 60 459 | F6 "B" O R 11700 4650 60 460 | $EndSheet 461 | Wire Wire Line 462 | 11700 4550 12450 4550 463 | Wire Wire Line 464 | 11700 4300 11850 4300 465 | Wire Wire Line 466 | 11700 4400 12250 4400 467 | Wire Wire Line 468 | 11700 4650 11850 4650 469 | Text HLabel 11850 4650 2 60 Output ~ 0 470 | F30B 471 | Text HLabel 11850 4300 2 60 Output ~ 0 472 | FS30 473 | Wire Wire Line 474 | 12350 4550 12350 4300 475 | Wire Wire Line 476 | 12350 4300 12850 4300 477 | Wire Wire Line 478 | 12250 4400 12250 3900 479 | Wire Wire Line 480 | 12250 3900 12350 3900 481 | Text HLabel 12450 4550 2 60 Output ~ 0 482 | F30A 483 | Connection ~ 12350 4550 484 | $Sheet 485 | S 12850 4200 1000 550 486 | U 565360E4 487 | F0 "scaler_s31" 60 488 | F1 "clock_divider.sch" 60 489 | F2 "F" I L 12850 4300 60 490 | F3 "FS" O R 13850 4300 60 491 | F4 "FS/" O R 13850 4400 60 492 | F5 "A" O R 13850 4550 60 493 | F6 "B" O R 13850 4650 60 494 | $EndSheet 495 | Wire Wire Line 496 | 13850 4550 14600 4550 497 | Wire Wire Line 498 | 13850 4300 14000 4300 499 | Wire Wire Line 500 | 13850 4400 14400 4400 501 | Wire Wire Line 502 | 13850 4650 14000 4650 503 | Text HLabel 14000 4650 2 60 Output ~ 0 504 | F31B 505 | Text HLabel 14000 4300 2 60 Output ~ 0 506 | FS31 507 | Wire Wire Line 508 | 14500 4550 14500 4300 509 | Wire Wire Line 510 | 14500 4300 15000 4300 511 | Wire Wire Line 512 | 14400 4400 14400 3900 513 | Wire Wire Line 514 | 14400 3900 14500 3900 515 | Text HLabel 14600 4550 2 60 Output ~ 0 516 | F31A 517 | Connection ~ 14500 4550 518 | $Sheet 519 | S 15000 4200 1000 550 520 | U 56536107 521 | F0 "scaler_s32" 60 522 | F1 "clock_divider.sch" 60 523 | F2 "F" I L 15000 4300 60 524 | F3 "FS" O R 16000 4300 60 525 | F4 "FS/" O R 16000 4400 60 526 | F5 "A" O R 16000 4550 60 527 | F6 "B" O R 16000 4650 60 528 | $EndSheet 529 | Wire Wire Line 530 | 16000 4550 16750 4550 531 | Wire Wire Line 532 | 16000 4300 16150 4300 533 | Wire Wire Line 534 | 16000 4400 16550 4400 535 | Wire Wire Line 536 | 16000 4650 16150 4650 537 | Text HLabel 16150 4650 2 60 Output ~ 0 538 | F32B 539 | Text HLabel 16150 4300 2 60 Output ~ 0 540 | FS32 541 | Wire Wire Line 542 | 16650 4550 16650 4300 543 | Wire Wire Line 544 | 16650 4300 17150 4300 545 | Wire Wire Line 546 | 16550 4400 16550 3900 547 | Wire Wire Line 548 | 16550 3900 16650 3900 549 | Text HLabel 16750 4550 2 60 Output ~ 0 550 | F32A 551 | Connection ~ 16650 4550 552 | $Sheet 553 | S 17150 4200 1000 550 554 | U 5653612A 555 | F0 "scaler_s33" 60 556 | F1 "clock_divider.sch" 60 557 | F2 "F" I L 17150 4300 60 558 | F3 "FS" O R 18150 4300 60 559 | F4 "FS/" O R 18150 4400 60 560 | F5 "A" O R 18150 4550 60 561 | F6 "B" O R 18150 4650 60 562 | $EndSheet 563 | Wire Wire Line 564 | 18150 4550 18900 4550 565 | Wire Wire Line 566 | 18150 4300 18300 4300 567 | Wire Wire Line 568 | 18150 4400 18700 4400 569 | Wire Wire Line 570 | 18150 4650 18300 4650 571 | Text HLabel 18300 4650 2 60 Output ~ 0 572 | F33B 573 | Text HLabel 18300 4300 2 60 Output ~ 0 574 | FS33 575 | Wire Wire Line 576 | 18700 4400 18700 3900 577 | Wire Wire Line 578 | 18700 3900 18800 3900 579 | Text HLabel 18900 4550 2 60 Output ~ 0 580 | F33A 581 | $Comp 582 | L 74HC02 U1160 583 | U 1 1 56536164 584 | P 12950 1700 585 | F 0 "U1160" H 12950 1750 60 0000 C CNN 586 | F 1 "74HC02" H 13000 1650 60 0001 C CNN 587 | F 2 "" H 12950 1700 60 0000 C CNN 588 | F 3 "" H 12950 1700 60 0000 C CNN 589 | 1 12950 1700 590 | 1 0 0 -1 591 | $EndComp 592 | $Comp 593 | L 74HC02 U1160 594 | U 2 1 5653616B 595 | P 15100 1700 596 | F 0 "U1160" H 15100 1750 60 0000 C CNN 597 | F 1 "74HC02" H 15150 1650 60 0001 C CNN 598 | F 2 "" H 15100 1700 60 0000 C CNN 599 | F 3 "" H 15100 1700 60 0000 C CNN 600 | 2 15100 1700 601 | 1 0 0 -1 602 | $EndComp 603 | $Comp 604 | L 74HC02 U1160 605 | U 3 1 56536172 606 | P 17250 1700 607 | F 0 "U1160" H 17250 1750 60 0000 C CNN 608 | F 1 "74HC02" H 17300 1650 60 0001 C CNN 609 | F 2 "" H 17250 1700 60 0000 C CNN 610 | F 3 "" H 17250 1700 60 0000 C CNN 611 | 3 17250 1700 612 | 1 0 0 -1 613 | $EndComp 614 | $Comp 615 | L 74HC02 U1160 616 | U 4 1 56536179 617 | P 19400 1700 618 | F 0 "U1160" H 19400 1750 60 0000 C CNN 619 | F 1 "74HC02" H 19450 1650 60 0001 C CNN 620 | F 2 "" H 19400 1700 60 0000 C CNN 621 | F 3 "" H 19400 1700 60 0000 C CNN 622 | 4 19400 1700 623 | 1 0 0 -1 624 | $EndComp 625 | Wire Wire Line 626 | 18800 2450 18800 3000 627 | Wire Wire Line 628 | 18800 3000 1950 3000 629 | Wire Wire Line 630 | 1950 3000 1950 4300 631 | Wire Wire Line 632 | 1950 4300 2100 4300 633 | $Comp 634 | L 74HC02 U1161 635 | U 1 1 56536184 636 | P 4350 3800 637 | F 0 "U1161" H 4350 3850 60 0000 C CNN 638 | F 1 "74HC02" H 4400 3750 60 0001 C CNN 639 | F 2 "" H 4350 3800 60 0000 C CNN 640 | F 3 "" H 4350 3800 60 0000 C CNN 641 | 1 4350 3800 642 | 1 0 0 -1 643 | $EndComp 644 | $Comp 645 | L 74HC02 U1161 646 | U 2 1 5653618B 647 | P 6500 3800 648 | F 0 "U1161" H 6500 3850 60 0000 C CNN 649 | F 1 "74HC02" H 6550 3750 60 0001 C CNN 650 | F 2 "" H 6500 3800 60 0000 C CNN 651 | F 3 "" H 6500 3800 60 0000 C CNN 652 | 2 6500 3800 653 | 1 0 0 -1 654 | $EndComp 655 | $Comp 656 | L 74HC02 U1161 657 | U 3 1 56536192 658 | P 8650 3800 659 | F 0 "U1161" H 8650 3850 60 0000 C CNN 660 | F 1 "74HC02" H 8700 3750 60 0001 C CNN 661 | F 2 "" H 8650 3800 60 0000 C CNN 662 | F 3 "" H 8650 3800 60 0000 C CNN 663 | 3 8650 3800 664 | 1 0 0 -1 665 | $EndComp 666 | $Comp 667 | L 74HC02 U1161 668 | U 4 1 56536199 669 | P 10800 3800 670 | F 0 "U1161" H 10800 3850 60 0000 C CNN 671 | F 1 "74HC02" H 10850 3750 60 0001 C CNN 672 | F 2 "" H 10800 3800 60 0000 C CNN 673 | F 3 "" H 10800 3800 60 0000 C CNN 674 | 4 10800 3800 675 | 1 0 0 -1 676 | $EndComp 677 | $Comp 678 | L 74HC02 U1162 679 | U 1 1 565361A0 680 | P 12950 3800 681 | F 0 "U1162" H 12950 3850 60 0000 C CNN 682 | F 1 "74HC02" H 13000 3750 60 0001 C CNN 683 | F 2 "" H 12950 3800 60 0000 C CNN 684 | F 3 "" H 12950 3800 60 0000 C CNN 685 | 1 12950 3800 686 | 1 0 0 -1 687 | $EndComp 688 | $Comp 689 | L 74HC02 U1162 690 | U 2 1 565361A7 691 | P 15100 3800 692 | F 0 "U1162" H 15100 3850 60 0000 C CNN 693 | F 1 "74HC02" H 15150 3750 60 0001 C CNN 694 | F 2 "" H 15100 3800 60 0000 C CNN 695 | F 3 "" H 15100 3800 60 0000 C CNN 696 | 2 15100 3800 697 | 1 0 0 -1 698 | $EndComp 699 | $Comp 700 | L 74HC02 U1162 701 | U 3 1 565361AE 702 | P 17250 3800 703 | F 0 "U1162" H 17250 3850 60 0000 C CNN 704 | F 1 "74HC02" H 17300 3750 60 0001 C CNN 705 | F 2 "" H 17250 3800 60 0000 C CNN 706 | F 3 "" H 17250 3800 60 0000 C CNN 707 | 3 17250 3800 708 | 1 0 0 -1 709 | $EndComp 710 | $Comp 711 | L 74HC02 U1162 712 | U 4 1 565361B5 713 | P 19400 3800 714 | F 0 "U1162" H 19400 3850 60 0000 C CNN 715 | F 1 "74HC02" H 19450 3750 60 0001 C CNN 716 | F 2 "" H 19400 3800 60 0000 C CNN 717 | F 3 "" H 19400 3800 60 0000 C CNN 718 | 4 19400 3800 719 | 1 0 0 -1 720 | $EndComp 721 | Text HLabel 5050 1700 2 60 Output ~ 0 722 | CHAT13 723 | Wire Wire Line 724 | 4950 1700 5050 1700 725 | Wire Wire Line 726 | 7100 1700 7250 1700 727 | Text HLabel 7250 1700 2 60 Output ~ 0 728 | CHAT14 729 | Wire Wire Line 730 | 9250 1700 9400 1700 731 | Text HLabel 9400 1700 2 60 Output ~ 0 732 | CHBT01 733 | Wire Wire Line 734 | 11400 1700 11550 1700 735 | Text HLabel 11550 1700 2 60 Output ~ 0 736 | CHBT02 737 | Wire Wire Line 738 | 13550 1700 13650 1700 739 | Text HLabel 13650 1700 2 60 Output ~ 0 740 | CHBT03 741 | Text HLabel 15800 1700 2 60 Output ~ 0 742 | CHBT04 743 | Wire Wire Line 744 | 15700 1700 15800 1700 745 | Text HLabel 17950 1700 2 60 Output ~ 0 746 | CHBT05 747 | Wire Wire Line 748 | 17850 1700 17950 1700 749 | Wire Wire Line 750 | 20100 1700 20000 1700 751 | Text HLabel 20100 1700 2 60 Output ~ 0 752 | CHBT06 753 | Text HLabel 5050 3800 2 60 Output ~ 0 754 | CHBT07 755 | Wire Wire Line 756 | 4950 3800 5050 3800 757 | Wire Wire Line 758 | 7200 3800 7100 3800 759 | Text HLabel 7200 3800 2 60 Output ~ 0 760 | CHBT08 761 | Text HLabel 9350 3800 2 60 Output ~ 0 762 | CHBT09 763 | Wire Wire Line 764 | 9250 3800 9350 3800 765 | Text HLabel 11500 3800 2 60 Output ~ 0 766 | CHBT10 767 | Text HLabel 13650 3800 2 60 Output ~ 0 768 | CHBT11 769 | Text HLabel 15800 3800 2 60 Output ~ 0 770 | CHBT12 771 | Text HLabel 17950 3800 2 60 Output ~ 0 772 | CHBT13 773 | Text HLabel 20100 3800 2 60 Output ~ 0 774 | CHBT14 775 | Wire Wire Line 776 | 20000 3800 20100 3800 777 | Wire Wire Line 778 | 17850 3800 17950 3800 779 | Wire Wire Line 780 | 15700 3800 15800 3800 781 | Wire Wire Line 782 | 13550 3800 13650 3800 783 | Wire Wire Line 784 | 11400 3800 11500 3800 785 | Text HLabel 1350 2200 0 60 Input ~ 0 786 | F17A 787 | Wire Wire Line 788 | 1350 2200 2100 2200 789 | Text HLabel 1350 1400 0 60 Input ~ 0 790 | RCHBT/ 791 | Wire Wire Line 792 | 1350 1400 18800 1400 793 | Wire Wire Line 794 | 1850 1400 1850 3500 795 | Wire Wire Line 796 | 1850 3500 18800 3500 797 | Wire Wire Line 798 | 12350 1400 12350 1600 799 | Connection ~ 1850 1400 800 | Wire Wire Line 801 | 14500 1400 14500 1600 802 | Connection ~ 12350 1400 803 | Wire Wire Line 804 | 16650 1400 16650 1600 805 | Connection ~ 14500 1400 806 | Wire Wire Line 807 | 18800 1400 18800 1600 808 | Connection ~ 16650 1400 809 | Wire Wire Line 810 | 3750 3500 3750 3700 811 | Wire Wire Line 812 | 5900 3500 5900 3700 813 | Connection ~ 3750 3500 814 | Wire Wire Line 815 | 8050 3500 8050 3700 816 | Connection ~ 5900 3500 817 | Wire Wire Line 818 | 10200 3500 10200 3700 819 | Connection ~ 8050 3500 820 | Wire Wire Line 821 | 12350 3500 12350 3700 822 | Connection ~ 10200 3500 823 | Wire Wire Line 824 | 14500 3500 14500 3700 825 | Connection ~ 12350 3500 826 | Wire Wire Line 827 | 16650 3500 16650 3700 828 | Wire Wire Line 829 | 18800 3500 18800 3700 830 | Connection ~ 16650 3500 831 | $Comp 832 | L 74HC02 U1159 833 | U 1 1 5665597C 834 | P 4350 1700 835 | F 0 "U1159" H 4350 1750 60 0000 C CNN 836 | F 1 "74HC02" H 4400 1650 60 0001 C CNN 837 | F 2 "" H 4350 1700 60 0000 C CNN 838 | F 3 "" H 4350 1700 60 0000 C CNN 839 | 1 4350 1700 840 | 1 0 0 -1 841 | $EndComp 842 | $Comp 843 | L 74HC02 U1159 844 | U 2 1 5666FE7D 845 | P 6500 1700 846 | F 0 "U1159" H 6500 1750 60 0000 C CNN 847 | F 1 "74HC02" H 6550 1650 60 0001 C CNN 848 | F 2 "" H 6500 1700 60 0000 C CNN 849 | F 3 "" H 6500 1700 60 0000 C CNN 850 | 2 6500 1700 851 | 1 0 0 -1 852 | $EndComp 853 | $Comp 854 | L 74HC02 U1159 855 | U 3 1 5667E60A 856 | P 8650 1700 857 | F 0 "U1159" H 8650 1750 60 0000 C CNN 858 | F 1 "74HC02" H 8700 1650 60 0001 C CNN 859 | F 2 "" H 8650 1700 60 0000 C CNN 860 | F 3 "" H 8650 1700 60 0000 C CNN 861 | 3 8650 1700 862 | 1 0 0 -1 863 | $EndComp 864 | $Comp 865 | L 74HC02 U1159 866 | U 4 1 56683D6C 867 | P 10800 1700 868 | F 0 "U1159" H 10800 1750 60 0000 C CNN 869 | F 1 "74HC02" H 10850 1650 60 0001 C CNN 870 | F 2 "" H 10800 1700 60 0000 C CNN 871 | F 3 "" H 10800 1700 60 0000 C CNN 872 | 4 10800 1700 873 | 1 0 0 -1 874 | $EndComp 875 | Wire Wire Line 876 | 10200 1600 10200 1400 877 | Connection ~ 10200 1400 878 | Wire Wire Line 879 | 8050 1600 8050 1400 880 | Connection ~ 8050 1400 881 | Text HLabel 3550 1200 0 60 Input ~ 0 882 | RCHAT/ 883 | Wire Wire Line 884 | 3550 1200 5900 1200 885 | Wire Wire Line 886 | 3750 1200 3750 1600 887 | Wire Wire Line 888 | 5900 1200 5900 1600 889 | Connection ~ 3750 1200 890 | Connection ~ 14500 3500 891 | $EndSCHEMATC 892 | --------------------------------------------------------------------------------