| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923 |
- <?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.05" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.025" altunitdist="inch" altunit="inch"/>
- <layers>
- <layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
- <layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
- <layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
- <layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
- <layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
- <layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
- <layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
- <layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
- <layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
- <layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
- <layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
- <layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
- <layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
- <layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
- <layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
- <layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
- <layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
- <layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
- <layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
- <layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
- <layer number="25" name="tNames" color="7" fill="1" visible="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="7" 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="4" 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="7" 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="7" 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="HeatSink" color="7" 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="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
- <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
- <layer number="248" name="Housing" color="7" fill="1" visible="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="-1.27" x2="160" y2="-1.27" width="0" layer="20"/>
- <wire x1="160" y1="-1.27" x2="160" y2="9.83" width="0" layer="20"/>
- <wire x1="160" y1="9.83" x2="0" y2="9.83" width="0" layer="20"/>
- <wire x1="0" y1="9.83" x2="0" y2="-1.27" width="0" layer="20"/>
- <dimension x1="0" y1="0" x2="160" y2="0" x3="80" y3="-6.35" textsize="1.778" layer="1" unit="inch"/>
- <dimension x1="160" y1="0" x2="160" y2="9.83" x3="171.45" y3="4.915" textsize="1.778" layer="1" unit="inch"/>
- <dimension x1="0" y1="0" x2="160" y2="0" x3="80" y3="-15.24" textsize="1.778" layer="1"/>
- <dimension x1="160" y1="0" x2="160" y2="9.83" x3="177.8" y3="4.915" textsize="1.778" layer="1"/>
- </plain>
- <libraries>
- <library name="rcl">
- <description><b>Resistors, Capacitors, Inductors</b><p>
- Based on the previous libraries:
- <ul>
- <li>r.lbr
- <li>cap.lbr
- <li>cap-fe.lbr
- <li>captant.lbr
- <li>polcap.lbr
- <li>ipc-smd.lbr
- </ul>
- All SMD packages are defined according to the IPC specifications and CECC<p>
- <author>Created by librarian@cadsoft.de</author><p>
- <p>
- for Electrolyt Capacitors see also :<p>
- www.bccomponents.com <p>
- www.panasonic.com<p>
- www.kemet.com<p>
- http://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf <b>(SANYO)</b>
- <p>
- for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
- <table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
- <tr valign="top">
- <! <td width="10">&nbsp;</td>
- <td width="90%">
- <b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
- <P>
- <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
- <TR>
- <TD COLSPAN=8>
- <FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
- </B>
- </TD>
- <TD ALIGN=CENTER>
- <B>
- <FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
- </B>
- </TD><TD>&nbsp;</TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
- 3005P<BR>
- 3006P<BR>
- 3006W<BR>
- 3006Y<BR>
- 3009P<BR>
- 3009W<BR>
- 3009Y<BR>
- 3057J<BR>
- 3057L<BR>
- 3057P<BR>
- 3057Y<BR>
- 3059J<BR>
- 3059L<BR>
- 3059P<BR>
- 3059Y<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 89P<BR>
- 89W<BR>
- 89X<BR>
- 89PH<BR>
- 76P<BR>
- 89XH<BR>
- 78SLT<BR>
- 78L&nbsp;ALT<BR>
- 56P&nbsp;ALT<BR>
- 78P&nbsp;ALT<BR>
- T8S<BR>
- 78L<BR>
- 56P<BR>
- 78P<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- T18/784<BR>
- 783<BR>
- 781<BR>
- -<BR>
- -<BR>
- -<BR>
- 2199<BR>
- 1697/1897<BR>
- 1680/1880<BR>
- 2187<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 8035EKP/CT20/RJ-20P<BR>
- -<BR>
- RJ-20X<BR>
- -<BR>
- -<BR>
- -<BR>
- 1211L<BR>
- 8012EKQ&nbsp;ALT<BR>
- 8012EKR&nbsp;ALT<BR>
- 1211P<BR>
- 8012EKJ<BR>
- 8012EKL<BR>
- 8012EKQ<BR>
- 8012EKR<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 2101P<BR>
- 2101W<BR>
- 2101Y<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 2102L<BR>
- 2102S<BR>
- 2102Y<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- EVMCOG<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 43P<BR>
- 43W<BR>
- 43Y<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 40L<BR>
- 40P<BR>
- 40Y<BR>
- 70Y-T602<BR>
- 70L<BR>
- 70P<BR>
- 70Y<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- RT/RTR12<BR>
- RT/RTR12<BR>
- RT/RTR12<BR>
- -<BR>
- RJ/RJR12<BR>
- RJ/RJR12<BR>
- RJ/RJR12<BR></FONT>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>&nbsp;
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>
- <FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3250L<BR>
- 3250P<BR>
- 3250W<BR>
- 3250X<BR>
- 3252P<BR>
- 3252W<BR>
- 3252X<BR>
- 3260P<BR>
- 3260W<BR>
- 3260X<BR>
- 3262P<BR>
- 3262W<BR>
- 3262X<BR>
- 3266P<BR>
- 3266W<BR>
- 3266X<BR>
- 3290H<BR>
- 3290P<BR>
- 3290W<BR>
- 3292P<BR>
- 3292W<BR>
- 3292X<BR>
- 3296P<BR>
- 3296W<BR>
- 3296X<BR>
- 3296Y<BR>
- 3296Z<BR>
- 3299P<BR>
- 3299W<BR>
- 3299X<BR>
- 3299Y<BR>
- 3299Z<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- 66P&nbsp;ALT<BR>
- 66W&nbsp;ALT<BR>
- 66X&nbsp;ALT<BR>
- 66P&nbsp;ALT<BR>
- 66W&nbsp;ALT<BR>
- 66X&nbsp;ALT<BR>
- -<BR>
- 64W&nbsp;ALT<BR>
- -<BR>
- 64P&nbsp;ALT<BR>
- 64W&nbsp;ALT<BR>
- 64X&nbsp;ALT<BR>
- 64P<BR>
- 64W<BR>
- 64X<BR>
- 66X&nbsp;ALT<BR>
- 66P&nbsp;ALT<BR>
- 66W&nbsp;ALT<BR>
- 66P<BR>
- 66W<BR>
- 66X<BR>
- 67P<BR>
- 67W<BR>
- 67X<BR>
- 67Y<BR>
- 67Z<BR>
- 68P<BR>
- 68W<BR>
- 68X<BR>
- 67Y&nbsp;ALT<BR>
- 67Z&nbsp;ALT<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 5050<BR>
- 5091<BR>
- 5080<BR>
- 5087<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- T63YB<BR>
- T63XB<BR>
- -<BR>
- -<BR>
- -<BR>
- 5887<BR>
- 5891<BR>
- 5880<BR>
- -<BR>
- -<BR>
- -<BR>
- T93Z<BR>
- T93YA<BR>
- T93XA<BR>
- T93YB<BR>
- T93XB<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 8026EKP<BR>
- 8026EKW<BR>
- 8026EKM<BR>
- 8026EKP<BR>
- 8026EKB<BR>
- 8026EKM<BR>
- 1309X<BR>
- 1309P<BR>
- 1309W<BR>
- 8024EKP<BR>
- 8024EKW<BR>
- 8024EKN<BR>
- RJ-9P/CT9P<BR>
- RJ-9W<BR>
- RJ-9X<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 3103P<BR>
- 3103Y<BR>
- 3103Z<BR>
- 3103P<BR>
- 3103Y<BR>
- 3103Z<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 3105P/3106P<BR>
- 3105W/3106W<BR>
- 3105X/3106X<BR>
- 3105Y/3106Y<BR>
- 3105Z/3105Z<BR>
- 3102P<BR>
- 3102W<BR>
- 3102X<BR>
- 3102Y<BR>
- 3102Z<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- EVMCBG<BR>
- EVMCCG<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 55-1-X<BR>
- 55-4-X<BR>
- 55-3-X<BR>
- 55-2-X<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 50-2-X<BR>
- 50-4-X<BR>
- 50-3-X<BR>
- -<BR>
- -<BR>
- -<BR>
- 64P<BR>
- 64W<BR>
- 64X<BR>
- 64Y<BR>
- 64Z<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- RT/RTR22<BR>
- RT/RTR22<BR>
- RT/RTR22<BR>
- RT/RTR22<BR>
- RJ/RJR22<BR>
- RJ/RJR22<BR>
- RJ/RJR22<BR>
- RT/RTR26<BR>
- RT/RTR26<BR>
- RT/RTR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RJ/RJR26<BR>
- RT/RTR24<BR>
- RT/RTR24<BR>
- RT/RTR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- RJ/RJR24<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>&nbsp;
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8>
- <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
- </TD>
- <TD ALIGN=CENTER>
- <FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3323P<BR>
- 3323S<BR>
- 3323W<BR>
- 3329H<BR>
- 3329P<BR>
- 3329W<BR>
- 3339H<BR>
- 3339P<BR>
- 3339W<BR>
- 3352E<BR>
- 3352H<BR>
- 3352K<BR>
- 3352P<BR>
- 3352T<BR>
- 3352V<BR>
- 3352W<BR>
- 3362H<BR>
- 3362M<BR>
- 3362P<BR>
- 3362R<BR>
- 3362S<BR>
- 3362U<BR>
- 3362W<BR>
- 3362X<BR>
- 3386B<BR>
- 3386C<BR>
- 3386F<BR>
- 3386H<BR>
- 3386K<BR>
- 3386M<BR>
- 3386P<BR>
- 3386S<BR>
- 3386W<BR>
- 3386X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 25P<BR>
- 25S<BR>
- 25RX<BR>
- 82P<BR>
- 82M<BR>
- 82PA<BR>
- -<BR>
- -<BR>
- -<BR>
- 91E<BR>
- 91X<BR>
- 91T<BR>
- 91B<BR>
- 91A<BR>
- 91V<BR>
- 91W<BR>
- 25W<BR>
- 25V<BR>
- 25P<BR>
- -<BR>
- 25S<BR>
- 25U<BR>
- 25RX<BR>
- 25X<BR>
- 72XW<BR>
- 72XL<BR>
- 72PM<BR>
- 72RX<BR>
- -<BR>
- 72PX<BR>
- 72P<BR>
- 72RXW<BR>
- 72RXL<BR>
- 72X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- T7YB<BR>
- T7YA<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- TXD<BR>
- TYA<BR>
- TYP<BR>
- -<BR>
- TYD<BR>
- TX<BR>
- -<BR>
- 150SX<BR>
- 100SX<BR>
- 102T<BR>
- 101S<BR>
- 190T<BR>
- 150TX<BR>
- 101<BR>
- -<BR>
- -<BR>
- 101SX<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- ET6P<BR>
- ET6S<BR>
- ET6X<BR>
- RJ-6W/8014EMW<BR>
- RJ-6P/8014EMP<BR>
- RJ-6X/8014EMX<BR>
- TM7W<BR>
- TM7P<BR>
- TM7X<BR>
- -<BR>
- 8017SMS<BR>
- -<BR>
- 8017SMB<BR>
- 8017SMA<BR>
- -<BR>
- -<BR>
- CT-6W<BR>
- CT-6H<BR>
- CT-6P<BR>
- CT-6R<BR>
- -<BR>
- CT-6V<BR>
- CT-6X<BR>
- -<BR>
- -<BR>
- 8038EKV<BR>
- -<BR>
- 8038EKX<BR>
- -<BR>
- -<BR>
- 8038EKP<BR>
- 8038EKZ<BR>
- 8038EKW<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- 3321H<BR>
- 3321P<BR>
- 3321N<BR>
- 1102H<BR>
- 1102P<BR>
- 1102T<BR>
- RVA0911V304A<BR>
- -<BR>
- RVA0911H413A<BR>
- RVG0707V100A<BR>
- RVA0607V(H)306A<BR>
- RVA1214H213A<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 3104B<BR>
- 3104C<BR>
- 3104F<BR>
- 3104H<BR>
- -<BR>
- 3104M<BR>
- 3104P<BR>
- 3104S<BR>
- 3104W<BR>
- 3104X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- EVMQ0G<BR>
- EVMQIG<BR>
- EVMQ3G<BR>
- EVMS0G<BR>
- EVMQ0G<BR>
- EVMG0G<BR>
- -<BR>
- -<BR>
- -<BR>
- EVMK4GA00B<BR>
- EVM30GA00B<BR>
- EVMK0GA00B<BR>
- EVM38GA00B<BR>
- EVMB6<BR>
- EVLQ0<BR>
- -<BR>
- EVMMSG<BR>
- EVMMBG<BR>
- EVMMAG<BR>
- -<BR>
- -<BR>
- EVMMCS<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- EVMM1<BR>
- -<BR>
- -<BR>
- EVMM0<BR>
- -<BR>
- -<BR>
- EVMM3<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- 62-3-1<BR>
- 62-1-2<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 67R<BR>
- -<BR>
- 67P<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- 67X<BR>
- 63V<BR>
- 63S<BR>
- 63M<BR>
- -<BR>
- -<BR>
- 63H<BR>
- 63P<BR>
- -<BR>
- -<BR>
- 63X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- RJ/RJR50<BR>
- RJ/RJR50<BR>
- RJ/RJR50<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- </TABLE>
- <P>&nbsp;<P>
- <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
- <TR>
- <TD COLSPAN=7>
- <FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
- <P>
- <FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3224G<BR>
- 3224J<BR>
- 3224W<BR>
- 3269P<BR>
- 3269W<BR>
- 3269X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 44G<BR>
- 44J<BR>
- 44W<BR>
- 84P<BR>
- 84W<BR>
- 84X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- ST63Z<BR>
- ST63Y<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- ST5P<BR>
- ST5W<BR>
- ST5X<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=7>&nbsp;
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=7>
- <FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
- </TD>
- <TD>
- <FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
- </TD>
- </TR>
- <TR>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 3314G<BR>
- 3314J<BR>
- 3364A/B<BR>
- 3364C/D<BR>
- 3364W/X<BR>
- 3313G<BR>
- 3313J<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- 23B<BR>
- 23A<BR>
- 21X<BR>
- 21W<BR>
- -<BR>
- 22B<BR>
- 22A<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- ST5YL/ST53YL<BR>
- ST5YJ/5T53YJ<BR>
- ST-23A<BR>
- ST-22B<BR>
- ST-22<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- ST-4B<BR>
- ST-4A<BR>
- -<BR>
- -<BR>
- -<BR>
- ST-3B<BR>
- ST-3A<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- EVM-6YS<BR>
- EVM-1E<BR>
- EVM-1G<BR>
- EVM-1D<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- G4B<BR>
- G4A<BR>
- TR04-3S1<BR>
- TRG04-2S1<BR>
- -<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- <TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
- -<BR>
- -<BR>
- DVR-43A<BR>
- CVR-42C<BR>
- CVR-42A/C<BR>
- -<BR>
- -<BR></FONT>
- </TD>
- </TR>
- </TABLE>
- <P>
- <FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT>
- <P>
- &nbsp;
- <P>
- </td>
- </tr>
- </table></description>
- <packages>
- <package name="C0603">
- <description><b>CAPACITOR</b></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.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.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></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-LED">
- <description><h3>SparkFun Electronics' preferred foot prints</h3>
- In this library you'll find discrete LEDs for illumination or indication, but no displays.<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="WS2812B">
- <description><b>Intelligent control LED with integrated light source</b><p>
- WS2812B<br>
- source: http://www.world-semi.com/uploads/soft/130904/1_1500205981.pdf</description>
- <smd name="1" x="-2.577" y="1.6" dx="1.651" dy="1" layer="1"/>
- <smd name="4" x="2.577" y="1.6" dx="1.651" dy="1" layer="1"/>
- <smd name="3" x="2.577" y="-1.6" dx="1.651" dy="1" layer="1"/>
- <smd name="2" x="-2.577" y="-1.6" dx="1.651" dy="1" layer="1"/>
- <wire x1="-2.5" y1="2.5" x2="-2.5" y2="-2.5" width="0.127" layer="51"/>
- <wire x1="-2.5" y1="-2.5" x2="2.5" y2="-2.5" width="0.127" layer="51"/>
- <wire x1="2.5" y1="-2.5" x2="2.5" y2="2.5" width="0.127" layer="51"/>
- <wire x1="2.5" y1="2.5" x2="-2.5" y2="2.5" width="0.127" layer="51"/>
- <text x="4.254" y="1.2" size="1.016" layer="25">>NAME</text>
- <text x="4.254" y="-1.6" size="0.6096" layer="27">>VALUE</text>
- <wire x1="-2.4892" y1="2.362203125" x2="-2.4892" y2="2.616203125" width="0.2032" layer="21"/>
- <wire x1="-2.4892" y1="2.616203125" x2="-2.4384" y2="2.616203125" width="0.2032" layer="21"/>
- <wire x1="-2.4384" y1="2.616203125" x2="-2.4384" y2="2.611121875" width="0.2032" layer="21"/>
- <wire x1="-2.4384" y1="2.611121875" x2="2.512059375" y2="2.611121875" width="0.2032" layer="21"/>
- <wire x1="2.512059375" y1="2.611121875" x2="2.512059375" y2="2.37998125" width="0.2032" layer="21"/>
- <wire x1="-2.50951875" y1="-2.319021875" x2="-2.50951875" y2="-2.5908" width="0.2032" layer="21"/>
- <wire x1="-2.50951875" y1="-2.5908" x2="-2.45871875" y2="-2.5908" width="0.2032" layer="21"/>
- <wire x1="-2.45871875" y1="-2.5908" x2="-2.45871875" y2="-2.593340625" width="0.2032" layer="21"/>
- <wire x1="-2.45871875" y1="-2.593340625" x2="2.50951875" y2="-2.593340625" width="0.2032" layer="21"/>
- <wire x1="2.50951875" y1="-2.593340625" x2="2.50951875" y2="-2.36728125" width="0.2032" layer="21"/>
- <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.8128" width="0.2032" layer="21"/>
- <wire x1="2.54" y1="0.8636" x2="2.54" y2="0" width="0.2032" layer="21"/>
- <wire x1="2.54" y1="0" x2="2.54" y2="-0.8636" width="0.2032" layer="21"/>
- <wire x1="2.54" y1="0" x2="0" y2="-2.54" width="0.2032" layer="21"/>
- </package>
- </packages>
- </library>
- <library name="adafruit">
- <packages>
- <package name="1X03">
- <description><b>PIN HEADER</b></description>
- <wire x1="-3.175" y1="1.27" x2="-1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="1.27" x2="-1.27" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="-0.635" x2="-1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-1.27" y1="0.635" x2="-0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="0.635" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-0.635" y1="-1.27" x2="-1.27" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-3.81" y1="0.635" x2="-3.81" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="-3.175" y1="1.27" x2="-3.81" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="-3.81" y1="-0.635" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="-1.905" y1="-1.27" x2="-3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.1524" layer="21"/>
- <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.1524" layer="21"/>
- <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.1524" layer="21"/>
- <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.1524" layer="21"/>
- <pad name="1" x="-2.54" y="0" drill="1.016" rot="R90"/>
- <pad name="2" x="0" y="0" drill="1.016" rot="R90"/>
- <pad name="3" x="2.54" y="0" drill="1.016" rot="R90"/>
- <text x="-3.8862" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
- <text x="-3.81" y="-3.175" size="1.27" layer="27">>VALUE</text>
- <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
- <rectangle x1="-2.794" y1="-0.254" x2="-2.286" y2="0.254" layer="51"/>
- <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
- </package>
- </packages>
- </library>
- </libraries>
- <attributes>
- </attributes>
- <variantdefs>
- </variantdefs>
- <classes>
- <class number="0" name="default" width="0" drill="0">
- </class>
- </classes>
- <designrules name="default">
- <description language="de"><b>EAGLE Design Rules</b>
- <p>
- Die Standard-Design-Rules sind so gewählt, dass sie für
- die meisten Anwendungen passen. Sollte ihre Platine
- besondere Anforderungen haben, treffen Sie die erforderlichen
- Einstellungen hier und speichern die Design Rules unter
- einem neuen Namen ab.</description>
- <description language="en"><b>EAGLE Design Rules</b>
- <p>
- The default Design Rules have been set to cover
- a wide range of applications. Your particular design
- may have different requirements, so please make the
- necessary adjustments and save your customized
- design rules under a new name.</description>
- <param name="layerSetup" value="(1*16)"/>
- <param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/>
- <param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/>
- <param name="mdWireWire" value="8mil"/>
- <param name="mdWirePad" value="8mil"/>
- <param name="mdWireVia" value="8mil"/>
- <param name="mdPadPad" value="8mil"/>
- <param name="mdPadVia" value="8mil"/>
- <param name="mdViaVia" value="8mil"/>
- <param name="mdSmdPad" value="8mil"/>
- <param name="mdSmdVia" value="8mil"/>
- <param name="mdSmdSmd" value="8mil"/>
- <param name="mdViaViaSameLayer" value="8mil"/>
- <param name="mnLayersViaInSmd" value="2"/>
- <param name="mdCopperDimension" value="40mil"/>
- <param name="mdDrill" value="8mil"/>
- <param name="mdSmdStop" value="0mil"/>
- <param name="msWidth" value="10mil"/>
- <param name="msDrill" value="24mil"/>
- <param name="msMicroVia" value="9.99mm"/>
- <param name="msBlindViaRatio" value="0.5"/>
- <param name="rvPadTop" value="0.25"/>
- <param name="rvPadInner" value="0.25"/>
- <param name="rvPadBottom" value="0.25"/>
- <param name="rvViaOuter" value="0.25"/>
- <param name="rvViaInner" value="0.25"/>
- <param name="rvMicroViaOuter" value="0.25"/>
- <param name="rvMicroViaInner" value="0.25"/>
- <param name="rlMinPadTop" value="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="8mil"/>
- <param name="rlMaxViaOuter" value="20mil"/>
- <param name="rlMinViaInner" value="8mil"/>
- <param name="rlMaxViaInner" value="20mil"/>
- <param name="rlMinMicroViaOuter" value="4mil"/>
- <param name="rlMaxMicroViaOuter" value="20mil"/>
- <param name="rlMinMicroViaInner" value="4mil"/>
- <param name="rlMaxMicroViaInner" value="20mil"/>
- <param name="psTop" value="-1"/>
- <param name="psBottom" value="-1"/>
- <param name="psFirst" value="-1"/>
- <param name="psElongationLong" value="100"/>
- <param name="psElongationOffset" value="100"/>
- <param name="mvStopFrame" value="1"/>
- <param name="mvCreamFrame" value="0"/>
- <param name="mlMinStopFrame" value="4mil"/>
- <param name="mlMaxStopFrame" value="4mil"/>
- <param name="mlMinCreamFrame" value="0mil"/>
- <param name="mlMaxCreamFrame" value="0mil"/>
- <param name="mlViaStopLimit" value="0mil"/>
- <param name="srRoundness" value="0"/>
- <param name="srMinRoundness" value="0mil"/>
- <param name="srMaxRoundness" value="0mil"/>
- <param name="slThermalIsolate" value="10mil"/>
- <param name="slThermalsForVias" value="0"/>
- <param name="dpMaxLengthDifference" value="10mm"/>
- <param name="dpGapFactor" value="2.5"/>
- <param name="checkGrid" value="0"/>
- <param name="checkAngle" value="0"/>
- <param name="checkFont" value="1"/>
- <param name="checkRestrict" value="1"/>
- <param name="useDiameter" value="13"/>
- <param name="maxErrors" value="50"/>
- </designrules>
- <autorouter>
- <pass name="Default">
- <param name="RoutingGrid" value="12.5mil"/>
- <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="|"/>
- <param name="cfVia" value="8"/>
- <param name="cfNonPref" value="5"/>
- <param name="cfChangeDir" value="2"/>
- <param name="cfOrthStep" value="2"/>
- <param name="cfDiagStep" value="3"/>
- <param name="cfExtdStep" value="0"/>
- <param name="cfBonusStep" value="1"/>
- <param name="cfMalusStep" value="1"/>
- <param name="cfPadImpact" value="4"/>
- <param name="cfSmdImpact" value="4"/>
- <param name="cfBusImpact" value="0"/>
- <param name="cfHugging" value="3"/>
- <param name="cfAvoid" value="4"/>
- <param name="cfPolygon" value="10"/>
- <param name="cfBase.1" value="0"/>
- <param name="cfBase.2" value="1"/>
- <param name="cfBase.3" value="1"/>
- <param name="cfBase.4" value="1"/>
- <param name="cfBase.5" value="1"/>
- <param name="cfBase.6" value="1"/>
- <param name="cfBase.7" value="1"/>
- <param name="cfBase.8" value="1"/>
- <param name="cfBase.9" value="1"/>
- <param name="cfBase.10" value="1"/>
- <param name="cfBase.11" value="1"/>
- <param name="cfBase.12" value="1"/>
- <param name="cfBase.13" value="1"/>
- <param name="cfBase.14" value="1"/>
- <param name="cfBase.15" value="1"/>
- <param name="cfBase.16" value="0"/>
- <param name="mnVias" value="20"/>
- <param name="mnSegments" value="9999"/>
- <param name="mnExtdSteps" value="9999"/>
- <param name="mnRipupLevel" value="10"/>
- <param name="mnRipupSteps" value="100"/>
- <param name="mnRipupTotal" value="100"/>
- </pass>
- <pass name="Follow-me" refer="Default" active="yes">
- </pass>
- <pass name="Busses" refer="Default" active="yes">
- <param name="cfNonPref" value="4"/>
- <param name="cfBusImpact" value="4"/>
- <param name="cfHugging" value="0"/>
- <param name="mnVias" value="0"/>
- </pass>
- <pass name="Route" refer="Default" active="yes">
- </pass>
- <pass name="Optimize1" refer="Default" active="yes">
- <param name="cfVia" value="99"/>
- <param name="cfExtdStep" value="10"/>
- <param name="cfHugging" value="1"/>
- <param name="mnExtdSteps" value="1"/>
- <param name="mnRipupLevel" value="0"/>
- </pass>
- <pass name="Optimize2" refer="Optimize1" active="yes">
- <param name="cfNonPref" value="0"/>
- <param name="cfChangeDir" value="6"/>
- <param name="cfExtdStep" value="0"/>
- <param name="cfBonusStep" value="2"/>
- <param name="cfMalusStep" value="2"/>
- <param name="cfPadImpact" value="2"/>
- <param name="cfSmdImpact" value="2"/>
- <param name="cfHugging" value="0"/>
- </pass>
- <pass name="Optimize3" refer="Optimize2" active="yes">
- <param name="cfChangeDir" value="8"/>
- <param name="cfPadImpact" value="0"/>
- <param name="cfSmdImpact" value="0"/>
- </pass>
- <pass name="Optimize4" refer="Optimize3" active="yes">
- <param name="cfChangeDir" value="25"/>
- </pass>
- </autorouter>
- <elements>
- <element name="C1" library="rcl" package="C0603" value="" x="15.875" y="1.905" rot="R90"/>
- <element name="C10" library="rcl" package="C0603" value="" x="118.745" y="1.905" rot="R90"/>
- <element name="C11" library="rcl" package="C0603" value="" x="130.175" y="1.905" rot="R90"/>
- <element name="C12" library="rcl" package="C0603" value="" x="141.605" y="1.905" rot="R90"/>
- <element name="C13" library="rcl" package="C0603" value="" x="152.4" y="3.175" rot="R90"/>
- <element name="C2" library="rcl" package="C0603" value="" x="27.305" y="1.905" rot="R90"/>
- <element name="C3" library="rcl" package="C0603" value="" x="38.735" y="1.905" rot="R90"/>
- <element name="C4" library="rcl" package="C0603" value="" x="50.165" y="1.905" rot="R90"/>
- <element name="C5" library="rcl" package="C0603" value="" x="61.595" y="1.905" rot="R90"/>
- <element name="C6" library="rcl" package="C0603" value="" x="73.025" y="1.905" rot="R90"/>
- <element name="C7" library="rcl" package="C0603" value="" x="84.455" y="1.905" rot="R90"/>
- <element name="C8" library="rcl" package="C0603" value="" x="95.885" y="1.905" rot="R90"/>
- <element name="C9" library="rcl" package="C0603" value="" x="107.315" y="1.905" rot="R90"/>
- <element name="D1" library="SparkFun-LED" package="WS2812B" value="" x="10.16" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="10.16" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D10" library="SparkFun-LED" package="WS2812B" value="" x="113.03" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="113.03" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D11" library="SparkFun-LED" package="WS2812B" value="" x="124.46" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="124.46" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D12" library="SparkFun-LED" package="WS2812B" value="" x="135.89" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="135.89" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D13" library="SparkFun-LED" package="WS2812B" value="" x="147.32" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="147.32" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D2" library="SparkFun-LED" package="WS2812B" value="" x="21.59" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="21.59" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D3" library="SparkFun-LED" package="WS2812B" value="" x="33.02" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="33.02" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D4" library="SparkFun-LED" package="WS2812B" value="" x="44.45" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="44.45" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D5" library="SparkFun-LED" package="WS2812B" value="" x="55.88" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="55.88" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D6" library="SparkFun-LED" package="WS2812B" value="" x="67.31" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="67.31" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D7" library="SparkFun-LED" package="WS2812B" value="" x="78.74" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="78.74" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D8" library="SparkFun-LED" package="WS2812B" value="" x="90.17" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="90.17" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="D9" library="SparkFun-LED" package="WS2812B" value="" x="101.6" y="5.08" rot="R180">
- <attribute name="PROD_ID" value="DIO-12503" x="101.6" y="5.08" size="1.778" layer="27" rot="R180" display="off"/>
- </element>
- <element name="JP1" library="adafruit" package="1X03" value="" x="1.27" y="5.08" rot="R90"/>
- <element name="JP2" library="adafruit" package="1X03" value="" x="156.21" y="5.08" rot="R90"/>
- <element name="R1" library="rcl" package="R0603" value="" x="5.08" y="4.445" rot="R270"/>
- <element name="R10" library="rcl" package="R0603" value="" x="107.315" y="5.715" rot="R270"/>
- <element name="R11" library="rcl" package="R0603" value="" x="118.745" y="5.715" rot="R270"/>
- <element name="R12" library="rcl" package="R0603" value="" x="130.175" y="5.715" rot="R270"/>
- <element name="R13" library="rcl" package="R0603" value="" x="141.605" y="5.715" rot="R270"/>
- <element name="R2" library="rcl" package="R0603" value="" x="15.875" y="5.715" rot="R270"/>
- <element name="R3" library="rcl" package="R0603" value="" x="27.305" y="5.715" rot="R270"/>
- <element name="R4" library="rcl" package="R0603" value="" x="38.735" y="5.715" rot="R270"/>
- <element name="R5" library="rcl" package="R0603" value="" x="50.165" y="5.715" rot="R270"/>
- <element name="R6" library="rcl" package="R0603" value="" x="61.595" y="5.715" rot="R270"/>
- <element name="R7" library="rcl" package="R0603" value="" x="73.025" y="5.715" rot="R270"/>
- <element name="R8" library="rcl" package="R0603" value="" x="84.455" y="5.715" rot="R270"/>
- <element name="R9" library="rcl" package="R0603" value="" x="95.885" y="5.715" rot="R270"/>
- </elements>
- <signals>
- <signal name="VCC">
- <contactref element="D1" pad="1"/>
- <contactref element="C1" pad="1"/>
- <contactref element="D2" pad="1"/>
- <contactref element="C2" pad="1"/>
- <contactref element="D3" pad="1"/>
- <contactref element="C3" pad="1"/>
- <contactref element="D4" pad="1"/>
- <contactref element="C4" pad="1"/>
- <contactref element="D5" pad="1"/>
- <contactref element="C5" pad="1"/>
- <contactref element="D6" pad="1"/>
- <contactref element="C6" pad="1"/>
- <contactref element="D7" pad="1"/>
- <contactref element="C7" pad="1"/>
- <contactref element="D8" pad="1"/>
- <contactref element="C8" pad="1"/>
- <contactref element="D9" pad="1"/>
- <contactref element="C9" pad="1"/>
- <contactref element="D10" pad="1"/>
- <contactref element="C10" pad="1"/>
- <contactref element="D11" pad="1"/>
- <contactref element="C11" pad="1"/>
- <contactref element="D12" pad="1"/>
- <contactref element="C12" pad="1"/>
- <contactref element="D13" pad="1"/>
- <contactref element="C13" pad="1"/>
- <contactref element="JP1" pad="1"/>
- <contactref element="JP2" pad="1"/>
- <polygon width="0.4064" layer="1" isolate="0.3048" rank="2">
- <vertex x="0" y="-1.27"/>
- <vertex x="0" y="3.81"/>
- <vertex x="13.97" y="3.81"/>
- <vertex x="13.97" y="1.27"/>
- <vertex x="17.78" y="1.27"/>
- <vertex x="17.78" y="3.81"/>
- <vertex x="25.4" y="3.81"/>
- <vertex x="25.4" y="1.27"/>
- <vertex x="29.21" y="1.27"/>
- <vertex x="29.21" y="3.81"/>
- <vertex x="36.83" y="3.81"/>
- <vertex x="36.83" y="1.27"/>
- <vertex x="40.64" y="1.27"/>
- <vertex x="40.64" y="3.81"/>
- <vertex x="48.26" y="3.81"/>
- <vertex x="48.26" y="1.27"/>
- <vertex x="52.07" y="1.27"/>
- <vertex x="52.07" y="3.81"/>
- <vertex x="59.69" y="3.81"/>
- <vertex x="59.69" y="1.27"/>
- <vertex x="63.5" y="1.27"/>
- <vertex x="63.5" y="3.81"/>
- <vertex x="71.12" y="3.81"/>
- <vertex x="71.12" y="1.27"/>
- <vertex x="74.93" y="1.27"/>
- <vertex x="74.93" y="3.81"/>
- <vertex x="82.55" y="3.81"/>
- <vertex x="82.55" y="1.27"/>
- <vertex x="86.36" y="1.27"/>
- <vertex x="86.36" y="3.81"/>
- <vertex x="93.98" y="3.81"/>
- <vertex x="93.98" y="1.27"/>
- <vertex x="97.79" y="1.27"/>
- <vertex x="97.79" y="3.81"/>
- <vertex x="105.41" y="3.81"/>
- <vertex x="105.41" y="1.27"/>
- <vertex x="109.22" y="1.27"/>
- <vertex x="109.22" y="3.81"/>
- <vertex x="116.84" y="3.81"/>
- <vertex x="116.84" y="1.27"/>
- <vertex x="120.65" y="1.27"/>
- <vertex x="120.65" y="3.81"/>
- <vertex x="128.27" y="3.81"/>
- <vertex x="128.27" y="1.27"/>
- <vertex x="132.08" y="1.27"/>
- <vertex x="132.08" y="3.81"/>
- <vertex x="139.7" y="3.81"/>
- <vertex x="139.7" y="1.27"/>
- <vertex x="143.51" y="1.27"/>
- <vertex x="143.51" y="3.81"/>
- <vertex x="151.13" y="3.81"/>
- <vertex x="151.13" y="2.54"/>
- <vertex x="161.29" y="2.54"/>
- <vertex x="161.29" y="-1.27"/>
- </polygon>
- </signal>
- <signal name="GND">
- <contactref element="D1" pad="3"/>
- <contactref element="C1" pad="2"/>
- <contactref element="D2" pad="3"/>
- <contactref element="C2" pad="2"/>
- <contactref element="D3" pad="3"/>
- <contactref element="C3" pad="2"/>
- <contactref element="D4" pad="3"/>
- <contactref element="C4" pad="2"/>
- <contactref element="D5" pad="3"/>
- <contactref element="C5" pad="2"/>
- <contactref element="D6" pad="3"/>
- <contactref element="C6" pad="2"/>
- <contactref element="D7" pad="3"/>
- <contactref element="C7" pad="2"/>
- <contactref element="D8" pad="3"/>
- <contactref element="C8" pad="2"/>
- <contactref element="D9" pad="3"/>
- <contactref element="C9" pad="2"/>
- <contactref element="D10" pad="3"/>
- <contactref element="C10" pad="2"/>
- <contactref element="D11" pad="3"/>
- <contactref element="C11" pad="2"/>
- <contactref element="D12" pad="3"/>
- <contactref element="C12" pad="2"/>
- <contactref element="D13" pad="3"/>
- <contactref element="C13" pad="2"/>
- <contactref element="JP1" pad="3"/>
- <contactref element="JP2" pad="3"/>
- <polygon width="0.4064" layer="1" isolate="0.3048">
- <vertex x="0" y="3.81"/>
- <vertex x="13.97" y="3.81"/>
- <vertex x="13.97" y="2.54"/>
- <vertex x="17.78" y="2.54"/>
- <vertex x="17.78" y="3.81"/>
- <vertex x="25.4" y="3.81"/>
- <vertex x="25.4" y="2.54"/>
- <vertex x="29.21" y="2.54"/>
- <vertex x="29.21" y="3.81"/>
- <vertex x="36.83" y="3.81"/>
- <vertex x="36.83" y="2.54"/>
- <vertex x="40.64" y="2.54"/>
- <vertex x="40.64" y="3.81"/>
- <vertex x="48.26" y="3.81"/>
- <vertex x="48.26" y="2.54"/>
- <vertex x="52.07" y="2.54"/>
- <vertex x="52.07" y="3.81"/>
- <vertex x="59.69" y="3.81"/>
- <vertex x="59.69" y="2.54"/>
- <vertex x="63.5" y="2.54"/>
- <vertex x="63.5" y="3.81"/>
- <vertex x="71.12" y="3.81"/>
- <vertex x="71.12" y="2.54"/>
- <vertex x="74.93" y="2.54"/>
- <vertex x="74.93" y="3.81"/>
- <vertex x="82.55" y="3.81"/>
- <vertex x="82.55" y="2.54"/>
- <vertex x="86.36" y="2.54"/>
- <vertex x="86.36" y="3.81"/>
- <vertex x="93.98" y="3.81"/>
- <vertex x="93.98" y="2.54"/>
- <vertex x="97.79" y="2.54"/>
- <vertex x="97.79" y="3.81"/>
- <vertex x="105.41" y="3.81"/>
- <vertex x="105.41" y="2.54"/>
- <vertex x="109.22" y="2.54"/>
- <vertex x="109.22" y="3.81"/>
- <vertex x="116.84" y="3.81"/>
- <vertex x="116.84" y="2.54"/>
- <vertex x="120.65" y="2.54"/>
- <vertex x="120.65" y="3.81"/>
- <vertex x="128.27" y="3.81"/>
- <vertex x="128.27" y="2.54"/>
- <vertex x="132.08" y="2.54"/>
- <vertex x="132.08" y="3.81"/>
- <vertex x="139.7" y="3.81"/>
- <vertex x="139.7" y="2.54"/>
- <vertex x="143.51" y="2.54"/>
- <vertex x="143.51" y="3.81"/>
- <vertex x="151.13" y="3.81"/>
- <vertex x="151.13" y="2.54"/>
- <vertex x="160.02" y="2.54"/>
- <vertex x="160.02" y="10.16"/>
- <vertex x="0" y="10.16"/>
- </polygon>
- </signal>
- <signal name="N$1">
- <contactref element="D1" pad="2"/>
- <contactref element="R2" pad="1"/>
- <wire x1="12.737" y1="6.68" x2="15.875" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="15.875" y1="6.68" x2="15.875" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$2">
- <contactref element="D1" pad="4"/>
- <contactref element="R1" pad="2"/>
- <wire x1="7.583" y1="3.48" x2="5.08" y2="3.48" width="0.4064" layer="1"/>
- <wire x1="5.08" y1="3.48" x2="5.08" y2="3.595" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$3">
- <contactref element="D2" pad="2"/>
- <contactref element="R3" pad="1"/>
- <wire x1="24.167" y1="6.68" x2="27.305" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="27.305" y1="6.68" x2="27.305" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$4">
- <contactref element="D2" pad="4"/>
- <contactref element="R2" pad="2"/>
- <wire x1="15.875" y1="4.865" x2="19.013" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="19.013" y1="4.865" x2="19.013" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$5">
- <contactref element="D3" pad="2"/>
- <contactref element="R4" pad="1"/>
- <wire x1="35.597" y1="6.68" x2="38.735" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="38.735" y1="6.68" x2="38.735" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$6">
- <contactref element="D3" pad="4"/>
- <contactref element="R3" pad="2"/>
- <wire x1="27.305" y1="4.865" x2="30.443" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="30.443" y1="4.865" x2="30.443" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$7">
- <contactref element="D4" pad="2"/>
- <contactref element="R5" pad="1"/>
- <wire x1="47.027" y1="6.68" x2="50.165" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="50.165" y1="6.68" x2="50.165" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$8">
- <contactref element="D4" pad="4"/>
- <contactref element="R4" pad="2"/>
- <wire x1="38.735" y1="4.865" x2="41.873" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="41.873" y1="4.865" x2="41.873" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$9">
- <contactref element="D5" pad="2"/>
- <contactref element="R6" pad="1"/>
- <wire x1="58.457" y1="6.68" x2="61.595" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="61.595" y1="6.68" x2="61.595" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$10">
- <contactref element="D5" pad="4"/>
- <contactref element="R5" pad="2"/>
- <wire x1="50.165" y1="4.865" x2="53.303" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="53.303" y1="4.865" x2="53.303" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$11">
- <contactref element="D6" pad="2"/>
- <contactref element="R7" pad="1"/>
- <wire x1="69.887" y1="6.68" x2="73.025" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="73.025" y1="6.68" x2="73.025" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$12">
- <contactref element="D6" pad="4"/>
- <contactref element="R6" pad="2"/>
- <wire x1="61.595" y1="4.865" x2="64.733" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="64.733" y1="4.865" x2="64.733" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$13">
- <contactref element="D7" pad="2"/>
- <contactref element="R8" pad="1"/>
- <wire x1="81.317" y1="6.68" x2="84.455" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="84.455" y1="6.68" x2="84.455" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$14">
- <contactref element="D7" pad="4"/>
- <contactref element="R7" pad="2"/>
- <wire x1="73.025" y1="4.865" x2="76.163" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="76.163" y1="4.865" x2="76.163" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$15">
- <contactref element="D8" pad="2"/>
- <contactref element="R9" pad="1"/>
- <wire x1="92.747" y1="6.68" x2="95.885" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="95.885" y1="6.68" x2="95.885" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$16">
- <contactref element="D8" pad="4"/>
- <contactref element="R8" pad="2"/>
- <wire x1="84.455" y1="4.865" x2="87.593" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="87.593" y1="4.865" x2="87.593" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$17">
- <contactref element="D9" pad="2"/>
- <contactref element="R10" pad="1"/>
- <wire x1="104.177" y1="6.68" x2="107.315" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="107.315" y1="6.68" x2="107.315" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$18">
- <contactref element="D9" pad="4"/>
- <contactref element="R9" pad="2"/>
- <wire x1="95.885" y1="4.865" x2="99.023" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="99.023" y1="4.865" x2="99.023" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$19">
- <contactref element="D10" pad="2"/>
- <contactref element="R11" pad="1"/>
- <wire x1="115.607" y1="6.68" x2="118.745" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="118.745" y1="6.68" x2="118.745" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$20">
- <contactref element="D10" pad="4"/>
- <contactref element="R10" pad="2"/>
- <wire x1="107.315" y1="4.865" x2="110.453" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="110.453" y1="4.865" x2="110.453" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$21">
- <contactref element="D11" pad="2"/>
- <contactref element="R12" pad="1"/>
- <wire x1="127.037" y1="6.68" x2="130.175" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="130.175" y1="6.68" x2="130.175" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$22">
- <contactref element="D11" pad="4"/>
- <contactref element="R11" pad="2"/>
- <wire x1="118.745" y1="4.865" x2="121.883" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="121.883" y1="4.865" x2="121.883" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$23">
- <contactref element="D12" pad="2"/>
- <contactref element="R13" pad="1"/>
- <wire x1="138.467" y1="6.68" x2="141.605" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="141.605" y1="6.68" x2="141.605" y2="6.565" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$24">
- <contactref element="D12" pad="4"/>
- <contactref element="R12" pad="2"/>
- <wire x1="130.175" y1="4.865" x2="133.313" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="133.313" y1="4.865" x2="133.313" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$25">
- <contactref element="D13" pad="2"/>
- <contactref element="JP2" pad="2"/>
- <wire x1="149.897" y1="6.68" x2="153.67" y2="6.68" width="0.4064" layer="1"/>
- <wire x1="153.67" y1="6.68" x2="153.67" y2="5.08" width="0.4064" layer="1"/>
- <wire x1="153.67" y1="5.08" x2="156.21" y2="5.08" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$26">
- <contactref element="D13" pad="4"/>
- <contactref element="R13" pad="2"/>
- <wire x1="141.605" y1="4.865" x2="144.743" y2="4.865" width="0.4064" layer="1"/>
- <wire x1="144.743" y1="4.865" x2="144.743" y2="3.48" width="0.4064" layer="1"/>
- </signal>
- <signal name="N$27">
- <contactref element="R1" pad="1"/>
- <contactref element="JP1" pad="2"/>
- <wire x1="5.08" y1="5.295" x2="1.27" y2="5.295" width="0.4064" layer="1"/>
- <wire x1="1.27" y1="5.295" x2="1.27" y2="5.08" width="0.4064" layer="1"/>
- </signal>
- </signals>
- </board>
- </drawing>
- </eagle>
|