123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049 |
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE eagle SYSTEM "eagle.dtd">
- <eagle version="7.2.0">
- <drawing>
- <settings>
- <setting alwaysvectorfont="no"/>
- <setting verticaltext="up"/>
- </settings>
- <grid distance="12.5" unitdist="mil" unit="mil" style="lines" multiple="1" display="yes" altdistance="0.025" altunitdist="inch" altunit="inch"/>
- <layers>
- <layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
- <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
- <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
- <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
- <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
- <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
- <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
- <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
- <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
- <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
- <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
- <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
- <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
- <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
- <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
- <layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
- <layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
- <layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="25" name="tNames" color="7" fill="1" visible="no" active="yes"/>
- <layer number="26" name="bNames" color="7" fill="1" visible="no" active="yes"/>
- <layer number="27" name="tValues" color="7" fill="1" visible="no" active="yes"/>
- <layer number="28" name="bValues" color="7" fill="1" visible="no" active="yes"/>
- <layer number="29" name="tStop" color="7" fill="3" visible="no" active="yes"/>
- <layer number="30" name="bStop" color="7" fill="6" visible="no" active="yes"/>
- <layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
- <layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
- <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
- <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
- <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
- <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
- <layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
- <layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
- <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="yes"/>
- <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="yes"/>
- <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="yes"/>
- <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="yes"/>
- <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="yes"/>
- <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
- <layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
- <layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
- <layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
- <layer number="48" name="Document" color="7" fill="1" visible="no" active="yes"/>
- <layer number="49" name="Reference" color="7" fill="1" visible="no" active="yes"/>
- <layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
- <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="yes"/>
- <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="yes"/>
- <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
- <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
- <layer number="56" name="wert" color="7" fill="1" visible="no" active="yes"/>
- <layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
- <layer number="90" name="Modules" color="5" fill="1" visible="no" active="no"/>
- <layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/>
- <layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/>
- <layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/>
- <layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/>
- <layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/>
- <layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/>
- <layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/>
- <layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/>
- <layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/>
- <layer number="100" name="Signs" color="7" fill="1" visible="no" active="yes"/>
- <layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/>
- <layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/>
- <layer number="103" name="fp3" color="7" fill="1" visible="no" active="yes"/>
- <layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/>
- <layer number="105" name="Beschreib" color="9" fill="1" visible="no" active="yes"/>
- <layer number="106" name="BGA-Top" color="4" fill="1" visible="no" active="yes"/>
- <layer number="107" name="BD-Top" color="5" fill="1" visible="no" active="yes"/>
- <layer number="108" name="fp8" color="7" fill="1" visible="no" active="yes"/>
- <layer number="109" name="fp9" color="7" fill="1" visible="no" active="yes"/>
- <layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/>
- <layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/>
- <layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/>
- <layer number="113" name="ReferenceLS" color="7" fill="1" visible="no" active="no"/>
- <layer number="116" name="centerDrill" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="no"/>
- <layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/>
- <layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/>
- <layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
- <layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
- <layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/>
- <layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
- <layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
- <layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
- <layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
- <layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
- <layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/>
- <layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
- <layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/>
- <layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
- <layer number="153" name="FabDoc1" color="6" fill="1" visible="no" active="no"/>
- <layer number="154" name="FabDoc2" color="2" fill="1" visible="no" active="no"/>
- <layer number="155" name="FabDoc3" color="7" fill="15" visible="no" active="no"/>
- <layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/>
- <layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/>
- <layer number="201" name="201bmp" color="2" fill="1" visible="no" active="no"/>
- <layer number="202" name="202bmp" color="3" fill="1" visible="no" active="no"/>
- <layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/>
- <layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/>
- <layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/>
- <layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/>
- <layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/>
- <layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/>
- <layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/>
- <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
- <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
- <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
- <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
- <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
- <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
- <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
- <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
- <layer number="231" name="Eagle3D_PG1" color="7" fill="1" visible="no" active="no"/>
- <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
- <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
- <layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/>
- <layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/>
- <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
- <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
- <layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/>
- </layers>
- <board>
- <plain>
- <wire x1="0" y1="0" x2="30.46" y2="0" width="0" layer="20"/>
- <wire x1="30.46" y1="0" x2="30.46" y2="40.6275" width="0" layer="20"/>
- <wire x1="30.46" y1="40.6275" x2="0" y2="40.6275" width="0" layer="20"/>
- <wire x1="0" y1="40.6275" x2="0" y2="0" width="0" layer="20"/>
- <text x="20.32" y="22.86" size="1.778" layer="100" font="vector">G</text>
- <text x="20.32" y="20.32" size="1.778" layer="100" font="vector">TX</text>
- <text x="20.32" y="17.78" size="1.778" layer="100" font="vector">RX</text>
- <text x="6.35" y="30.48" size="1.778" layer="100" font="vector">+</text>
- <text x="6.35" y="27.94" size="1.778" layer="100" font="vector">-</text>
- <text x="8.89" y="29.21" size="1.778" layer="100" font="vector">5V</text>
- <text x="6.35" y="22.86" size="1.778" layer="100" font="vector">TX</text>
- <text x="6.35" y="16.51" size="1.778" layer="100" font="vector">RX</text>
- <text x="19.05" y="19.05" size="1.778" layer="100" font="vector" rot="R90">TTL</text>
- <circle x="4.7625" y="34.925" radius="0.429" width="0.258" layer="116"/>
- <circle x="4.7625" y="32.385" radius="0.429" width="0.258" layer="116"/>
- <circle x="28.2575" y="31.4325" radius="0.429" width="0.258" layer="116"/>
- <circle x="28.2575" y="33.9725" radius="0.429" width="0.258" layer="116"/>
- <circle x="28.2575" y="36.5125" radius="0.429" width="0.258" layer="116"/>
- <circle x="5.08" y="21.9075" radius="0.378" width="0.156" layer="116"/>
- <circle x="2.54" y="21.9075" radius="0.378" width="0.156" layer="116"/>
- <circle x="5.08" y="27.6225" radius="0.378" width="0.156" layer="116"/>
- <circle x="2.54" y="27.6225" radius="0.378" width="0.156" layer="116"/>
- <circle x="27.762" y="11.43" radius="1.001" width="1.401" layer="116"/>
- <circle x="2.718" y="11.43" radius="1" width="1.401" layer="116"/>
- <circle x="20.726" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="17.983" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="15.24" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="12.497" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="9.754" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="19.355" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="16.612" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="13.868" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="11.125" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="4.763" y="34.925" radius="0.429" width="0.258" layer="116"/>
- <circle x="4.763" y="32.385" radius="0.429" width="0.258" layer="116"/>
- <circle x="28.258" y="31.433" radius="0.428" width="0.258" layer="116"/>
- <circle x="28.258" y="33.973" radius="0.428" width="0.258" layer="116"/>
- <circle x="28.258" y="36.513" radius="0.428" width="0.258" layer="116"/>
- <circle x="22.86" y="19.685" radius="0.429" width="0.258" layer="116"/>
- <circle x="22.86" y="22.225" radius="0.429" width="0.258" layer="116"/>
- <circle x="22.86" y="24.765" radius="0.429" width="0.258" layer="116"/>
- <circle x="25.4" y="24.765" radius="0.429" width="0.258" layer="116"/>
- <circle x="25.4" y="22.225" radius="0.429" width="0.258" layer="116"/>
- <circle x="25.4" y="19.685" radius="0.429" width="0.258" layer="116"/>
- <circle x="11.748" y="20.955" radius="0.429" width="0.258" layer="116"/>
- <circle x="14.288" y="20.955" radius="0.429" width="0.258" layer="116"/>
- <circle x="16.828" y="20.955" radius="0.428" width="0.258" layer="116"/>
- <circle x="16.828" y="18.415" radius="0.428" width="0.258" layer="116"/>
- <circle x="14.288" y="18.415" radius="0.429" width="0.258" layer="116"/>
- <circle x="11.748" y="18.415" radius="0.429" width="0.258" layer="116"/>
- <circle x="4.763" y="22.86" radius="0.378" width="0.156" layer="116"/>
- <circle x="2.223" y="22.86" radius="0.378" width="0.156" layer="116"/>
- <circle x="4.763" y="27.305" radius="0.378" width="0.156" layer="116"/>
- <circle x="2.223" y="27.305" radius="0.378" width="0.156" layer="116"/>
- <circle x="27.762" y="11.43" radius="1.001" width="1.401" layer="116"/>
- <circle x="2.718" y="11.43" radius="1" width="1.401" layer="116"/>
- <circle x="20.726" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="17.983" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="15.24" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="12.497" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="9.754" y="12.7" radius="0.429" width="0.258" layer="116"/>
- <circle x="19.355" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="16.612" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="13.868" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <circle x="11.125" y="10.16" radius="0.429" width="0.258" layer="116"/>
- <text x="22.225" y="33.02" size="1.778" layer="116" font="vector">TX</text>
- <text x="22.5425" y="30.48" size="1.778" layer="116" font="vector">RX</text>
- <text x="19.685" y="23.8125" size="1.778" layer="116" font="vector">N</text>
- <text x="27.305" y="18.7325" size="1.778" layer="116" font="vector">N</text>
- <text x="27.305" y="23.8125" size="1.778" layer="116" font="vector">C</text>
- <text x="19.685" y="18.7325" size="1.778" layer="116" font="vector">C</text>
- <text x="11.1125" y="23.1775" size="1.778" layer="116" font="vector">N</text>
- <text x="16.1925" y="14.9225" size="1.778" layer="116" font="vector">N</text>
- <text x="16.1925" y="23.1775" size="1.778" layer="116" font="vector">C</text>
- <text x="11.1125" y="14.9225" size="1.778" layer="116" font="vector">C</text>
- </plain>
- <libraries>
- <library name="rcl">
- <description><b>Resistors, Capacitors, Inductors</b><p>
- Based on the previous libraries:
- <ul>
- <li>r.lbr
- <li>cap.lbr
- <li>cap-fe.lbr
- <li>captant.lbr
- <li>polcap.lbr
- <li>ipc-smd.lbr
- </ul>
- All SMD packages are defined according to the IPC specifications and CECC<p>
- <author>Created by librarian@cadsoft.de</author><p>
- <p>
- for Electrolyt Capacitors see also :<p>
- www.bccomponents.com <p>
- www.panasonic.com<p>
- www.kemet.com<p>
- http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
- <p>
- for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
- <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
- <tr valign="top">
- <! <td width="10">&nbsp;</td>
- <td width="90%">
- <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
- <P>
- <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
- <TR>
- <TD COLSPAN=8>
- <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
- </B>
- </TD><TD>&nbsp;</TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
- 3005P<BR>
- 3006P<BR>
- 3006W<BR>
- 3006Y<BR>
- 3009P<BR>
- 3009W<BR>
- 3009Y<BR>
- 3057J<BR>
- 3057L<BR>
- 3057P<BR>
- 3057Y<BR>
- 3059J<BR>
- 3059L<BR>
- 3059P<BR>
- 3059Y<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 89P<BR>
- 89W<BR>
- 89X<BR>
- 89PH<BR>
- 76P<BR>
- 89XH<BR>
- 78SLT<BR>
- 78L&nbsp;ALT<BR>
- 56P&nbsp;ALT<BR>
- 78P&nbsp;ALT<BR>
- T8S<BR>
- 78L<BR>
- 56P<BR>
- 78P<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- T18/784<BR>
- 783<BR>
- 781<BR>
- -<BR>
- -<BR>
- -<BR>
- 2199<BR>
- 1697/1897<BR>
- 1680/1880<BR>
- 2187<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 8035EKP/CT20/RJ-20P<BR>
- -<BR>
- RJ-20X<BR>
- -<BR>
- -<BR>
- -<BR>
- 1211L<BR>
- 8012EKQ&nbsp;ALT<BR>
- 8012EKR&nbsp;ALT<BR>
- 1211P<BR>
- 8012EKJ<BR>
- 8012EKL<BR>
- 8012EKQ<BR>
- 8012EKR<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 2101P<BR>
- 2101W<BR>
- 2101Y<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 2102L<BR>
- 2102S<BR>
- 2102Y<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- EVMCOG<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 43P<BR>
- 43W<BR>
- 43Y<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 40L<BR>
- 40P<BR>
- 40Y<BR>
- 70Y-T602<BR>
- 70L<BR>
- 70P<BR>
- 70Y<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- RT/RTR12<BR>
- RT/RTR12<BR>
- RT/RTR12<BR>
- -<BR>
- RJ/RJR12<BR>
- RJ/RJR12<BR>
- RJ/RJR12<BR></FONT>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>&nbsp;
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>
- <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3250L<BR>
- 3250P<BR>
- 3250W<BR>
- 3250X<BR>
- 3252P<BR>
- 3252W<BR>
- 3252X<BR>
- 3260P<BR>
- 3260W<BR>
- 3260X<BR>
- 3262P<BR>
- 3262W<BR>
- 3262X<BR>
- 3266P<BR>
- 3266W<BR>
- 3266X<BR>
- 3290H<BR>
- 3290P<BR>
- 3290W<BR>
- 3292P<BR>
- 3292W<BR>
- 3292X<BR>
- 3296P<BR>
- 3296W<BR>
- 3296X<BR>
- 3296Y<BR>
- 3296Z<BR>
- 3299P<BR>
- 3299W<BR>
- 3299X<BR>
- 3299Y<BR>
- 3299Z<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 66P&nbsp;ALT<BR>
- 66W&nbsp;ALT<BR>
- 66X&nbsp;ALT<BR>
- 66P&nbsp;ALT<BR>
- 66W&nbsp;ALT<BR>
- 66X&nbsp;ALT<BR>
- -<BR>
- 64W&nbsp;ALT<BR>
- -<BR>
- 64P&nbsp;ALT<BR>
- 64W&nbsp;ALT<BR>
- 64X&nbsp;ALT<BR>
- 64P<BR>
- 64W<BR>
- 64X<BR>
- 66X&nbsp;ALT<BR>
- 66P&nbsp;ALT<BR>
- 66W&nbsp;ALT<BR>
- 66P<BR>
- 66W<BR>
- 66X<BR>
- 67P<BR>
- 67W<BR>
- 67X<BR>
- 67Y<BR>
- 67Z<BR>
- 68P<BR>
- 68W<BR>
- 68X<BR>
- 67Y&nbsp;ALT<BR>
- 67Z&nbsp;ALT<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 5050<BR>
- 5091<BR>
- 5080<BR>
- 5087<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- T63YB<BR>
- T63XB<BR>
- -<BR>
- -<BR>
- -<BR>
- 5887<BR>
- 5891<BR>
- 5880<BR>
- -<BR>
- -<BR>
- -<BR>
- T93Z<BR>
- T93YA<BR>
- T93XA<BR>
- T93YB<BR>
- T93XB<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 8026EKP<BR>
- 8026EKW<BR>
- 8026EKM<BR>
- 8026EKP<BR>
- 8026EKB<BR>
- 8026EKM<BR>
- 1309X<BR>
- 1309P<BR>
- 1309W<BR>
- 8024EKP<BR>
- 8024EKW<BR>
- 8024EKN<BR>
- RJ-9P/CT9P<BR>
- RJ-9W<BR>
- RJ-9X<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 3103P<BR>
- 3103Y<BR>
- 3103Z<BR>
- 3103P<BR>
- 3103Y<BR>
- 3103Z<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 3105P/3106P<BR>
- 3105W/3106W<BR>
- 3105X/3106X<BR>
- 3105Y/3106Y<BR>
- 3105Z/3105Z<BR>
- 3102P<BR>
- 3102W<BR>
- 3102X<BR>
- 3102Y<BR>
- 3102Z<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- EVMCBG<BR>
- EVMCCG<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 55-1-X<BR>
- 55-4-X<BR>
- 55-3-X<BR>
- 55-2-X<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 50-2-X<BR>
- 50-4-X<BR>
- 50-3-X<BR>
- -<BR>
- -<BR>
- -<BR>
- 64P<BR>
- 64W<BR>
- 64X<BR>
- 64Y<BR>
- 64Z<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- RT/RTR22<BR>
- RT/RTR22<BR>
- RT/RTR22<BR>
- RT/RTR22<BR>
- RJ/RJR22<BR>
- RJ/RJR22<BR>
- RJ/RJR22<BR>
- RT/RTR26<BR>
- RT/RTR26<BR>
- RT/RTR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RT/RTR24<BR>
- RT/RTR24<BR>
- RT/RTR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>&nbsp;
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>
- <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3323P<BR>
- 3323S<BR>
- 3323W<BR>
- 3329H<BR>
- 3329P<BR>
- 3329W<BR>
- 3339H<BR>
- 3339P<BR>
- 3339W<BR>
- 3352E<BR>
- 3352H<BR>
- 3352K<BR>
- 3352P<BR>
- 3352T<BR>
- 3352V<BR>
- 3352W<BR>
- 3362H<BR>
- 3362M<BR>
- 3362P<BR>
- 3362R<BR>
- 3362S<BR>
- 3362U<BR>
- 3362W<BR>
- 3362X<BR>
- 3386B<BR>
- 3386C<BR>
- 3386F<BR>
- 3386H<BR>
- 3386K<BR>
- 3386M<BR>
- 3386P<BR>
- 3386S<BR>
- 3386W<BR>
- 3386X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 25P<BR>
- 25S<BR>
- 25RX<BR>
- 82P<BR>
- 82M<BR>
- 82PA<BR>
- -<BR>
- -<BR>
- -<BR>
- 91E<BR>
- 91X<BR>
- 91T<BR>
- 91B<BR>
- 91A<BR>
- 91V<BR>
- 91W<BR>
- 25W<BR>
- 25V<BR>
- 25P<BR>
- -<BR>
- 25S<BR>
- 25U<BR>
- 25RX<BR>
- 25X<BR>
- 72XW<BR>
- 72XL<BR>
- 72PM<BR>
- 72RX<BR>
- -<BR>
- 72PX<BR>
- 72P<BR>
- 72RXW<BR>
- 72RXL<BR>
- 72X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- T7YB<BR>
- T7YA<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- TXD<BR>
- TYA<BR>
- TYP<BR>
- -<BR>
- TYD<BR>
- TX<BR>
- -<BR>
- 150SX<BR>
- 100SX<BR>
- 102T<BR>
- 101S<BR>
- 190T<BR>
- 150TX<BR>
- 101<BR>
- -<BR>
- -<BR>
- 101SX<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- ET6P<BR>
- ET6S<BR>
- ET6X<BR>
- RJ-6W/8014EMW<BR>
- RJ-6P/8014EMP<BR>
- RJ-6X/8014EMX<BR>
- TM7W<BR>
- TM7P<BR>
- TM7X<BR>
- -<BR>
- 8017SMS<BR>
- -<BR>
- 8017SMB<BR>
- 8017SMA<BR>
- -<BR>
- -<BR>
- CT-6W<BR>
- CT-6H<BR>
- CT-6P<BR>
- CT-6R<BR>
- -<BR>
- CT-6V<BR>
- CT-6X<BR>
- -<BR>
- -<BR>
- 8038EKV<BR>
- -<BR>
- 8038EKX<BR>
- -<BR>
- -<BR>
- 8038EKP<BR>
- 8038EKZ<BR>
- 8038EKW<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- 3321H<BR>
- 3321P<BR>
- 3321N<BR>
- 1102H<BR>
- 1102P<BR>
- 1102T<BR>
- RVA0911V304A<BR>
- -<BR>
- RVA0911H413A<BR>
- RVG0707V100A<BR>
- RVA0607V(H)306A<BR>
- RVA1214H213A<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 3104B<BR>
- 3104C<BR>
- 3104F<BR>
- 3104H<BR>
- -<BR>
- 3104M<BR>
- 3104P<BR>
- 3104S<BR>
- 3104W<BR>
- 3104X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- EVMQ0G<BR>
- EVMQIG<BR>
- EVMQ3G<BR>
- EVMS0G<BR>
- EVMQ0G<BR>
- EVMG0G<BR>
- -<BR>
- -<BR>
- -<BR>
- EVMK4GA00B<BR>
- EVM30GA00B<BR>
- EVMK0GA00B<BR>
- EVM38GA00B<BR>
- EVMB6<BR>
- EVLQ0<BR>
- -<BR>
- EVMMSG<BR>
- EVMMBG<BR>
- EVMMAG<BR>
- -<BR>
- -<BR>
- EVMMCS<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- EVMM1<BR>
- -<BR>
- -<BR>
- EVMM0<BR>
- -<BR>
- -<BR>
- EVMM3<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- 62-3-1<BR>
- 62-1-2<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 67R<BR>
- -<BR>
- 67P<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 67X<BR>
- 63V<BR>
- 63S<BR>
- 63M<BR>
- -<BR>
- -<BR>
- 63H<BR>
- 63P<BR>
- -<BR>
- -<BR>
- 63X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- RJ/RJR50<BR>
- RJ/RJR50<BR>
- RJ/RJR50<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- </TABLE>
- <P>&nbsp;<P>
- <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
- <TR>
- <TD COLSPAN=7>
- <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
- <P>
- <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3224G<BR>
- 3224J<BR>
- 3224W<BR>
- 3269P<BR>
- 3269W<BR>
- 3269X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 44G<BR>
- 44J<BR>
- 44W<BR>
- 84P<BR>
- 84W<BR>
- 84X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- ST63Z<BR>
- ST63Y<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- ST5P<BR>
- ST5W<BR>
- ST5X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=7>&nbsp;
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=7>
- <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3314G<BR>
- 3314J<BR>
- 3364A/B<BR>
- 3364C/D<BR>
- 3364W/X<BR>
- 3313G<BR>
- 3313J<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 23B<BR>
- 23A<BR>
- 21X<BR>
- 21W<BR>
- -<BR>
- 22B<BR>
- 22A<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- ST5YL/ST53YL<BR>
- ST5YJ/5T53YJ<BR>
- ST-23A<BR>
- ST-22B<BR>
- ST-22<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- ST-4B<BR>
- ST-4A<BR>
- -<BR>
- -<BR>
- -<BR>
- ST-3B<BR>
- ST-3A<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- EVM-6YS<BR>
- EVM-1E<BR>
- EVM-1G<BR>
- EVM-1D<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- G4B<BR>
- G4A<BR>
- TR04-3S1<BR>
- TRG04-2S1<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- DVR-43A<BR>
- CVR-42C<BR>
- CVR-42A/C<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- </TABLE>
- <P>
- <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT>
- <P>
- &nbsp;
- <P>
- </td>
- </tr>
- </table></description>
- <packages>
- <package name="C1206">
- <description><b>CAPACITOR</b></description>
- <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
- <wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
- <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
- <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
- <text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
- <rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
- </package>
- <package name="R1206">
- <description><b>RESISTOR</b></description>
- <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
- <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
- <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
- <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
- <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
- <text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
- <text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
- <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
- <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
- </package>
- </packages>
- </library>
- <library name="pinhead">
- <description><b>Pin Header Connectors</b><p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="1X02">
- <description><b>PIN HEADER</b></description>
- <wire x1="-1.905" y1="1.27" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="1.27" x2="0" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="0" y1="0.635" x2="0" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="0" y1="-0.635" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-2.54" y1="0.635" x2="-2.54" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="1.27" x2="-2.54" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-2.54" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="-1.27" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="0" y1="0.635" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="1.27" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="1.27" x2="2.54" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="2.54" y1="0.635" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="2.54" y1="-0.635" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="-1.27" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="-1.27" x2="0" y2="-0.635" width="0.1524" layer="21"/>
- <pad name="1" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="2" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
- <text x="-2.6162" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
- <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
- </package>
- <package name="1X03">
- <description><b>PIN HEADER</b></description>
- <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="2" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="3" x="2.54" y="0" drill="1.016" shape="long" rot="R90"/>
- <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.81" y="-3.175" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
- <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
- <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
- </package>
- </packages>
- </library>
- <library name="led">
- <description><b>LEDs</b><p>
- <author>Created by librarian@cadsoft.de</author><br>
- Extended by Federico Battaglin <author>&lt;federico.rd@fdpinternational.com&gt;</author> with DUOLED</description>
- <packages>
- <package name="LED3MM">
- <description><B>LED</B><p>
- 3 mm, round</description>
- <wire x1="1.5748" y1="-1.27" x2="1.5748" y2="1.27" width="0.254" layer="51"/>
- <wire x1="-1.524" y1="0" x2="-1.1708" y2="0.9756" width="0.1524" layer="51" curve="-39.80361"/>
- <wire x1="-1.524" y1="0" x2="-1.1391" y2="-1.0125" width="0.1524" layer="51" curve="41.633208"/>
- <wire x1="1.1571" y1="0.9918" x2="1.524" y2="0" width="0.1524" layer="51" curve="-40.601165"/>
- <wire x1="1.1708" y1="-0.9756" x2="1.524" y2="0" width="0.1524" layer="51" curve="39.80361"/>
- <wire x1="0" y1="1.524" x2="1.2401" y2="0.8858" width="0.1524" layer="21" curve="-54.461337"/>
- <wire x1="-1.2192" y1="0.9144" x2="0" y2="1.524" width="0.1524" layer="21" curve="-53.130102"/>
- <wire x1="0" y1="-1.524" x2="1.203" y2="-0.9356" width="0.1524" layer="21" curve="52.126876"/>
- <wire x1="-1.203" y1="-0.9356" x2="0" y2="-1.524" width="0.1524" layer="21" curve="52.126876"/>
- <wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="51" curve="-90"/>
- <wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="51" curve="-90"/>
- <wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="51" curve="90"/>
- <wire x1="0" y1="-1.016" x2="1.016" y2="0" width="0.1524" layer="51" curve="90"/>
- <wire x1="0" y1="2.032" x2="1.561" y2="1.3009" width="0.254" layer="21" curve="-50.193108"/>
- <wire x1="-1.7929" y1="0.9562" x2="0" y2="2.032" width="0.254" layer="21" curve="-61.926949"/>
- <wire x1="0" y1="-2.032" x2="1.5512" y2="-1.3126" width="0.254" layer="21" curve="49.763022"/>
- <wire x1="-1.7643" y1="-1.0082" x2="0" y2="-2.032" width="0.254" layer="21" curve="60.255215"/>
- <wire x1="-2.032" y1="0" x2="-1.7891" y2="0.9634" width="0.254" layer="51" curve="-28.301701"/>
- <wire x1="-2.032" y1="0" x2="-1.7306" y2="-1.065" width="0.254" layer="51" curve="31.60822"/>
- <pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
- <pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
- <text x="1.905" y="0.381" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="1.905" y="-1.651" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- </packages>
- </library>
- <library name="con-subd">
- <description><b>SUB-D Connectors</b><p>
- Harting<br>
- NorComp<br>
- <p>
- PREFIX :<br>
- H = High density<br>
- F = Female<br>
- M = Male<p>
- NUMBER: Number of pins<p>
- SUFFIX :<br>
- H = Horizontal<br>
- V = Vertical <br>
- P = Shield pin on housing<br>
- B = No mounting holes<br>
- S = Pins individually placeable (Single)<br>
- D = Direct mounting <p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="F09H">
- <description><b>SUB-D</b></description>
- <wire x1="-7.62" y1="17.907" x2="-7.366" y2="17.907" width="0.1524" layer="21"/>
- <wire x1="-8.128" y1="17.399" x2="-7.62" y2="17.907" width="0.1524" layer="21" curve="-90"/>
- <wire x1="7.62" y1="17.907" x2="8.128" y2="17.399" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-15.494" y1="7.62" x2="-10.414" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="7.62" x2="-15.494" y2="10.668" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="7.62" x2="-15.494" y2="7.493" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="10.668" x2="-15.494" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="11.176" x2="-15.494" y2="11.684" width="0.1524" layer="21"/>
- <wire x1="15.494" y1="11.684" x2="15.494" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="15.494" y1="11.176" x2="15.494" y2="10.668" width="0.1524" layer="21"/>
- <wire x1="15.494" y1="10.668" x2="15.494" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="15.494" y1="7.62" x2="15.494" y2="7.493" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="11.176" x2="-12.954" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="-12.954" y1="11.176" x2="-10.414" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="-10.414" y1="10.668" x2="-10.414" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="-10.414" y1="10.668" x2="-10.287" y2="10.668" width="0.1524" layer="21"/>
- <wire x1="-10.287" y1="8.255" x2="-9.652" y2="7.62" width="0.1524" layer="21" curve="90"/>
- <wire x1="-10.414" y1="7.62" x2="-9.525" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="-9.525" y1="7.62" x2="-9.271" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="-10.287" y1="8.255" x2="-10.287" y2="10.668" width="0.1524" layer="21"/>
- <wire x1="-9.271" y1="7.62" x2="-9.271" y2="6.858" width="0.1524" layer="21"/>
- <wire x1="-9.271" y1="7.62" x2="9.271" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="-9.271" y1="6.858" x2="9.271" y2="6.858" width="0.1524" layer="21"/>
- <wire x1="9.271" y1="7.62" x2="9.271" y2="6.858" width="0.1524" layer="21"/>
- <wire x1="9.271" y1="7.62" x2="9.525" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="9.525" y1="7.62" x2="10.414" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="12.954" y1="11.176" x2="15.494" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="-10.414" y1="11.176" x2="10.414" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="10.414" y1="11.176" x2="12.954" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="10.414" y1="10.668" x2="10.414" y2="11.176" width="0.1524" layer="21"/>
- <wire x1="10.287" y1="8.255" x2="10.287" y2="10.668" width="0.1524" layer="21"/>
- <wire x1="10.287" y1="10.668" x2="10.414" y2="10.668" width="0.1524" layer="21"/>
- <wire x1="9.652" y1="7.62" x2="10.287" y2="8.255" width="0.1524" layer="21" curve="90"/>
- <wire x1="-14.859" y1="-3.175" x2="-15.494" y2="-2.54" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="-2.54" x2="-15.494" y2="7.493" width="0.1524" layer="21"/>
- <wire x1="-10.033" y1="-3.175" x2="-14.859" y2="-3.175" width="0.1524" layer="21"/>
- <wire x1="-10.033" y1="-3.175" x2="-9.525" y2="-2.667" width="0.1524" layer="21"/>
- <wire x1="-9.525" y1="-2.667" x2="-9.525" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="9.525" y1="-2.667" x2="9.525" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="9.525" y1="-2.667" x2="10.033" y2="-3.175" width="0.1524" layer="21"/>
- <wire x1="10.033" y1="-3.175" x2="14.986" y2="-3.175" width="0.1524" layer="21"/>
- <wire x1="14.986" y1="-3.175" x2="15.494" y2="-2.667" width="0.1524" layer="21"/>
- <wire x1="15.494" y1="-2.667" x2="15.494" y2="7.493" width="0.1524" layer="21"/>
- <wire x1="0" y1="-1.143" x2="0" y2="-0.127" width="0.8128" layer="51"/>
- <wire x1="-2.7432" y1="-1.143" x2="-2.7432" y2="-0.127" width="0.8128" layer="51"/>
- <wire x1="-5.4864" y1="-1.143" x2="-5.4864" y2="-0.127" width="0.8128" layer="51"/>
- <wire x1="-4.1148" y1="1.397" x2="-4.1148" y2="2.413" width="0.8128" layer="51"/>
- <wire x1="-1.3716" y1="1.397" x2="-1.3716" y2="2.413" width="0.8128" layer="51"/>
- <wire x1="1.3716" y1="1.397" x2="1.3716" y2="2.413" width="0.8128" layer="51"/>
- <wire x1="2.7432" y1="-1.143" x2="2.7432" y2="-0.127" width="0.8128" layer="51"/>
- <wire x1="4.1148" y1="1.397" x2="4.1148" y2="2.413" width="0.8128" layer="51"/>
- <wire x1="5.4864" y1="-1.143" x2="5.4864" y2="-0.127" width="0.8128" layer="51"/>
- <wire x1="10.414" y1="7.62" x2="15.494" y2="7.62" width="0.1524" layer="21"/>
- <wire x1="-15.494" y1="11.684" x2="-7.747" y2="11.684" width="0.1524" layer="21"/>
- <wire x1="-8.128" y1="12.319" x2="-8.128" y2="17.399" width="0.1524" layer="21"/>
- <wire x1="-8.763" y1="11.684" x2="-8.128" y2="12.319" width="0.1524" layer="21" curve="90"/>
- <wire x1="7.747" y1="11.684" x2="15.494" y2="11.684" width="0.1524" layer="21"/>
- <wire x1="8.128" y1="12.319" x2="8.128" y2="17.399" width="0.1524" layer="21"/>
- <wire x1="8.128" y1="12.319" x2="8.763" y2="11.684" width="0.1524" layer="21" curve="90"/>
- <wire x1="7.747" y1="11.684" x2="-7.747" y2="11.684" width="0.1524" layer="21"/>
- <wire x1="-7.366" y1="17.907" x2="7.366" y2="17.907" width="0.1524" layer="21"/>
- <wire x1="7.366" y1="17.907" x2="7.62" y2="17.907" width="0.1524" layer="21"/>
- <circle x="-12.5222" y="0" radius="1.651" width="0.1524" layer="21"/>
- <circle x="-12.5222" y="0" radius="2.667" width="0" layer="42"/>
- <circle x="-12.5222" y="0" radius="2.667" width="0" layer="43"/>
- <circle x="12.5222" y="0" radius="2.667" width="0" layer="42"/>
- <circle x="12.5222" y="0" radius="2.667" width="0" layer="43"/>
- <circle x="12.5222" y="0" radius="1.651" width="0.1524" layer="21"/>
- <pad name="1" x="-5.4864" y="-1.27" drill="1.016" shape="octagon"/>
- <pad name="2" x="-2.7432" y="-1.27" drill="1.016" shape="octagon"/>
- <pad name="3" x="0" y="-1.27" drill="1.016" shape="octagon"/>
- <pad name="4" x="2.7432" y="-1.27" drill="1.016" shape="octagon"/>
- <pad name="5" x="5.4864" y="-1.27" drill="1.016" shape="octagon"/>
- <pad name="6" x="-4.1148" y="1.27" drill="1.016" shape="octagon"/>
- <pad name="7" x="-1.3716" y="1.27" drill="1.016" shape="octagon"/>
- <pad name="8" x="1.3716" y="1.27" drill="1.016" shape="octagon"/>
- <pad name="9" x="4.1148" y="1.27" drill="1.016" shape="octagon"/>
- <text x="-15.24" y="-6.35" size="1.778" layer="25" ratio="10">>NAME</text>
- <text x="-5.08" y="13.97" size="1.778" layer="27" ratio="10">>VALUE</text>
- <text x="-7.62" y="-1.905" size="1.27" layer="21" ratio="10">1</text>
- <text x="6.985" y="-1.905" size="1.27" layer="21" ratio="10">5</text>
- <text x="6.985" y="0.635" size="1.27" layer="21" ratio="10">9</text>
- <text x="-7.62" y="0.635" size="1.27" layer="21" ratio="10">6</text>
- <text x="14.986" y="2.54" size="1.27" layer="21" ratio="10" rot="R90">2,54</text>
- <text x="-7.62" y="8.509" size="1.27" layer="21" ratio="10">F09</text>
- <rectangle x1="-9.271" y1="6.858" x2="9.271" y2="7.62" layer="21"/>
- <rectangle x1="-15.494" y1="11.176" x2="15.494" y2="11.684" layer="21"/>
- <rectangle x1="-5.8928" y1="-0.381" x2="-5.08" y2="6.858" layer="21"/>
- <rectangle x1="-4.5212" y1="2.159" x2="-3.7084" y2="6.858" layer="21"/>
- <rectangle x1="-3.1496" y1="-0.381" x2="-2.3368" y2="6.858" layer="21"/>
- <rectangle x1="-1.778" y1="2.159" x2="-0.9652" y2="6.858" layer="21"/>
- <rectangle x1="-0.4064" y1="-0.381" x2="0.4064" y2="6.858" layer="21"/>
- <rectangle x1="0.9652" y1="2.159" x2="1.778" y2="6.858" layer="21"/>
- <rectangle x1="2.3368" y1="-0.381" x2="3.1496" y2="6.858" layer="21"/>
- <rectangle x1="3.7084" y1="2.159" x2="4.5212" y2="6.858" layer="21"/>
- <rectangle x1="5.08" y1="-0.381" x2="5.8928" y2="6.858" layer="21"/>
- <hole x="-12.5222" y="0" drill="3.302"/>
- <hole x="12.5222" y="0" drill="3.302"/>
- </package>
- </packages>
- </library>
- <library name="maxim">
- <description><b>Maxim Components</b><p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="SO16">
- <description><b>Small Outline Package</b> .150 SIOC<p>
- Source: http://www.maxim-ic.com/package_drawings/21-0041B.pdf</description>
- <wire x1="4.699" y1="1.9558" x2="-4.699" y2="1.9558" width="0.1524" layer="21"/>
- <wire x1="4.699" y1="-1.9558" x2="5.08" y2="-1.5748" width="0.1524" layer="21" curve="90"/>
- <wire x1="-5.08" y1="1.5748" x2="-4.699" y2="1.9558" width="0.1524" layer="21" curve="-90"/>
- <wire x1="4.699" y1="1.9558" x2="5.08" y2="1.5748" width="0.1524" layer="21" curve="-90"/>
- <wire x1="-5.08" y1="-1.5748" x2="-4.699" y2="-1.9558" width="0.1524" layer="21" curve="90"/>
- <wire x1="-4.699" y1="-1.9558" x2="4.699" y2="-1.9558" width="0.1524" layer="21"/>
- <wire x1="5.08" y1="-1.5748" x2="5.08" y2="1.5748" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="1.5748" x2="-5.08" y2="0.508" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="0.508" x2="-5.08" y2="-0.508" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="-0.508" x2="-5.08" y2="-1.5748" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="0.508" x2="-5.08" y2="-0.508" width="0.1524" layer="21" curve="-180"/>
- <wire x1="-5.08" y1="-1.6002" x2="5.08" y2="-1.6002" width="0.0508" layer="21"/>
- <smd name="1" x="-4.445" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="16" x="-4.445" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="2" x="-3.175" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="3" x="-1.905" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="15" x="-3.175" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="14" x="-1.905" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="4" x="-0.635" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="13" x="-0.635" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="5" x="0.635" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="12" x="0.635" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="6" x="1.905" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="7" x="3.175" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="11" x="1.905" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="10" x="3.175" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="8" x="4.445" y="-3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <smd name="9" x="4.445" y="3.0734" dx="0.6604" dy="2.032" layer="1"/>
- <text x="-4.064" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
- <text x="-5.461" y="-2.032" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text>
- <rectangle x1="-0.889" y1="1.9558" x2="-0.381" y2="3.0988" layer="51"/>
- <rectangle x1="-4.699" y1="-3.0988" x2="-4.191" y2="-1.9558" layer="51"/>
- <rectangle x1="-3.429" y1="-3.0988" x2="-2.921" y2="-1.9558" layer="51"/>
- <rectangle x1="-2.159" y1="-3.0734" x2="-1.651" y2="-1.9304" layer="51"/>
- <rectangle x1="-0.889" y1="-3.0988" x2="-0.381" y2="-1.9558" layer="51"/>
- <rectangle x1="-2.159" y1="1.9558" x2="-1.651" y2="3.0988" layer="51"/>
- <rectangle x1="-3.429" y1="1.9558" x2="-2.921" y2="3.0988" layer="51"/>
- <rectangle x1="-4.699" y1="1.9558" x2="-4.191" y2="3.0988" layer="51"/>
- <rectangle x1="0.381" y1="-3.0988" x2="0.889" y2="-1.9558" layer="51"/>
- <rectangle x1="1.651" y1="-3.0988" x2="2.159" y2="-1.9558" layer="51"/>
- <rectangle x1="2.921" y1="-3.0988" x2="3.429" y2="-1.9558" layer="51"/>
- <rectangle x1="4.191" y1="-3.0988" x2="4.699" y2="-1.9558" layer="51"/>
- <rectangle x1="0.381" y1="1.9558" x2="0.889" y2="3.0988" layer="51"/>
- <rectangle x1="1.651" y1="1.9558" x2="2.159" y2="3.0988" layer="51"/>
- <rectangle x1="2.921" y1="1.9558" x2="3.429" y2="3.0988" layer="51"/>
- <rectangle x1="4.191" y1="1.9558" x2="4.699" y2="3.0988" layer="51"/>
- </package>
- </packages>
- </library>
- <library name="adafruit">
- <packages>
- <package name="1X03">
- <description><b>PIN HEADER</b></description>
- <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="1.016" rot="R90"/>
- <pad name="2" x="0" y="0" drill="1.016" rot="R90"/>
- <pad name="3" x="2.54" y="0" drill="1.016" rot="R90"/>
- <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.81" y="-3.175" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
- <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
- <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
- </package>
- </packages>
- </library>
- </libraries>
- <attributes>
- </attributes>
- <variantdefs>
- </variantdefs>
- <classes>
- <class number="0" name="default" width="0" drill="0">
- </class>
- </classes>
- <designrules name="default *">
- <description language="de"><b>EAGLE Design Rules</b>
- <p>
- Die Standard-Design-Rules sind so gewählt, dass sie für
- die meisten Anwendungen passen. Sollte ihre Platine
- besondere Anforderungen haben, treffen Sie die erforderlichen
- Einstellungen hier und speichern die Design Rules unter
- einem neuen Namen ab.</description>
- <description language="en"><b>EAGLE Design Rules</b>
- <p>
- The default Design Rules have been set to cover
- a wide range of applications. Your particular design
- may have different requirements, so please make the
- necessary adjustments and save your customized
- design rules under a new name.</description>
- <param name="layerSetup" value="(1*16)"/>
- <param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/>
- <param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
- <param name="mdWireWire" value="8mil"/>
- <param name="mdWirePad" value="8mil"/>
- <param name="mdWireVia" value="8mil"/>
- <param name="mdPadPad" value="8mil"/>
- <param name="mdPadVia" value="8mil"/>
- <param name="mdViaVia" value="8mil"/>
- <param name="mdSmdPad" value="8mil"/>
- <param name="mdSmdVia" value="8mil"/>
- <param name="mdSmdSmd" value="8mil"/>
- <param name="mdViaViaSameLayer" value="8mil"/>
- <param name="mnLayersViaInSmd" value="2"/>
- <param name="mdCopperDimension" value="40mil"/>
- <param name="mdDrill" value="8mil"/>
- <param name="mdSmdStop" value="0mil"/>
- <param name="msWidth" value="10mil"/>
- <param name="msDrill" value="24mil"/>
- <param name="msMicroVia" value="9.99mm"/>
- <param name="msBlindViaRatio" value="0.5"/>
- <param name="rvPadTop" value="0.25"/>
- <param name="rvPadInner" value="0.25"/>
- <param name="rvPadBottom" value="0.25"/>
- <param name="rvViaOuter" value="0.25"/>
- <param name="rvViaInner" value="0.25"/>
- <param name="rvMicroViaOuter" value="0.25"/>
- <param name="rvMicroViaInner" value="0.25"/>
- <param name="rlMinPadTop" value="18mil"/>
- <param name="rlMaxPadTop" value="25mil"/>
- <param name="rlMinPadInner" value="18mil"/>
- <param name="rlMaxPadInner" value="25mil"/>
- <param name="rlMinPadBottom" value="18mil"/>
- <param name="rlMaxPadBottom" value="25mil"/>
- <param name="rlMinViaOuter" value="15mil"/>
- <param name="rlMaxViaOuter" value="20mil"/>
- <param name="rlMinViaInner" value="8mil"/>
- <param name="rlMaxViaInner" value="20mil"/>
- <param name="rlMinMicroViaOuter" value="4mil"/>
- <param name="rlMaxMicroViaOuter" value="20mil"/>
- <param name="rlMinMicroViaInner" value="4mil"/>
- <param name="rlMaxMicroViaInner" value="20mil"/>
- <param name="psTop" value="1"/>
- <param name="psBottom" value="1"/>
- <param name="psFirst" value="1"/>
- <param name="psElongationLong" value="100"/>
- <param name="psElongationOffset" value="100"/>
- <param name="mvStopFrame" value="1"/>
- <param name="mvCreamFrame" value="0"/>
- <param name="mlMinStopFrame" value="4mil"/>
- <param name="mlMaxStopFrame" value="4mil"/>
- <param name="mlMinCreamFrame" value="0mil"/>
- <param name="mlMaxCreamFrame" value="0mil"/>
- <param name="mlViaStopLimit" value="0mil"/>
- <param name="srRoundness" value="0"/>
- <param name="srMinRoundness" value="0mil"/>
- <param name="srMaxRoundness" value="0mil"/>
- <param name="slThermalIsolate" value="10mil"/>
- <param name="slThermalsForVias" value="0"/>
- <param name="dpMaxLengthDifference" value="10mm"/>
- <param name="dpGapFactor" value="2.5"/>
- <param name="checkGrid" value="0"/>
- <param name="checkAngle" value="0"/>
- <param name="checkFont" value="1"/>
- <param name="checkRestrict" value="1"/>
- <param name="useDiameter" value="13"/>
- <param name="maxErrors" value="50"/>
- </designrules>
- <autorouter>
- <pass name="Default">
- <param name="RoutingGrid" value="50mil"/>
- <param name="AutoGrid" value="1"/>
- <param name="Efforts" value="0"/>
- <param name="TopRouterVariant" value="1"/>
- <param name="tpViaShape" value="round"/>
- <param name="PrefDir.1" value="a"/>
- <param name="PrefDir.2" value="0"/>
- <param name="PrefDir.3" value="0"/>
- <param name="PrefDir.4" value="0"/>
- <param name="PrefDir.5" value="0"/>
- <param name="PrefDir.6" value="0"/>
- <param name="PrefDir.7" value="0"/>
- <param name="PrefDir.8" value="0"/>
- <param name="PrefDir.9" value="0"/>
- <param name="PrefDir.10" value="0"/>
- <param name="PrefDir.11" value="0"/>
- <param name="PrefDir.12" value="0"/>
- <param name="PrefDir.13" value="0"/>
- <param name="PrefDir.14" value="0"/>
- <param name="PrefDir.15" value="0"/>
- <param name="PrefDir.16" value="a"/>
- <param name="cfVia" value="8"/>
- <param name="cfNonPref" value="5"/>
- <param name="cfChangeDir" value="2"/>
- <param name="cfOrthStep" value="2"/>
- <param name="cfDiagStep" value="3"/>
- <param name="cfExtdStep" value="0"/>
- <param name="cfBonusStep" value="1"/>
- <param name="cfMalusStep" value="1"/>
- <param name="cfPadImpact" value="4"/>
- <param name="cfSmdImpact" value="4"/>
- <param name="cfBusImpact" value="0"/>
- <param name="cfHugging" value="3"/>
- <param name="cfAvoid" value="4"/>
- <param name="cfPolygon" value="10"/>
- <param name="cfBase.1" value="0"/>
- <param name="cfBase.2" value="1"/>
- <param name="cfBase.3" value="1"/>
- <param name="cfBase.4" value="1"/>
- <param name="cfBase.5" value="1"/>
- <param name="cfBase.6" value="1"/>
- <param name="cfBase.7" value="1"/>
- <param name="cfBase.8" value="1"/>
- <param name="cfBase.9" value="1"/>
- <param name="cfBase.10" value="1"/>
- <param name="cfBase.11" value="1"/>
- <param name="cfBase.12" value="1"/>
- <param name="cfBase.13" value="1"/>
- <param name="cfBase.14" value="1"/>
- <param name="cfBase.15" value="1"/>
- <param name="cfBase.16" value="0"/>
- <param name="mnVias" value="20"/>
- <param name="mnSegments" value="9999"/>
- <param name="mnExtdSteps" value="9999"/>
- <param name="mnRipupLevel" value="10"/>
- <param name="mnRipupSteps" value="100"/>
- <param name="mnRipupTotal" value="100"/>
- </pass>
- <pass name="Follow-me" refer="Default" active="yes">
- </pass>
- <pass name="Busses" refer="Default" active="yes">
- <param name="cfNonPref" value="4"/>
- <param name="cfBusImpact" value="4"/>
- <param name="cfHugging" value="0"/>
- <param name="mnVias" value="0"/>
- </pass>
- <pass name="Route" refer="Default" active="yes">
- </pass>
- <pass name="Optimize1" refer="Default" active="yes">
- <param name="cfVia" value="99"/>
- <param name="cfExtdStep" value="10"/>
- <param name="cfHugging" value="1"/>
- <param name="mnExtdSteps" value="1"/>
- <param name="mnRipupLevel" value="0"/>
- </pass>
- <pass name="Optimize2" refer="Optimize1" active="yes">
- <param name="cfNonPref" value="0"/>
- <param name="cfChangeDir" value="6"/>
- <param name="cfExtdStep" value="0"/>
- <param name="cfBonusStep" value="2"/>
- <param name="cfMalusStep" value="2"/>
- <param name="cfPadImpact" value="2"/>
- <param name="cfSmdImpact" value="2"/>
- <param name="cfHugging" value="0"/>
- </pass>
- <pass name="Optimize3" refer="Optimize2" active="yes">
- <param name="cfChangeDir" value="8"/>
- <param name="cfPadImpact" value="0"/>
- <param name="cfSmdImpact" value="0"/>
- </pass>
- <pass name="Optimize4" refer="Optimize3" active="yes">
- <param name="cfChangeDir" value="25"/>
- </pass>
- </autorouter>
- <elements>
- <element name="C1" library="rcl" package="C1206" value="" x="12.7" y="37.1475" rot="MR180"/>
- <element name="C2" library="rcl" package="C1206" value="" x="17.78" y="37.1475" rot="MR180"/>
- <element name="C3" library="rcl" package="C1206" value="" x="9.525" y="30.1625" rot="MR270"/>
- <element name="C4" library="rcl" package="C1206" value="" x="23.495" y="30.1625" rot="MR270"/>
- <element name="JP1" library="pinhead" package="1X02" value="" x="4.7625" y="33.655" rot="R270"/>
- <element name="JP2" library="pinhead" package="1X03" value="" x="28.2575" y="33.9725" rot="R90"/>
- <element name="LED1" library="led" package="LED3MM" value="" x="3.4925" y="22.86" rot="R180"/>
- <element name="LED2" library="led" package="LED3MM" value="" x="3.4925" y="27.305" rot="R180"/>
- <element name="R1" library="rcl" package="R1206" value="" x="6.985" y="18.415" rot="MR180"/>
- <element name="R2" library="rcl" package="R1206" value="" x="6.35" y="15.875" rot="MR180"/>
- <element name="X1" library="con-subd" package="F09H" value="" x="15.24" y="11.43" rot="R180">
- <attribute name="OC_NEWARK" value="unknown" x="15.24" y="11.43" size="1.778" layer="27" rot="R180" display="off"/>
- <attribute name="MPN" value="" x="15.24" y="11.43" size="1.778" layer="27" rot="R180" display="off"/>
- <attribute name="MF" value="" x="15.24" y="11.43" size="1.778" layer="27" rot="R180" display="off"/>
- <attribute name="OC_FARNELL" value="unknown" x="15.24" y="11.43" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="U$1" library="maxim" package="SO16" value="MAX232A" x="16.51" y="30.1625" rot="MR180"/>
- <element name="JP3" library="adafruit" package="1X03" value="" x="22.86" y="22.225" rot="R90"/>
- <element name="JP4" library="adafruit" package="1X03" value="" x="25.4" y="22.225" rot="R270"/>
- <element name="JP5" library="adafruit" package="1X03" value="" x="14.2875" y="20.955"/>
- <element name="JP6" library="adafruit" package="1X03" value="" x="14.2875" y="18.415" rot="R180"/>
- </elements>
- <signals>
- <signal name="N$1">
- <contactref element="C1" pad="1"/>
- <contactref element="U$1" pad="1"/>
- <wire x1="12.065" y1="33.2359" x2="12.065" y2="35.2425" width="0.6096" layer="16"/>
- <wire x1="12.065" y1="35.2425" x2="11.43" y2="35.8775" width="0.6096" layer="16"/>
- <wire x1="11.43" y1="35.8775" x2="11.43" y2="37.0175" width="0.6096" layer="16"/>
- <wire x1="11.43" y1="37.0175" x2="11.3" y2="37.1475" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$2">
- <contactref element="C1" pad="2"/>
- <contactref element="U$1" pad="3"/>
- <wire x1="14.605" y1="33.2359" x2="14.605" y2="34.925" width="0.6096" layer="16"/>
- <wire x1="14.605" y1="34.925" x2="14.2875" y2="35.2425" width="0.6096" layer="16"/>
- <wire x1="14.2875" y1="35.2425" x2="14.2875" y2="36.96" width="0.6096" layer="16"/>
- <wire x1="14.2875" y1="36.96" x2="14.1" y2="37.1475" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$3">
- <contactref element="C2" pad="1"/>
- <contactref element="U$1" pad="4"/>
- <wire x1="15.875" y1="33.2359" x2="15.875" y2="35.2425" width="0.6096" layer="16"/>
- <wire x1="15.875" y1="35.2425" x2="16.1925" y2="35.56" width="0.6096" layer="16"/>
- <wire x1="16.1925" y1="35.56" x2="16.1925" y2="36.96" width="0.6096" layer="16"/>
- <wire x1="16.1925" y1="36.96" x2="16.38" y2="37.1475" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$4">
- <contactref element="C2" pad="2"/>
- <contactref element="U$1" pad="5"/>
- <wire x1="17.145" y1="33.2359" x2="17.145" y2="34.6075" width="0.6096" layer="16"/>
- <wire x1="17.145" y1="34.6075" x2="17.78" y2="35.2425" width="0.6096" layer="16"/>
- <wire x1="17.78" y1="35.2425" x2="18.7325" y2="35.2425" width="0.6096" layer="16"/>
- <wire x1="18.7325" y1="35.2425" x2="19.05" y2="35.56" width="0.6096" layer="16"/>
- <wire x1="19.05" y1="35.56" x2="19.05" y2="37.0175" width="0.6096" layer="16"/>
- <wire x1="19.05" y1="37.0175" x2="19.18" y2="37.1475" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$6">
- <contactref element="JP1" pad="2"/>
- <contactref element="C3" pad="2"/>
- <contactref element="U$1" pad="16"/>
- <wire x1="4.7625" y1="32.385" x2="5.3975" y2="32.385" width="0.6096" layer="16"/>
- <wire x1="5.3975" y1="32.385" x2="7.62" y2="30.1625" width="0.6096" layer="16"/>
- <wire x1="7.62" y1="30.1625" x2="7.62" y2="28.8925" width="0.6096" layer="16"/>
- <wire x1="7.62" y1="28.8925" x2="7.62" y2="26.3525" width="0.6096" layer="16"/>
- <wire x1="7.62" y1="26.3525" x2="8.89" y2="25.0825" width="0.6096" layer="16"/>
- <wire x1="8.89" y1="25.0825" x2="11.43" y2="25.0825" width="0.6096" layer="16"/>
- <wire x1="11.43" y1="25.0825" x2="12.065" y2="25.7175" width="0.6096" layer="16"/>
- <wire x1="12.065" y1="25.7175" x2="12.065" y2="27.0891" width="0.6096" layer="16"/>
- <wire x1="9.525" y1="28.7625" x2="7.75" y2="28.7625" width="0.6096" layer="16"/>
- <wire x1="7.75" y1="28.7625" x2="7.62" y2="28.8925" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$7">
- <contactref element="U$1" pad="11"/>
- <contactref element="JP3" pad="3"/>
- <contactref element="JP4" pad="1"/>
- <wire x1="18.415" y1="27.0891" x2="18.415" y2="25.7175" width="0.6096" layer="16"/>
- <wire x1="18.415" y1="25.7175" x2="19.3675" y2="24.765" width="0.6096" layer="16"/>
- <wire x1="19.3675" y1="24.765" x2="25.4" y2="24.765" width="0.6096" layer="16"/>
- <wire x1="25.4" y1="24.765" x2="22.86" y2="24.765" width="0" layer="19" extent="1-1"/>
- </signal>
- <signal name="N$8">
- <contactref element="U$1" pad="12"/>
- <contactref element="JP3" pad="1"/>
- <contactref element="JP4" pad="3"/>
- <wire x1="17.145" y1="27.0891" x2="17.145" y2="24.4475" width="0.6096" layer="16"/>
- <wire x1="17.145" y1="24.4475" x2="19.05" y2="22.5425" width="0.6096" layer="16"/>
- <wire x1="19.05" y1="22.5425" x2="19.05" y2="20.6375" width="0.6096" layer="16"/>
- <wire x1="19.05" y1="20.6375" x2="20.0025" y2="19.685" width="0.6096" layer="16"/>
- <wire x1="20.0025" y1="19.685" x2="25.4" y2="19.685" width="0.6096" layer="16"/>
- <wire x1="25.4" y1="19.685" x2="22.86" y2="19.685" width="0" layer="19" extent="1-1"/>
- </signal>
- <signal name="N$12">
- <contactref element="C3" pad="1"/>
- <contactref element="U$1" pad="2"/>
- <wire x1="9.525" y1="31.5625" x2="10.665" y2="31.5625" width="0.6096" layer="16"/>
- <wire x1="10.665" y1="31.5625" x2="11.43" y2="30.7975" width="0.6096" layer="16"/>
- <wire x1="11.43" y1="30.7975" x2="13.0175" y2="30.7975" width="0.6096" layer="16"/>
- <wire x1="13.0175" y1="30.7975" x2="13.335" y2="31.115" width="0.6096" layer="16"/>
- <wire x1="13.335" y1="31.115" x2="13.335" y2="33.2359" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$13">
- <contactref element="C4" pad="1"/>
- <contactref element="U$1" pad="6"/>
- <wire x1="23.495" y1="31.5625" x2="22.0375" y2="31.5625" width="0.6096" layer="16"/>
- <wire x1="22.0375" y1="31.5625" x2="21.59" y2="31.115" width="0.6096" layer="16"/>
- <wire x1="21.59" y1="31.115" x2="18.7325" y2="31.115" width="0.6096" layer="16"/>
- <wire x1="18.7325" y1="31.115" x2="18.415" y2="31.4325" width="0.6096" layer="16"/>
- <wire x1="18.415" y1="31.4325" x2="18.415" y2="33.2359" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$16">
- <contactref element="X1" pad="2"/>
- <contactref element="R1" pad="2"/>
- <contactref element="JP5" pad="2"/>
- <wire x1="14.2875" y1="20.955" x2="15.5575" y2="19.685" width="0.3048" layer="16"/>
- <wire x1="15.5575" y1="19.685" x2="15.5575" y2="17.145" width="0.3048" layer="16"/>
- <wire x1="15.5575" y1="17.145" x2="18.0975" y2="14.605" width="0.3048" layer="16"/>
- <wire x1="18.0975" y1="14.605" x2="18.0975" y2="12.8143" width="0.3048" layer="16"/>
- <wire x1="18.0975" y1="12.8143" x2="17.9832" y2="12.7" width="0.3048" layer="16"/>
- <wire x1="14.2875" y1="20.955" x2="13.0175" y2="19.685" width="0.3048" layer="16"/>
- <wire x1="13.0175" y1="19.685" x2="13.0175" y2="16.8275" width="0.3048" layer="16"/>
- <wire x1="13.0175" y1="16.8275" x2="12.3825" y2="16.1925" width="0.3048" layer="16"/>
- <wire x1="12.3825" y1="16.1925" x2="10.6295" y2="16.1925" width="0.3048" layer="16"/>
- <wire x1="10.6295" y1="16.1925" x2="8.407" y2="18.415" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$17">
- <contactref element="U$1" pad="13"/>
- <contactref element="JP5" pad="3"/>
- <contactref element="JP6" pad="1"/>
- <wire x1="15.875" y1="27.0891" x2="15.875" y2="24.13" width="0.6096" layer="16"/>
- <wire x1="15.875" y1="24.13" x2="16.8275" y2="23.1775" width="0.6096" layer="16"/>
- <wire x1="16.8275" y1="23.1775" x2="16.8275" y2="18.415" width="0.6096" layer="16"/>
- <wire x1="16.8275" y1="23.1775" x2="16.8275" y2="20.955" width="0" layer="19" extent="16-16"/>
- </signal>
- <signal name="N$18">
- <contactref element="R2" pad="1"/>
- <contactref element="LED1" pad="A"/>
- <wire x1="4.7625" y1="22.86" x2="4.7625" y2="21.9075" width="0.6096" layer="16"/>
- <wire x1="4.7625" y1="21.9075" x2="3.4925" y2="20.6375" width="0.6096" layer="16"/>
- <wire x1="3.4925" y1="20.6375" x2="3.4925" y2="16.1925" width="0.6096" layer="16"/>
- <wire x1="3.4925" y1="16.1925" x2="3.81" y2="15.875" width="0.6096" layer="16"/>
- <wire x1="3.81" y1="15.875" x2="4.928" y2="15.875" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$19">
- <contactref element="R1" pad="1"/>
- <contactref element="LED2" pad="A"/>
- <wire x1="4.7625" y1="27.305" x2="5.3975" y2="27.305" width="0.6096" layer="16"/>
- <wire x1="5.3975" y1="27.305" x2="6.35" y2="26.3525" width="0.6096" layer="16"/>
- <wire x1="6.35" y1="26.3525" x2="6.35" y2="24.765" width="0.6096" layer="16"/>
- <wire x1="6.35" y1="24.765" x2="7.3025" y2="23.8125" width="0.6096" layer="16"/>
- <wire x1="7.3025" y1="23.8125" x2="7.3025" y2="21.2725" width="0.6096" layer="16"/>
- <wire x1="7.3025" y1="21.2725" x2="5.715" y2="19.685" width="0.6096" layer="16"/>
- <wire x1="5.715" y1="19.685" x2="5.715" y2="18.567" width="0.6096" layer="16"/>
- <wire x1="5.715" y1="18.567" x2="5.563" y2="18.415" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$15">
- <contactref element="X1" pad="5"/>
- <contactref element="LED2" pad="K"/>
- <contactref element="C4" pad="2"/>
- <contactref element="JP1" pad="1"/>
- <contactref element="U$1" pad="15"/>
- <contactref element="LED1" pad="K"/>
- <contactref element="JP2" pad="3"/>
- <wire x1="4.7625" y1="34.925" x2="4.7625" y2="36.83" width="0.6096" layer="16"/>
- <wire x1="4.7625" y1="36.83" x2="7.3025" y2="39.37" width="0.6096" layer="16"/>
- <wire x1="7.3025" y1="39.37" x2="25.4" y2="39.37" width="0.6096" layer="16"/>
- <wire x1="25.4" y1="39.37" x2="27.14625" y2="37.62375" width="0.6096" layer="16"/>
- <wire x1="27.14625" y1="37.62375" x2="28.2575" y2="36.5125" width="0.6096" layer="16"/>
- <wire x1="9.7536" y1="12.7" x2="4.445" y2="12.7" width="0.6096" layer="16"/>
- <wire x1="4.445" y1="12.7" x2="1.905" y2="15.24" width="0.6096" layer="16"/>
- <wire x1="1.905" y1="15.24" x2="1.905" y2="22.5425" width="0.6096" layer="16"/>
- <wire x1="1.905" y1="22.5425" x2="2.2225" y2="22.86" width="0.6096" layer="16"/>
- <wire x1="2.2225" y1="22.86" x2="2.2225" y2="27.305" width="0.6096" layer="16"/>
- <wire x1="2.2225" y1="27.305" x2="2.2225" y2="33.655" width="0.6096" layer="16"/>
- <wire x1="2.2225" y1="33.655" x2="3.4925" y2="34.925" width="0.6096" layer="16"/>
- <wire x1="3.4925" y1="34.925" x2="4.7625" y2="34.925" width="0.6096" layer="16"/>
- <wire x1="23.495" y1="28.7625" x2="24.9525" y2="28.7625" width="0.6096" layer="16"/>
- <wire x1="24.9525" y1="28.7625" x2="25.4" y2="29.21" width="0.6096" layer="16"/>
- <wire x1="25.4" y1="29.21" x2="25.4" y2="35.8775" width="0.6096" layer="16"/>
- <wire x1="25.4" y1="35.8775" x2="27.14625" y2="37.62375" width="0.6096" layer="16"/>
- <wire x1="13.335" y1="27.0891" x2="13.335" y2="28.8925" width="0.6096" layer="16"/>
- <wire x1="13.335" y1="28.8925" x2="13.97" y2="29.5275" width="0.6096" layer="16"/>
- <wire x1="13.97" y1="29.5275" x2="21.59" y2="29.5275" width="0.6096" layer="16"/>
- <wire x1="21.59" y1="29.5275" x2="22.225" y2="28.8925" width="0.6096" layer="16"/>
- <wire x1="22.225" y1="28.8925" x2="23.365" y2="28.8925" width="0.6096" layer="16"/>
- <wire x1="23.365" y1="28.8925" x2="23.495" y2="28.7625" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$5">
- <polygon width="0" layer="16" isolate="0.6096">
- <vertex x="0" y="35.56"/>
- <vertex x="0" y="0"/>
- <vertex x="30.48" y="0"/>
- <vertex x="30.48" y="35.56"/>
- </polygon>
- </signal>
- <signal name="N$9">
- <contactref element="JP3" pad="2"/>
- <contactref element="JP2" pad="2"/>
- <wire x1="22.86" y1="22.225" x2="24.13" y2="23.495" width="0.3048" layer="16"/>
- <wire x1="24.13" y1="23.495" x2="26.9875" y2="23.495" width="0.3048" layer="16"/>
- <wire x1="26.9875" y1="23.495" x2="26.9875" y2="29.21" width="0.3048" layer="16"/>
- <wire x1="26.9875" y1="29.21" x2="26.67" y2="29.5275" width="0.3048" layer="16"/>
- <wire x1="26.67" y1="29.5275" x2="26.67" y2="33.3375" width="0.3048" layer="16"/>
- <wire x1="26.67" y1="33.3375" x2="27.305" y2="33.9725" width="0.3048" layer="16"/>
- <wire x1="27.305" y1="33.9725" x2="28.2575" y2="33.9725" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$10">
- <contactref element="JP4" pad="2"/>
- <contactref element="JP2" pad="1"/>
- <wire x1="25.4" y1="22.225" x2="27.6225" y2="22.225" width="0.3048" layer="16"/>
- <wire x1="27.6225" y1="22.225" x2="28.2575" y2="22.86" width="0.3048" layer="16"/>
- <wire x1="28.2575" y1="22.86" x2="28.2575" y2="31.4325" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$11">
- <contactref element="X1" pad="3"/>
- <contactref element="R2" pad="2"/>
- <contactref element="JP6" pad="2"/>
- <wire x1="14.2875" y1="18.415" x2="14.2875" y2="14.9225" width="0.6096" layer="16"/>
- <wire x1="14.605" y1="14.605" x2="15.24" y2="13.97" width="0.6096" layer="16"/>
- <wire x1="15.24" y1="13.97" x2="15.24" y2="12.7" width="0.6096" layer="16"/>
- <wire x1="7.772" y1="15.875" x2="9.2075" y2="15.875" width="0.6096" layer="16"/>
- <wire x1="9.2075" y1="15.875" x2="10.16" y2="14.9225" width="0.6096" layer="16"/>
- <wire x1="10.16" y1="14.9225" x2="14.2875" y2="14.9225" width="0.6096" layer="16"/>
- <wire x1="14.2875" y1="14.9225" x2="14.605" y2="14.605" width="0.6096" layer="16"/>
- </signal>
- <signal name="N$14">
- <contactref element="U$1" pad="14"/>
- <contactref element="JP5" pad="1"/>
- <contactref element="JP6" pad="3"/>
- <wire x1="14.605" y1="27.0891" x2="14.605" y2="24.765" width="0.6096" layer="16"/>
- <wire x1="14.605" y1="24.765" x2="13.335" y2="23.495" width="0.6096" layer="16"/>
- <wire x1="13.335" y1="23.495" x2="12.065" y2="23.495" width="0.6096" layer="16"/>
- <wire x1="12.065" y1="23.495" x2="11.7475" y2="23.1775" width="0.6096" layer="16"/>
- <wire x1="11.7475" y1="23.1775" x2="11.7475" y2="18.415" width="0.6096" layer="16"/>
- <wire x1="11.7475" y1="23.1775" x2="11.7475" y2="20.955" width="0" layer="19" extent="16-16"/>
- </signal>
- </signals>
- </board>
- </drawing>
- </eagle>
|