| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066 |
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE eagle SYSTEM "eagle.dtd">
- <eagle version="7.1.0">
- <drawing>
- <settings>
- <setting alwaysvectorfont="no"/>
- <setting verticaltext="up"/>
- </settings>
- <grid distance="0.1" unitdist="mm" unit="mic" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="mm" altunit="mm"/>
- <layers>
- <layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
- <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
- <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
- <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
- <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
- <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
- <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
- <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
- <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
- <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
- <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
- <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
- <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
- <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
- <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
- <layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
- <layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
- <layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="28" name="bValues" color="7" fill="1" visible="yes" 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="yes" active="yes"/>
- <layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
- <layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
- <layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
- <layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
- <layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
- <layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
- <layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
- <layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
- <layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="49" name="Reference" color="7" fill="1" visible="yes" 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="yes" active="yes"/>
- <layer number="52" name="bDocu" color="7" fill="1" visible="yes" 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="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
- <layer number="60" name="bCarbon" 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="5" fill="1" visible="no" active="no"/>
- <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
- <layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
- <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
- <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
- <layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
- <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="113" name="IDFDebug" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
- <layer number="118" name="Rect_Pads" color="4" fill="1" visible="yes" active="yes"/>
- <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="125" name="_tNames" color="14" fill="1" visible="yes" active="yes"/>
- <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="151" name="_tDocu" color="14" fill="1" visible="yes" active="yes"/>
- <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
- <layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
- <layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
- <layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
- <layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
- <layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
- <layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
- <layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
- <layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
- <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
- <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
- <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
- <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
- <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
- <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
- <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
- <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
- <layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
- <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
- <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
- </layers>
- <board>
- <plain>
- <wire x1="0" y1="0" x2="45.9" y2="0" width="0" layer="20"/>
- <wire x1="45.9" y1="0" x2="45.9" y2="21.2" width="0" layer="20"/>
- <wire x1="45.9" y1="21.2" x2="0" y2="21.2" width="0" layer="20"/>
- <wire x1="0" y1="21.2" x2="0" y2="0" width="0" layer="20"/>
- <rectangle x1="0.7" y1="18.5" x2="21.7" y2="19.1" layer="1"/>
- <rectangle x1="0.7" y1="19.1" x2="1.3" y2="20" layer="1"/>
- <rectangle x1="0.7" y1="20" x2="45.4" y2="20.6" layer="1"/>
- <rectangle x1="44.8" y1="19.1" x2="45.4" y2="20" layer="1"/>
- <rectangle x1="24.4" y1="18.5" x2="45.4" y2="19.1" layer="1"/>
- <rectangle x1="21.7" y1="18.5" x2="22.3" y2="19.1" layer="1"/>
- <rectangle x1="23.8" y1="18.5" x2="24.4" y2="19.1" layer="1"/>
- <rectangle x1="21.7" y1="12.5" x2="22.3" y2="18.5" layer="1"/>
- <rectangle x1="23.8" y1="12.5" x2="24.4" y2="18.5" layer="1"/>
- <rectangle x1="21.7" y1="9.4" x2="22.3" y2="12.5" layer="1"/>
- <rectangle x1="23.8" y1="9.4" x2="24.4" y2="12.5" layer="1"/>
- <text x="7.2" y="3.7" size="0.8128" layer="25" rot="SR270">ACT</text>
- <wire x1="7.7" y1="11.4" x2="7.8" y2="11.4" width="0.254" layer="25"/>
- <wire x1="7.8" y1="11.4" x2="7.8" y2="11.3" width="0.254" layer="25"/>
- <wire x1="7.8" y1="11.3" x2="7.8" y2="4.8" width="0.254" layer="25"/>
- <wire x1="7.8" y1="4.8" x2="4.9" y2="4.8" width="0.254" layer="25"/>
- <wire x1="4.9" y1="4.8" x2="4.9" y2="11.5" width="0.254" layer="25"/>
- <wire x1="4.9" y1="11.5" x2="7.8" y2="11.5" width="0.254" layer="25"/>
- <wire x1="7.8" y1="11.5" x2="7.8" y2="11.3" width="0.254" layer="25"/>
- <dimension x1="45.9" y1="21.2" x2="0" y2="21.2" x3="22.95" y3="23" textsize="0.8128" layer="20" visible="yes"/>
- <dimension x1="45.9" y1="0" x2="45.9" y2="21.2" x3="50.6" y3="10.6" textsize="0.8128" layer="20" visible="yes"/>
- <text x="3.229990625" y="6.950990625" size="0.8128" layer="125" ratio="10" rot="SR270">3V3</text>
- <text x="8.17999375" y="8.2510125" size="0.8128" layer="125" ratio="10" rot="SR270">BIND</text>
- <text x="24.3609875" y="2.19199375" size="0.4064" layer="125">C1</text>
- <text x="32.249009375" y="1.78800625" size="0.4064" layer="125" rot="R180">C2</text>
- <text x="30.541009375" y="10.092003125" size="0.4064" layer="125">C3</text>
- <text x="17.307990625" y="8.930996875" size="0.4064" layer="125" rot="R90">C4</text>
- <text x="8.83800625" y="9.01100625" size="0.4064" layer="125" rot="R90">C5</text>
- <text x="3.3900125" y="3.8489875" size="0.8128" layer="125" ratio="10" rot="SR270">GND</text>
- <text x="22.789996875" y="5.48" size="0.7" layer="151" ratio="5" rot="R90">IC1</text>
- <text x="3.229990625" y="10.351009375" size="0.8128" layer="125" ratio="10" rot="SR270">PPM</text>
- <text x="17.425009375" y="4.50499375" size="0.4064" layer="125" rot="R90">R1</text>
- <text x="20.409003125" y="2.391003125" size="0.4064" layer="125" rot="R180">R2</text>
- <text x="11.329009375" y="2.88099375" size="0.4064" layer="125" rot="R180">R3</text>
- </plain>
- <libraries>
- <library name="testpad">
- <description><b>Test Pins/Pads</b><p>
- Cream on SMD OFF.<br>
- new: Attribute TP_SIGNAL_NAME<br>
- <author>Created by librarian@cadsoft.de</author></description>
- <packages>
- <package name="B2,54">
- <description><b>TEST PAD</b></description>
- <wire x1="-0.635" y1="0" x2="0.635" y2="0" width="0.0024" layer="37"/>
- <wire x1="0" y1="-0.635" x2="0" y2="0.635" width="0.0024" layer="37"/>
- <circle x="0" y="0" radius="0.635" width="0.254" layer="37"/>
- <smd name="TP" x="0" y="0" dx="2.54" dy="2.54" layer="1" roundness="100" cream="no"/>
- <text x="-1.27" y="1.651" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-1.27" y="-1.397" size="0.0254" layer="27">>VALUE</text>
- <text x="-1.27" y="-3.175" size="1" layer="37">>TP_SIGNAL_NAME</text>
- </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="C0603">
- <description><b>CAPACITOR</b><p>
- chip</description>
- <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
- <wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
- <smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
- <smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
- <text x="-0.889" y="0.762" size="1.27" layer="25">>NAME</text>
- <text x="-0.889" y="-2.032" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
- <rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
- </package>
- <package name="R0603">
- <description><b>RESISTOR</b><p>
- chip</description>
- <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
- <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
- <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
- <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
- <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
- <text x="-0.889" y="0.889" size="1.27" layer="25">>NAME</text>
- <text x="-0.889" y="-2.032" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
- <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
- </package>
- </packages>
- </library>
- <library name="chipcon-ti-v2">
- <description><B>Chipcon / Texas-Instruments RF Devices</b><p>
- <B> The Devices for ISM 2,4GHz, and 300MHz ... 1000MHz </b><p>
- <B> Revision 0.1</b><p>
- http://www.ti.com<p>
- <author>Created by S.Hofmann mc_sho@gmx.de</author></description>
- <packages>
- <package name="QFN50P400X400X90-21N">
- <description><b>QFN,0.50mm pitch,square;20 pin,4.00mm L X 4.00mm W X 0.90mm H body (w/thermal tab)</b><br><br>
- <i>IPC7351A for VQFN20</i></description>
- <wire x1="-2.65" y1="-2.65" x2="-2.65" y2="2.65" width="0.05" layer="39"/>
- <wire x1="-2.65" y1="2.65" x2="2.65" y2="2.65" width="0.05" layer="39"/>
- <wire x1="2.65" y1="2.65" x2="2.65" y2="-2.65" width="0.05" layer="39"/>
- <wire x1="2.65" y1="-2.65" x2="-2.65" y2="-2.65" width="0.05" layer="39"/>
- <wire x1="0" y1="-0.5" x2="0" y2="0.5" width="0.05" layer="39"/>
- <wire x1="-0.5" y1="0" x2="0.5" y2="0" width="0.05" layer="39"/>
- <wire x1="-2" y1="-2" x2="-2" y2="1" width="0.1" layer="51"/>
- <wire x1="-2" y1="1" x2="-2" y2="1.1" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.1" x2="-2" y2="1.2" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.2" x2="-2" y2="1.3" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.3" x2="-2" y2="1.4" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.4" x2="-2" y2="1.5" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.5" x2="-2" y2="1.6" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.6" x2="-2" y2="1.7" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.7" x2="-2" y2="1.8" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.8" x2="-2" y2="1.9" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.9" x2="-2" y2="2" width="0.1" layer="51"/>
- <wire x1="-2" y1="2" x2="-1.9" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.9" y1="2" x2="-1.8" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.8" y1="2" x2="-1.7" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.7" y1="2" x2="-1.6" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.6" y1="2" x2="-1.5" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.5" y1="2" x2="-1.4" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.4" y1="2" x2="-1.3" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.3" y1="2" x2="-1.2" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.2" y1="2" x2="-1.1" y2="2" width="0.1" layer="51"/>
- <wire x1="-1.1" y1="2" x2="-1" y2="2" width="0.1" layer="51"/>
- <wire x1="-1" y1="2" x2="2" y2="2" width="0.1" layer="51"/>
- <wire x1="2" y1="2" x2="2" y2="-2" width="0.1" layer="51"/>
- <wire x1="2" y1="-2" x2="-2" y2="-2" width="0.1" layer="51"/>
- <wire x1="-1.9" y1="2" x2="-2" y2="1.9" width="0.1" layer="51"/>
- <wire x1="-1.8" y1="2" x2="-2" y2="1.8" width="0.1" layer="51"/>
- <wire x1="-1.7" y1="2" x2="-2" y2="1.7" width="0.1" layer="51"/>
- <wire x1="-1.6" y1="2" x2="-2" y2="1.6" width="0.1" layer="51"/>
- <wire x1="-1.5" y1="2" x2="-2" y2="1.5" width="0.1" layer="51"/>
- <wire x1="-1.4" y1="2" x2="-2" y2="1.4" width="0.1" layer="51"/>
- <wire x1="-1.3" y1="2" x2="-2" y2="1.3" width="0.1" layer="51"/>
- <wire x1="-1.2" y1="2" x2="-2" y2="1.2" width="0.1" layer="51"/>
- <wire x1="-1.1" y1="2" x2="-2" y2="1.1" width="0.1" layer="51"/>
- <wire x1="-1" y1="2" x2="-2" y2="1" width="0.1" layer="51"/>
- <wire x1="-2" y1="1.5" x2="-2" y2="1.6" width="0.2" layer="21"/>
- <wire x1="-2" y1="1.6" x2="-1.6" y2="2" width="0.2" layer="21"/>
- <wire x1="-1.6" y1="2" x2="-1.5" y2="2" width="0.2" layer="21"/>
- <wire x1="2" y1="1.5" x2="2" y2="2" width="0.2" layer="21"/>
- <wire x1="2" y1="2" x2="1.5" y2="2" width="0.2" layer="21"/>
- <wire x1="-2" y1="-1.5" x2="-2" y2="-2" width="0.2" layer="21"/>
- <wire x1="-2" y1="-2" x2="-1.5" y2="-2" width="0.2" layer="21"/>
- <wire x1="2" y1="-1.5" x2="2" y2="-2" width="0.2" layer="21"/>
- <wire x1="2" y1="-2" x2="1.5" y2="-2" width="0.2" layer="21"/>
- <circle x="-3" y="1" radius="0.25" width="0" layer="21"/>
- <smd name="1" x="-1.95" y="1" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="2" x="-1.95" y="0.5" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="3" x="-1.95" y="0" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="4" x="-1.95" y="-0.5" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="5" x="-1.95" y="-1" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="6" x="-1" y="-1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="7" x="-0.5" y="-1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="8" x="0" y="-1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="9" x="0.5" y="-1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="10" x="1" y="-1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="11" x="1.95" y="-1" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="12" x="1.95" y="-0.5" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="13" x="1.95" y="0" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="14" x="1.95" y="0.5" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="15" x="1.95" y="1" dx="0.9" dy="0.3" layer="1" roundness="100"/>
- <smd name="16" x="1" y="1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="17" x="0.5" y="1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="18" x="0" y="1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="19" x="-0.5" y="1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="20" x="-1" y="1.95" dx="0.9" dy="0.3" layer="1" roundness="100" rot="R90"/>
- <smd name="21" x="0" y="0" dx="2.5" dy="2.5" layer="1"/>
- <text x="0" y="0" size="0.7" layer="51" ratio="5">>NAME</text>
- <text x="3.81" y="0" size="0.7" layer="25" ratio="5">>NAME</text>
- <text x="3.81" y="-1.27" size="0.7" layer="27" ratio="5">>VALUE</text>
- </package>
- </packages>
- </library>
- <library name="led">
- <description><b>LEDs</b><p>
- <author>Created by librarian@cadsoft.de</author><br>
- Extended by Federico Battaglin <author>&lt;federico.rd@fdpinternational.com&gt;</author> with DUOLED</description>
- <packages>
- <package name="CHIP-LED0603">
- <description><b>Hyper CHIPLED Hyper-Bright LED</b><p>
- LB Q993<br>
- Source: http://www.osram.convergy.de/ ... Lb_q993.pdf</description>
- <wire x1="-0.4" y1="0.45" x2="-0.4" y2="-0.45" width="0.1016" layer="51"/>
- <wire x1="0.4" y1="0.45" x2="0.4" y2="-0.45" width="0.1016" layer="51"/>
- <smd name="C" x="0" y="0.75" dx="0.8" dy="0.8" layer="1"/>
- <smd name="A" x="0" y="-0.75" dx="0.8" dy="0.8" layer="1"/>
- <text x="-0.635" y="-0.635" size="1.27" layer="25" rot="R90">>NAME</text>
- <text x="1.905" y="-0.635" size="1.27" layer="27" rot="R90">>VALUE</text>
- <rectangle x1="-0.45" y1="0.45" x2="0.45" y2="0.85" layer="51"/>
- <rectangle x1="-0.45" y1="-0.85" x2="0.45" y2="-0.45" layer="51"/>
- <rectangle x1="-0.45" y1="0" x2="-0.3" y2="0.3" layer="21"/>
- <rectangle x1="0.3" y1="0" x2="0.45" y2="0.3" layer="21"/>
- <rectangle x1="-0.15" y1="0" x2="0.15" y2="0.3" layer="21"/>
- </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="R0603">
- <description><b>RESISTOR</b></description>
- <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
- <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
- <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
- <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
- <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
- <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
- <text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
- <text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
- <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
- <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
- </package>
- </packages>
- </library>
- <library name="SparkFun-DigitalIC">
- <description><h3>SparkFun Electronics' preferred foot prints</h3>
- In this library you'll find all manner of digital ICs- microcontrollers, memory chips, logic chips, FPGAs, etc.<br><br>
- We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
- <br><br>
- <b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
- <br><br>
- You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
- <packages>
- <package name="SO08-EIAJ">
- <description>Fits EIAJ packages (wide version of the SOIC-8).</description>
- <wire x1="-2.362" y1="-2.565" x2="2.362" y2="-2.565" width="0.1524" layer="51"/>
- <wire x1="2.362" y1="-2.565" x2="2.362" y2="2.5396" width="0.1524" layer="21"/>
- <wire x1="2.362" y1="2.5396" x2="-2.362" y2="2.5396" width="0.1524" layer="51"/>
- <wire x1="-2.362" y1="2.5396" x2="-2.362" y2="-2.565" width="0.1524" layer="21"/>
- <circle x="-1.8034" y="-1.7526" radius="0.1436" width="0.2032" layer="21"/>
- <smd name="1" x="-1.905" y="-3.3782" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="2" x="-0.635" y="-3.3782" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="3" x="0.635" y="-3.3782" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="4" x="1.905" y="-3.3782" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="5" x="1.905" y="3.3528" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="6" x="0.635" y="3.3528" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="7" x="-0.635" y="3.3528" dx="0.6096" dy="2.2098" layer="1"/>
- <smd name="8" x="-1.905" y="3.3528" dx="0.6096" dy="2.2098" layer="1"/>
- <text x="-1.27" y="-1.397" size="0.4064" layer="27">>VALUE</text>
- <text x="-1.27" y="-0.762" size="0.4064" layer="25">>NAME</text>
- <rectangle x1="-2.0828" y1="-3.6322" x2="-1.7272" y2="-2.6162" layer="51"/>
- <rectangle x1="-0.8128" y1="-3.6322" x2="-0.4572" y2="-2.6162" layer="51"/>
- <rectangle x1="0.4572" y1="-3.6322" x2="0.8128" y2="-2.6162" layer="51"/>
- <rectangle x1="1.7272" y1="-3.6322" x2="2.0828" y2="-2.6162" layer="51"/>
- <rectangle x1="-2.0828" y1="2.5908" x2="-1.7272" y2="3.6068" layer="51"/>
- <rectangle x1="-0.8128" y1="2.5908" x2="-0.4572" y2="3.6068" layer="51"/>
- <rectangle x1="0.4572" y1="2.5908" x2="0.8128" y2="3.6068" layer="51"/>
- <rectangle x1="1.7272" y1="2.5908" x2="2.0828" y2="3.6068" layer="51"/>
- </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="3.2X2.5MM">
- <smd name="P$2" x="2.2" y="0" dx="1.4" dy="1.2" layer="1" rot="R180"/>
- <smd name="P$3" x="2.2" y="1.6" dx="1.4" dy="1.2" layer="1" rot="R180"/>
- <smd name="P$4" x="0" y="1.6" dx="1.4" dy="1.2" layer="1" rot="R180"/>
- <wire x1="-0.5" y1="-0.5" x2="2.7" y2="-0.5" width="0.127" layer="21"/>
- <wire x1="2.7" y1="-0.5" x2="2.7" y2="2.1" width="0.127" layer="21"/>
- <wire x1="2.7" y1="2.1" x2="-0.5" y2="2.1" width="0.127" layer="21"/>
- <wire x1="-0.5" y1="2.1" x2="-0.5" y2="-0.5" width="0.127" layer="21"/>
- <smd name="P$1" x="0" y="0" dx="1.4" dy="1.2" layer="1"/>
- <circle x="-0.8" y="-0.7" radius="0.1" width="0.127" layer="21"/>
- <text x="-0.635" y="2.54" size="0.4064" layer="25">>Name</text>
- <text x="1.905" y="2.54" size="0.4064" layer="27">>Value</text>
- </package>
- </packages>
- </library>
- </libraries>
- <attributes>
- </attributes>
- <variantdefs>
- </variantdefs>
- <classes>
- <class number="0" name="default" width="0" drill="0">
- <clearance class="0" value="0.205"/>
- </class>
- </classes>
- <designrules name="dirt_cheap_dirty_boards.v1">
- <description language="en"><b>Dirty Cheap Dirty Board Design Rules</b>
- <br>
- <br>Min width/Spacing: 5/5mil
- <br>Min diameter of finished hole 12mil</description>
- <param name="layerSetup" value="(1*16)"/>
- <param name="mtCopper" value="0.035mm 0.0175mm 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.0175mm 0.035mm"/>
- <param name="mtIsolate" value="1.5mm 1.1mm 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="5mil"/>
- <param name="mdWirePad" value="5mil"/>
- <param name="mdWireVia" value="5mil"/>
- <param name="mdPadPad" value="5mil"/>
- <param name="mdPadVia" value="5mil"/>
- <param name="mdViaVia" value="5mil"/>
- <param name="mdSmdPad" value="0mil"/>
- <param name="mdSmdVia" value="0mil"/>
- <param name="mdSmdSmd" value="0mil"/>
- <param name="mdViaViaSameLayer" value="8mil"/>
- <param name="mnLayersViaInSmd" value="2"/>
- <param name="mdCopperDimension" value="10mil"/>
- <param name="mdDrill" value="10mil"/>
- <param name="mdSmdStop" value="0mil"/>
- <param name="msWidth" value="5mil"/>
- <param name="msDrill" value="12mil"/>
- <param name="msMicroVia" value="12mil"/>
- <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="10mil"/>
- <param name="rlMaxPadTop" value="20mil"/>
- <param name="rlMinPadInner" value="10mil"/>
- <param name="rlMaxPadInner" value="20mil"/>
- <param name="rlMinPadBottom" value="10mil"/>
- <param name="rlMaxPadBottom" value="20mil"/>
- <param name="rlMinViaOuter" value="6mil"/>
- <param name="rlMaxViaOuter" value="20mil"/>
- <param name="rlMinViaInner" value="6mil"/>
- <param name="rlMaxViaInner" value="20mil"/>
- <param name="rlMinMicroViaOuter" value="4mil"/>
- <param name="rlMaxMicroViaOuter" value="20mil"/>
- <param name="rlMinMicroViaInner" value="4mil"/>
- <param name="rlMaxMicroViaInner" value="20mil"/>
- <param name="psTop" value="-1"/>
- <param name="psBottom" value="-1"/>
- <param name="psFirst" value="0"/>
- <param name="psElongationLong" value="100"/>
- <param name="psElongationOffset" value="100"/>
- <param name="mvStopFrame" value="1"/>
- <param name="mvCreamFrame" value="0"/>
- <param name="mlMinStopFrame" value="2mil"/>
- <param name="mlMaxStopFrame" value="2mil"/>
- <param name="mlMinCreamFrame" value="0mil"/>
- <param name="mlMaxCreamFrame" value="0mil"/>
- <param name="mlViaStopLimit" value="25mil"/>
- <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="0"/>
- <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="BIND" library="testpad" package="B2,54" value="TPB2,54" x="6.45" y="9.8" smashed="yes">
- <attribute name="TP_SIGNAL_NAME" value="" x="5.18" y="6.625" size="1" layer="37"/>
- <attribute name="NAME" x="8.18" y="8.251" size="0.8128" layer="25" ratio="10" rot="SR270"/>
- </element>
- <element name="C1" library="resistor" package="C0603" value="100nF" x="25.25" y="1.43" smashed="yes">
- <attribute name="NAME" x="24.361" y="2.192" size="0.4064" layer="25"/>
- </element>
- <element name="C2" library="resistor" package="C0603" value="27 pF" x="31.36" y="2.55" smashed="yes" rot="R180">
- <attribute name="NAME" x="32.249" y="1.788" size="0.4064" layer="25" rot="R180"/>
- </element>
- <element name="C3" library="resistor" package="C0603" value="27 pF" x="31.43" y="9.33" smashed="yes">
- <attribute name="NAME" x="30.541" y="10.092" size="0.4064" layer="25"/>
- </element>
- <element name="C4" library="resistor" package="C0603" value="0.1 uF" x="18.07" y="9.82" smashed="yes" rot="R90">
- <attribute name="NAME" x="17.308" y="8.931" size="0.4064" layer="25" rot="R90"/>
- </element>
- <element name="GND" library="testpad" package="B2,54" value="TPB2,54" x="1.7" y="2.4" smashed="yes">
- <attribute name="TP_SIGNAL_NAME" value="" x="0.43" y="-0.775" size="1" layer="37"/>
- <attribute name="NAME" x="3.39" y="3.849" size="0.8128" layer="25" ratio="10" rot="SR270"/>
- </element>
- <element name="IC1" library="chipcon-ti-v2" package="QFN50P400X400X90-21N" value="CC2500" x="22.79" y="5.48" smashed="yes" rot="R90">
- <attribute name="NAME" x="22.79" y="5.48" size="0.7" layer="51" ratio="5" rot="R90"/>
- <attribute name="VALUE" x="24.61" y="8.46" size="0.7" layer="27" ratio="5" rot="R180"/>
- </element>
- <element name="LED1" library="led" package="CHIP-LED0603" value="" x="6.37" y="2.47" smashed="yes" rot="R180">
- <attribute name="VALUE" x="4.465" y="3.105" size="1.27" layer="27" rot="R270"/>
- </element>
- <element name="PPM" library="testpad" package="B2,54" value="TPB2,54" x="1.7" y="9.4" smashed="yes">
- <attribute name="TP_SIGNAL_NAME" value="" x="0.43" y="6.225" size="1" layer="37"/>
- <attribute name="NAME" x="3.23" y="10.351" size="0.8128" layer="25" ratio="10" rot="SR270"/>
- </element>
- <element name="Q1" library="crystal" package="3.2X2.5MM" value="26 Mhz" x="30.56" y="7.1" smashed="yes" rot="R270"/>
- <element name="R1" library="rcl" package="R0603" value="56K" x="18.06" y="5.14" smashed="yes" rot="R90">
- <attribute name="NAME" x="17.425" y="4.505" size="0.4064" layer="25" rot="R90"/>
- </element>
- <element name="R2" library="resistor" package="R0603" value="1K" x="20.42" y="1.28" smashed="yes" rot="R180">
- <attribute name="NAME" x="20.409" y="2.391" size="0.4064" layer="25" rot="R180"/>
- </element>
- <element name="R3" library="resistor" package="R0603" value="220" x="12.14" y="1.37" smashed="yes" rot="R180">
- <attribute name="NAME" x="11.329" y="2.881" size="0.4064" layer="25" rot="R180"/>
- </element>
- <element name="3V3" library="testpad" package="B2,54" value="TPB2,54" x="1.7" y="5.9" smashed="yes">
- <attribute name="TP_SIGNAL_NAME" value="" x="0.43" y="2.725" size="1" layer="37"/>
- <attribute name="NAME" x="3.23" y="6.951" size="0.8128" layer="25" ratio="10" rot="SR270"/>
- </element>
- <element name="U1" library="SparkFun-DigitalIC" package="SO08-EIAJ" value="Tiny85" x="13.89" y="7.58" smashed="yes">
- <attribute name="PROD_ID" value="IC-09092" x="13.89" y="7.58" size="1.778" layer="27" display="off"/>
- <attribute name="VALUE" x="11.217" y="5.12" size="0.4064" layer="27" rot="R90"/>
- </element>
- <element name="C5" library="resistor" package="C0603" value="0.1 uF" x="9.6" y="9.9" smashed="yes" rot="R90">
- <attribute name="NAME" x="8.838" y="9.011" size="0.4064" layer="25" rot="R90"/>
- </element>
- <element name="PPM1" library="testpad" package="B2,54" value="TPB2,54" x="6.4" y="6.1" smashed="yes">
- <attribute name="TP_SIGNAL_NAME" value="" x="5.13" y="2.925" size="1" layer="37"/>
- </element>
- </elements>
- <signals>
- <signal name="N$1">
- <contactref element="IC1" pad="8"/>
- <contactref element="Q1" pad="P$3"/>
- <contactref element="C2" pad="1"/>
- <wire x1="24.74" y1="5.48" x2="27.84" y2="5.48" width="0.254" layer="1"/>
- <wire x1="27.84" y1="5.48" x2="28.42" y2="4.9" width="0.254" layer="1"/>
- <wire x1="28.42" y1="4.9" x2="32.16" y2="4.9" width="0.254" layer="1"/>
- <wire x1="32.16" y1="4.9" x2="32.11" y2="4.85" width="0.254" layer="1"/>
- <wire x1="32.11" y1="4.85" x2="32.21" y2="4.75" width="0.254" layer="1"/>
- <wire x1="32.21" y1="4.75" x2="32.21" y2="2.55" width="0.254" layer="1"/>
- </signal>
- <signal name="N$2">
- <contactref element="C3" pad="1"/>
- <contactref element="Q1" pad="P$1"/>
- <contactref element="IC1" pad="10"/>
- <wire x1="24.74" y1="6.48" x2="27.8" y2="6.48" width="0.254" layer="1"/>
- <wire x1="27.8" y1="6.48" x2="28.42" y2="7.1" width="0.254" layer="1"/>
- <wire x1="28.42" y1="7.1" x2="30.56" y2="7.1" width="0.254" layer="1"/>
- <wire x1="30.56" y1="7.1" x2="30.58" y2="7.12" width="0.254" layer="1"/>
- <wire x1="30.58" y1="7.12" x2="30.58" y2="9.33" width="0.254" layer="1"/>
- </signal>
- <signal name="GND">
- <contactref element="C2" pad="2"/>
- <contactref element="C3" pad="2"/>
- <contactref element="R1" pad="1"/>
- <contactref element="C1" pad="2"/>
- <contactref element="U1" pad="4"/>
- <contactref element="IC1" pad="16"/>
- <contactref element="IC1" pad="19"/>
- <contactref element="IC1" pad="21"/>
- <contactref element="BIND" pad="TP"/>
- <contactref element="C4" pad="2"/>
- <contactref element="GND" pad="TP"/>
- <contactref element="C5" pad="2"/>
- <wire x1="15.8332" y1="4.24" x2="15.795" y2="4.2018" width="0.254" layer="1"/>
- <wire x1="18.06" y1="4.29" x2="15.8832" y2="4.29" width="0.254" layer="1"/>
- <wire x1="15.8832" y1="4.29" x2="15.795" y2="4.2018" width="0.254" layer="1"/>
- <wire x1="18.06" y1="4.29" x2="18.06" y2="4.345" width="0.254" layer="1"/>
- <wire x1="18.06" y1="4.345" x2="19.745" y2="4.345" width="0.254" layer="1"/>
- <wire x1="19.745" y1="4.345" x2="20" y2="4.6" width="0.254" layer="1"/>
- <wire x1="20" y1="4.6" x2="20.38" y2="4.98" width="0.254" layer="1"/>
- <wire x1="20.38" y1="4.98" x2="20.84" y2="4.98" width="0.254" layer="1"/>
- <polygon width="0.254" layer="1" isolate="0.254">
- <vertex x="46.2" y="12.5"/>
- <vertex x="46.2" y="-0.2"/>
- <vertex x="-0.2" y="-0.2"/>
- <vertex x="-0.2" y="10"/>
- <vertex x="-0.2" y="12.5"/>
- </polygon>
- <polygon width="0.4064" layer="16" isolate="0.254">
- <vertex x="25.3" y="12.3"/>
- <vertex x="46.2" y="12.3"/>
- <vertex x="46.2" y="-0.2"/>
- <vertex x="-0.2" y="-0.2"/>
- <vertex x="-0.2" y="12.3"/>
- </polygon>
- <via x="5.1" y="3.2" extent="1-16" drill="0.6"/>
- <via x="3.8" y="11.1" extent="1-16" drill="0.6"/>
- <via x="34.1" y="3.2" extent="1-16" drill="0.6"/>
- <via x="34.1" y="5.1" extent="1-16" drill="0.6"/>
- <via x="34.1" y="7.1" extent="1-16" drill="0.6"/>
- <via x="34.1" y="9.1" extent="1-16" drill="0.6"/>
- <via x="34.1" y="11.2" extent="1-16" drill="0.6"/>
- <via x="17.4" y="7.5" extent="1-16" drill="0.6"/>
- <wire x1="20.84" y1="4.98" x2="22.29" y2="4.98" width="0.254" layer="1"/>
- <wire x1="22.29" y1="4.98" x2="22.79" y2="5.48" width="0.254" layer="1"/>
- <wire x1="20.84" y1="4.98" x2="22.08" y2="4.98" width="0.254" layer="1"/>
- <wire x1="22.08" y1="4.98" x2="22.3" y2="5.2" width="0.254" layer="1"/>
- <wire x1="20.84" y1="6.48" x2="21.79" y2="6.48" width="0.254" layer="1"/>
- <wire x1="21.79" y1="6.48" x2="22.79" y2="5.48" width="0.254" layer="1"/>
- <via x="5.1" y="1.9" extent="1-16" drill="0.6"/>
- </signal>
- <signal name="N$4">
- <contactref element="IC1" pad="17"/>
- <contactref element="R1" pad="2"/>
- <wire x1="18.06" y1="5.99" x2="18.47" y2="6.4" width="0.254" layer="1"/>
- <wire x1="18.47" y1="6.4" x2="19.8" y2="6.4" width="0.254" layer="1"/>
- <wire x1="19.8" y1="6.4" x2="20" y2="6.4" width="0.254" layer="1"/>
- <wire x1="20" y1="6.4" x2="20.42" y2="5.98" width="0.254" layer="1"/>
- <wire x1="20.42" y1="5.98" x2="20.84" y2="5.98" width="0.254" layer="1"/>
- </signal>
- <signal name="DCOUPL">
- <contactref element="C1" pad="1"/>
- <contactref element="IC1" pad="5"/>
- <wire x1="24.4" y1="1.43" x2="24.4" y2="2.82" width="0.254" layer="1"/>
- <wire x1="24.4" y1="2.82" x2="23.79" y2="3.53" width="0.254" layer="1"/>
- </signal>
- <signal name="VCC">
- <contactref element="IC1" pad="15"/>
- <contactref element="IC1" pad="9"/>
- <contactref element="IC1" pad="11"/>
- <contactref element="IC1" pad="4"/>
- <contactref element="IC1" pad="14"/>
- <contactref element="U1" pad="8"/>
- <contactref element="3V3" pad="TP"/>
- <contactref element="IC1" pad="18"/>
- <contactref element="LED1" pad="A"/>
- <contactref element="C4" pad="1"/>
- <contactref element="C5" pad="1"/>
- <wire x1="11.985" y1="10.9328" x2="11.985" y2="9.685" width="0.254" layer="1"/>
- <wire x1="11.985" y1="9.685" x2="11.95" y2="9.65" width="0.254" layer="1"/>
- <wire x1="11.95" y1="9.65" x2="11.35" y2="9.05" width="0.4064" layer="1"/>
- <wire x1="11.35" y1="9.05" x2="9.6" y2="9.05" width="0.4064" layer="1"/>
- <wire x1="9.6" y1="9.05" x2="9.6" y2="7.4" width="0.4064" layer="1"/>
- <via x="9.6" y="7.4" extent="1-16" drill="0.6"/>
- <wire x1="9.6" y1="7.4" x2="9.6" y2="4.9" width="0.4064" layer="16"/>
- <via x="9.6" y="4.9" extent="1-16" drill="0.6"/>
- <wire x1="9.6" y1="4.9" x2="9.6" y2="3.855" width="0.4064" layer="1"/>
- <wire x1="9.6" y1="3.855" x2="8.965" y2="3.22" width="0.4064" layer="1"/>
- <wire x1="8.965" y1="3.22" x2="6.37" y2="3.22" width="0.4064" layer="1"/>
- <wire x1="6.37" y1="3.22" x2="6.37" y2="3.565" width="0.254" layer="1"/>
- <wire x1="6.37" y1="3.565" x2="5.735" y2="4.2" width="0.4064" layer="1"/>
- <wire x1="5.735" y1="4.2" x2="4.3" y2="4.2" width="0.4064" layer="1"/>
- <wire x1="4.3" y1="4.2" x2="2.265" y2="4.2" width="0.4064" layer="1"/>
- <wire x1="2.265" y1="4.2" x2="1.63" y2="4.835" width="0.4064" layer="1"/>
- <wire x1="1.63" y1="4.835" x2="1.7" y2="5.9" width="0.254" layer="1"/>
- <wire x1="18.07" y1="8.97" x2="18.07" y2="8.635" width="0.254" layer="1"/>
- <wire x1="18.07" y1="8.635" x2="18.705" y2="8" width="0.4064" layer="1"/>
- <wire x1="18.705" y1="8" x2="19.7" y2="8" width="0.4064" layer="1"/>
- <wire x1="19.7" y1="8" x2="20.4" y2="8" width="0.4064" layer="1"/>
- <wire x1="20.4" y1="8" x2="20.7" y2="8" width="0.4064" layer="1"/>
- <wire x1="20.84" y1="5.48" x2="19.73" y2="5.48" width="0.254" layer="1"/>
- <via x="19.73" y="5.48" extent="1-16" drill="0.6"/>
- <wire x1="19.73" y1="5.48" x2="19.71" y2="5.5" width="0.254" layer="16"/>
- <wire x1="19.71" y1="5.5" x2="19.71" y2="7.25" width="0.4064" layer="16"/>
- <via x="19.71" y="7.25" extent="1-16" drill="0.6"/>
- <wire x1="19.71" y1="7.25" x2="19.7" y2="7.26" width="0.254" layer="1"/>
- <wire x1="19.7" y1="7.26" x2="19.7" y2="8" width="0.4064" layer="1"/>
- <wire x1="20.7" y1="8" x2="21.22" y2="8" width="0.4064" layer="1"/>
- <wire x1="21.22" y1="8" x2="21.79" y2="7.43" width="0.4064" layer="1"/>
- <wire x1="21.79" y1="7.43" x2="22.29" y2="7.43" width="0.4064" layer="1"/>
- <wire x1="22.29" y1="7.43" x2="22.29" y2="7.41" width="0.254" layer="1"/>
- <wire x1="22.29" y1="7.41" x2="22.3" y2="7.4" width="0.254" layer="1"/>
- <wire x1="18.07" y1="8.97" x2="16.86" y2="8.97" width="0.4064" layer="1"/>
- <wire x1="16.86" y1="8.97" x2="16.84" y2="8.99" width="0.254" layer="1"/>
- <via x="16.84" y="8.99" extent="1-16" drill="0.6"/>
- <wire x1="16.84" y1="8.99" x2="12.09" y2="8.99" width="0.4064" layer="16"/>
- <wire x1="12.09" y1="8.99" x2="12" y2="8.9" width="0.254" layer="16"/>
- <via x="12" y="8.9" extent="1-16" drill="0.6"/>
- <wire x1="12" y1="8.9" x2="12" y2="9.6" width="0.4064" layer="1"/>
- <wire x1="12" y1="9.6" x2="11.95" y2="9.65" width="0.254" layer="1"/>
- <via x="26.69" y="7.42" extent="1-16" drill="0.6"/>
- <wire x1="26.69" y1="7.42" x2="29.18" y2="7.42" width="0.254" layer="16"/>
- <wire x1="29.18" y1="7.42" x2="29.19" y2="5.99" width="0.254" layer="16"/>
- <via x="29.19" y="5.99" extent="1-16" drill="0.6"/>
- <wire x1="29.19" y1="5.99" x2="24.76" y2="6" width="0.254" layer="1"/>
- <wire x1="24.76" y1="6" x2="24.74" y2="5.98" width="0.254" layer="1"/>
- <wire x1="23.29" y1="3.53" x2="23.29" y2="0.61" width="0.254" layer="1"/>
- <wire x1="23.29" y1="0.61" x2="23.5" y2="0.5" width="0.254" layer="1"/>
- <wire x1="23.5" y1="0.5" x2="27.4" y2="0.5" width="0.254" layer="1"/>
- <wire x1="27.4" y1="0.5" x2="27.6" y2="0.8" width="0.254" layer="1"/>
- <via x="27.6" y="0.8" extent="1-16" drill="0.6"/>
- <wire x1="27.6" y1="0.8" x2="27.6" y2="1.1" width="0.254" layer="16"/>
- <wire x1="27.6" y1="1.1" x2="28.3" y2="1.8" width="0.254" layer="16"/>
- <wire x1="28.3" y1="1.8" x2="28.3" y2="3.7" width="0.254" layer="16"/>
- <wire x1="28.3" y1="3.7" x2="29.19" y2="5.99" width="0.254" layer="16"/>
- <wire x1="20.4" y1="8" x2="20.4" y2="8.9" width="0.4064" layer="1"/>
- <wire x1="20.4" y1="8.9" x2="26.065" y2="8.9" width="0.254" layer="16"/>
- <wire x1="26.065" y1="8.9" x2="26.7" y2="8.265" width="0.254" layer="16"/>
- <via x="20.4" y="8.9" extent="1-16" drill="0.6"/>
- <wire x1="23.79" y1="7.43" x2="26.69" y2="7.43" width="0.254" layer="1"/>
- <wire x1="26.69" y1="7.43" x2="26.69" y2="7.42" width="0.254" layer="1"/>
- <wire x1="26.7" y1="8.265" x2="26.69" y2="8.265" width="0.254" layer="16"/>
- <wire x1="26.69" y1="8.265" x2="26.69" y2="7.42" width="0.254" layer="16"/>
- </signal>
- <signal name="N$5">
- <contactref element="U1" pad="5"/>
- <contactref element="IC1" pad="2"/>
- <contactref element="R2" pad="1"/>
- <wire x1="21.27" y1="1.28" x2="21.655" y2="1.28" width="0.254" layer="1"/>
- <wire x1="21.655" y1="1.28" x2="22.29" y2="1.915" width="0.254" layer="1"/>
- <wire x1="22.29" y1="1.915" x2="22.29" y2="3.53" width="0.254" layer="1"/>
- <wire x1="15.795" y1="10.9328" x2="15.795" y2="7.935" width="0.254" layer="1"/>
- <wire x1="15.795" y1="7.935" x2="15.8" y2="7.93" width="0.254" layer="1"/>
- <via x="15.8" y="7.93" extent="1-16" drill="0.6"/>
- <wire x1="15.8" y1="7.93" x2="15.8" y2="0.8" width="0.254" layer="16"/>
- <via x="15.8" y="0.8" extent="1-16" drill="0.6"/>
- <wire x1="15.8" y1="0.8" x2="16.6" y2="0.4" width="0.254" layer="1"/>
- <wire x1="16.6" y1="0.4" x2="20.39" y2="0.4" width="0.254" layer="1"/>
- <wire x1="20.39" y1="0.4" x2="21.27" y2="1.28" width="0.254" layer="1"/>
- </signal>
- <signal name="N$6">
- <contactref element="IC1" pad="20"/>
- <contactref element="R2" pad="2"/>
- <wire x1="19.57" y1="1.28" x2="19.57" y2="3.21" width="0.254" layer="1"/>
- <wire x1="19.57" y1="3.21" x2="20.84" y2="4.48" width="0.254" layer="1"/>
- </signal>
- <signal name="N$7">
- <contactref element="U1" pad="6"/>
- <contactref element="IC1" pad="1"/>
- <wire x1="14.525" y1="10.9328" x2="14.525" y2="7.785" width="0.254" layer="1"/>
- <wire x1="14.525" y1="7.785" x2="15.16" y2="7.15" width="0.254" layer="1"/>
- <wire x1="15.16" y1="7.15" x2="15.16" y2="3.05" width="0.254" layer="1"/>
- <wire x1="15.16" y1="3.05" x2="15.47" y2="2.74" width="0.254" layer="1"/>
- <wire x1="15.47" y1="2.74" x2="16.32" y2="2.74" width="0.254" layer="1"/>
- <wire x1="16.32" y1="2.74" x2="16.8" y2="3.22" width="0.254" layer="1"/>
- <via x="16.8" y="3.22" extent="1-16" drill="0.6"/>
- <wire x1="16.8" y1="3.22" x2="20.78" y2="3.22" width="0.254" layer="16"/>
- <wire x1="20.78" y1="3.22" x2="20.8" y2="3.2" width="0.254" layer="16"/>
- <via x="20.8" y="3.2" extent="1-16" drill="0.6"/>
- <wire x1="20.8" y1="3.2" x2="21.46" y2="3.2" width="0.254" layer="1"/>
- <wire x1="21.46" y1="3.2" x2="21.79" y2="3.53" width="0.254" layer="1"/>
- </signal>
- <signal name="N$8">
- <contactref element="U1" pad="7"/>
- <contactref element="IC1" pad="7"/>
- <contactref element="R3" pad="1"/>
- <wire x1="13.255" y1="10.9328" x2="13.255" y2="7.445" width="0.254" layer="1"/>
- <wire x1="13.255" y1="7.445" x2="13.9" y2="6.8" width="0.254" layer="1"/>
- <wire x1="13.9" y1="6.8" x2="13.9" y2="2.28" width="0.254" layer="1"/>
- <wire x1="13.9" y1="2.28" x2="12.99" y2="1.37" width="0.254" layer="1"/>
- <via x="17.77" y="1.17" extent="1-16" drill="0.6"/>
- <wire x1="17.77" y1="1.17" x2="25.4" y2="1.17" width="0.254" layer="16"/>
- <wire x1="25.4" y1="1.17" x2="26.15" y2="1.17" width="0.254" layer="16"/>
- <wire x1="26.15" y1="1.17" x2="27.11" y2="2.43" width="0.254" layer="16"/>
- <via x="27.11" y="2.43" extent="1-16" drill="0.6"/>
- <wire x1="27.11" y1="2.43" x2="27.11" y2="4.55" width="0.254" layer="1"/>
- <wire x1="27.11" y1="4.55" x2="26.68" y2="4.98" width="0.254" layer="1"/>
- <wire x1="26.68" y1="4.98" x2="24.74" y2="4.98" width="0.254" layer="1"/>
- <wire x1="12.99" y1="1.37" x2="14.17" y2="1.37" width="0.254" layer="1"/>
- <wire x1="14.17" y1="1.37" x2="14.5" y2="1.7" width="0.254" layer="1"/>
- <wire x1="14.5" y1="1.7" x2="17.24" y2="1.7" width="0.254" layer="1"/>
- <wire x1="17.24" y1="1.7" x2="17.77" y2="1.17" width="0.254" layer="1"/>
- </signal>
- <signal name="N$9">
- <contactref element="IC1" pad="6"/>
- <contactref element="U1" pad="3"/>
- <wire x1="14.525" y1="4.2018" x2="14.525" y2="3.035" width="0.254" layer="1"/>
- <wire x1="14.525" y1="3.035" x2="15.16" y2="2.3" width="0.254" layer="1"/>
- <wire x1="15.16" y1="2.3" x2="17.8" y2="2.3" width="0.254" layer="1"/>
- <via x="17.8" y="2.3" extent="1-16" drill="0.6"/>
- <wire x1="17.8" y1="2.3" x2="23.2" y2="2.4" width="0.254" layer="16"/>
- <wire x1="23.2" y1="2.4" x2="25.565" y2="2.4" width="0.254" layer="16"/>
- <wire x1="25.565" y1="2.4" x2="26.2" y2="3.035" width="0.254" layer="16"/>
- <wire x1="26.2" y1="3.035" x2="26.2" y2="3.8" width="0.254" layer="16"/>
- <via x="26.2" y="3.8" extent="1-16" drill="0.6"/>
- <wire x1="26.2" y1="3.8" x2="26.2" y2="3.845" width="0.254" layer="1"/>
- <wire x1="26.2" y1="3.845" x2="25.565" y2="4.48" width="0.254" layer="1"/>
- <wire x1="25.565" y1="4.48" x2="24.74" y2="4.48" width="0.254" layer="1"/>
- </signal>
- <signal name="N$10">
- <contactref element="U1" pad="2"/>
- <contactref element="PPM" pad="TP"/>
- <contactref element="PPM1" pad="TP"/>
- <wire x1="13.255" y1="4.2018" x2="13.255" y2="5.465" width="0.254" layer="1"/>
- <wire x1="13.255" y1="5.465" x2="12.62" y2="6.1" width="0.254" layer="1"/>
- <wire x1="12.62" y1="6.1" x2="6.4" y2="6.1" width="0.254" layer="1"/>
- <wire x1="6.4" y1="6.1" x2="1.7" y2="9.4" width="0.254" layer="1"/>
- </signal>
- <signal name="N$11">
- <contactref element="LED1" pad="C"/>
- <contactref element="R3" pad="2"/>
- <wire x1="11.29" y1="1.37" x2="6.72" y2="1.37" width="0.254" layer="1"/>
- <wire x1="6.72" y1="1.37" x2="6.37" y2="1.72" width="0.254" layer="1"/>
- </signal>
- <signal name="N$3">
- <contactref element="IC1" pad="12"/>
- <contactref element="IC1" pad="13"/>
- <wire x1="22.79" y1="7.43" x2="23.29" y2="7.43" width="0" layer="19" extent="1-1"/>
- </signal>
- <signal name="N$12">
- <wire x1="22.8" y1="7.4" x2="22.8" y2="8.7" width="0.254" layer="1"/>
- <wire x1="22.8" y1="8.7" x2="22.8" y2="8.9" width="0.254" layer="1"/>
- <wire x1="22.8" y1="8.9" x2="22" y2="9.7" width="0.254" layer="1"/>
- <wire x1="22.8" y1="8.7" x2="22.7" y2="8.7" width="0.254" layer="1"/>
- <wire x1="22.7" y1="8.7" x2="21.9" y2="9.5" width="0.254" layer="1"/>
- </signal>
- <signal name="N$13">
- <wire x1="23.3" y1="7.4" x2="23.3" y2="8.9" width="0.254" layer="1"/>
- <wire x1="23.3" y1="8.9" x2="24.1" y2="9.7" width="0.254" layer="1"/>
- </signal>
- <signal name="N$14">
- <wire x1="23.4" y1="8.7" x2="24.2" y2="9.5" width="0.254" layer="1"/>
- </signal>
- </signals>
- </board>
- </drawing>
- </eagle>
|