123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900 |
- <?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="no" 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="no" active="yes"/>
- <layer number="20" name="Dimension" color="15" fill="1" visible="no" active="yes"/>
- <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="yes"/>
- <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="yes"/>
- <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="yes"/>
- <layer number="24" name="bOrigins" color="15" fill="1" visible="no" 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="11" 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="no"/>
- <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="Muster" color="7" fill="1" visible="no" active="no"/>
- <layer number="101" name="Dims" 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="15" fill="1" visible="yes" active="yes"/>
- <layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="no"/>
- <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="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="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="250" name="Descript" color="7" fill="1" visible="no" active="no"/>
- <layer number="251" name="SMDround" color="7" fill="1" visible="no" active="no"/>
- </layers>
- <board>
- <plain>
- <dimension x1="7.62" y1="7.3025" x2="18.415" y2="7.3025" x3="13.0175" y3="-3.4925" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="18.415" y1="7.3025" x2="24.4475" y2="7.3025" x3="21.43125" y3="-6.985" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="24.4475" y1="7.3025" x2="35.2425" y2="7.3025" x3="29.845" y3="-3.4925" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="7.62" y1="7.3025" x2="5.3975" y2="18.415" x3="-2.8575" y3="12.85875" textsize="1.778" layer="101" dtype="vertical" unit="mil"/>
- <dimension x1="5.3975" y1="18.415" x2="36.5125" y2="18.415" x3="20.955" y3="53.6575" textsize="1.778" layer="101" dtype="vertical" unit="mil"/>
- <dimension x1="1.5875" y1="14.605" x2="46.6725" y2="15.5575" x3="24.13" y3="-13.335" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="53.975" y1="0" x2="99.06" y2="53.975" x3="76.5175" y3="-12.065" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="7.62" y1="7.3025" x2="1.5875" y2="7.3025" x3="4.60375" y3="-17.78" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="53.975" y1="0" x2="60.0075" y2="7.3025" x3="56.99125" y3="-6.985" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="5.3975" y1="18.415" x2="7.62" y2="7.3025" x3="6.50875" y3="-11.1125" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="60.0075" y1="7.3025" x2="60.0075" y2="18.415" x3="50.8" y3="12.85875" textsize="1.778" layer="101" dtype="vertical" unit="mil"/>
- <dimension x1="60.0075" y1="18.415" x2="62.23" y2="18.415" x3="61.11875" y3="-3.175" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <dimension x1="60.0075" y1="18.415" x2="91.1225" y2="18.415" x3="75.565" y3="49.2125" textsize="1.778" layer="101" dtype="horizontal" unit="mil"/>
- <circle x="17.78" y="53.975" radius="0.429" width="0.258" layer="116"/>
- <circle x="33.02" y="53.975" radius="0.429" width="0.258" layer="116"/>
- <circle x="46.672" y="53.975" radius="0.43" width="0.258" layer="116"/>
- <circle x="62.23" y="53.34" radius="0.429" width="0.258" layer="116"/>
- <circle x="21.273" y="5.08" radius="0.428" width="0.258" layer="116"/>
- <circle x="18.733" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="51.435" y="18.479" radius="0.378" width="0.156" layer="116"/>
- <circle x="51.435" y="16.447" radius="0.378" width="0.156" layer="116"/>
- <circle x="52.705" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="50.165" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="47.625" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="45.085" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="42.545" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="40.005" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="37.465" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="34.925" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="25.4" y="16.383" radius="0.35" width="0.1" layer="116"/>
- <circle x="25.4" y="13.997" radius="0.35" width="0.1" layer="116"/>
- <circle x="25.4" y="11.557" radius="0.35" width="0.1" layer="116"/>
- <circle x="73.025" y="2.288" radius="0.45" width="0.3" layer="116"/>
- <circle x="73.025" y="54.227" radius="0.45" width="0.3" layer="116"/>
- <circle x="4.445" y="2.605" radius="0.45" width="0.3" layer="116"/>
- <circle x="4.445" y="54.545" radius="0.45" width="0.3" layer="116"/>
- <circle x="17.78" y="13.97" radius="0.429" width="0.258" layer="116"/>
- <circle x="20.32" y="13.97" radius="0.429" width="0.258" layer="116"/>
- <circle x="24.765" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="27.305" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="29.845" y="5.08" radius="0.429" width="0.258" layer="116"/>
- <circle x="59.095" y="4.763" radius="0.473" width="0.347" layer="116"/>
- <circle x="64.095" y="4.763" radius="0.473" width="0.347" layer="116"/>
- <circle x="6.35" y="57.785" radius="0.325" width="0.05" layer="116"/>
- <circle x="9.525" y="57.785" radius="0.325" width="0.05" layer="116"/>
- <circle x="55.562" y="33.02" radius="0.326" width="0.05" layer="116"/>
- <circle x="39.37" y="28.575" radius="0.325" width="0.05" layer="116"/>
- <circle x="40.005" y="40.64" radius="0.325" width="0.05" layer="116"/>
- <circle x="37.782" y="35.242" radius="0.326" width="0.05" layer="116"/>
- <circle x="38.735" y="18.733" radius="0.325" width="0.05" layer="116"/>
- <circle x="32.385" y="18.733" radius="0.325" width="0.05" layer="116"/>
- <circle x="10.16" y="37.465" radius="0.325" width="0.05" layer="116"/>
- <circle x="67.31" y="57.785" radius="0.325" width="0.05" layer="116"/>
- <circle x="26.353" y="37.782" radius="0.325" width="0.05" layer="116"/>
- <circle x="38.735" y="44.45" radius="0.325" width="0.05" layer="116"/>
- <circle x="26.035" y="29.21" radius="0.325" width="0.05" layer="116"/>
- <text x="58.1025" y="12.065" size="1.778" layer="48">G</text>
- <text x="60.96" y="12.065" size="1.778" layer="48">+12V</text>
- <text x="53.34" y="6.985" size="1.778" layer="48" rot="R90">G</text>
- <text x="51.1175" y="6.6675" size="1.778" layer="48" rot="R90">RUN</text>
- <text x="48.5775" y="6.6675" size="1.778" layer="48" rot="R90">MOVE</text>
- <text x="46.0375" y="6.6675" size="1.778" layer="48" rot="R90">ENC</text>
- <text x="43.4975" y="6.35" size="1.778" layer="48" rot="R90">END</text>
- <text x="40.9575" y="6.6675" size="1.778" layer="48" rot="R90">GP</text>
- <text x="38.4175" y="6.6675" size="1.778" layer="48" rot="R90">U-TX</text>
- <text x="35.8775" y="6.6675" size="1.778" layer="48" rot="R90">U-RX</text>
- <text x="30.7975" y="6.6675" size="1.778" layer="48" rot="R90">G</text>
- <text x="28.2575" y="6.35" size="1.778" layer="48" rot="R90">IO</text>
- <text x="25.7175" y="6.35" size="1.778" layer="48" rot="R90">CLK</text>
- <text x="23.495" y="8.5725" size="1.778" layer="48" rot="R180">BOOT</text>
- <text x="21.59" y="17.4625" size="1.778" layer="48" rot="R180">RST</text>
- <text x="23.1775" y="54.9275" size="1.778" layer="48" rot="R180">A1</text>
- <text x="38.4175" y="54.9275" size="1.778" layer="48" rot="R180">A2</text>
- <text x="51.7525" y="54.9275" size="1.778" layer="48" rot="R180">B1</text>
- <text x="66.9925" y="54.2925" size="1.778" layer="48" rot="R180">B2</text>
- <text x="29.845" y="30.7975" size="1.778" layer="16" rot="MR0">1</text>
- <text x="27.94" y="42.8625" size="1.778" layer="16" rot="MR0">1</text>
- <circle x="33.9725" y="11.7475" radius="0.3175" width="0.4064" layer="16"/>
- <circle x="76.835" y="3.175" radius="0.70995" width="0.8128" layer="16"/>
- <circle x="6.35" y="7.62" radius="0.70995" width="0.8128" layer="16"/>
- <circle x="69.215" y="36.83" radius="0.70995" width="0.8128" layer="16"/>
- <circle x="69.215" y="36.83" radius="0.70995" width="0.8128" layer="1"/>
- <circle x="76.835" y="3.175" radius="0.70995" width="0.8128" layer="1"/>
- <circle x="6.35" y="7.62" radius="0.70995" width="0.8128" layer="1"/>
- <circle x="6.35" y="7.62" radius="0.70995" width="0.8128" layer="48"/>
- <circle x="76.835" y="3.175" radius="0.70995" width="0.8128" layer="48"/>
- <circle x="69.215" y="36.83" radius="0.70995" width="0.8128" layer="48"/>
- <text x="7.9375" y="40.005" size="1.778" layer="16" rot="MR270">TRURL, MOSCOW, 2016
- SANDDEVIL@YA.RU</text>
- <text x="70.485" y="11.43" size="1.778" layer="1">BL</text>
- <text x="73.3425" y="11.43" size="1.778" layer="16" rot="MR0">BR</text>
- </plain>
- <libraries>
- <library name="adafruit">
- <packages>
- <package name="1X01">
- <description><b>PIN HEADER</b></description>
- <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="-1.27" y1="0.635" x2="-1.27" y2="-0.635" 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="-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"/>
- <pad name="1" x="0" y="0" drill="1.016" diameter="1.9304" shape="octagon"/>
- <text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-1.27" 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"/>
- </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" 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>
- <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="1X08">
- <description><b>PIN HEADER</b></description>
- <wire x1="5.715" y1="1.27" x2="6.985" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="6.985" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="7.62" y1="0.635" x2="7.62" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="7.62" y1="-0.635" x2="6.985" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="2.54" y1="0.635" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="1.27" x2="4.445" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="4.445" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="5.08" y1="0.635" x2="5.08" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="5.08" y1="-0.635" x2="4.445" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="4.445" y1="-1.27" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-1.27" x2="2.54" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="5.715" y1="1.27" x2="5.08" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="5.08" y1="-0.635" x2="5.715" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="6.985" y1="-1.27" x2="5.715" 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"/>
- <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="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"/>
- <wire x1="-5.08" y1="0.635" x2="-4.445" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-4.445" y1="1.27" x2="-3.175" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-3.175" 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="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-3.175" y1="-1.27" x2="-4.445" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-4.445" y1="-1.27" x2="-5.08" 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="-9.525" y1="1.27" x2="-8.255" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-8.255" y1="1.27" x2="-7.62" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-7.62" y1="0.635" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-7.62" y1="-0.635" x2="-8.255" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-7.62" y1="0.635" x2="-6.985" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-6.985" y1="1.27" x2="-5.715" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-5.715" y1="1.27" x2="-5.08" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="0.635" x2="-5.08" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-5.08" y1="-0.635" x2="-5.715" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-5.715" y1="-1.27" x2="-6.985" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-6.985" y1="-1.27" x2="-7.62" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-10.16" y1="0.635" x2="-10.16" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-9.525" y1="1.27" x2="-10.16" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-10.16" y1="-0.635" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-8.255" y1="-1.27" x2="-9.525" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="8.255" y1="1.27" x2="9.525" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="9.525" y1="1.27" x2="10.16" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="10.16" y1="0.635" x2="10.16" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="10.16" y1="-0.635" x2="9.525" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="8.255" y1="1.27" x2="7.62" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="7.62" y1="-0.635" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="9.525" y1="-1.27" x2="8.255" y2="-1.27" width="0.1524" layer="21"/>
- <pad name="1" x="-8.89" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="2" x="-6.35" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="3" x="-3.81" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="4" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="5" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="6" x="3.81" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="7" x="6.35" y="0" drill="1.016" shape="long" rot="R90"/>
- <pad name="8" x="8.89" y="0" drill="1.016" shape="long" rot="R90"/>
- <text x="-10.2362" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-10.16" y="-3.175" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
- <rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
- <rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
- <rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
- <rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
- <rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
- <rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
- <rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
- </package>
- </packages>
- </library>
- <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="E2-5">
- <description><b>ELECTROLYTIC CAPACITOR</b><p>
- grid 2.032 mm, diameter 5 mm</description>
- <wire x1="-1.524" y1="0" x2="-0.762" y2="0" width="0.1524" layer="51"/>
- <wire x1="-0.762" y1="0" x2="-0.762" y2="-1.016" width="0.1524" layer="51"/>
- <wire x1="-0.762" y1="-1.016" x2="-0.254" y2="-1.016" width="0.1524" layer="51"/>
- <wire x1="-0.254" y1="-1.016" x2="-0.254" y2="1.016" width="0.1524" layer="51"/>
- <wire x1="-0.254" y1="1.016" x2="-0.762" y2="1.016" width="0.1524" layer="51"/>
- <wire x1="-0.762" y1="1.016" x2="-0.762" y2="0" width="0.1524" layer="51"/>
- <wire x1="0.635" y1="0" x2="1.524" y2="0" width="0.1524" layer="51"/>
- <wire x1="-1.27" y1="1.778" x2="-0.762" y2="1.778" width="0.1524" layer="21"/>
- <wire x1="-1.016" y1="1.524" x2="-1.016" y2="2.032" width="0.1524" layer="21"/>
- <circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
- <pad name="-" x="1.016" y="0" drill="0.8128" diameter="1.27" shape="octagon"/>
- <pad name="+" x="-1.016" y="0" drill="0.8128" diameter="1.27"/>
- <text x="2.54" y="1.016" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="2.54" y="-2.159" size="1.27" layer="27" ratio="10">>VALUE</text>
- <rectangle x1="0.254" y1="-1.016" x2="0.762" y2="1.016" layer="51"/>
- </package>
- <package name="RTRIM5W">
- <description><b>Trimm resistor</b> Spectrol<p>
- abgedichtet nach <b>IP67</b></description>
- <wire x1="2.25" y1="1.6" x2="-2.25" y2="1.6" width="0.254" layer="51"/>
- <wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.254" layer="51"/>
- <wire x1="-2.25" y1="-1.6" x2="2.25" y2="-1.6" width="0.254" layer="51"/>
- <wire x1="2.25" y1="-1.6" x2="2.25" y2="1.6" width="0.254" layer="51"/>
- <wire x1="1.25" y1="1.6" x2="2.25" y2="1.6" width="0.254" layer="21"/>
- <wire x1="2.25" y1="1.6" x2="2.25" y2="-1.6" width="0.254" layer="21"/>
- <wire x1="-1.25" y1="1.6" x2="-2.25" y2="1.6" width="0.254" layer="21"/>
- <wire x1="-2.25" y1="1.6" x2="-2.25" y2="-1.6" width="0.254" layer="21"/>
- <wire x1="-0.3" y1="-1.6" x2="0.3" y2="-1.6" width="0.254" layer="21"/>
- <circle x="1.55" y="0.95" radius="0.4" width="0.1016" layer="21"/>
- <smd name="1" x="-1.25" y="-1.45" dx="1.3" dy="1.6" layer="1"/>
- <smd name="3" x="1.25" y="-1.45" dx="1.3" dy="1.6" layer="1"/>
- <smd name="2" x="0" y="1.45" dx="2" dy="1.6" layer="1"/>
- <text x="-2.625" y="-2.19" size="1.27" layer="25" rot="R90">>NAME</text>
- <text x="3.845" y="-2.19" size="1.27" layer="27" rot="R90">>VALUE</text>
- <rectangle x1="1.15" y1="0.85" x2="1.95" y2="1.05" layer="21"/>
- </package>
- </packages>
- </library>
- <library name="resistor">
- <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>
- <p>
- for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
- <map name="nav_main">
- <area shape="rect" coords="0,1,140,23" href="../military_specs.asp" title="">
- <area shape="rect" coords="0,24,140,51" href="../about.asp" title="">
- <area shape="rect" coords="1,52,140,77" href="../rfq.asp" title="">
- <area shape="rect" coords="0,78,139,103" href="../products.asp" title="">
- <area shape="rect" coords="1,102,138,128" href="../excess_inventory.asp" title="">
- <area shape="rect" coords="1,129,138,150" href="../edge.asp" title="">
- <area shape="rect" coords="1,151,139,178" href="../industry_links.asp" title="">
- <area shape="rect" coords="0,179,139,201" href="../comments.asp" title="">
- <area shape="rect" coords="1,203,138,231" href="../directory.asp" title="">
- <area shape="default" nohref>
- </map>
- <html>
- <title></title>
- <LINK REL="StyleSheet" TYPE="text/css" HREF="style-sheet.css">
- <body bgcolor="#ffffff" text="#000000" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
- <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0 height="55%">
- <tr valign="top">
- </td>
- <! <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>
- </BODY></HTML></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>
- </packages>
- </library>
- <library name="transistor-power">
- <description><b>Power Transistors</b><p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="MICRO3">
- <description><b>Micro3 TM Package Outline</b><p>
- www.irf.com / irlml5203.pdf</description>
- <wire x1="-1.45" y1="0.65" x2="-0.6" y2="0.65" width="0.1016" layer="21"/>
- <wire x1="-0.6" y1="0.65" x2="0.6" y2="0.65" width="0.1016" layer="51"/>
- <wire x1="0.6" y1="0.65" x2="1.45" y2="0.65" width="0.1016" layer="21"/>
- <wire x1="1.45" y1="0.65" x2="1.45" y2="-0.65" width="0.1016" layer="21"/>
- <wire x1="1.45" y1="-0.65" x2="0.35" y2="-0.65" width="0.1016" layer="51"/>
- <wire x1="0.35" y1="-0.65" x2="-0.35" y2="-0.65" width="0.1016" layer="21"/>
- <wire x1="-0.35" y1="-0.65" x2="-1.45" y2="-0.65" width="0.1016" layer="51"/>
- <wire x1="-1.45" y1="-0.65" x2="-1.45" y2="0.65" width="0.1016" layer="21"/>
- <smd name="1" x="-0.95" y="-1" dx="0.8" dy="0.9" layer="1"/>
- <smd name="2" x="0.95" y="-1" dx="0.8" dy="0.9" layer="1"/>
- <smd name="3" x="0" y="1" dx="0.8" dy="0.9" layer="1"/>
- <text x="-1.6" y="1.6" size="1.778" layer="25">>NAME</text>
- <text x="-1.5" y="-3.4" size="1.778" layer="27">>VALUE</text>
- <rectangle x1="-0.27" y1="0.66" x2="0.27" y2="1.25" layer="51"/>
- <rectangle x1="-1.22" y1="-1.25" x2="-0.68" y2="-0.65" layer="51"/>
- <rectangle x1="0.68" y1="-1.25" x2="1.22" y2="-0.64" layer="51"/>
- </package>
- <package name="D-PAK_TO252AA">
- <description><b>D-Pak (TO-252AA) Package</b><p>
- Source: http://www.irf.com/product-info/datasheets/data/irfr5305pbf.pdf</description>
- <wire x1="3.275" y1="-2.15" x2="-3.275" y2="-2.15" width="0.2032" layer="21"/>
- <wire x1="-3.275" y1="-2.15" x2="-3.275" y2="3.325" width="0.2032" layer="21"/>
- <wire x1="-3.275" y1="3.325" x2="-2.775" y2="3.825" width="0.2032" layer="21"/>
- <wire x1="-2.775" y1="3.825" x2="2.775" y2="3.825" width="0.2032" layer="21"/>
- <wire x1="2.775" y1="3.825" x2="3.275" y2="3.325" width="0.2032" layer="21"/>
- <wire x1="3.275" y1="3.325" x2="3.275" y2="-2.15" width="0.2032" layer="21"/>
- <wire x1="-2.5654" y1="3.937" x2="-2.5654" y2="4.6482" width="0.2032" layer="51"/>
- <wire x1="-2.5654" y1="4.6482" x2="-2.1082" y2="5.1054" width="0.2032" layer="51"/>
- <wire x1="-2.1082" y1="5.1054" x2="2.1082" y2="5.1054" width="0.2032" layer="51"/>
- <wire x1="2.1082" y1="5.1054" x2="2.5654" y2="4.6482" width="0.2032" layer="51"/>
- <wire x1="2.5654" y1="4.6482" x2="2.5654" y2="3.937" width="0.2032" layer="51"/>
- <wire x1="2.5654" y1="3.937" x2="-2.5654" y2="3.937" width="0.2032" layer="51"/>
- <smd name="4" x="0" y="2.5" dx="5.4" dy="6.2" layer="1"/>
- <smd name="1" x="-2.28" y="-4.8" dx="1" dy="1.6" layer="1"/>
- <smd name="3" x="2.28" y="-4.8" dx="1" dy="1.6" layer="1"/>
- <text x="-3.81" y="-2.54" size="1.27" layer="25" rot="R90">>NAME</text>
- <text x="5.08" y="-2.54" size="1.27" layer="27" rot="R90">>VALUE</text>
- <rectangle x1="-2.7178" y1="-5.1562" x2="-1.8542" y2="-2.2606" layer="51"/>
- <rectangle x1="1.8542" y1="-5.1562" x2="2.7178" y2="-2.2606" layer="51"/>
- <rectangle x1="-0.4318" y1="-3.0226" x2="0.4318" y2="-2.2606" layer="21"/>
- <polygon width="0.1998" layer="51">
- <vertex x="-2.5654" y="3.937"/>
- <vertex x="-2.5654" y="4.6482"/>
- <vertex x="-2.1082" y="5.1054"/>
- <vertex x="2.1082" y="5.1054"/>
- <vertex x="2.5654" y="4.6482"/>
- <vertex x="2.5654" y="3.937"/>
- </polygon>
- </package>
- </packages>
- </library>
- <library name="STM32F050">
- <description><b>STM32F050Fx and STM32F050Fx</b>
- <br />
- Source:
- <a href="http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00065136.pdf">STM32F050Fx Datasheet</a></description>
- <packages>
- <package name="TSSOP20">
- <description><b>Thin Shrink Small Outline Plastic 20</b><p></description>
- <wire x1="-3.1646" y1="-2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
- <wire x1="3.1646" y1="2.2828" x2="3.1646" y2="-2.2828" width="0.1524" layer="21"/>
- <wire x1="3.1646" y1="2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
- <wire x1="-3.1646" y1="-2.2828" x2="-3.1646" y2="2.2828" width="0.1524" layer="21"/>
- <wire x1="-2.936" y1="-2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
- <wire x1="2.936" y1="2.0542" x2="2.936" y2="-2.0542" width="0.0508" layer="21"/>
- <wire x1="2.936" y1="2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
- <wire x1="-2.936" y1="-2.0542" x2="-2.936" y2="2.0542" width="0.0508" layer="21"/>
- <circle x="-2.2756" y="-1.2192" radius="0.4572" width="0.1524" layer="21"/>
- <smd name="1" x="-2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="2" x="-2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="3" x="-1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="4" x="-0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="5" x="-0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="6" x="0.325" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="7" x="0.975" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="8" x="1.625" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="9" x="2.275" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="10" x="2.925" y="-2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="11" x="2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="12" x="2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="13" x="1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="14" x="0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="15" x="0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="16" x="-0.325" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="17" x="-0.975" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="18" x="-1.625" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="19" x="-2.275" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <smd name="20" x="-2.925" y="2.9178" dx="0.3048" dy="0.9906" layer="1"/>
- <text x="-3.5456" y="-2.0828" size="1.016" layer="25" ratio="10" rot="R90">>NAME</text>
- <text x="4.5362" y="-2.0828" size="1.016" layer="27" ratio="10" rot="R90">>VALUE</text>
- <rectangle x1="-3.0266" y1="-3.121" x2="-2.8234" y2="-2.2828" layer="51"/>
- <rectangle x1="-2.3766" y1="-3.121" x2="-2.1734" y2="-2.2828" layer="51"/>
- <rectangle x1="-1.7266" y1="-3.121" x2="-1.5234" y2="-2.2828" layer="51"/>
- <rectangle x1="-1.0766" y1="-3.121" x2="-0.8734" y2="-2.2828" layer="51"/>
- <rectangle x1="-0.4266" y1="-3.121" x2="-0.2234" y2="-2.2828" layer="51"/>
- <rectangle x1="0.2234" y1="-3.121" x2="0.4266" y2="-2.2828" layer="51"/>
- <rectangle x1="0.8734" y1="-3.121" x2="1.0766" y2="-2.2828" layer="51"/>
- <rectangle x1="1.5234" y1="-3.121" x2="1.7266" y2="-2.2828" layer="51"/>
- <rectangle x1="2.1734" y1="-3.121" x2="2.3766" y2="-2.2828" layer="51"/>
- <rectangle x1="2.8234" y1="-3.121" x2="3.0266" y2="-2.2828" layer="51"/>
- <rectangle x1="2.8234" y1="2.2828" x2="3.0266" y2="3.121" layer="51"/>
- <rectangle x1="2.1734" y1="2.2828" x2="2.3766" y2="3.121" layer="51"/>
- <rectangle x1="1.5234" y1="2.2828" x2="1.7266" y2="3.121" layer="51"/>
- <rectangle x1="0.8734" y1="2.2828" x2="1.0766" y2="3.121" layer="51"/>
- <rectangle x1="0.2234" y1="2.2828" x2="0.4266" y2="3.121" layer="51"/>
- <rectangle x1="-0.4266" y1="2.2828" x2="-0.2234" y2="3.121" layer="51"/>
- <rectangle x1="-1.0766" y1="2.2828" x2="-0.8734" y2="3.121" layer="51"/>
- <rectangle x1="-1.7266" y1="2.2828" x2="-1.5234" y2="3.121" layer="51"/>
- <rectangle x1="-2.3766" y1="2.2828" x2="-2.1734" y2="3.121" layer="51"/>
- <rectangle x1="-3.0266" y1="2.2828" x2="-2.8234" y2="3.121" layer="51"/>
- </package>
- </packages>
- </library>
- <library name="linear">
- <description><b>Linear Devices</b><p>
- Operational amplifiers, comparators, voltage regulators, ADCs, DACs, etc.<p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="SO14">
- <description><b>Small Outline Package 14</b></description>
- <wire x1="4.305" y1="-1.9" x2="-4.305" y2="-1.9" width="0.2032" layer="51"/>
- <wire x1="-4.305" y1="-1.9" x2="-4.305" y2="-1.4" width="0.2032" layer="51"/>
- <wire x1="-4.305" y1="-1.4" x2="-4.305" y2="1.9" width="0.2032" layer="51"/>
- <wire x1="4.305" y1="-1.4" x2="-4.305" y2="-1.4" width="0.2032" layer="51"/>
- <wire x1="4.305" y1="1.9" x2="4.305" y2="-1.4" width="0.2032" layer="51"/>
- <wire x1="4.305" y1="-1.4" x2="4.305" y2="-1.9" width="0.2032" layer="51"/>
- <wire x1="-4.305" y1="1.9" x2="4.305" y2="1.9" width="0.2032" layer="51"/>
- <smd name="2" x="-2.54" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="13" x="-2.54" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="1" x="-3.81" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="3" x="-1.27" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="4" x="0" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="14" x="-3.81" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="12" x="-1.27" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="11" x="0" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="6" x="2.54" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="9" x="2.54" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="5" x="1.27" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="7" x="3.81" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="10" x="1.27" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="8" x="3.81" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <text x="-4.572" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
- <text x="5.842" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
- <rectangle x1="-4.055" y1="-3.1" x2="-3.565" y2="-2" layer="51"/>
- <rectangle x1="-2.785" y1="-3.1" x2="-2.295" y2="-2" layer="51"/>
- <rectangle x1="-1.515" y1="-3.1" x2="-1.025" y2="-2" layer="51"/>
- <rectangle x1="-0.245" y1="-3.1" x2="0.245" y2="-2" layer="51"/>
- <rectangle x1="-0.245" y1="2" x2="0.245" y2="3.1" layer="51"/>
- <rectangle x1="-1.515" y1="2" x2="-1.025" y2="3.1" layer="51"/>
- <rectangle x1="-2.785" y1="2" x2="-2.295" y2="3.1" layer="51"/>
- <rectangle x1="-4.055" y1="2" x2="-3.565" y2="3.1" layer="51"/>
- <rectangle x1="1.025" y1="-3.1" x2="1.515" y2="-2" layer="51"/>
- <rectangle x1="2.295" y1="-3.1" x2="2.785" y2="-2" layer="51"/>
- <rectangle x1="3.565" y1="-3.1" x2="4.055" y2="-2" layer="51"/>
- <rectangle x1="3.565" y1="2" x2="4.055" y2="3.1" layer="51"/>
- <rectangle x1="2.295" y1="2" x2="2.785" y2="3.1" layer="51"/>
- <rectangle x1="1.025" y1="2" x2="1.515" y2="3.1" layer="51"/>
- </package>
- <package name="SO08">
- <description><b>Small Outline Package 8</b><br>
- NS Package M08A</description>
- <wire x1="2.4" y1="1.9" x2="2.4" y2="-1.4" width="0.2032" layer="51"/>
- <wire x1="2.4" y1="-1.4" x2="2.4" y2="-1.9" width="0.2032" layer="51"/>
- <wire x1="2.4" y1="-1.9" x2="-2.4" y2="-1.9" width="0.2032" layer="51"/>
- <wire x1="-2.4" y1="-1.9" x2="-2.4" y2="-1.4" width="0.2032" layer="51"/>
- <wire x1="-2.4" y1="-1.4" x2="-2.4" y2="1.9" width="0.2032" layer="51"/>
- <wire x1="-2.4" y1="1.9" x2="2.4" y2="1.9" width="0.2032" layer="51"/>
- <wire x1="2.4" y1="-1.4" x2="-2.4" y2="-1.4" width="0.2032" layer="51"/>
- <smd name="2" x="-0.635" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="7" x="-0.635" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="1" x="-1.905" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="3" x="0.635" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="4" x="1.905" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="8" x="-1.905" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="6" x="0.635" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <smd name="5" x="1.905" y="2.6" dx="0.6" dy="2.2" layer="1"/>
- <text x="-2.667" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
- <text x="3.937" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
- <rectangle x1="-2.15" y1="-3.1" x2="-1.66" y2="-2" layer="51"/>
- <rectangle x1="-0.88" y1="-3.1" x2="-0.39" y2="-2" layer="51"/>
- <rectangle x1="0.39" y1="-3.1" x2="0.88" y2="-2" layer="51"/>
- <rectangle x1="1.66" y1="-3.1" x2="2.15" y2="-2" layer="51"/>
- <rectangle x1="1.66" y1="2" x2="2.15" y2="3.1" layer="51"/>
- <rectangle x1="0.39" y1="2" x2="0.88" y2="3.1" layer="51"/>
- <rectangle x1="-0.88" y1="2" x2="-0.39" y2="3.1" layer="51"/>
- <rectangle x1="-2.15" y1="2" x2="-1.66" y2="3.1" layer="51"/>
- </package>
- </packages>
- </library>
- <library name="lm1117">
- <description><b>LM1117 Voltage Regulator</b>
- <p>800mA LDO Regulator, available in 1.8V, 2.5V, 2.85V, 3.3V, 5V, and adjustable versions.</p></description>
- <packages>
- <package name="TO252">
- <description><b>TO-252 Small-Outline Transistor Package</b></description>
- <wire x1="3.2766" y1="3.8354" x2="3.277" y2="-2.159" width="0.2032" layer="21"/>
- <wire x1="3.277" y1="-2.159" x2="-3.277" y2="-2.159" width="0.2032" layer="21"/>
- <wire x1="-3.277" y1="-2.159" x2="-3.2766" y2="3.8354" width="0.2032" layer="21"/>
- <wire x1="-3.277" y1="3.835" x2="3.2774" y2="3.8346" width="0.2032" layer="51"/>
- <wire x1="-2.5654" y1="3.937" x2="-2.5654" y2="4.6482" width="0.2032" layer="51"/>
- <wire x1="-2.5654" y1="4.6482" x2="-2.1082" y2="5.1054" width="0.2032" layer="51"/>
- <wire x1="-2.1082" y1="5.1054" x2="2.1082" y2="5.1054" width="0.2032" layer="51"/>
- <wire x1="2.1082" y1="5.1054" x2="2.5654" y2="4.6482" width="0.2032" layer="51"/>
- <wire x1="2.5654" y1="4.6482" x2="2.5654" y2="3.937" width="0.2032" layer="51"/>
- <wire x1="2.5654" y1="3.937" x2="-2.5654" y2="3.937" width="0.2032" layer="51"/>
- <smd name="TAB" x="0" y="2.5" dx="5.4" dy="6.2" layer="1"/>
- <smd name="1" x="-2.28" y="-4.8" dx="1" dy="1.6" layer="1"/>
- <smd name="2" x="2.28" y="-4.8" dx="1" dy="1.6" layer="1"/>
- <text x="-3.81" y="-2.54" size="1.27" layer="25" rot="R90">>NAME</text>
- <text x="5.08" y="-2.54" size="1.27" layer="27" rot="R90">>VALUE</text>
- <rectangle x1="-2.7178" y1="-5.1562" x2="-1.8542" y2="-2.2606" layer="51"/>
- <rectangle x1="1.8542" y1="-5.1562" x2="2.7178" y2="-2.2606" layer="51"/>
- <rectangle x1="-0.4318" y1="-3.0226" x2="0.4318" y2="-2.2606" layer="21"/>
- <polygon width="0.1998" layer="51">
- <vertex x="-2.5654" y="3.937"/>
- <vertex x="-2.5654" y="4.6482"/>
- <vertex x="-2.1082" y="5.1054"/>
- <vertex x="2.1082" y="5.1054"/>
- <vertex x="2.5654" y="4.6482"/>
- <vertex x="2.5654" y="3.937"/>
- </polygon>
- </package>
- </packages>
- </library>
- <library name="crystal">
- <description><b>Crystals and Crystal Resonators</b><p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="HC49U">
- <description><b>Crystal Filter</b><p>
- Source: www.ilsiamerica.com .. C1 IXF Series.pdf</description>
- <wire x1="-2.921" y1="-2.286" x2="2.921" y2="-2.286" width="0.4064" layer="21"/>
- <wire x1="-2.921" y1="2.286" x2="2.921" y2="2.286" width="0.4064" layer="21"/>
- <wire x1="-2.921" y1="-1.778" x2="2.921" y2="-1.778" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="1.778" x2="-2.921" y2="1.778" width="0.1524" layer="21"/>
- <wire x1="2.921" y1="1.778" x2="2.921" y2="-1.778" width="0.1524" layer="21" curve="-180"/>
- <wire x1="2.921" y1="2.286" x2="2.921" y2="-2.286" width="0.4064" layer="21" curve="-180"/>
- <wire x1="-2.921" y1="2.286" x2="-2.921" y2="-2.286" width="0.4064" layer="21" curve="180"/>
- <wire x1="-2.921" y1="1.778" x2="-2.921" y2="-1.778" width="0.1524" layer="21" curve="180"/>
- <wire x1="-0.25" y1="1" x2="0.25" y2="1" width="0.1524" layer="51"/>
- <wire x1="0.25" y1="1" x2="0.25" y2="-0.25" width="0.1524" layer="51"/>
- <wire x1="0.25" y1="-0.25" x2="-0.25" y2="-0.25" width="0.1524" layer="51"/>
- <wire x1="-0.25" y1="-0.25" x2="-0.25" y2="1" width="0.1524" layer="51"/>
- <wire x1="0.75" y1="1" x2="0.75" y2="0.25" width="0.1524" layer="51"/>
- <wire x1="0.75" y1="0.25" x2="0.75" y2="-0.5" width="0.1524" layer="51"/>
- <wire x1="-0.75" y1="1" x2="-0.75" y2="0.25" width="0.1524" layer="51"/>
- <wire x1="-0.75" y1="0.25" x2="-0.75" y2="-0.5" width="0.1524" layer="51"/>
- <wire x1="0.75" y1="0.25" x2="1.5" y2="0.25" width="0.1524" layer="51"/>
- <wire x1="-0.75" y1="0.25" x2="-1.5" y2="0.25" width="0.1524" layer="51"/>
- <wire x1="-0.75" y1="-0.5" x2="0.75" y2="-0.5" width="0.1524" layer="51"/>
- <wire x1="0" y1="-1.25" x2="0" y2="-0.625" width="0.1524" layer="51"/>
- <pad name="1" x="-2.413" y="0" drill="0.7" diameter="1.2"/>
- <pad name="2" x="-0.027" y="0" drill="0.7" diameter="1.2"/>
- <pad name="3" x="2.413" y="0" drill="0.7" diameter="1.2"/>
- <text x="-5.08" y="2.921" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-5.08" y="-4.191" size="1.27" layer="27" ratio="10">>VALUE</text>
- </package>
- </packages>
- </library>
- <library name="Vishay_By_element14_Batch_1">
- <description>Developed by element14 :<br>
- element14 CAD Library consolidation.ulp
- at 30/07/2012 16:36:08</description>
- <packages>
- <package name="RESC3216X71N">
- <smd name="1" x="-1.4732" y="0" dx="1.1176" dy="1.7526" layer="1"/>
- <smd name="2" x="1.4732" y="0" dx="1.1176" dy="1.7526" layer="1"/>
- <wire x1="-0.5842" y1="-0.8636" x2="0.5842" y2="-0.8636" width="0.1524" layer="21"/>
- <wire x1="0.5842" y1="0.8636" x2="-0.5842" y2="0.8636" width="0.1524" layer="21"/>
- <wire x1="-0.9144" y1="-0.8636" x2="-0.9144" y2="0.8636" width="0" layer="51"/>
- <wire x1="-0.9144" y1="0.8636" x2="-1.6764" y2="0.8636" width="0" layer="51"/>
- <wire x1="-1.6764" y1="-0.8636" x2="-0.9144" y2="-0.8636" width="0" layer="51"/>
- <wire x1="0.9144" y1="0.8636" x2="0.9144" y2="-0.8636" width="0" layer="51"/>
- <wire x1="0.9144" y1="-0.8636" x2="1.6764" y2="-0.8636" width="0" layer="51"/>
- <wire x1="1.6764" y1="0.8636" x2="0.9144" y2="0.8636" width="0" layer="51"/>
- <wire x1="-0.9144" y1="-0.8636" x2="0.9144" y2="-0.8636" width="0" layer="51"/>
- <wire x1="1.6764" y1="-0.8636" x2="1.6764" y2="0.8636" width="0" layer="51"/>
- <wire x1="0.9144" y1="0.8636" x2="-0.9144" y2="0.8636" width="0" layer="51"/>
- <wire x1="-1.6764" y1="0.8636" x2="-1.6764" y2="-0.8636" width="0" layer="51"/>
- <text x="-3.4544" y="1.905" size="2.0828" layer="25" ratio="10" rot="SR0">>NAME</text>
- <text x="-3.4544" y="-3.937" size="2.0828" layer="27" ratio="10" rot="SR0">>VALUE</text>
- </package>
- </packages>
- </library>
- <library name="resistor-power">
- <description><b>Vitrohm Power Resistors</b><p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="HPS947">
- <description><b>High Ohmic Value (up to 1.5 G?), High Power Resistors</b><p>
- (up to 10 W at 25 °C) Thick Film Technology<br>
- Source: Vishay Dale .. hps.pdf</description>
- <wire x1="-23.43" y1="-4.425" x2="23.43" y2="-4.425" width="0.1524" layer="21"/>
- <wire x1="23.43" y1="4.425" x2="-23.43" y2="4.425" width="0.1524" layer="21"/>
- <wire x1="-23.43" y1="4.425" x2="-23.43" y2="-4.425" width="0.1524" layer="21"/>
- <wire x1="23.43" y1="-4.425" x2="23.43" y2="4.425" width="0.1524" layer="21"/>
- <wire x1="-25.97" y1="0" x2="-24.06" y2="0" width="0.8" layer="51"/>
- <wire x1="24.06" y1="0" x2="25.97" y2="0" width="0.8" layer="51"/>
- <pad name="1" x="-25.97" y="0" drill="1.1" diameter="1.7"/>
- <pad name="2" x="25.97" y="0" drill="1.1" diameter="1.7"/>
- <text x="-6.95" y="5.075" size="1.778" layer="25" ratio="10">>NAME</text>
- <text x="-6.47" y="-0.835" size="1.778" layer="27" ratio="10">>VALUE</text>
- <rectangle x1="-24.06" y1="-0.4" x2="-23.505" y2="0.4" layer="21"/>
- <rectangle x1="23.505" y1="-0.4" x2="24.06" y2="0.4" layer="21"/>
- </package>
- </packages>
- </library>
- <library name="con-wago-500">
- <description><b>Wago Screw Clamps</b><p>
- Grid 5.00 mm<p>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="W237-102">
- <description><b>WAGO SCREW CLAMP</b></description>
- <wire x1="-3.491" y1="-2.286" x2="-1.484" y2="-0.279" width="0.254" layer="51"/>
- <wire x1="1.488" y1="-2.261" x2="3.469" y2="-0.254" width="0.254" layer="51"/>
- <wire x1="-4.989" y1="-5.461" x2="4.993" y2="-5.461" width="0.1524" layer="21"/>
- <wire x1="4.993" y1="3.734" x2="4.993" y2="3.531" width="0.1524" layer="21"/>
- <wire x1="4.993" y1="3.734" x2="-4.989" y2="3.734" width="0.1524" layer="21"/>
- <wire x1="-4.989" y1="-5.461" x2="-4.989" y2="-3.073" width="0.1524" layer="21"/>
- <wire x1="-4.989" y1="-3.073" x2="-3.389" y2="-3.073" width="0.1524" layer="21"/>
- <wire x1="-3.389" y1="-3.073" x2="-1.611" y2="-3.073" width="0.1524" layer="51"/>
- <wire x1="-1.611" y1="-3.073" x2="1.615" y2="-3.073" width="0.1524" layer="21"/>
- <wire x1="3.393" y1="-3.073" x2="4.993" y2="-3.073" width="0.1524" layer="21"/>
- <wire x1="-4.989" y1="-3.073" x2="-4.989" y2="3.531" width="0.1524" layer="21"/>
- <wire x1="4.993" y1="-3.073" x2="4.993" y2="-5.461" width="0.1524" layer="21"/>
- <wire x1="-4.989" y1="3.531" x2="4.993" y2="3.531" width="0.1524" layer="21"/>
- <wire x1="-4.989" y1="3.531" x2="-4.989" y2="3.734" width="0.1524" layer="21"/>
- <wire x1="4.993" y1="3.531" x2="4.993" y2="-3.073" width="0.1524" layer="21"/>
- <wire x1="1.615" y1="-3.073" x2="3.393" y2="-3.073" width="0.1524" layer="51"/>
- <circle x="-2.5" y="-1.27" radius="1.4986" width="0.1524" layer="51"/>
- <circle x="-2.5" y="2.2098" radius="0.508" width="0.1524" layer="21"/>
- <circle x="2.5038" y="-1.27" radius="1.4986" width="0.1524" layer="51"/>
- <circle x="2.5038" y="2.2098" radius="0.508" width="0.1524" layer="21"/>
- <pad name="1" x="-2.5" y="-1.27" drill="1.1938" shape="long" rot="R90"/>
- <pad name="2" x="2.5" y="-1.27" drill="1.1938" shape="long" rot="R90"/>
- <text x="-5.04" y="-7.62" size="1.27" layer="27" ratio="10">>VALUE</text>
- <text x="-3.8462" y="-5.0038" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-4.532" y="0.635" size="1.27" layer="21" ratio="10">1</text>
- <text x="0.421" y="0.635" size="1.27" layer="21" ratio="10">2</text>
- </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="20mil"/>
- <param name="rlMaxPadTop" value="25mil"/>
- <param name="rlMinPadInner" value="20mil"/>
- <param name="rlMaxPadInner" value="25mil"/>
- <param name="rlMinPadBottom" value="20mil"/>
- <param name="rlMaxPadBottom" value="25mil"/>
- <param name="rlMinViaOuter" value="15mil"/>
- <param name="rlMaxViaOuter" value="20mil"/>
- <param name="rlMinViaInner" value="15mil"/>
- <param name="rlMaxViaInner" value="20mil"/>
- <param name="rlMinMicroViaOuter" value="15mil"/>
- <param name="rlMaxMicroViaOuter" value="20mil"/>
- <param name="rlMinMicroViaInner" value="15mil"/>
- <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="A1" library="adafruit" package="1X01" value="" x="17.78" y="53.975"/>
- <element name="A2" library="adafruit" package="1X01" value="" x="33.02" y="53.975"/>
- <element name="B1" library="adafruit" package="1X01" value="" x="46.6725" y="53.975"/>
- <element name="B2" library="adafruit" package="1X01" value="" x="62.23" y="53.34"/>
- <element name="BOOT" library="pinhead" package="1X02" value="" x="20.0025" y="5.08" rot="MR0"/>
- <element name="C1" library="rcl" package="E2-5" value=">1000mF" x="51.435" y="17.4625" rot="MR270"/>
- <element name="C2" library="resistor" package="C1206" value="0.1mF" x="18.415" y="17.4625" rot="MR0"/>
- <element name="CQ1" library="transistor-power" package="MICRO3" value="IRLML0040TRPBF" x="12.7" y="23.8125" rot="R270"/>
- <element name="IC1" library="STM32F050" package="TSSOP20" value="STM32F050F" x="35.2425" y="13.97" rot="MR90"/>
- <element name="IC2" library="linear" package="SO14" value="LM324D" x="32.7025" y="37.7825" rot="MR90"/>
- <element name="IC3" library="lm1117" package="TO252" value="LM1117DTX-3.3" x="61.9125" y="23.8125" rot="MR0"/>
- <element name="NQ1" library="transistor-power" package="D-PAK_TO252AA" value="IRLR024ZPBF" x="17.78" y="29.5275"/>
- <element name="NQ2" library="transistor-power" package="D-PAK_TO252AA" value="IRLR024ZPBF" x="33.02" y="29.5275"/>
- <element name="NQ3" library="transistor-power" package="D-PAK_TO252AA" value="IRLR024ZPBF" x="46.99" y="29.5275"/>
- <element name="NQ4" library="transistor-power" package="D-PAK_TO252AA" value="IRLR024ZPBF" x="62.23" y="29.21"/>
- <element name="PQ1" library="transistor-power" package="D-PAK_TO252AA" value="IRFR5305" x="17.78" y="46.0375"/>
- <element name="PQ2" library="transistor-power" package="D-PAK_TO252AA" value="IRFR5305" x="33.02" y="46.0375"/>
- <element name="PQ3" library="transistor-power" package="D-PAK_TO252AA" value="IRFR5305" x="46.99" y="45.72"/>
- <element name="PQ4" library="transistor-power" package="D-PAK_TO252AA" value="IRFR5305" x="62.23" y="45.72"/>
- <element name="QF1" library="crystal" package="HC49U" value="8M10AHC49T" x="25.4" y="13.97" rot="MR270">
- <attribute name="OC_NEWARK" value="unknown" x="25.4" y="13.97" size="1.778" layer="28" rot="MR270" display="off"/>
- <attribute name="MPN" value="" x="25.4" y="13.97" size="1.778" layer="28" rot="MR270" display="off"/>
- <attribute name="MF" value="" x="25.4" y="13.97" size="1.778" layer="28" rot="MR270" display="off"/>
- <attribute name="OC_FARNELL" value="unknown" x="25.4" y="13.97" size="1.778" layer="28" rot="MR270" display="off"/>
- </element>
- <element name="R1" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="1k2" x="12.7" y="47.9425" rot="R270">
- <attribute name="OC_NEWARK" value="83R9020" x="12.7" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="12.7" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="12.7" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="12.7" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="12.7" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="12.7" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- </element>
- <element name="R10" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="660" x="39.6875" y="32.0675" rot="R90">
- <attribute name="OC_NEWARK" value="83R9020" x="39.6875" y="32.0675" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="39.6875" y="32.0675" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="39.6875" y="32.0675" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="39.6875" y="32.0675" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="39.6875" y="32.0675" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="39.6875" y="32.0675" size="1.778" layer="27" rot="R90" display="off"/>
- </element>
- <element name="R11" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="660" x="55.5625" y="37.465" rot="R90">
- <attribute name="OC_NEWARK" value="83R9020" x="55.5625" y="37.465" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="55.5625" y="37.465" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="55.5625" y="37.465" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="55.5625" y="37.465" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="55.5625" y="37.465" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="55.5625" y="37.465" size="1.778" layer="27" rot="R90" display="off"/>
- </element>
- <element name="R2" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="1k2" x="26.67" y="47.9425" rot="R270">
- <attribute name="OC_NEWARK" value="83R9020" x="26.67" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="26.67" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="26.67" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="26.67" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="26.67" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="26.67" y="47.9425" size="1.778" layer="27" rot="R270" display="off"/>
- </element>
- <element name="R25" library="rcl" package="RTRIM5W" value="5K" x="40.9575" y="53.34" rot="MR270"/>
- <element name="R3" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="1k2" x="40.9575" y="47.3075" rot="R270">
- <attribute name="OC_NEWARK" value="83R9020" x="40.9575" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="40.9575" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="40.9575" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="40.9575" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="40.9575" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="40.9575" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- </element>
- <element name="R4" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="1k2" x="57.15" y="47.3075" rot="R270">
- <attribute name="OC_NEWARK" value="83R9020" x="57.15" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="57.15" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="57.15" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="57.15" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="57.15" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="57.15" y="47.3075" size="1.778" layer="27" rot="R270" display="off"/>
- </element>
- <element name="R5" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="330" x="69.5325" y="28.8925" rot="MR90">
- <attribute name="OC_NEWARK" value="83R9020" x="69.5325" y="28.8925" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="69.5325" y="28.8925" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="69.5325" y="28.8925" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="69.5325" y="28.8925" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="69.5325" y="28.8925" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="69.5325" y="28.8925" size="1.778" layer="28" rot="MR90" display="off"/>
- </element>
- <element name="R6" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="2k2" x="15.875" y="8.255" rot="MR90">
- <attribute name="OC_NEWARK" value="83R9020" x="15.875" y="8.255" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="15.875" y="8.255" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="15.875" y="8.255" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="15.875" y="8.255" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="15.875" y="8.255" size="1.778" layer="28" rot="MR90" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="15.875" y="8.255" size="1.778" layer="28" rot="MR90" display="off"/>
- </element>
- <element name="R7" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="2k2" x="25.0825" y="20.955" rot="MR180">
- <attribute name="OC_NEWARK" value="83R9020" x="25.0825" y="20.955" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="25.0825" y="20.955" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="25.0825" y="20.955" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="25.0825" y="20.955" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="25.0825" y="20.955" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="25.0825" y="20.955" size="1.778" layer="28" rot="MR180" display="off"/>
- </element>
- <element name="R8" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="660" x="10.16" y="42.2275" rot="R90">
- <attribute name="OC_NEWARK" value="83R9020" x="10.16" y="42.2275" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="10.16" y="42.2275" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="10.16" y="42.2275" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="10.16" y="42.2275" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="10.16" y="42.2275" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="10.16" y="42.2275" size="1.778" layer="27" rot="R90" display="off"/>
- </element>
- <element name="R9" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="660" x="23.8125" y="33.655" rot="R90">
- <attribute name="OC_NEWARK" value="83R9020" x="23.8125" y="33.655" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="23.8125" y="33.655" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="23.8125" y="33.655" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="23.8125" y="33.655" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="23.8125" y="33.655" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="23.8125" y="33.655" size="1.778" layer="27" rot="R90" display="off"/>
- </element>
- <element name="RI" library="resistor-power" package="HPS947" value="0.47" x="73.025" y="28.2575" rot="R90">
- <attribute name="OC_NEWARK" value="unknown" x="73.025" y="28.2575" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MPN" value="" x="73.025" y="28.2575" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MF" value="" x="73.025" y="28.2575" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="OC_FARNELL" value="unknown" x="73.025" y="28.2575" size="1.778" layer="27" rot="R90" display="off"/>
- </element>
- <element name="RST" library="pinhead" package="1X02" value="" x="19.05" y="13.97" rot="MR180"/>
- <element name="SWD" library="adafruit" package="1X03" value="" x="27.305" y="5.08" rot="MR180"/>
- <element name="X3" library="con-wago-500" package="W237-102" value="" x="61.595" y="6.0325">
- <attribute name="OC_NEWARK" value="70K9898" x="61.595" y="6.0325" size="1.778" layer="27" display="off"/>
- <attribute name="MPN" value="237-102" x="61.595" y="6.0325" size="1.778" layer="27" display="off"/>
- <attribute name="MF" value="" x="61.595" y="6.0325" size="1.778" layer="27" display="off"/>
- <attribute name="OC_FARNELL" value="unknown" x="61.595" y="6.0325" size="1.778" layer="27" display="off"/>
- </element>
- <element name="RI1" library="resistor-power" package="HPS947" value="0.47" x="4.445" y="28.575" rot="R90">
- <attribute name="OC_NEWARK" value="unknown" x="4.445" y="28.575" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MPN" value="" x="4.445" y="28.575" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="MF" value="" x="4.445" y="28.575" size="1.778" layer="27" rot="R90" display="off"/>
- <attribute name="OC_FARNELL" value="unknown" x="4.445" y="28.575" size="1.778" layer="27" rot="R90" display="off"/>
- </element>
- <element name="R12" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="5k1" x="18.415" y="39.37" rot="MR180">
- <attribute name="OC_NEWARK" value="83R9020" x="18.415" y="39.37" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="18.415" y="39.37" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="18.415" y="39.37" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="18.415" y="39.37" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="18.415" y="39.37" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="18.415" y="39.37" size="1.778" layer="28" rot="MR180" display="off"/>
- </element>
- <element name="R13" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="5k1" x="21.59" y="33.655" rot="MR180">
- <attribute name="OC_NEWARK" value="83R9020" x="21.59" y="33.655" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="21.59" y="33.655" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="21.59" y="33.655" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="21.59" y="33.655" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="21.59" y="33.655" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="21.59" y="33.655" size="1.778" layer="28" rot="MR180" display="off"/>
- </element>
- <element name="R14" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="5k1" x="43.815" y="36.195" rot="MR0">
- <attribute name="OC_NEWARK" value="83R9020" x="43.815" y="36.195" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="43.815" y="36.195" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="43.815" y="36.195" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="43.815" y="36.195" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="43.815" y="36.195" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="43.815" y="36.195" size="1.778" layer="28" rot="MR0" display="off"/>
- </element>
- <element name="R15" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="5k1" x="43.815" y="39.37" rot="MR0">
- <attribute name="OC_NEWARK" value="83R9020" x="43.815" y="39.37" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="43.815" y="39.37" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="43.815" y="39.37" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="43.815" y="39.37" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="43.815" y="39.37" size="1.778" layer="28" rot="MR0" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="43.815" y="39.37" size="1.778" layer="28" rot="MR0" display="off"/>
- </element>
- <element name="IC4" library="linear" package="SO08" value="LM358D" x="32.0675" y="47.3075" rot="MR90"/>
- <element name="CONN1" library="pinhead" package="1X08" value="" x="43.815" y="5.08" rot="MR0"/>
- <element name="R16" library="Vishay_By_element14_Batch_1" package="RESC3216X71N" value="1k2" x="53.6575" y="51.435" rot="MR180">
- <attribute name="OC_NEWARK" value="83R9020" x="53.6575" y="51.435" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="TOLERANCE" value="±0.1%" x="53.6575" y="51.435" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="MPN" value="TNPW1206100KBEEA" x="53.6575" y="51.435" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="SUPPLIER" value="Vishay Dale" x="53.6575" y="51.435" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="OC_FARNELL" value="1862012" x="53.6575" y="51.435" size="1.778" layer="28" rot="MR180" display="off"/>
- <attribute name="WATTAGE" value="0.25 W" x="53.6575" y="51.435" size="1.778" layer="28" rot="MR180" display="off"/>
- </element>
- <element name="CQ2" library="transistor-power" package="MICRO3" value="IRLML0040TRPBF" x="25.0825" y="25.4" rot="R270"/>
- <element name="CQ3" library="transistor-power" package="MICRO3" value="IRLML0040TRPBF" x="40.005" y="25.4" rot="R270"/>
- <element name="CQ4" library="transistor-power" package="MICRO3" value="IRLML0040TRPBF" x="55.5625" y="27.94" rot="R270"/>
- </elements>
- <signals>
- <signal name="N$15">
- <contactref element="NQ1" pad="4"/>
- <contactref element="PQ1" pad="4"/>
- <contactref element="A1" pad="1"/>
- <wire x1="17.78" y1="48.5375" x2="17.78" y2="32.0275" width="1.016" layer="1"/>
- <wire x1="17.78" y1="53.975" x2="17.78" y2="48.5375" width="1.016" layer="1"/>
- </signal>
- <signal name="N$16">
- <contactref element="NQ2" pad="4"/>
- <contactref element="PQ2" pad="4"/>
- <contactref element="A2" pad="1"/>
- <wire x1="33.02" y1="48.5375" x2="33.02" y2="32.0275" width="1.016" layer="1"/>
- <wire x1="33.02" y1="53.975" x2="33.02" y2="48.5375" width="1.016" layer="1"/>
- </signal>
- <signal name="N$17">
- <contactref element="PQ4" pad="4"/>
- <contactref element="NQ4" pad="4"/>
- <contactref element="B2" pad="1"/>
- <wire x1="62.23" y1="48.22" x2="62.23" y2="31.71" width="1.016" layer="1"/>
- <wire x1="62.23" y1="53.34" x2="62.23" y2="48.22" width="1.016" layer="1"/>
- </signal>
- <signal name="N$18">
- <contactref element="PQ3" pad="4"/>
- <contactref element="NQ3" pad="4"/>
- <contactref element="B1" pad="1"/>
- <wire x1="46.99" y1="48.22" x2="46.99" y2="32.0275" width="1.016" layer="1"/>
- <wire x1="46.6725" y1="53.975" x2="46.99" y2="48.895" width="1.016" layer="1"/>
- <wire x1="46.99" y1="48.895" x2="46.99" y2="48.22" width="1.016" layer="1"/>
- </signal>
- <signal name="N$10">
- <contactref element="PQ1" pad="1"/>
- <contactref element="NQ1" pad="1"/>
- <contactref element="R1" pad="2"/>
- <wire x1="15.5" y1="41.2375" x2="13.335" y2="41.2375" width="0.4064" layer="1"/>
- <wire x1="13.335" y1="41.2375" x2="12.7" y2="41.2375" width="0.4064" layer="1"/>
- <wire x1="12.7" y1="46.4693" x2="12.7" y2="41.2375" width="0.4064" layer="1"/>
- <contactref element="CQ1" pad="3"/>
- <wire x1="15.5" y1="24.7275" x2="15.5" y2="24.13" width="0.4064" layer="1"/>
- <wire x1="15.5" y1="24.13" x2="15.24" y2="24.13" width="0.4064" layer="1"/>
- <wire x1="15.24" y1="24.13" x2="15.24" y2="23.8125" width="0.4064" layer="1"/>
- <wire x1="15.24" y1="23.8125" x2="13.7" y2="23.8125" width="0.4064" layer="1"/>
- <wire x1="15.5" y1="26.035" x2="15.5" y2="24.7275" width="0.4064" layer="1"/>
- <wire x1="15.5" y1="26.035" x2="10.795" y2="26.035" width="0.4064" layer="1"/>
- <wire x1="10.795" y1="26.035" x2="10.795" y2="31.115" width="0.4064" layer="1"/>
- <wire x1="10.795" y1="31.115" x2="12.3825" y2="31.115" width="0.4064" layer="1"/>
- <wire x1="12.3825" y1="31.115" x2="13.335" y2="31.115" width="0.4064" layer="1"/>
- <wire x1="13.335" y1="31.115" x2="13.335" y2="41.2375" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$43">
- <contactref element="PQ2" pad="1"/>
- <contactref element="NQ2" pad="1"/>
- <contactref element="R2" pad="2"/>
- <wire x1="30.74" y1="41.2375" x2="28.8925" y2="41.2375" width="0.4064" layer="1"/>
- <wire x1="28.8925" y1="41.2375" x2="28.8925" y2="32.1818" width="0.4064" layer="1"/>
- <wire x1="28.8925" y1="32.1818" x2="28.8925" y2="31.75" width="0.4064" layer="1"/>
- <wire x1="28.8925" y1="31.75" x2="28.8925" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="28.8925" y1="24.765" x2="30.74" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="30.74" y1="24.765" x2="30.74" y2="24.7275" width="0.4064" layer="1"/>
- <wire x1="28.575" y1="24.13" x2="28.8925" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="26.67" y1="46.4693" x2="26.67" y2="41.2375" width="0.4064" layer="1"/>
- <wire x1="26.67" y1="41.2375" x2="28.8925" y2="41.2375" width="0.4064" layer="1"/>
- <contactref element="CQ2" pad="3"/>
- <wire x1="26.0825" y1="25.4" x2="27.3525" y2="24.13" width="0.4064" layer="1"/>
- <wire x1="27.3525" y1="24.13" x2="28.575" y2="24.13" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$45">
- <contactref element="PQ3" pad="1"/>
- <contactref element="NQ3" pad="1"/>
- <contactref element="R3" pad="2"/>
- <wire x1="44.71" y1="40.92" x2="42.545" y2="40.92" width="0.4064" layer="1"/>
- <wire x1="42.545" y1="40.92" x2="42.545" y2="25.0825" width="0.4064" layer="1"/>
- <wire x1="42.545" y1="25.0825" x2="42.545" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="42.545" y1="24.765" x2="43.0657" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="43.0657" y1="24.765" x2="44.71" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="44.71" y1="24.765" x2="44.71" y2="24.7275" width="0.4064" layer="1"/>
- <wire x1="40.9575" y1="45.8343" x2="42.2275" y2="45.8343" width="0.4064" layer="1"/>
- <wire x1="42.2275" y1="45.8343" x2="42.2275" y2="40.92" width="0.4064" layer="1"/>
- <wire x1="42.2275" y1="40.92" x2="42.545" y2="40.92" width="0.4064" layer="1"/>
- <contactref element="CQ3" pad="3"/>
- <wire x1="41.005" y1="25.4" x2="41.005" y2="25.0825" width="0.4064" layer="1"/>
- <wire x1="41.005" y1="25.0825" x2="42.545" y2="25.0825" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$47">
- <contactref element="PQ4" pad="1"/>
- <contactref element="NQ4" pad="1"/>
- <contactref element="R4" pad="2"/>
- <wire x1="59.95" y1="40.92" x2="57.785" y2="40.92" width="0.4064" layer="1"/>
- <wire x1="57.785" y1="40.92" x2="57.785" y2="27.94" width="0.4064" layer="1"/>
- <wire x1="57.785" y1="27.94" x2="57.785" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="57.785" y1="24.765" x2="59.95" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="59.95" y1="24.765" x2="59.95" y2="24.41" width="0.4064" layer="1"/>
- <wire x1="57.15" y1="45.8343" x2="57.15" y2="40.92" width="0.4064" layer="1"/>
- <wire x1="57.15" y1="40.92" x2="57.785" y2="40.92" width="0.4064" layer="1"/>
- <contactref element="CQ4" pad="3"/>
- <wire x1="56.5625" y1="27.94" x2="57.785" y2="27.94" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$29">
- <contactref element="IC1" pad="2"/>
- <contactref element="QF1" pad="3"/>
- <wire x1="32.3247" y1="11.695" x2="27.305" y2="11.695" width="0.3048" layer="16"/>
- <wire x1="27.305" y1="11.695" x2="25.4" y2="11.557" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$30">
- <contactref element="IC1" pad="3"/>
- <contactref element="QF1" pad="1"/>
- <wire x1="32.3247" y1="12.345" x2="27.94" y2="12.345" width="0.3048" layer="16"/>
- <wire x1="27.94" y1="12.345" x2="27.94" y2="16.383" width="0.3048" layer="16"/>
- <wire x1="27.94" y1="16.383" x2="25.4" y2="16.383" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$32">
- <contactref element="BOOT" pad="2"/>
- <contactref element="IC1" pad="1"/>
- <contactref element="R6" pad="1"/>
- <wire x1="32.3247" y1="11.045" x2="31.115" y2="11.045" width="0.3048" layer="16"/>
- <wire x1="31.115" y1="11.045" x2="31.115" y2="9.525" width="0.3048" layer="16"/>
- <wire x1="18.7325" y1="10.16" x2="18.7325" y2="6.985" width="0.3048" layer="16"/>
- <wire x1="18.7325" y1="6.985" x2="18.7325" y2="5.08" width="0.3048" layer="16"/>
- <wire x1="31.115" y1="9.525" x2="24.765" y2="9.525" width="0.3048" layer="16"/>
- <wire x1="24.765" y1="9.525" x2="24.13" y2="10.16" width="0.3048" layer="16"/>
- <wire x1="24.13" y1="10.16" x2="18.7325" y2="10.16" width="0.3048" layer="16"/>
- <wire x1="15.875" y1="6.7818" x2="18.7325" y2="6.7818" width="0.4064" layer="16"/>
- <wire x1="18.7325" y1="6.7818" x2="18.7325" y2="6.985" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$31">
- <contactref element="R7" pad="1"/>
- <contactref element="C2" pad="1"/>
- <contactref element="RST" pad="2"/>
- <contactref element="IC1" pad="4"/>
- <wire x1="20.32" y1="13.97" x2="22.225" y2="13.97" width="0.3048" layer="16"/>
- <wire x1="22.225" y1="13.97" x2="22.225" y2="18.415" width="0.3048" layer="16"/>
- <wire x1="22.225" y1="18.415" x2="28.575" y2="18.415" width="0.3048" layer="16"/>
- <wire x1="28.575" y1="18.415" x2="28.575" y2="12.995" width="0.3048" layer="16"/>
- <wire x1="28.575" y1="12.995" x2="32.3247" y2="12.995" width="0.3048" layer="16"/>
- <wire x1="23.6093" y1="20.955" x2="22.225" y2="20.955" width="0.4064" layer="16"/>
- <wire x1="22.225" y1="20.955" x2="22.225" y2="18.415" width="0.4064" layer="16"/>
- <wire x1="22.225" y1="18.415" x2="19.815" y2="18.415" width="0.4064" layer="16"/>
- <wire x1="19.815" y1="18.415" x2="19.815" y2="17.4625" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$35">
- <contactref element="R5" pad="2"/>
- <contactref element="C1" pad="+"/>
- <contactref element="IC3" pad="TAB"/>
- <contactref element="IC1" pad="16"/>
- <contactref element="BOOT" pad="1"/>
- <contactref element="IC1" pad="5"/>
- <contactref element="R7" pad="2"/>
- <wire x1="69.5325" y1="30.3657" x2="61.9125" y2="30.3657" width="0.4064" layer="16"/>
- <wire x1="61.9125" y1="30.3657" x2="61.9125" y2="26.3125" width="0.4064" layer="16"/>
- <wire x1="51.435" y1="18.4785" x2="51.435" y2="20.955" width="1.016" layer="16"/>
- <wire x1="51.435" y1="20.955" x2="51.435" y2="25.0425" width="1.016" layer="16"/>
- <wire x1="38.1603" y1="13.645" x2="36.195" y2="13.645" width="0.3048" layer="16"/>
- <wire x1="36.195" y1="20.955" x2="51.435" y2="20.955" width="0.3048" layer="16"/>
- <wire x1="36.195" y1="13.645" x2="32.3247" y2="13.645" width="0.3048" layer="16"/>
- <wire x1="34.925" y1="8.89" x2="34.925" y2="10.795" width="0.3048" layer="16"/>
- <wire x1="34.925" y1="10.795" x2="36.195" y2="10.795" width="0.3048" layer="16"/>
- <wire x1="36.195" y1="10.795" x2="36.195" y2="13.645" width="0.3048" layer="16"/>
- <wire x1="34.925" y1="8.89" x2="21.2725" y2="8.89" width="0.3048" layer="16"/>
- <wire x1="21.2725" y1="8.89" x2="21.2725" y2="5.08" width="0.3048" layer="16"/>
- <wire x1="26.5557" y1="20.955" x2="29.21" y2="20.955" width="0.3048" layer="16"/>
- <wire x1="29.21" y1="20.955" x2="29.21" y2="13.645" width="0.3048" layer="16"/>
- <wire x1="29.21" y1="13.645" x2="32.3247" y2="13.645" width="0.3048" layer="16"/>
- <wire x1="36.195" y1="20.955" x2="36.195" y2="13.645" width="0.3048" layer="16"/>
- <wire x1="51.435" y1="25.0425" x2="61.9125" y2="25.0425" width="1.016" layer="16"/>
- <wire x1="61.9125" y1="25.0425" x2="61.9125" y2="26.3125" width="1.016" layer="16"/>
- </signal>
- <signal name="N$39">
- <contactref element="IC2" pad="4"/>
- <contactref element="IC3" pad="2"/>
- <contactref element="IC4" pad="8"/>
- <contactref element="R1" pad="1"/>
- <contactref element="X3" pad="2"/>
- <contactref element="R2" pad="1"/>
- <contactref element="R3" pad="1"/>
- <contactref element="PQ1" pad="3"/>
- <contactref element="PQ2" pad="3"/>
- <contactref element="PQ3" pad="3"/>
- <contactref element="PQ4" pad="3"/>
- <contactref element="R4" pad="1"/>
- <wire x1="64.095" y1="4.7625" x2="64.095" y2="7.62" width="1.016" layer="16"/>
- <via x="67.31" y="57.785" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="67.31" y1="57.785" x2="67.31" y2="40.92" width="1.016" layer="1"/>
- <wire x1="67.31" y1="40.92" x2="64.51" y2="40.92" width="1.016" layer="1"/>
- <wire x1="49.27" y1="40.92" x2="52.705" y2="40.92" width="1.016" layer="1"/>
- <wire x1="52.705" y1="40.92" x2="52.705" y2="50.165" width="1.016" layer="1"/>
- <wire x1="52.705" y1="50.165" x2="52.705" y2="57.785" width="1.016" layer="1"/>
- <wire x1="52.705" y1="57.785" x2="67.31" y2="57.785" width="1.016" layer="1"/>
- <wire x1="35.3" y1="41.2375" x2="37.7825" y2="41.2375" width="1.016" layer="1"/>
- <wire x1="37.7825" y1="41.2375" x2="37.7825" y2="44.45" width="1.016" layer="1"/>
- <wire x1="37.7825" y1="44.45" x2="37.7825" y2="49.53" width="1.016" layer="1"/>
- <wire x1="37.7825" y1="49.53" x2="37.7825" y2="57.785" width="1.016" layer="1"/>
- <wire x1="37.7825" y1="57.785" x2="52.705" y2="57.785" width="1.016" layer="1"/>
- <wire x1="20.06" y1="41.2375" x2="22.86" y2="41.2375" width="1.016" layer="1"/>
- <wire x1="22.86" y1="41.2375" x2="22.86" y2="51.435" width="1.016" layer="1"/>
- <wire x1="22.86" y1="51.435" x2="22.86" y2="57.785" width="1.016" layer="1"/>
- <wire x1="22.86" y1="57.785" x2="23.495" y2="57.785" width="1.016" layer="1"/>
- <wire x1="23.495" y1="57.785" x2="37.7825" y2="57.785" width="1.016" layer="1"/>
- <wire x1="12.7" y1="49.4157" x2="12.7" y2="57.785" width="0.4064" layer="1"/>
- <wire x1="12.7" y1="57.785" x2="23.495" y2="57.785" width="0.4064" layer="1"/>
- <wire x1="40.9575" y1="48.7807" x2="40.9575" y2="49.53" width="0.4064" layer="1"/>
- <wire x1="40.9575" y1="49.53" x2="37.7825" y2="49.53" width="0.4064" layer="1"/>
- <wire x1="57.15" y1="48.7807" x2="57.15" y2="50.165" width="0.4064" layer="1"/>
- <wire x1="57.15" y1="50.165" x2="52.705" y2="50.165" width="0.4064" layer="1"/>
- <wire x1="26.67" y1="49.4157" x2="26.67" y2="51.435" width="0.4064" layer="1"/>
- <wire x1="26.67" y1="51.435" x2="22.86" y2="51.435" width="0.4064" layer="1"/>
- <wire x1="59.6325" y1="19.0125" x2="59.6325" y2="10.16" width="1.016" layer="16"/>
- <wire x1="59.6325" y1="10.16" x2="64.135" y2="10.16" width="1.016" layer="16"/>
- <wire x1="64.135" y1="10.16" x2="64.135" y2="7.62" width="1.016" layer="16"/>
- <wire x1="64.135" y1="7.62" x2="64.095" y2="7.62" width="1.016" layer="16"/>
- <wire x1="30.1025" y1="37.7825" x2="26.3525" y2="37.7825" width="0.4064" layer="16"/>
- <via x="26.3525" y="37.7825" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="26.3525" y1="37.7825" x2="22.86" y2="37.7825" width="0.4064" layer="1"/>
- <wire x1="22.86" y1="37.7825" x2="22.86" y2="41.2375" width="0.4064" layer="1"/>
- <contactref element="R16" pad="2"/>
- <wire x1="55.1307" y1="51.435" x2="55.1307" y2="57.785" width="0.4064" layer="16"/>
- <wire x1="55.1307" y1="57.785" x2="67.31" y2="57.785" width="0.4064" layer="16"/>
- <wire x1="34.6675" y1="45.4025" x2="34.6675" y2="44.45" width="0.4064" layer="16"/>
- <wire x1="34.6675" y1="44.45" x2="38.735" y2="44.45" width="0.4064" layer="16"/>
- <via x="38.735" y="44.45" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="38.735" y1="44.45" x2="37.7825" y2="44.45" width="0.4064" layer="1"/>
- <wire x1="64.135" y1="7.62" x2="76.835" y2="7.62" width="1.016" layer="16"/>
- <wire x1="76.835" y1="7.62" x2="76.835" y2="57.785" width="1.016" layer="16"/>
- <wire x1="76.835" y1="57.785" x2="68.8975" y2="57.785" width="1.016" layer="16"/>
- <wire x1="68.8975" y1="57.785" x2="67.31" y2="57.785" width="1.016" layer="16"/>
- <wire x1="67.31" y1="57.15" x2="67.31" y2="57.785" width="1.016" layer="16"/>
- <wire x1="67.31" y1="57.785" x2="68.8975" y2="57.785" width="1.016" layer="1"/>
- <wire x1="68.8975" y1="57.785" x2="69.215" y2="57.785" width="1.016" layer="1"/>
- <via x="68.8975" y="57.785" extent="1-16" drill="0.6" shape="square"/>
- </signal>
- <signal name="N$13">
- <contactref element="NQ4" pad="3"/>
- <contactref element="NQ3" pad="3"/>
- <contactref element="RI" pad="2"/>
- <contactref element="IC4" pad="5"/>
- <wire x1="73.025" y1="54.2275" x2="73.025" y2="21.2725" width="1.016" layer="1"/>
- <wire x1="73.025" y1="21.2725" x2="64.51" y2="21.2725" width="1.016" layer="1"/>
- <wire x1="64.51" y1="21.2725" x2="48.895" y2="21.2725" width="1.016" layer="1"/>
- <wire x1="48.895" y1="21.2725" x2="48.895" y2="24.7275" width="1.016" layer="1"/>
- <wire x1="48.895" y1="24.7275" x2="49.27" y2="24.7275" width="1.016" layer="1"/>
- <wire x1="64.51" y1="24.41" x2="64.51" y2="21.2725" width="1.016" layer="1"/>
- <wire x1="34.6675" y1="49.2125" x2="73.025" y2="49.2125" width="0.4064" layer="16"/>
- <wire x1="73.025" y1="49.2125" x2="73.025" y2="54.2275" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$14">
- <contactref element="R10" pad="1"/>
- <wire x1="39.6875" y1="30.5943" x2="39.005" y2="30.5943" width="0.4064" layer="1"/>
- <wire x1="39.005" y1="30.5943" x2="39.37" y2="30.5943" width="0.3048" layer="1"/>
- <wire x1="39.37" y1="30.5943" x2="39.37" y2="28.575" width="0.3048" layer="1"/>
- <via x="39.37" y="28.575" extent="1-16" drill="0.6" shape="square"/>
- <contactref element="IC2" pad="14"/>
- <wire x1="35.3025" y1="33.9725" x2="35.3025" y2="28.575" width="0.4064" layer="16"/>
- <wire x1="35.3025" y1="28.575" x2="39.37" y2="28.575" width="0.4064" layer="16"/>
- <contactref element="CQ3" pad="1"/>
- <wire x1="39.37" y1="28.575" x2="39.005" y2="27.8925" width="0.4064" layer="1"/>
- <wire x1="39.005" y1="27.8925" x2="39.005" y2="26.35" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$36">
- <contactref element="R8" pad="1"/>
- <via x="10.16" y="37.465" extent="1-16" drill="0.6" shape="square"/>
- <contactref element="IC2" pad="7"/>
- <contactref element="CQ1" pad="1"/>
- <wire x1="7.62" y1="24.7625" x2="11.7" y2="24.7625" width="0.4064" layer="1"/>
- <wire x1="7.62" y1="24.7625" x2="7.62" y2="37.465" width="0.4064" layer="1"/>
- <wire x1="10.16" y1="37.465" x2="10.16" y2="41.5925" width="0.4064" layer="16"/>
- <wire x1="10.16" y1="41.5925" x2="30.1025" y2="41.5925" width="0.4064" layer="16"/>
- <wire x1="7.62" y1="37.465" x2="10.16" y2="37.465" width="0.4064" layer="1"/>
- <wire x1="10.16" y1="40.7543" x2="10.16" y2="37.465" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$40">
- <contactref element="R9" pad="1"/>
- <contactref element="IC2" pad="1"/>
- <via x="26.035" y="29.21" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="26.035" y1="29.21" x2="26.035" y2="33.9725" width="0.4064" layer="16"/>
- <wire x1="26.035" y1="33.9725" x2="30.1025" y2="33.9725" width="0.4064" layer="16"/>
- <contactref element="CQ2" pad="1"/>
- <wire x1="23.8125" y1="32.1818" x2="24.0825" y2="32.1818" width="0.3048" layer="1"/>
- <wire x1="24.0825" y1="29.21" x2="24.0825" y2="26.35" width="0.3048" layer="1"/>
- <wire x1="24.0825" y1="32.1818" x2="24.0825" y2="29.21" width="0.3048" layer="1"/>
- <wire x1="24.0825" y1="29.21" x2="26.035" y2="29.21" width="0.3048" layer="1"/>
- </signal>
- <signal name="N$2">
- <contactref element="NQ2" pad="3"/>
- <contactref element="NQ1" pad="3"/>
- <contactref element="RI1" pad="2"/>
- <wire x1="20.32" y1="21.2725" x2="20.32" y2="24.7275" width="1.016" layer="1"/>
- <wire x1="20.32" y1="24.7275" x2="20.06" y2="24.7275" width="1.016" layer="1"/>
- <wire x1="35.3" y1="24.7275" x2="35.3" y2="21.2725" width="1.016" layer="1"/>
- <wire x1="35.3" y1="21.2725" x2="20.32" y2="21.2725" width="1.016" layer="1"/>
- <wire x1="4.445" y1="46.6725" x2="4.445" y2="54.545" width="0.4064" layer="16"/>
- <wire x1="4.445" y1="54.545" x2="4.445" y2="20.32" width="1.016" layer="1"/>
- <wire x1="4.445" y1="20.32" x2="20.32" y2="20.32" width="1.016" layer="1"/>
- <wire x1="20.32" y1="20.32" x2="20.32" y2="21.2725" width="1.016" layer="1"/>
- <contactref element="IC4" pad="3"/>
- <wire x1="35.3" y1="24.7275" x2="29.4675" y2="47.9425" width="0" layer="19" extent="1-16"/>
- </signal>
- <signal name="N$4">
- <contactref element="IC1" pad="6"/>
- <contactref element="R12" pad="2"/>
- <contactref element="IC2" pad="5"/>
- <wire x1="32.3247" y1="14.295" x2="29.845" y2="14.295" width="0.3048" layer="16"/>
- <wire x1="29.845" y1="14.295" x2="29.845" y2="22.86" width="0.3048" layer="16"/>
- <wire x1="29.845" y1="22.86" x2="21.59" y2="22.86" width="0.3048" layer="16"/>
- <wire x1="21.59" y1="22.86" x2="21.59" y2="39.0525" width="0.3048" layer="16"/>
- <wire x1="21.59" y1="39.0525" x2="30.1025" y2="39.0525" width="0.3048" layer="16"/>
- <wire x1="19.8882" y1="39.37" x2="19.8882" y2="39.0525" width="0.3048" layer="16"/>
- <wire x1="19.8882" y1="39.0525" x2="21.59" y2="39.0525" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$5">
- <contactref element="IC1" pad="7"/>
- <contactref element="R13" pad="2"/>
- <contactref element="IC2" pad="3"/>
- <wire x1="32.3247" y1="14.945" x2="30.48" y2="14.945" width="0.3048" layer="16"/>
- <wire x1="30.48" y1="14.945" x2="30.48" y2="23.495" width="0.3048" layer="16"/>
- <wire x1="30.48" y1="23.495" x2="24.13" y2="23.495" width="0.3048" layer="16"/>
- <wire x1="24.13" y1="23.495" x2="24.13" y2="33.655" width="0.3048" layer="16"/>
- <wire x1="24.13" y1="33.655" x2="24.13" y2="36.5125" width="0.3048" layer="16"/>
- <wire x1="24.13" y1="36.5125" x2="30.1025" y2="36.5125" width="0.3048" layer="16"/>
- <wire x1="23.0632" y1="33.655" x2="24.13" y2="33.655" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$6">
- <contactref element="IC1" pad="8"/>
- <contactref element="R14" pad="2"/>
- <contactref element="IC2" pad="12"/>
- <wire x1="32.3247" y1="15.595" x2="34.29" y2="15.595" width="0.3048" layer="16"/>
- <wire x1="35.3025" y1="36.5125" x2="41.275" y2="36.5125" width="0.4064" layer="16"/>
- <wire x1="41.275" y1="36.5125" x2="42.0243" y2="36.5125" width="0.4064" layer="16"/>
- <wire x1="42.0243" y1="36.5125" x2="42.3418" y2="36.195" width="0.4064" layer="16"/>
- <wire x1="34.29" y1="15.595" x2="34.29" y2="21.59" width="0.3048" layer="16"/>
- <wire x1="34.29" y1="21.59" x2="41.275" y2="21.59" width="0.3048" layer="16"/>
- <wire x1="41.275" y1="21.59" x2="41.275" y2="36.5125" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$7">
- <contactref element="IC1" pad="9"/>
- <contactref element="R15" pad="2"/>
- <contactref element="IC2" pad="10"/>
- <wire x1="32.3247" y1="16.245" x2="31.115" y2="16.245" width="0.3048" layer="16"/>
- <wire x1="31.115" y1="16.245" x2="31.115" y2="31.115" width="0.3048" layer="16"/>
- <wire x1="31.115" y1="31.115" x2="33.02" y2="31.115" width="0.3048" layer="16"/>
- <wire x1="33.02" y1="31.115" x2="33.02" y2="39.0525" width="0.3048" layer="16"/>
- <wire x1="33.02" y1="39.0525" x2="35.3025" y2="39.0525" width="0.3048" layer="16"/>
- <wire x1="35.3025" y1="39.0525" x2="42.0243" y2="39.0525" width="0.4064" layer="16"/>
- <wire x1="42.0243" y1="39.0525" x2="42.3418" y2="39.37" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$9">
- <contactref element="C1" pad="-"/>
- <contactref element="IC1" pad="15"/>
- <contactref element="C2" pad="2"/>
- <contactref element="QF1" pad="2"/>
- <contactref element="R5" pad="1"/>
- <contactref element="IC3" pad="1"/>
- <contactref element="RST" pad="1"/>
- <contactref element="IC2" pad="11"/>
- <contactref element="R6" pad="2"/>
- <contactref element="R12" pad="1"/>
- <contactref element="R13" pad="1"/>
- <contactref element="R14" pad="1"/>
- <contactref element="R15" pad="1"/>
- <contactref element="IC4" pad="4"/>
- <contactref element="R25" pad="1"/>
- <contactref element="SWD" pad="1"/>
- <contactref element="CONN1" pad="1"/>
- <contactref element="R8" pad="2"/>
- <contactref element="X3" pad="1"/>
- <contactref element="RI1" pad="1"/>
- <contactref element="R9" pad="2"/>
- <contactref element="R10" pad="2"/>
- <contactref element="RI" pad="1"/>
- <wire x1="39.6875" y1="33.5407" x2="37.465" y2="33.5407" width="0.4064" layer="1"/>
- <wire x1="37.465" y1="33.5407" x2="37.465" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="37.465" y1="27.305" x2="33.02" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="33.02" y1="27.305" x2="33.02" y2="22.86" width="0.4064" layer="1"/>
- <wire x1="33.02" y1="22.86" x2="22.225" y2="22.86" width="0.4064" layer="1"/>
- <wire x1="22.225" y1="22.86" x2="22.225" y2="24.45" width="0.4064" layer="1"/>
- <wire x1="22.225" y1="24.45" x2="22.225" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="53.0225" y1="38.9382" x2="53.0225" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="53.0225" y1="27.305" x2="46.355" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="46.355" y1="27.305" x2="46.355" y2="20.32" width="0.4064" layer="1"/>
- <wire x1="46.355" y1="20.32" x2="37.465" y2="20.32" width="0.4064" layer="1"/>
- <wire x1="37.465" y1="20.32" x2="37.465" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="37.465" y1="24.765" x2="37.465" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="69.5325" y1="27.4193" x2="69.5325" y2="25.4" width="0.4064" layer="16"/>
- <wire x1="45.2882" y1="36.195" x2="46.355" y2="36.195" width="0.4064" layer="16"/>
- <wire x1="46.355" y1="36.195" x2="51.435" y2="36.195" width="0.4064" layer="16"/>
- <wire x1="51.435" y1="36.195" x2="51.435" y2="26.67" width="0.4064" layer="16"/>
- <wire x1="51.435" y1="26.67" x2="57.785" y2="26.67" width="0.4064" layer="16"/>
- <wire x1="57.785" y1="26.67" x2="57.785" y2="31.75" width="0.4064" layer="16"/>
- <wire x1="57.785" y1="31.75" x2="71.755" y2="31.75" width="0.4064" layer="16"/>
- <wire x1="71.755" y1="31.75" x2="71.755" y2="25.4" width="0.4064" layer="16"/>
- <wire x1="71.755" y1="25.4" x2="69.5325" y2="25.4" width="0.4064" layer="16"/>
- <wire x1="45.2882" y1="39.37" x2="46.355" y2="39.37" width="0.4064" layer="16"/>
- <wire x1="46.355" y1="39.37" x2="46.355" y2="37.7825" width="0.4064" layer="16"/>
- <wire x1="46.355" y1="37.7825" x2="46.355" y2="36.195" width="0.4064" layer="16"/>
- <wire x1="35.3025" y1="37.7825" x2="46.355" y2="37.7825" width="0.4064" layer="16"/>
- <contactref element="CQ1" pad="2"/>
- <contactref element="CQ2" pad="2"/>
- <contactref element="CQ3" pad="2"/>
- <contactref element="CQ4" pad="2"/>
- <wire x1="24.0825" y1="24.45" x2="22.225" y2="24.45" width="0.4064" layer="1"/>
- <wire x1="39.005" y1="24.45" x2="38.3725" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="38.3725" y1="24.765" x2="37.465" y2="24.765" width="0.4064" layer="1"/>
- <wire x1="54.5625" y1="26.99" x2="53.0225" y2="26.99" width="0.4064" layer="1"/>
- <wire x1="53.0225" y1="26.99" x2="53.0225" y2="27.305" width="0.4064" layer="1"/>
- <contactref element="R11" pad="2"/>
- <wire x1="53.0225" y1="38.9382" x2="55.5625" y2="38.9382" width="0.4064" layer="1"/>
- <wire x1="4.445" y1="2.2875" x2="11.43" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="11.43" y1="2.2875" x2="24.765" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="24.765" y1="2.2875" x2="52.705" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="52.705" y1="2.2875" x2="55.88" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="55.88" y1="2.2875" x2="59.095" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="59.095" y1="4.7625" x2="59.095" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="52.705" y1="5.08" x2="52.705" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="24.765" y1="5.08" x2="24.765" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="51.435" y1="16.4465" x2="51.435" y2="12.7" width="1.016" layer="16"/>
- <wire x1="51.435" y1="12.7" x2="55.5625" y2="12.7" width="1.016" layer="16"/>
- <wire x1="55.5625" y1="12.7" x2="55.88" y2="12.7" width="1.016" layer="16"/>
- <wire x1="55.88" y1="12.7" x2="55.88" y2="10.4775" width="1.016" layer="16"/>
- <wire x1="55.88" y1="10.4775" x2="55.88" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="16.9418" y1="39.37" x2="16.9418" y2="33.655" width="0.4064" layer="16"/>
- <wire x1="16.9418" y1="33.655" x2="20.1168" y2="33.655" width="0.4064" layer="16"/>
- <wire x1="17.78" y1="27.305" x2="21.9075" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="21.9075" y1="27.305" x2="22.225" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="11.7" y1="22.8625" x2="11.7" y2="22.225" width="0.4064" layer="1"/>
- <wire x1="11.7" y1="22.225" x2="17.78" y2="22.225" width="0.4064" layer="1"/>
- <wire x1="17.78" y1="22.225" x2="17.78" y2="27.305" width="0.4064" layer="1"/>
- <wire x1="10.16" y1="43.7007" x2="6.35" y2="43.7007" width="0.4064" layer="1"/>
- <wire x1="6.35" y1="43.7007" x2="6.35" y2="22.86" width="0.4064" layer="1"/>
- <wire x1="6.35" y1="22.86" x2="11.7" y2="22.86" width="0.4064" layer="1"/>
- <wire x1="11.7" y1="22.86" x2="11.7" y2="22.8625" width="0.4064" layer="1"/>
- <wire x1="15.875" y1="11.7475" x2="15.875" y2="13.97" width="0.4064" layer="16"/>
- <wire x1="15.875" y1="13.97" x2="17.78" y2="13.97" width="0.4064" layer="16"/>
- <wire x1="17.015" y1="17.4625" x2="15.875" y2="17.4625" width="0.4064" layer="16"/>
- <wire x1="15.875" y1="17.4625" x2="15.875" y2="13.97" width="0.4064" layer="16"/>
- <wire x1="4.445" y1="2.605" x2="1.905" y2="2.605" width="1.016" layer="1"/>
- <wire x1="1.905" y1="2.605" x2="1.905" y2="57.785" width="1.016" layer="1"/>
- <wire x1="1.905" y1="57.785" x2="6.35" y2="57.785" width="1.016" layer="1"/>
- <wire x1="6.35" y1="57.785" x2="7.62" y2="57.785" width="1.016" layer="1"/>
- <wire x1="7.62" y1="57.785" x2="9.525" y2="57.785" width="1.016" layer="1"/>
- <wire x1="10.16" y1="43.7007" x2="7.62" y2="43.7007" width="0.4064" layer="1"/>
- <wire x1="7.62" y1="43.7007" x2="7.62" y2="57.785" width="0.4064" layer="1"/>
- <wire x1="42.4075" y1="54.59" x2="42.4075" y2="57.785" width="1.016" layer="16"/>
- <wire x1="42.4075" y1="57.785" x2="29.845" y2="57.785" width="1.016" layer="16"/>
- <via x="6.35" y="57.785" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="29.845" y1="57.785" x2="9.525" y2="57.785" width="1.016" layer="16"/>
- <wire x1="9.525" y1="57.785" x2="6.35" y2="57.785" width="1.016" layer="16"/>
- <via x="9.525" y="57.785" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="29.4675" y1="49.2125" x2="29.4675" y2="57.785" width="0.4064" layer="16"/>
- <wire x1="29.4675" y1="57.785" x2="29.845" y2="57.785" width="0.4064" layer="16"/>
- <wire x1="64.1925" y1="19.0125" x2="64.1925" y2="21.59" width="1.016" layer="16"/>
- <wire x1="64.1925" y1="21.59" x2="55.5625" y2="21.59" width="1.016" layer="16"/>
- <wire x1="55.5625" y1="21.59" x2="55.5625" y2="12.7" width="1.016" layer="16"/>
- <wire x1="59.095" y1="2.2875" x2="73.025" y2="2.2875" width="1.016" layer="16"/>
- <wire x1="25.4" y1="13.997" x2="23.495" y2="13.997" width="0.4064" layer="16"/>
- <wire x1="23.495" y1="13.997" x2="23.495" y2="11.7475" width="0.4064" layer="16"/>
- <wire x1="23.495" y1="11.7475" x2="15.875" y2="11.7475" width="0.4064" layer="16"/>
- <wire x1="15.875" y1="11.7475" x2="15.875" y2="11.43" width="0.4064" layer="16"/>
- <wire x1="15.875" y1="11.43" x2="11.43" y2="11.43" width="0.4064" layer="16"/>
- <wire x1="11.43" y1="11.43" x2="11.43" y2="2.2875" width="0.4064" layer="16"/>
- <wire x1="15.875" y1="11.43" x2="15.875" y2="9.7282" width="0.4064" layer="16"/>
- <wire x1="38.1603" y1="14.295" x2="36.83" y2="14.295" width="0.3048" layer="16"/>
- <wire x1="36.83" y1="14.295" x2="36.83" y2="20.32" width="0.3048" layer="16"/>
- <wire x1="36.83" y1="20.32" x2="45.085" y2="20.32" width="0.3048" layer="16"/>
- <wire x1="45.085" y1="20.32" x2="45.085" y2="10.16" width="0.3048" layer="16"/>
- <wire x1="45.085" y1="10.16" x2="55.88" y2="10.16" width="0.3048" layer="16"/>
- <wire x1="55.88" y1="10.16" x2="55.88" y2="10.4775" width="0.3048" layer="16"/>
- <wire x1="23.8125" y1="35.1282" x2="21.9075" y2="35.1282" width="0.3048" layer="1"/>
- <wire x1="21.9075" y1="35.1282" x2="21.9075" y2="27.305" width="0.3048" layer="1"/>
- <wire x1="20.1168" y1="33.655" x2="15.875" y2="33.655" width="0.3048" layer="16"/>
- <wire x1="15.875" y1="33.655" x2="15.875" y2="17.4625" width="0.3048" layer="16"/>
- <wire x1="53.0225" y1="26.99" x2="51.435" y2="26.67" width="0" layer="19" extent="1-16"/>
- <wire x1="4.445" y1="2.2875" x2="4.445" y2="2.605" width="0" layer="19" extent="16-16"/>
- </signal>
- <signal name="N$3">
- <contactref element="IC2" pad="2"/>
- <contactref element="IC2" pad="6"/>
- <contactref element="IC4" pad="1"/>
- <wire x1="29.4675" y1="45.4025" x2="29.4675" y2="43.18" width="0.4064" layer="16"/>
- <wire x1="29.4675" y1="43.18" x2="32.0675" y2="43.18" width="0.4064" layer="16"/>
- <wire x1="32.0675" y1="43.18" x2="32.0675" y2="40.3225" width="0.4064" layer="16"/>
- <wire x1="32.0675" y1="40.3225" x2="32.0675" y2="35.2425" width="0.4064" layer="16"/>
- <wire x1="32.0675" y1="35.2425" x2="30.1025" y2="35.2425" width="0.4064" layer="16"/>
- <wire x1="30.1025" y1="40.3225" x2="32.0675" y2="40.3225" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$19">
- <contactref element="IC2" pad="9"/>
- <contactref element="IC2" pad="13"/>
- <contactref element="IC4" pad="7"/>
- <wire x1="35.3025" y1="40.3225" x2="40.005" y2="40.3225" width="0.4064" layer="16"/>
- <wire x1="40.005" y1="40.3225" x2="40.005" y2="40.64" width="0.4064" layer="16"/>
- <via x="40.005" y="40.64" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="40.005" y1="40.64" x2="40.005" y2="35.2425" width="0.4064" layer="1"/>
- <wire x1="40.005" y1="35.2425" x2="37.7825" y2="35.2425" width="0.4064" layer="1"/>
- <via x="37.7825" y="35.2425" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="37.7825" y1="35.2425" x2="35.3025" y2="35.2425" width="0.4064" layer="16"/>
- <wire x1="34.6675" y1="46.6725" x2="32.385" y2="46.6725" width="0.4064" layer="16"/>
- <wire x1="32.385" y1="46.6725" x2="32.385" y2="44.45" width="0.4064" layer="16"/>
- <wire x1="32.385" y1="44.45" x2="33.02" y2="44.45" width="0.4064" layer="16"/>
- <wire x1="33.02" y1="44.45" x2="33.02" y2="40.3225" width="0.4064" layer="16"/>
- <wire x1="33.02" y1="40.3225" x2="35.3025" y2="40.3225" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$24">
- <contactref element="R25" pad="2"/>
- <contactref element="IC4" pad="6"/>
- <wire x1="31.75" y1="47.9425" x2="34.6675" y2="47.9425" width="0.4064" layer="16"/>
- <wire x1="39.5075" y1="53.34" x2="37.7825" y2="53.34" width="0.4064" layer="16"/>
- <wire x1="37.7825" y1="53.34" x2="37.7825" y2="50.4825" width="0.4064" layer="16"/>
- <wire x1="37.7825" y1="50.4825" x2="31.75" y2="50.4825" width="0.4064" layer="16"/>
- <wire x1="31.75" y1="50.4825" x2="31.75" y2="47.9425" width="0.4064" layer="16"/>
- <contactref element="IC4" pad="2"/>
- <wire x1="29.4675" y1="46.6725" x2="31.75" y2="47.9425" width="0" layer="19" extent="16-16"/>
- </signal>
- <signal name="N$20">
- <contactref element="IC1" pad="20"/>
- <contactref element="SWD" pad="3"/>
- <wire x1="29.845" y1="5.08" x2="29.845" y2="7.62" width="0.3048" layer="16"/>
- <wire x1="29.845" y1="7.62" x2="36.195" y2="7.62" width="0.3048" layer="16"/>
- <wire x1="36.195" y1="7.62" x2="36.195" y2="9.525" width="0.3048" layer="16"/>
- <wire x1="36.195" y1="9.525" x2="38.1" y2="9.525" width="0.3048" layer="16"/>
- <wire x1="38.1" y1="9.525" x2="38.1" y2="11.045" width="0.3048" layer="16"/>
- <wire x1="38.1" y1="11.045" x2="38.1603" y2="11.045" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$22">
- <contactref element="IC1" pad="19"/>
- <contactref element="SWD" pad="2"/>
- <wire x1="27.305" y1="5.08" x2="27.305" y2="8.255" width="0.3048" layer="16"/>
- <wire x1="27.305" y1="8.255" x2="35.56" y2="8.255" width="0.3048" layer="16"/>
- <wire x1="35.56" y1="8.255" x2="35.56" y2="10.16" width="0.3048" layer="16"/>
- <wire x1="35.56" y1="10.16" x2="36.83" y2="10.16" width="0.3048" layer="16"/>
- <wire x1="36.83" y1="10.16" x2="36.83" y2="11.695" width="0.3048" layer="16"/>
- <wire x1="36.83" y1="11.695" x2="38.1603" y2="11.695" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$26">
- <contactref element="IC1" pad="13"/>
- <contactref element="CONN1" pad="5"/>
- <wire x1="42.545" y1="5.08" x2="42.545" y2="15.595" width="0.3048" layer="16"/>
- <wire x1="42.545" y1="15.595" x2="38.1603" y2="15.595" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$27">
- <contactref element="IC1" pad="12"/>
- <contactref element="CONN1" pad="4"/>
- <wire x1="45.085" y1="5.08" x2="45.085" y2="8.255" width="0.3048" layer="16"/>
- <wire x1="45.085" y1="8.255" x2="43.18" y2="8.255" width="0.3048" layer="16"/>
- <wire x1="43.18" y1="8.255" x2="43.18" y2="16.245" width="0.3048" layer="16"/>
- <wire x1="43.18" y1="16.245" x2="38.1603" y2="16.245" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$28">
- <contactref element="IC1" pad="11"/>
- <contactref element="CONN1" pad="3"/>
- <wire x1="47.625" y1="5.08" x2="47.625" y2="8.89" width="0.3048" layer="16"/>
- <wire x1="47.625" y1="8.89" x2="43.815" y2="8.89" width="0.3048" layer="16"/>
- <wire x1="43.815" y1="8.89" x2="43.815" y2="16.895" width="0.3048" layer="16"/>
- <wire x1="43.815" y1="16.895" x2="38.1603" y2="16.895" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$33">
- <contactref element="IC1" pad="10"/>
- <contactref element="CONN1" pad="2"/>
- <wire x1="50.165" y1="5.08" x2="50.165" y2="9.525" width="0.3048" layer="16"/>
- <wire x1="50.165" y1="9.525" x2="44.45" y2="9.525" width="0.3048" layer="16"/>
- <wire x1="44.45" y1="9.525" x2="44.45" y2="18.7325" width="0.3048" layer="16"/>
- <wire x1="44.45" y1="18.7325" x2="38.735" y2="18.7325" width="0.3048" layer="16"/>
- <via x="38.735" y="18.7325" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="38.735" y1="18.7325" x2="32.385" y2="18.7325" width="0.3048" layer="1"/>
- <via x="32.385" y="18.7325" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="32.385" y1="18.7325" x2="32.385" y2="17.2125" width="0.3048" layer="16"/>
- <wire x1="32.385" y1="17.2125" x2="32.3247" y2="16.895" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$34">
- <contactref element="IC1" pad="14"/>
- <contactref element="CONN1" pad="6"/>
- <wire x1="40.005" y1="5.08" x2="40.005" y2="7.62" width="0.3048" layer="16"/>
- <wire x1="40.005" y1="7.62" x2="41.91" y2="7.62" width="0.3048" layer="16"/>
- <wire x1="41.91" y1="7.62" x2="41.91" y2="14.945" width="0.3048" layer="16"/>
- <wire x1="41.91" y1="14.945" x2="38.1603" y2="14.945" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$11">
- <wire x1="0" y1="59.69" x2="80.01" y2="59.69" width="0.4064" layer="1"/>
- <wire x1="80.01" y1="0" x2="0" y2="0" width="0.4064" layer="1"/>
- <wire x1="0" y1="0" x2="0" y2="59.69" width="0.4064" layer="1"/>
- <wire x1="80.01" y1="59.69" x2="80.01" y2="0" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$1">
- <contactref element="CONN1" pad="7"/>
- <contactref element="IC1" pad="17"/>
- <wire x1="41.275" y1="8.255" x2="41.275" y2="12.995" width="0.3048" layer="16"/>
- <wire x1="41.275" y1="12.995" x2="38.1603" y2="12.995" width="0.3048" layer="16"/>
- <wire x1="37.465" y1="5.08" x2="37.465" y2="6.35" width="0.3048" layer="16"/>
- <wire x1="37.465" y1="6.35" x2="39.37" y2="8.255" width="0.3048" layer="16"/>
- <wire x1="39.37" y1="8.255" x2="41.275" y2="8.255" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$8">
- <contactref element="CONN1" pad="8"/>
- <contactref element="IC1" pad="18"/>
- <wire x1="40.64" y1="8.89" x2="40.64" y2="12.345" width="0.3048" layer="16"/>
- <wire x1="40.64" y1="12.345" x2="38.1603" y2="12.345" width="0.3048" layer="16"/>
- <wire x1="34.925" y1="5.08" x2="34.925" y2="6.35" width="0.3048" layer="16"/>
- <wire x1="34.925" y1="6.35" x2="35.56" y2="6.985" width="0.3048" layer="16"/>
- <wire x1="35.56" y1="6.985" x2="36.83" y2="6.985" width="0.3048" layer="16"/>
- <wire x1="36.83" y1="6.985" x2="38.735" y2="8.89" width="0.3048" layer="16"/>
- <wire x1="38.735" y1="8.89" x2="40.64" y2="8.89" width="0.3048" layer="16"/>
- </signal>
- <signal name="N$12">
- <contactref element="IC2" pad="8"/>
- <contactref element="R11" pad="1"/>
- <wire x1="35.3025" y1="41.5925" x2="37.1475" y2="41.5925" width="0.4064" layer="16"/>
- <wire x1="37.1475" y1="41.5925" x2="37.1475" y2="42.545" width="0.4064" layer="16"/>
- <wire x1="37.1475" y1="42.545" x2="55.5625" y2="42.545" width="0.4064" layer="16"/>
- <wire x1="55.5625" y1="42.545" x2="55.5625" y2="33.02" width="0.4064" layer="16"/>
- <via x="55.5625" y="33.02" extent="1-16" drill="0.6" shape="square"/>
- <wire x1="55.5625" y1="33.02" x2="54.5625" y2="33.02" width="0.4064" layer="1"/>
- <wire x1="55.5625" y1="35.9918" x2="55.5625" y2="33.02" width="0.4064" layer="1"/>
- <contactref element="CQ4" pad="1"/>
- <wire x1="54.5625" y1="33.02" x2="54.5625" y2="28.89" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$21">
- <contactref element="R25" pad="3"/>
- <contactref element="R16" pad="1"/>
- <wire x1="42.4075" y1="52.09" x2="42.4075" y2="51.435" width="0.4064" layer="16"/>
- <wire x1="42.4075" y1="51.435" x2="52.1843" y2="51.435" width="0.4064" layer="16"/>
- </signal>
- <signal name="N$23">
- <polygon width="0" layer="16" isolate="1.016">
- <vertex x="0" y="0"/>
- <vertex x="80.01" y="0"/>
- <vertex x="80.01" y="60.0075"/>
- <vertex x="0" y="60.0075"/>
- </polygon>
- </signal>
- <signal name="N$25">
- <polygon width="0" layer="1" isolate="1.016">
- <vertex x="0" y="0"/>
- <vertex x="80.01" y="0"/>
- <vertex x="80.01" y="59.69"/>
- <vertex x="0" y="59.69"/>
- </polygon>
- </signal>
- </signals>
- <errors>
- <approved hash="4,16,0f098e0334f60e41"/>
- </errors>
- </board>
- </drawing>
- <compatibility>
- <note version="6.3" minversion="6.2.2" severity="warning">
- Since Version 6.2.2 text objects can contain more than one line,
- which will not be processed correctly with this version.
- </note>
- </compatibility>
- </eagle>
|