regulator.s#4 330 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="9.6.2">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  13. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  14. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  15. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  16. <layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/>
  17. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  18. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  19. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  20. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  21. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  22. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  23. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  24. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  25. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  26. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  27. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  28. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  29. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  30. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  31. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  32. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  33. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  34. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  35. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  36. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  37. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  38. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  39. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  40. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  41. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  42. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  43. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  44. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  45. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  46. <layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
  47. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
  50. <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
  51. <layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
  52. <layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
  53. <layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
  54. <layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/>
  56. <layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/>
  57. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  58. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  59. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  60. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  61. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  62. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  63. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  64. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  65. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  66. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  67. <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
  68. <layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
  69. <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
  71. <layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
  72. <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
  76. <layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
  77. <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
  78. <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
  79. <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
  80. <layer number="113" name="IDFDebug" color="4" fill="1" visible="yes" active="yes"/>
  81. <layer number="114" name="Badge_Outline" color="7" fill="1" visible="yes" active="yes"/>
  82. <layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/>
  83. <layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
  84. <layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
  85. <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
  86. <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
  87. <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
  88. <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
  89. <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
  90. <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
  91. <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
  92. <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
  93. <layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
  94. <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
  95. <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
  96. <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
  97. <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
  98. <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
  99. <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
  100. <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
  101. <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
  102. <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
  103. <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
  104. <layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
  105. <layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
  106. <layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
  107. <layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
  108. <layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
  109. <layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
  110. <layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
  111. <layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
  112. <layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
  113. <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
  114. <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
  115. <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
  116. <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
  117. <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
  118. <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
  119. <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
  120. <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
  121. <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
  122. <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
  123. <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
  124. <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
  125. <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
  126. <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
  127. <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
  128. <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
  129. <layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
  130. <layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
  131. <layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
  132. <layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
  133. <layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
  134. <layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
  135. <layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
  136. <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="yes" active="yes"/>
  137. <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="yes" active="yes"/>
  138. <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
  139. <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
  140. <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
  141. <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
  142. <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
  143. <layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
  144. </layers>
  145. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  146. <libraries>
  147. <library name="regulator">
  148. <packages>
  149. <package name="DIP8" urn="urn:adsk.eagle:footprint:4470/1">
  150. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; Gull Wing Surface Mount Optioon 300&lt;p&gt;
  151. Source: http://www.avagotech.com/docs/AV02-0410EN</description>
  152. <wire x1="-4.81" y1="-3.075" x2="4.81" y2="-3.075" width="0.2032" layer="51"/>
  153. <wire x1="4.81" y1="-3.075" x2="4.81" y2="3.075" width="0.2032" layer="21"/>
  154. <wire x1="4.81" y1="3.075" x2="-4.81" y2="3.075" width="0.2032" layer="51"/>
  155. <wire x1="-4.81" y1="3.075" x2="-4.81" y2="-3.075" width="0.2032" layer="21"/>
  156. <circle x="-3.81" y="-2.159" radius="0.3667" width="0" layer="21"/>
  157. <smd name="1" x="-3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  158. <smd name="2" x="-1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  159. <smd name="3" x="1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  160. <smd name="4" x="3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  161. <smd name="5" x="3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  162. <smd name="6" x="1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  163. <smd name="7" x="-1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  164. <smd name="8" x="-3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  165. <text x="-5.635" y="-3.1351" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  166. <text x="6.905" y="-4.4051" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  167. <rectangle x1="-4.0899" y1="-4.825" x2="-3.5301" y2="-3.81" layer="51"/>
  168. <rectangle x1="-1.5499" y1="-4.825" x2="-0.9901" y2="-3.81" layer="51"/>
  169. <rectangle x1="0.9901" y1="-4.825" x2="1.5499" y2="-3.81" layer="51"/>
  170. <rectangle x1="3.5301" y1="-4.825" x2="4.0899" y2="-3.81" layer="51"/>
  171. <rectangle x1="3.5301" y1="3.81" x2="4.0899" y2="4.825" layer="51"/>
  172. <rectangle x1="0.9901" y1="3.81" x2="1.5499" y2="4.825" layer="51"/>
  173. <rectangle x1="-1.5499" y1="3.81" x2="-0.9901" y2="4.825" layer="51"/>
  174. <rectangle x1="-4.0899" y1="3.81" x2="-3.5301" y2="4.825" layer="51"/>
  175. <rectangle x1="-2.15" y1="3.1" x2="-0.4" y2="3.81" layer="51" rot="R180"/>
  176. <rectangle x1="-4.1" y1="3.1" x2="-2.94" y2="3.81" layer="51" rot="R180"/>
  177. <rectangle x1="0.39" y1="3.1" x2="2.14" y2="3.81" layer="51" rot="R180"/>
  178. <rectangle x1="2.93" y1="3.1" x2="4.1" y2="3.81" layer="51" rot="R180"/>
  179. <rectangle x1="-4.075" y1="-3.81" x2="-2.93" y2="-3.1" layer="51"/>
  180. <rectangle x1="-2.14" y1="-3.81" x2="-0.39" y2="-3.1" layer="51"/>
  181. <rectangle x1="0.4" y1="-3.81" x2="2.15" y2="-3.1" layer="51"/>
  182. <rectangle x1="2.94" y1="-3.81" x2="4.1" y2="-3.1" layer="51"/>
  183. </package>
  184. <package name="CAPAE1230X1250N" urn="urn:adsk.eagle:footprint:21812987/1">
  185. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  186. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  187. <wire x1="-6.25" y1="1.3186" x2="-6.25" y2="3.6573" width="0.12" layer="21"/>
  188. <wire x1="-6.25" y1="3.6573" x2="-3.6573" y2="6.25" width="0.12" layer="21"/>
  189. <wire x1="-3.6573" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="21"/>
  190. <wire x1="6.25" y1="6.25" x2="6.25" y2="1.3186" width="0.12" layer="21"/>
  191. <wire x1="-6.25" y1="-1.3186" x2="-6.25" y2="-3.6573" width="0.12" layer="21"/>
  192. <wire x1="-6.25" y1="-3.6573" x2="-3.6573" y2="-6.25" width="0.12" layer="21"/>
  193. <wire x1="-3.6573" y1="-6.25" x2="6.25" y2="-6.25" width="0.12" layer="21"/>
  194. <wire x1="6.25" y1="-6.25" x2="6.25" y2="-1.3186" width="0.12" layer="21"/>
  195. <wire x1="6.25" y1="-6.25" x2="-6.25" y2="-6.25" width="0.12" layer="51"/>
  196. <wire x1="-6.25" y1="-6.25" x2="-6.25" y2="6.25" width="0.12" layer="51"/>
  197. <wire x1="-6.25" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="51"/>
  198. <wire x1="6.25" y1="6.25" x2="6.25" y2="-6.25" width="0.12" layer="51"/>
  199. <smd name="1" x="-4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  200. <smd name="2" x="4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  201. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  202. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  203. </package>
  204. </packages>
  205. <packages3d>
  206. <package3d name="DIP8" urn="urn:adsk.eagle:package:8089856/1" locally_modified="yes" type="box">
  207. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; &lt;p&gt;
  208. dual in line package'</description>
  209. <packageinstances>
  210. <packageinstance name="DIP8"/>
  211. </packageinstances>
  212. </package3d>
  213. <package3d name="CAPAE1230X1250N" urn="urn:adsk.eagle:package:21812541/1" type="model">
  214. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  215. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  216. <packageinstances>
  217. <packageinstance name="CAPAE1230X1250N"/>
  218. </packageinstances>
  219. </package3d>
  220. </packages3d>
  221. <symbols>
  222. <symbol name="MX5035">
  223. <description>The MAX5035 easy-to-use, high-efficiency, high-volt-age, step-down DC-DC converter operates from aninput voltage up to 76V and consumes only 270μA qui-escent current at no load.</description>
  224. <wire x1="-10.16" y1="12.7" x2="10.16" y2="12.7" width="0.254" layer="94"/>
  225. <wire x1="10.16" y1="12.7" x2="10.16" y2="-12.7" width="0.254" layer="94"/>
  226. <wire x1="10.16" y1="-12.7" x2="-10.16" y2="-12.7" width="0.254" layer="94"/>
  227. <wire x1="-10.16" y1="-12.7" x2="-10.16" y2="12.7" width="0.254" layer="94"/>
  228. <pin name="BST" x="-15.24" y="7.62" length="middle" direction="in"/>
  229. <pin name="VD" x="-15.24" y="2.54" length="middle" direction="in"/>
  230. <pin name="SGND" x="-15.24" y="-2.54" length="middle" direction="in"/>
  231. <pin name="FB" x="-15.24" y="-7.62" length="middle" direction="in"/>
  232. <pin name="ON/OFF" x="15.24" y="-7.62" length="middle" direction="in" rot="R180"/>
  233. <pin name="GND" x="15.24" y="-2.54" length="middle" direction="pwr" rot="R180"/>
  234. <pin name="VIN" x="15.24" y="2.54" length="middle" direction="pwr" rot="R180"/>
  235. <pin name="LX" x="15.24" y="7.62" length="middle" direction="pwr" rot="R180"/>
  236. <text x="-10.16" y="15.24" size="1.778" layer="95">&gt;NAME</text>
  237. <text x="-10.16" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  238. </symbol>
  239. <symbol name="C">
  240. <wire x1="-2.54" y1="1.27" x2="2.54" y2="1.27" width="0.254" layer="94"/>
  241. <wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.254" layer="94" curve="-90"/>
  242. <pin name="P$1" x="0" y="6.35" visible="off" length="middle" direction="pwr" rot="R270"/>
  243. <pin name="P$2" x="0" y="-5.08" visible="off" length="middle" direction="pwr" rot="R90"/>
  244. <text x="-3.81" y="1.27" size="1.778" layer="94">+</text>
  245. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  246. <text x="2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  247. </symbol>
  248. </symbols>
  249. <devicesets>
  250. <deviceset name="MAX5035">
  251. <description>The MAX5035 easy-to-use, high-efficiency, high-volt-age, step-down DC-DC converter operates from aninput voltage up to 76V and consumes only 270μA qui-escent current at no load.</description>
  252. <gates>
  253. <gate name="G$1" symbol="MX5035" x="0" y="0"/>
  254. </gates>
  255. <devices>
  256. <device name="DIP8" package="DIP8">
  257. <connects>
  258. <connect gate="G$1" pin="BST" pad="1"/>
  259. <connect gate="G$1" pin="FB" pad="4"/>
  260. <connect gate="G$1" pin="GND" pad="6"/>
  261. <connect gate="G$1" pin="LX" pad="8"/>
  262. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  263. <connect gate="G$1" pin="SGND" pad="3"/>
  264. <connect gate="G$1" pin="VD" pad="2"/>
  265. <connect gate="G$1" pin="VIN" pad="7"/>
  266. </connects>
  267. <package3dinstances>
  268. <package3dinstance package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  269. </package3dinstances>
  270. <technologies>
  271. <technology name=""/>
  272. </technologies>
  273. </device>
  274. </devices>
  275. </deviceset>
  276. <deviceset name="C">
  277. <gates>
  278. <gate name="G$1" symbol="C" x="-1.27" y="-1.27"/>
  279. </gates>
  280. <devices>
  281. <device name="PANASONIC_H13" package="CAPAE1230X1250N">
  282. <connects>
  283. <connect gate="G$1" pin="P$1" pad="1"/>
  284. <connect gate="G$1" pin="P$2" pad="2"/>
  285. </connects>
  286. <package3dinstances>
  287. <package3dinstance package3d_urn="urn:adsk.eagle:package:21812541/1"/>
  288. </package3dinstances>
  289. <technologies>
  290. <technology name=""/>
  291. </technologies>
  292. </device>
  293. </devices>
  294. </deviceset>
  295. </devicesets>
  296. </library>
  297. <library name="Connectors" urn="urn:adsk.eagle:library:14555660">
  298. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Connectors&lt;/i&gt;&lt;/h3&gt;
  299. Visit us at &lt;a href="http://www.PCBLayout.com"&gt;PCBLayout.com&lt;/a&gt; for quick and hassle-free PCB Layout/Manufacturing ordering experience.
  300. &lt;BR&gt;
  301. &lt;BR&gt;
  302. This library has been generated by our experienced pcb layout engineers using current IPC and/or industry standards. We &lt;b&gt;believe&lt;/b&gt; the content to be accurate, complete and current. But, this content is provided as a courtesy and &lt;u&gt;user assumes all risk and responsiblity of it's usage&lt;/u&gt;.
  303. &lt;BR&gt;
  304. &lt;BR&gt;
  305. Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@PCBLayout.com&lt;/a&gt; if you have any questions/concerns regarding any of our content or services.</description>
  306. <packages>
  307. <package name="HDR-02" urn="urn:adsk.eagle:footprint:10989906/1" library_version="1">
  308. <pad name="1" x="-1.98" y="0" drill="1.65" shape="square"/>
  309. <pad name="2" x="1.98" y="0" drill="1.65"/>
  310. <wire x1="-3.93" y1="2" x2="-3.93" y2="-6.5" width="0.254" layer="51"/>
  311. <wire x1="-3.93" y1="-6.5" x2="3.93" y2="-6.5" width="0.254" layer="51"/>
  312. <wire x1="3.93" y1="-6.5" x2="3.93" y2="2" width="0.254" layer="51"/>
  313. <wire x1="3.93" y1="2" x2="-3.93" y2="2" width="0.254" layer="51"/>
  314. <wire x1="-3.93" y1="2" x2="-3.93" y2="-6.5" width="0.254" layer="21"/>
  315. <wire x1="-3.93" y1="-6.5" x2="3.93" y2="-6.5" width="0.254" layer="21"/>
  316. <wire x1="3.93" y1="-6.5" x2="3.93" y2="2" width="0.254" layer="21"/>
  317. <wire x1="3.93" y1="2" x2="-3.93" y2="2" width="0.254" layer="21"/>
  318. <wire x1="-4.18" y1="2.25" x2="4.18" y2="2.25" width="0.05" layer="39"/>
  319. <wire x1="4.18" y1="2.25" x2="4.18" y2="-6.75" width="0.05" layer="39"/>
  320. <wire x1="4.18" y1="-6.75" x2="-4.18" y2="-6.75" width="0.05" layer="39"/>
  321. <wire x1="-4.18" y1="-6.75" x2="-4.18" y2="2.25" width="0.05" layer="39"/>
  322. <circle x="-4.5" y="0.25" radius="0.1" width="0.2" layer="21"/>
  323. <text x="-3.81" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  324. <text x="-3.81" y="-8.89" size="1.27" layer="27">&gt;VALUE</text>
  325. </package>
  326. </packages>
  327. <packages3d>
  328. <package3d name="HDR-02" urn="urn:adsk.eagle:package:10989917/2" type="model" library_version="1">
  329. <packageinstances>
  330. <packageinstance name="HDR-02"/>
  331. </packageinstances>
  332. </package3d>
  333. </packages3d>
  334. <symbols>
  335. <symbol name="B2P-VH(LF)(SN)" urn="urn:adsk.eagle:symbol:10990964/1" library_version="1">
  336. <pin name="1" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" rot="R180"/>
  337. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" rot="R180"/>
  338. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  339. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  340. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  341. <wire x1="-2.54" y1="-2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  342. <wire x1="2.54" y1="-2.54" x2="2.54" y2="5.08" width="0.254" layer="94"/>
  343. <wire x1="2.54" y1="5.08" x2="-2.54" y2="5.08" width="0.254" layer="94"/>
  344. <text x="-2.54" y="5.842" size="1.778" layer="95">&gt;NAME</text>
  345. <text x="-2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  346. </symbol>
  347. </symbols>
  348. <devicesets>
  349. <deviceset name="B2P-VH(LF)(SN)" urn="urn:adsk.eagle:component:10990998/4" prefix="J" library_version="1">
  350. <description>&lt;h3&gt; CONN HEADER VERT 2POS 3.96MM &lt;/h3&gt;
  351. &lt;BR&gt;
  352. &lt;a href="http://www.jst-mfg.com/product/pdf/eng/eVH.pdf"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  353. <gates>
  354. <gate name="G$1" symbol="B2P-VH(LF)(SN)" x="0" y="-2.54"/>
  355. </gates>
  356. <devices>
  357. <device name="" package="HDR-02">
  358. <connects>
  359. <connect gate="G$1" pin="1" pad="1"/>
  360. <connect gate="G$1" pin="2" pad="2"/>
  361. </connects>
  362. <package3dinstances>
  363. <package3dinstance package3d_urn="urn:adsk.eagle:package:10989917/2"/>
  364. </package3dinstances>
  365. <technologies>
  366. <technology name="">
  367. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  368. <attribute name="DIGIKEY_PART_NUMBER" value="455-1639-ND" constant="no"/>
  369. <attribute name="MANUFACTURER" value="JST Sales America Inc." constant="no"/>
  370. <attribute name="MPN" value="B2P-VH(LF)(SN)" constant="no"/>
  371. </technology>
  372. </technologies>
  373. </device>
  374. </devices>
  375. </deviceset>
  376. </devicesets>
  377. </library>
  378. <library name="Capacitor" urn="urn:adsk.eagle:library:16290819">
  379. <description>&lt;B&gt;Capacitors - Fixed, Variable, Trimmers</description>
  380. <packages>
  381. <package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/2" library_version="4">
  382. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  383. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  384. <wire x1="0.55" y1="0.6286" x2="-0.55" y2="0.6286" width="0.127" layer="21"/>
  385. <wire x1="0.55" y1="-0.6286" x2="-0.55" y2="-0.6286" width="0.127" layer="21"/>
  386. <wire x1="0.55" y1="-0.3" x2="-0.55" y2="-0.3" width="0.12" layer="51"/>
  387. <wire x1="-0.55" y1="-0.3" x2="-0.55" y2="0.3" width="0.12" layer="51"/>
  388. <wire x1="-0.55" y1="0.3" x2="0.55" y2="0.3" width="0.12" layer="51"/>
  389. <wire x1="0.55" y1="0.3" x2="0.55" y2="-0.3" width="0.12" layer="51"/>
  390. <smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  391. <smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  392. <text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  393. <text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  394. </package>
  395. <package name="CAPC1110X102" urn="urn:adsk.eagle:footprint:16290845/2" library_version="4">
  396. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  397. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  398. <wire x1="0.66" y1="0.9552" x2="-0.66" y2="0.9552" width="0.127" layer="21"/>
  399. <wire x1="0.66" y1="-0.9552" x2="-0.66" y2="-0.9552" width="0.127" layer="21"/>
  400. <wire x1="0.66" y1="-0.635" x2="-0.66" y2="-0.635" width="0.12" layer="51"/>
  401. <wire x1="-0.66" y1="-0.635" x2="-0.66" y2="0.635" width="0.12" layer="51"/>
  402. <wire x1="-0.66" y1="0.635" x2="0.66" y2="0.635" width="0.12" layer="51"/>
  403. <wire x1="0.66" y1="0.635" x2="0.66" y2="-0.635" width="0.12" layer="51"/>
  404. <smd name="1" x="-0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  405. <smd name="2" x="0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  406. <text x="0" y="1.5902" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  407. <text x="0" y="-1.5902" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  408. </package>
  409. <package name="CAPC1608X85" urn="urn:adsk.eagle:footprint:16290847/2" library_version="4">
  410. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  411. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  412. <wire x1="0.875" y1="0.7991" x2="-0.875" y2="0.7991" width="0.127" layer="21"/>
  413. <wire x1="0.875" y1="-0.7991" x2="-0.875" y2="-0.7991" width="0.127" layer="21"/>
  414. <wire x1="0.875" y1="-0.475" x2="-0.875" y2="-0.475" width="0.12" layer="51"/>
  415. <wire x1="-0.875" y1="-0.475" x2="-0.875" y2="0.475" width="0.12" layer="51"/>
  416. <wire x1="-0.875" y1="0.475" x2="0.875" y2="0.475" width="0.12" layer="51"/>
  417. <wire x1="0.875" y1="0.475" x2="0.875" y2="-0.475" width="0.12" layer="51"/>
  418. <smd name="1" x="-0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  419. <smd name="2" x="0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  420. <text x="0" y="1.4341" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  421. <text x="0" y="-1.4341" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  422. </package>
  423. <package name="CAPC2012X110" urn="urn:adsk.eagle:footprint:16290848/2" library_version="4">
  424. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  425. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  426. <wire x1="1.1" y1="1.0467" x2="-1.1" y2="1.0467" width="0.127" layer="21"/>
  427. <wire x1="1.1" y1="-1.0467" x2="-1.1" y2="-1.0467" width="0.127" layer="21"/>
  428. <wire x1="1.1" y1="-0.725" x2="-1.1" y2="-0.725" width="0.12" layer="51"/>
  429. <wire x1="-1.1" y1="-0.725" x2="-1.1" y2="0.725" width="0.12" layer="51"/>
  430. <wire x1="-1.1" y1="0.725" x2="1.1" y2="0.725" width="0.12" layer="51"/>
  431. <wire x1="1.1" y1="0.725" x2="1.1" y2="-0.725" width="0.12" layer="51"/>
  432. <smd name="1" x="-0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  433. <smd name="2" x="0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  434. <text x="0" y="1.6817" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  435. <text x="0" y="-1.6817" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  436. </package>
  437. <package name="CAPC3216X135" urn="urn:adsk.eagle:footprint:16290836/2" library_version="4">
  438. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  439. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  440. <wire x1="1.7" y1="1.2217" x2="-1.7" y2="1.2217" width="0.127" layer="21"/>
  441. <wire x1="1.7" y1="-1.2217" x2="-1.7" y2="-1.2217" width="0.127" layer="21"/>
  442. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  443. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  444. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  445. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  446. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  447. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  448. <text x="0" y="1.8567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  449. <text x="0" y="-1.8567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  450. </package>
  451. <package name="CAPC3225X135" urn="urn:adsk.eagle:footprint:16290843/2" library_version="4">
  452. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  453. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  454. <wire x1="1.7" y1="1.6717" x2="-1.7" y2="1.6717" width="0.127" layer="21"/>
  455. <wire x1="1.7" y1="-1.6717" x2="-1.7" y2="-1.6717" width="0.12" layer="21"/>
  456. <wire x1="1.7" y1="-1.35" x2="-1.7" y2="-1.35" width="0.12" layer="51"/>
  457. <wire x1="-1.7" y1="-1.35" x2="-1.7" y2="1.35" width="0.12" layer="51"/>
  458. <wire x1="-1.7" y1="1.35" x2="1.7" y2="1.35" width="0.12" layer="51"/>
  459. <wire x1="1.7" y1="1.35" x2="1.7" y2="-1.35" width="0.12" layer="51"/>
  460. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  461. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  462. <text x="0" y="2.3067" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  463. <text x="0" y="-2.3067" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  464. </package>
  465. <package name="CAPC4532X135" urn="urn:adsk.eagle:footprint:16290841/2" library_version="4">
  466. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  467. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  468. <wire x1="2.4" y1="2.0217" x2="-2.4" y2="2.0217" width="0.127" layer="21"/>
  469. <wire x1="2.4" y1="-2.0217" x2="-2.4" y2="-2.0217" width="0.127" layer="21"/>
  470. <wire x1="2.4" y1="-1.7" x2="-2.4" y2="-1.7" width="0.12" layer="51"/>
  471. <wire x1="-2.4" y1="-1.7" x2="-2.4" y2="1.7" width="0.12" layer="51"/>
  472. <wire x1="-2.4" y1="1.7" x2="2.4" y2="1.7" width="0.12" layer="51"/>
  473. <wire x1="2.4" y1="1.7" x2="2.4" y2="-1.7" width="0.12" layer="51"/>
  474. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  475. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  476. <text x="0" y="2.6567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  477. <text x="0" y="-2.6567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  478. </package>
  479. <package name="CAPM3216X180" urn="urn:adsk.eagle:footprint:16290835/2" library_version="4">
  480. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  481. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  482. <wire x1="-1.7" y1="0.9084" x2="1.7" y2="0.9084" width="0.127" layer="21"/>
  483. <wire x1="-1.7" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.127" layer="21"/>
  484. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  485. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  486. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  487. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  488. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  489. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  490. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  491. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  492. </package>
  493. <package name="CAPM3528X210" urn="urn:adsk.eagle:footprint:16290844/2" library_version="4">
  494. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  495. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  496. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.127" layer="21"/>
  497. <wire x1="-1.85" y1="-1.5" x2="1.85" y2="-1.5" width="0.127" layer="21"/>
  498. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  499. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  500. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  501. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  502. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  503. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  504. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  505. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  506. </package>
  507. <package name="CAPM6032X280" urn="urn:adsk.eagle:footprint:16290839/2" library_version="4">
  508. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  509. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  510. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.127" layer="21"/>
  511. <wire x1="-3.15" y1="-1.75" x2="3.15" y2="-1.75" width="0.127" layer="21"/>
  512. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  513. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  514. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  515. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  516. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  517. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  518. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  519. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  520. </package>
  521. <package name="CAPM7343X310" urn="urn:adsk.eagle:footprint:16290840/2" library_version="4">
  522. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  523. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  524. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.127" layer="21"/>
  525. <wire x1="-3.8" y1="-2.3" x2="3.8" y2="-2.3" width="0.127" layer="21"/>
  526. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  527. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  528. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  529. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  530. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  531. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  532. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  533. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  534. </package>
  535. <package name="CAPC4564X110" urn="urn:adsk.eagle:footprint:16290837/2" library_version="4">
  536. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  537. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  538. <wire x1="2.4" y1="3.7179" x2="-2.4" y2="3.7179" width="0.127" layer="21"/>
  539. <wire x1="2.4" y1="-3.7179" x2="-2.4" y2="-3.7179" width="0.127" layer="21"/>
  540. <wire x1="2.4" y1="-3.4" x2="-2.4" y2="-3.4" width="0.12" layer="51"/>
  541. <wire x1="-2.4" y1="-3.4" x2="-2.4" y2="3.4" width="0.12" layer="51"/>
  542. <wire x1="-2.4" y1="3.4" x2="2.4" y2="3.4" width="0.12" layer="51"/>
  543. <wire x1="2.4" y1="3.4" x2="2.4" y2="-3.4" width="0.12" layer="51"/>
  544. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  545. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  546. <text x="0" y="4.3529" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  547. <text x="0" y="-4.3529" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  548. </package>
  549. <package name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:footprint:16290829/2" library_version="4">
  550. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  551. &lt;p&gt;Radial Non-Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 10.25 mm body diameter and 12.50 mm body height&lt;/p&gt;</description>
  552. <circle x="0" y="0" radius="5.25" width="0.127" layer="21"/>
  553. <circle x="0" y="0" radius="5.25" width="0.12" layer="51"/>
  554. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  555. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  556. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  557. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  558. </package>
  559. <package name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:footprint:16290850/2" library_version="4">
  560. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  561. &lt;p&gt;Radial Non-Polarized Capacitor package with 22.61 mm pitch (lead spacing), 2.40 mm lead diameter, 50.80 mm body diameter and 55.55 mm body height&lt;/p&gt;</description>
  562. <circle x="0" y="0" radius="25.79" width="0.127" layer="21"/>
  563. <circle x="0" y="0" radius="25.79" width="0.12" layer="51"/>
  564. <pad name="1" x="-11.305" y="0" drill="2.6" diameter="3.9"/>
  565. <pad name="2" x="11.305" y="0" drill="2.6" diameter="3.9"/>
  566. <text x="0" y="26.425" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  567. <text x="0" y="-26.425" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  568. </package>
  569. <package name="CAPMP3216X180N" urn="urn:adsk.eagle:footprint:16290838/1" library_version="4">
  570. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  571. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  572. <wire x1="1.7" y1="0.9084" x2="-2.5217" y2="0.9084" width="0.12" layer="21"/>
  573. <wire x1="-2.5217" y1="0.9084" x2="-2.5217" y2="-0.9084" width="0.12" layer="21"/>
  574. <wire x1="-2.5217" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.12" layer="21"/>
  575. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  576. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  577. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  578. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  579. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  580. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  581. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  582. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  583. </package>
  584. <package name="CAPMP3528X210N" urn="urn:adsk.eagle:footprint:16290842/1" library_version="4">
  585. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  586. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  587. <wire x1="1.85" y1="1.5" x2="-2.6717" y2="1.5" width="0.12" layer="21"/>
  588. <wire x1="-2.6717" y1="1.5" x2="-2.6717" y2="-1.5" width="0.12" layer="21"/>
  589. <wire x1="-2.6717" y1="-1.5" x2="1.85" y2="-1.5" width="0.12" layer="21"/>
  590. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  591. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  592. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  593. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  594. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  595. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  596. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  597. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  598. </package>
  599. <package name="CAPMP6032X280N" urn="urn:adsk.eagle:footprint:16290825/1" library_version="4">
  600. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  601. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  602. <wire x1="3.15" y1="1.75" x2="-3.9692" y2="1.75" width="0.12" layer="21"/>
  603. <wire x1="-3.9692" y1="1.75" x2="-3.9692" y2="-1.75" width="0.12" layer="21"/>
  604. <wire x1="-3.9692" y1="-1.75" x2="3.15" y2="-1.75" width="0.12" layer="21"/>
  605. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  606. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  607. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  608. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  609. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  610. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  611. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  612. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  613. </package>
  614. <package name="CAPMP7343X310N" urn="urn:adsk.eagle:footprint:16290846/1" library_version="4">
  615. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  616. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  617. <wire x1="3.8" y1="2.3" x2="-4.6192" y2="2.3" width="0.12" layer="21"/>
  618. <wire x1="-4.6192" y1="2.3" x2="-4.6192" y2="-2.3" width="0.12" layer="21"/>
  619. <wire x1="-4.6192" y1="-2.3" x2="3.8" y2="-2.3" width="0.12" layer="21"/>
  620. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  621. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  622. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  623. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  624. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  625. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  626. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  627. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  628. </package>
  629. <package name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:footprint:16290830/1" library_version="4">
  630. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  631. &lt;p&gt;Radial Polarized Capacitor package with 5.08 mm pitch (lead spacing), 0.65 mm lead diameter, 10.00 mm body diameter and 11.00 mm body height&lt;/p&gt;</description>
  632. <circle x="0" y="0" radius="5" width="0.12" layer="21"/>
  633. <circle x="0" y="0" radius="5" width="0.12" layer="51"/>
  634. <wire x1="-4.1325" y1="4.1326" x2="-3.3825" y2="4.1326" width="0.12" layer="21"/>
  635. <wire x1="-3.7575" y1="4.5076" x2="-3.7575" y2="3.7576" width="0.12" layer="21"/>
  636. <pad name="1" x="-2.54" y="0" drill="0.85" diameter="1.45"/>
  637. <pad name="2" x="2.54" y="0" drill="0.85" diameter="1.45"/>
  638. <text x="0" y="5.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  639. <text x="0" y="-5.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  640. </package>
  641. <package name="CAPAE1030X1050N" urn="urn:adsk.eagle:footprint:16290833/1" library_version="4">
  642. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  643. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  644. <wire x1="-5.25" y1="1.3117" x2="-5.25" y2="3.1538" width="0.12" layer="21"/>
  645. <wire x1="-5.25" y1="3.1538" x2="-3.1538" y2="5.25" width="0.12" layer="21"/>
  646. <wire x1="-3.1538" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="21"/>
  647. <wire x1="5.25" y1="5.25" x2="5.25" y2="1.3117" width="0.12" layer="21"/>
  648. <wire x1="-5.25" y1="-1.3117" x2="-5.25" y2="-3.1538" width="0.12" layer="21"/>
  649. <wire x1="-5.25" y1="-3.1538" x2="-3.1538" y2="-5.25" width="0.12" layer="21"/>
  650. <wire x1="-3.1538" y1="-5.25" x2="5.25" y2="-5.25" width="0.12" layer="21"/>
  651. <wire x1="5.25" y1="-5.25" x2="5.25" y2="-1.3117" width="0.12" layer="21"/>
  652. <wire x1="5.25" y1="-5.25" x2="-5.25" y2="-5.25" width="0.12" layer="51"/>
  653. <wire x1="-5.25" y1="-5.25" x2="-5.25" y2="5.25" width="0.12" layer="51"/>
  654. <wire x1="-5.25" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="51"/>
  655. <wire x1="5.25" y1="5.25" x2="5.25" y2="-5.25" width="0.12" layer="51"/>
  656. <smd name="1" x="-4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  657. <smd name="2" x="4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  658. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  659. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  660. </package>
  661. <package name="CAPAE830X1050N" urn="urn:adsk.eagle:footprint:16290826/1" library_version="4">
  662. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  663. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  664. <wire x1="-4.25" y1="1.3117" x2="-4.25" y2="2.6538" width="0.12" layer="21"/>
  665. <wire x1="-4.25" y1="2.6538" x2="-2.6538" y2="4.25" width="0.12" layer="21"/>
  666. <wire x1="-2.6538" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="21"/>
  667. <wire x1="4.25" y1="4.25" x2="4.25" y2="1.3117" width="0.12" layer="21"/>
  668. <wire x1="-4.25" y1="-1.3117" x2="-4.25" y2="-2.6538" width="0.12" layer="21"/>
  669. <wire x1="-4.25" y1="-2.6538" x2="-2.6538" y2="-4.25" width="0.12" layer="21"/>
  670. <wire x1="-2.6538" y1="-4.25" x2="4.25" y2="-4.25" width="0.12" layer="21"/>
  671. <wire x1="4.25" y1="-4.25" x2="4.25" y2="-1.3117" width="0.12" layer="21"/>
  672. <wire x1="4.25" y1="-4.25" x2="-4.25" y2="-4.25" width="0.12" layer="51"/>
  673. <wire x1="-4.25" y1="-4.25" x2="-4.25" y2="4.25" width="0.12" layer="51"/>
  674. <wire x1="-4.25" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="51"/>
  675. <wire x1="4.25" y1="4.25" x2="4.25" y2="-4.25" width="0.12" layer="51"/>
  676. <smd name="1" x="-3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  677. <smd name="2" x="3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  678. <text x="0" y="4.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  679. <text x="0" y="-4.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  680. </package>
  681. <package name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:footprint:16290828/1" library_version="4">
  682. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  683. &lt;p&gt;Radial Polarized Capacitor package with 10.00 mm pitch (lead spacing), 1.00 mm lead diameter, 22.75 mm body diameter and 32.00 mm body height&lt;/p&gt;</description>
  684. <circle x="0" y="0" radius="11.75" width="0.12" layer="21"/>
  685. <circle x="0" y="0" radius="11.75" width="0.12" layer="51"/>
  686. <wire x1="-8.9055" y1="8.9056" x2="-8.1555" y2="8.9056" width="0.12" layer="21"/>
  687. <wire x1="-8.5305" y1="9.2806" x2="-8.5305" y2="8.5306" width="0.12" layer="21"/>
  688. <pad name="1" x="-5" y="0" drill="1.2" diameter="1.8"/>
  689. <pad name="2" x="5" y="0" drill="1.2" diameter="1.8"/>
  690. <text x="0" y="12.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  691. <text x="0" y="-12.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  692. </package>
  693. <package name="CAPAE1905X1660N" urn="urn:adsk.eagle:footprint:16290827/1" library_version="4">
  694. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  695. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  696. <wire x1="-9.6" y1="1.4617" x2="-9.6" y2="5.4038" width="0.12" layer="21"/>
  697. <wire x1="-9.6" y1="5.4038" x2="-5.4038" y2="9.6" width="0.12" layer="21"/>
  698. <wire x1="-5.4038" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="21"/>
  699. <wire x1="9.6" y1="9.6" x2="9.6" y2="1.4617" width="0.12" layer="21"/>
  700. <wire x1="-9.6" y1="-1.4617" x2="-9.6" y2="-5.4038" width="0.12" layer="21"/>
  701. <wire x1="-9.6" y1="-5.4038" x2="-5.4038" y2="-9.6" width="0.12" layer="21"/>
  702. <wire x1="-5.4038" y1="-9.6" x2="9.6" y2="-9.6" width="0.12" layer="21"/>
  703. <wire x1="9.6" y1="-9.6" x2="9.6" y2="-1.4617" width="0.12" layer="21"/>
  704. <wire x1="9.6" y1="-9.6" x2="-9.6" y2="-9.6" width="0.12" layer="51"/>
  705. <wire x1="-9.6" y1="-9.6" x2="-9.6" y2="9.6" width="0.12" layer="51"/>
  706. <wire x1="-9.6" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="51"/>
  707. <wire x1="9.6" y1="9.6" x2="9.6" y2="-9.6" width="0.12" layer="51"/>
  708. <smd name="1" x="-6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  709. <smd name="2" x="6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  710. <text x="0" y="10.235" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  711. <text x="0" y="-10.235" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  712. </package>
  713. <package name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:footprint:16290834/1" library_version="4">
  714. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  715. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 1.10 mm lead diameter, 12.50 mm body diameter and 25.00 mm body height&lt;/p&gt;</description>
  716. <circle x="0" y="0" radius="6.25" width="0.12" layer="21"/>
  717. <circle x="0" y="0" radius="6.25" width="0.12" layer="51"/>
  718. <wire x1="-5.0164" y1="5.0165" x2="-4.2664" y2="5.0165" width="0.12" layer="21"/>
  719. <wire x1="-4.6414" y1="5.3915" x2="-4.6414" y2="4.6415" width="0.12" layer="21"/>
  720. <pad name="1" x="-2.75" y="0" drill="1.3" diameter="1.95"/>
  721. <pad name="2" x="2.75" y="0" drill="1.3" diameter="1.95"/>
  722. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  723. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  724. </package>
  725. <package name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:footprint:16290832/1" library_version="4">
  726. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  727. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 12.00 mm body diameter and 20.00 mm body height&lt;/p&gt;</description>
  728. <circle x="0" y="0" radius="6" width="0.12" layer="21"/>
  729. <circle x="0" y="0" radius="6" width="0.12" layer="51"/>
  730. <wire x1="-4.8397" y1="4.8397" x2="-4.0897" y2="4.8397" width="0.12" layer="21"/>
  731. <wire x1="-4.4647" y1="5.2147" x2="-4.4647" y2="4.4647" width="0.12" layer="21"/>
  732. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  733. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  734. <text x="0" y="6.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  735. <text x="0" y="-6.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  736. </package>
  737. <package name="CAPMP7443X430N" urn="urn:adsk.eagle:footprint:16290831/1" library_version="4">
  738. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  739. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  740. <wire x1="3.825" y1="2.25" x2="-4.6458" y2="2.25" width="0.12" layer="21"/>
  741. <wire x1="-4.6458" y1="2.25" x2="-4.6458" y2="-2.25" width="0.12" layer="21"/>
  742. <wire x1="-4.6458" y1="-2.25" x2="3.825" y2="-2.25" width="0.12" layer="21"/>
  743. <wire x1="3.825" y1="-2.25" x2="-3.825" y2="-2.25" width="0.12" layer="51"/>
  744. <wire x1="-3.825" y1="-2.25" x2="-3.825" y2="2.25" width="0.12" layer="51"/>
  745. <wire x1="-3.825" y1="2.25" x2="3.825" y2="2.25" width="0.12" layer="51"/>
  746. <wire x1="3.825" y1="2.25" x2="3.825" y2="-2.25" width="0.12" layer="51"/>
  747. <smd name="1" x="-3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  748. <smd name="2" x="3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  749. <text x="0" y="2.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  750. <text x="0" y="-2.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  751. </package>
  752. <package name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:footprint:16290824/1" library_version="4">
  753. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  754. &lt;p&gt;Axial Polarized Capacitor package with 34.10 mm pitch (lead spacing), 0.80 mm lead diameter, 30.25 mm body length and 18.25 mm body diameter&lt;/p&gt;</description>
  755. <wire x1="-15.25" y1="9.25" x2="-15.25" y2="-9.25" width="0.12" layer="21"/>
  756. <wire x1="-15.25" y1="-9.25" x2="15.25" y2="-9.25" width="0.12" layer="21"/>
  757. <wire x1="15.25" y1="-9.25" x2="15.25" y2="9.25" width="0.12" layer="21"/>
  758. <wire x1="15.25" y1="9.25" x2="-15.25" y2="9.25" width="0.12" layer="21"/>
  759. <wire x1="-11.4375" y1="9.25" x2="-11.4375" y2="-9.25" width="0.12" layer="21"/>
  760. <wire x1="-15.25" y1="0" x2="-15.996" y2="0" width="0.12" layer="21"/>
  761. <wire x1="15.25" y1="0" x2="15.996" y2="0" width="0.12" layer="21"/>
  762. <wire x1="15.25" y1="-9.25" x2="-15.25" y2="-9.25" width="0.12" layer="51"/>
  763. <wire x1="-15.25" y1="-9.25" x2="-15.25" y2="9.25" width="0.12" layer="51"/>
  764. <wire x1="-15.25" y1="9.25" x2="15.25" y2="9.25" width="0.12" layer="51"/>
  765. <wire x1="15.25" y1="9.25" x2="15.25" y2="-9.25" width="0.12" layer="51"/>
  766. <pad name="1" x="-17.05" y="0" drill="1" diameter="1.6"/>
  767. <pad name="2" x="17.05" y="0" drill="1" diameter="1.6"/>
  768. <text x="0" y="9.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  769. <text x="0" y="-9.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  770. </package>
  771. </packages>
  772. <packages3d>
  773. <package3d name="CAPC1005X60" urn="urn:adsk.eagle:package:16290895/2" type="model" library_version="4">
  774. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  775. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  776. <packageinstances>
  777. <packageinstance name="CAPC1005X60"/>
  778. </packageinstances>
  779. </package3d>
  780. <package3d name="CAPC1110X102" urn="urn:adsk.eagle:package:16290904/2" type="model" library_version="4">
  781. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  782. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  783. <packageinstances>
  784. <packageinstance name="CAPC1110X102"/>
  785. </packageinstances>
  786. </package3d>
  787. <package3d name="CAPC1608X85" urn="urn:adsk.eagle:package:16290898/2" type="model" library_version="4">
  788. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  789. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  790. <packageinstances>
  791. <packageinstance name="CAPC1608X85"/>
  792. </packageinstances>
  793. </package3d>
  794. <package3d name="CAPC2012X110" urn="urn:adsk.eagle:package:16290897/2" type="model" library_version="4">
  795. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  796. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  797. <packageinstances>
  798. <packageinstance name="CAPC2012X110"/>
  799. </packageinstances>
  800. </package3d>
  801. <package3d name="CAPC3216X135" urn="urn:adsk.eagle:package:16290893/2" type="model" library_version="4">
  802. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  803. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  804. <packageinstances>
  805. <packageinstance name="CAPC3216X135"/>
  806. </packageinstances>
  807. </package3d>
  808. <package3d name="CAPC3225X135" urn="urn:adsk.eagle:package:16290903/2" type="model" library_version="4">
  809. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  810. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  811. <packageinstances>
  812. <packageinstance name="CAPC3225X135"/>
  813. </packageinstances>
  814. </package3d>
  815. <package3d name="CAPC4532X135" urn="urn:adsk.eagle:package:16290900/2" type="model" library_version="4">
  816. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  817. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  818. <packageinstances>
  819. <packageinstance name="CAPC4532X135"/>
  820. </packageinstances>
  821. </package3d>
  822. <package3d name="CAPM3216X180" urn="urn:adsk.eagle:package:16290894/2" type="model" library_version="4">
  823. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  824. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  825. <packageinstances>
  826. <packageinstance name="CAPM3216X180"/>
  827. </packageinstances>
  828. </package3d>
  829. <package3d name="CAPM3528X210" urn="urn:adsk.eagle:package:16290902/2" type="model" library_version="4">
  830. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  831. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  832. <packageinstances>
  833. <packageinstance name="CAPM3528X210"/>
  834. </packageinstances>
  835. </package3d>
  836. <package3d name="CAPM6032X280" urn="urn:adsk.eagle:package:16290896/2" type="model" library_version="4">
  837. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  838. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  839. <packageinstances>
  840. <packageinstance name="CAPM6032X280"/>
  841. </packageinstances>
  842. </package3d>
  843. <package3d name="CAPM7343X310" urn="urn:adsk.eagle:package:16290891/2" type="model" library_version="4">
  844. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  845. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  846. <packageinstances>
  847. <packageinstance name="CAPM7343X310"/>
  848. </packageinstances>
  849. </package3d>
  850. <package3d name="CAPC4564X110L" urn="urn:adsk.eagle:package:16290887/3" type="model" library_version="4">
  851. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  852. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  853. <packageinstances>
  854. <packageinstance name="CAPC4564X110"/>
  855. </packageinstances>
  856. </package3d>
  857. <package3d name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:package:16290858/2" type="model" library_version="4">
  858. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  859. &lt;p&gt;Radial Non-Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 10.25 mm body diameter and 12.50 mm body height&lt;/p&gt;</description>
  860. <packageinstances>
  861. <packageinstance name="CAPRD550W60D1025H1250B"/>
  862. </packageinstances>
  863. </package3d>
  864. <package3d name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:package:16290864/2" type="model" library_version="4">
  865. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  866. &lt;p&gt;Radial Non-Polarized Capacitor package with 22.61 mm pitch (lead spacing), 2.40 mm lead diameter, 50.80 mm body diameter and 55.55 mm body height&lt;/p&gt;</description>
  867. <packageinstances>
  868. <packageinstance name="CAPRD2261W240D5080H5555B"/>
  869. </packageinstances>
  870. </package3d>
  871. <package3d name="CAPMP3216X180N" urn="urn:adsk.eagle:package:16290884/1" type="model" library_version="4">
  872. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  873. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  874. <packageinstances>
  875. <packageinstance name="CAPMP3216X180N"/>
  876. </packageinstances>
  877. </package3d>
  878. <package3d name="CAPMP3528X210N" urn="urn:adsk.eagle:package:16290901/1" type="model" library_version="4">
  879. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  880. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  881. <packageinstances>
  882. <packageinstance name="CAPMP3528X210N"/>
  883. </packageinstances>
  884. </package3d>
  885. <package3d name="CAPMP6032X280N" urn="urn:adsk.eagle:package:16290892/1" type="model" library_version="4">
  886. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  887. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  888. <packageinstances>
  889. <packageinstance name="CAPMP6032X280N"/>
  890. </packageinstances>
  891. </package3d>
  892. <package3d name="CAPMP7343X310N" urn="urn:adsk.eagle:package:16290885/1" type="model" library_version="4">
  893. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  894. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  895. <packageinstances>
  896. <packageinstance name="CAPMP7343X310N"/>
  897. </packageinstances>
  898. </package3d>
  899. <package3d name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:package:16290899/1" type="model" library_version="4">
  900. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  901. &lt;p&gt;Radial Polarized Capacitor package with 5.08 mm pitch (lead spacing), 0.65 mm lead diameter, 10.00 mm body diameter and 11.00 mm body height&lt;/p&gt;</description>
  902. <packageinstances>
  903. <packageinstance name="CAPPRD508W65D1000H1100B"/>
  904. </packageinstances>
  905. </package3d>
  906. <package3d name="CAPAE1030X1050N" urn="urn:adsk.eagle:package:16290882/1" type="model" library_version="4">
  907. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  908. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  909. <packageinstances>
  910. <packageinstance name="CAPAE1030X1050N"/>
  911. </packageinstances>
  912. </package3d>
  913. <package3d name="CAPAE830X1050N" urn="urn:adsk.eagle:package:16290889/1" type="model" library_version="4">
  914. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  915. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  916. <packageinstances>
  917. <packageinstance name="CAPAE830X1050N"/>
  918. </packageinstances>
  919. </package3d>
  920. <package3d name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:package:16290888/1" type="model" library_version="4">
  921. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  922. &lt;p&gt;Radial Polarized Capacitor package with 10.00 mm pitch (lead spacing), 1.00 mm lead diameter, 22.75 mm body diameter and 32.00 mm body height&lt;/p&gt;</description>
  923. <packageinstances>
  924. <packageinstance name="CAPPRD1000W100D2275H3200B"/>
  925. </packageinstances>
  926. </package3d>
  927. <package3d name="CAPAE1905X1660N" urn="urn:adsk.eagle:package:16290872/1" type="model" library_version="4">
  928. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  929. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  930. <packageinstances>
  931. <packageinstance name="CAPAE1905X1660N"/>
  932. </packageinstances>
  933. </package3d>
  934. <package3d name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:package:16290890/1" type="model" library_version="4">
  935. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  936. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 1.10 mm lead diameter, 12.50 mm body diameter and 25.00 mm body height&lt;/p&gt;</description>
  937. <packageinstances>
  938. <packageinstance name="CAPPRD550W110D1250H2500B"/>
  939. </packageinstances>
  940. </package3d>
  941. <package3d name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:package:16290874/1" type="model" library_version="4">
  942. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  943. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 12.00 mm body diameter and 20.00 mm body height&lt;/p&gt;</description>
  944. <packageinstances>
  945. <packageinstance name="CAPPRD550W60D1200H2000B"/>
  946. </packageinstances>
  947. </package3d>
  948. <package3d name="CAPMP7443X430N" urn="urn:adsk.eagle:package:16290866/1" type="model" library_version="4">
  949. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  950. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  951. <packageinstances>
  952. <packageinstance name="CAPMP7443X430N"/>
  953. </packageinstances>
  954. </package3d>
  955. <package3d name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:package:16290868/1" type="model" library_version="4">
  956. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  957. &lt;p&gt;Axial Polarized Capacitor package with 34.10 mm pitch (lead spacing), 0.80 mm lead diameter, 30.25 mm body length and 18.25 mm body diameter&lt;/p&gt;</description>
  958. <packageinstances>
  959. <packageinstance name="CAPPAD3410W80L3025D1825B"/>
  960. </packageinstances>
  961. </package3d>
  962. </packages3d>
  963. <symbols>
  964. <symbol name="C" urn="urn:adsk.eagle:symbol:16290820/1" library_version="4">
  965. <description>Capacitor</description>
  966. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  967. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  968. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  969. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  970. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  971. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  972. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  973. <text x="2.54" y="-2.54" size="1.778" layer="97">&gt;SPICEMODEL</text>
  974. <text x="2.54" y="0" size="1.778" layer="96">&gt;VALUE</text>
  975. <text x="2.54" y="-5.08" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  976. </symbol>
  977. <symbol name="CPOL" urn="urn:adsk.eagle:symbol:16290823/1" library_version="4">
  978. <wire x1="-1.524" y1="-0.889" x2="1.524" y2="-0.889" width="0.254" layer="94"/>
  979. <wire x1="1.524" y1="-0.889" x2="1.524" y2="0" width="0.254" layer="94"/>
  980. <wire x1="-1.524" y1="0" x2="-1.524" y2="-0.889" width="0.254" layer="94"/>
  981. <wire x1="-1.524" y1="0" x2="1.524" y2="0" width="0.254" layer="94"/>
  982. <text x="1.143" y="0.4826" size="1.778" layer="95">&gt;NAME</text>
  983. <text x="-0.5842" y="0.4064" size="1.27" layer="94" rot="R90">+</text>
  984. <text x="1.143" y="-4.5974" size="1.778" layer="96">&gt;VALUE</text>
  985. <rectangle x1="-1.651" y1="-2.54" x2="1.651" y2="-1.651" layer="94"/>
  986. <pin name="-" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  987. <pin name="+" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
  988. </symbol>
  989. </symbols>
  990. <devicesets>
  991. <deviceset name="C" urn="urn:adsk.eagle:component:16290909/4" prefix="C" uservalue="yes" library_version="4">
  992. <description>&lt;B&gt;Capacitor - Generic</description>
  993. <gates>
  994. <gate name="G$1" symbol="C" x="0" y="0"/>
  995. </gates>
  996. <devices>
  997. <device name="CHIP-0402(1005-METRIC)" package="CAPC1005X60">
  998. <connects>
  999. <connect gate="G$1" pin="1" pad="1"/>
  1000. <connect gate="G$1" pin="2" pad="2"/>
  1001. </connects>
  1002. <package3dinstances>
  1003. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290895/2"/>
  1004. </package3dinstances>
  1005. <technologies>
  1006. <technology name="_">
  1007. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1008. <attribute name="MANUFACTURER" value="" constant="no"/>
  1009. <attribute name="MPN" value="" constant="no"/>
  1010. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1011. <attribute name="PART_STATUS" value="" constant="no"/>
  1012. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1013. <attribute name="SERIES" value="" constant="no"/>
  1014. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1015. <attribute name="THERMALLOSS" value="" constant="no"/>
  1016. <attribute name="TYPE" value="" constant="no"/>
  1017. <attribute name="VALUE" value="" constant="no"/>
  1018. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1019. </technology>
  1020. </technologies>
  1021. </device>
  1022. <device name="CHIP-0504(1310-METRIC)" package="CAPC1110X102">
  1023. <connects>
  1024. <connect gate="G$1" pin="1" pad="1"/>
  1025. <connect gate="G$1" pin="2" pad="2"/>
  1026. </connects>
  1027. <package3dinstances>
  1028. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290904/2"/>
  1029. </package3dinstances>
  1030. <technologies>
  1031. <technology name="_">
  1032. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1033. <attribute name="MANUFACTURER" value="" constant="no"/>
  1034. <attribute name="MPN" value="" constant="no"/>
  1035. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1036. <attribute name="PART_STATUS" value="" constant="no"/>
  1037. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1038. <attribute name="SERIES" value="" constant="no"/>
  1039. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1040. <attribute name="THERMALLOSS" value="" constant="no"/>
  1041. <attribute name="TYPE" value="" constant="no"/>
  1042. <attribute name="VALUE" value="" constant="no"/>
  1043. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1044. </technology>
  1045. </technologies>
  1046. </device>
  1047. <device name="CHIP-0603(1608-METRIC)" package="CAPC1608X85">
  1048. <connects>
  1049. <connect gate="G$1" pin="1" pad="1"/>
  1050. <connect gate="G$1" pin="2" pad="2"/>
  1051. </connects>
  1052. <package3dinstances>
  1053. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290898/2"/>
  1054. </package3dinstances>
  1055. <technologies>
  1056. <technology name="_">
  1057. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1058. <attribute name="MANUFACTURER" value="" constant="no"/>
  1059. <attribute name="MPN" value="" constant="no"/>
  1060. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1061. <attribute name="PART_STATUS" value="" constant="no"/>
  1062. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1063. <attribute name="SERIES" value="" constant="no"/>
  1064. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1065. <attribute name="THERMALLOSS" value="" constant="no"/>
  1066. <attribute name="TYPE" value="" constant="no"/>
  1067. <attribute name="VALUE" value="" constant="no"/>
  1068. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1069. </technology>
  1070. </technologies>
  1071. </device>
  1072. <device name="CHIP-0805(2012-METRIC)" package="CAPC2012X110">
  1073. <connects>
  1074. <connect gate="G$1" pin="1" pad="1"/>
  1075. <connect gate="G$1" pin="2" pad="2"/>
  1076. </connects>
  1077. <package3dinstances>
  1078. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290897/2"/>
  1079. </package3dinstances>
  1080. <technologies>
  1081. <technology name="_">
  1082. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1083. <attribute name="MANUFACTURER" value="" constant="no"/>
  1084. <attribute name="MPN" value="" constant="no"/>
  1085. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1086. <attribute name="PART_STATUS" value="" constant="no"/>
  1087. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1088. <attribute name="SERIES" value="" constant="no"/>
  1089. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1090. <attribute name="THERMALLOSS" value="" constant="no"/>
  1091. <attribute name="TYPE" value="" constant="no"/>
  1092. <attribute name="VALUE" value="" constant="no"/>
  1093. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1094. </technology>
  1095. </technologies>
  1096. </device>
  1097. <device name="CHIP-1206(3216-METRIC)" package="CAPC3216X135">
  1098. <connects>
  1099. <connect gate="G$1" pin="1" pad="1"/>
  1100. <connect gate="G$1" pin="2" pad="2"/>
  1101. </connects>
  1102. <package3dinstances>
  1103. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290893/2"/>
  1104. </package3dinstances>
  1105. <technologies>
  1106. <technology name="_">
  1107. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1108. <attribute name="MANUFACTURER" value="" constant="no"/>
  1109. <attribute name="MPN" value="" constant="no"/>
  1110. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1111. <attribute name="PART_STATUS" value="" constant="no"/>
  1112. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1113. <attribute name="SERIES" value="" constant="no"/>
  1114. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1115. <attribute name="THERMALLOSS" value="" constant="no"/>
  1116. <attribute name="TYPE" value="" constant="no"/>
  1117. <attribute name="VALUE" value="" constant="no"/>
  1118. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1119. </technology>
  1120. </technologies>
  1121. </device>
  1122. <device name="CHIP-1210(3225-METRIC)" package="CAPC3225X135">
  1123. <connects>
  1124. <connect gate="G$1" pin="1" pad="1"/>
  1125. <connect gate="G$1" pin="2" pad="2"/>
  1126. </connects>
  1127. <package3dinstances>
  1128. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290903/2"/>
  1129. </package3dinstances>
  1130. <technologies>
  1131. <technology name="_">
  1132. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1133. <attribute name="MANUFACTURER" value="" constant="no"/>
  1134. <attribute name="MPN" value="" constant="no"/>
  1135. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1136. <attribute name="PART_STATUS" value="" constant="no"/>
  1137. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1138. <attribute name="SERIES" value="" constant="no"/>
  1139. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1140. <attribute name="THERMALLOSS" value="" constant="no"/>
  1141. <attribute name="TYPE" value="" constant="no"/>
  1142. <attribute name="VALUE" value="" constant="no"/>
  1143. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1144. </technology>
  1145. </technologies>
  1146. </device>
  1147. <device name="CHIP-1812(4532-METRIC)" package="CAPC4532X135">
  1148. <connects>
  1149. <connect gate="G$1" pin="1" pad="1"/>
  1150. <connect gate="G$1" pin="2" pad="2"/>
  1151. </connects>
  1152. <package3dinstances>
  1153. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290900/2"/>
  1154. </package3dinstances>
  1155. <technologies>
  1156. <technology name="_">
  1157. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1158. <attribute name="MANUFACTURER" value="" constant="no"/>
  1159. <attribute name="MPN" value="" constant="no"/>
  1160. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1161. <attribute name="PART_STATUS" value="" constant="no"/>
  1162. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1163. <attribute name="SERIES" value="" constant="no"/>
  1164. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1165. <attribute name="THERMALLOSS" value="" constant="no"/>
  1166. <attribute name="TYPE" value="" constant="no"/>
  1167. <attribute name="VALUE" value="" constant="no"/>
  1168. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1169. </technology>
  1170. </technologies>
  1171. </device>
  1172. <device name="TANTALUM-1206(3216-METRIC)" package="CAPM3216X180">
  1173. <connects>
  1174. <connect gate="G$1" pin="1" pad="1"/>
  1175. <connect gate="G$1" pin="2" pad="2"/>
  1176. </connects>
  1177. <package3dinstances>
  1178. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290894/2"/>
  1179. </package3dinstances>
  1180. <technologies>
  1181. <technology name="_">
  1182. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1183. <attribute name="MANUFACTURER" value="" constant="no"/>
  1184. <attribute name="MPN" value="" constant="no"/>
  1185. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1186. <attribute name="PART_STATUS" value="" constant="no"/>
  1187. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1188. <attribute name="SERIES" value="" constant="no"/>
  1189. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1190. <attribute name="THERMALLOSS" value="" constant="no"/>
  1191. <attribute name="TYPE" value="" constant="no"/>
  1192. <attribute name="VALUE" value="" constant="no"/>
  1193. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1194. </technology>
  1195. </technologies>
  1196. </device>
  1197. <device name="TANTALUM-1411(3528-METRIC)" package="CAPM3528X210">
  1198. <connects>
  1199. <connect gate="G$1" pin="1" pad="1"/>
  1200. <connect gate="G$1" pin="2" pad="2"/>
  1201. </connects>
  1202. <package3dinstances>
  1203. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290902/2"/>
  1204. </package3dinstances>
  1205. <technologies>
  1206. <technology name="_">
  1207. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1208. <attribute name="MANUFACTURER" value="" constant="no"/>
  1209. <attribute name="MPN" value="" constant="no"/>
  1210. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1211. <attribute name="PART_STATUS" value="" constant="no"/>
  1212. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1213. <attribute name="SERIES" value="" constant="no"/>
  1214. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1215. <attribute name="THERMALLOSS" value="" constant="no"/>
  1216. <attribute name="TYPE" value="" constant="no"/>
  1217. <attribute name="VALUE" value="" constant="no"/>
  1218. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1219. </technology>
  1220. </technologies>
  1221. </device>
  1222. <device name="TANTALUM-2412(6032-METRIC)" package="CAPM6032X280">
  1223. <connects>
  1224. <connect gate="G$1" pin="1" pad="1"/>
  1225. <connect gate="G$1" pin="2" pad="2"/>
  1226. </connects>
  1227. <package3dinstances>
  1228. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290896/2"/>
  1229. </package3dinstances>
  1230. <technologies>
  1231. <technology name="_">
  1232. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1233. <attribute name="MANUFACTURER" value="" constant="no"/>
  1234. <attribute name="MPN" value="" constant="no"/>
  1235. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1236. <attribute name="PART_STATUS" value="" constant="no"/>
  1237. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1238. <attribute name="SERIES" value="" constant="no"/>
  1239. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1240. <attribute name="THERMALLOSS" value="" constant="no"/>
  1241. <attribute name="TYPE" value="" constant="no"/>
  1242. <attribute name="VALUE" value="" constant="no"/>
  1243. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1244. </technology>
  1245. </technologies>
  1246. </device>
  1247. <device name="TANTALUM-2917(7343-METRIC)" package="CAPM7343X310">
  1248. <connects>
  1249. <connect gate="G$1" pin="1" pad="1"/>
  1250. <connect gate="G$1" pin="2" pad="2"/>
  1251. </connects>
  1252. <package3dinstances>
  1253. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290891/2"/>
  1254. </package3dinstances>
  1255. <technologies>
  1256. <technology name="_">
  1257. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1258. <attribute name="MANUFACTURER" value="" constant="no"/>
  1259. <attribute name="MPN" value="" constant="no"/>
  1260. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1261. <attribute name="PART_STATUS" value="" constant="no"/>
  1262. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1263. <attribute name="SERIES" value="" constant="no"/>
  1264. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1265. <attribute name="THERMALLOSS" value="" constant="no"/>
  1266. <attribute name="TYPE" value="" constant="no"/>
  1267. <attribute name="VALUE" value="" constant="no"/>
  1268. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1269. </technology>
  1270. </technologies>
  1271. </device>
  1272. <device name="CHIP-1825(4564-METRIC)" package="CAPC4564X110">
  1273. <connects>
  1274. <connect gate="G$1" pin="1" pad="1"/>
  1275. <connect gate="G$1" pin="2" pad="2"/>
  1276. </connects>
  1277. <package3dinstances>
  1278. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290887/3"/>
  1279. </package3dinstances>
  1280. <technologies>
  1281. <technology name="_">
  1282. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1283. <attribute name="MANUFACTURER" value="" constant="no"/>
  1284. <attribute name="MPN" value="" constant="no"/>
  1285. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1286. <attribute name="PART_STATUS" value="" constant="no"/>
  1287. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1288. <attribute name="SERIES" value="" constant="no"/>
  1289. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1290. <attribute name="THERMALLOSS" value="" constant="no"/>
  1291. <attribute name="TYPE" value="" constant="no"/>
  1292. <attribute name="VALUE" value="" constant="no"/>
  1293. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1294. </technology>
  1295. </technologies>
  1296. </device>
  1297. <device name="RADIAL-12.5MM-DIA" package="CAPRD550W60D1025H1250B">
  1298. <connects>
  1299. <connect gate="G$1" pin="1" pad="1"/>
  1300. <connect gate="G$1" pin="2" pad="2"/>
  1301. </connects>
  1302. <package3dinstances>
  1303. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290858/2"/>
  1304. </package3dinstances>
  1305. <technologies>
  1306. <technology name="_">
  1307. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1308. <attribute name="MANUFACTURER" value="" constant="no"/>
  1309. <attribute name="MPN" value="" constant="no"/>
  1310. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1311. <attribute name="PART_STATUS" value="" constant="no"/>
  1312. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1313. <attribute name="SERIES" value="" constant="no"/>
  1314. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1315. <attribute name="THERMALLOSS" value="" constant="no"/>
  1316. <attribute name="TYPE" value="" constant="no"/>
  1317. <attribute name="VALUE" value="" constant="no"/>
  1318. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1319. </technology>
  1320. </technologies>
  1321. </device>
  1322. <device name="RADIAL-55.5MM-DIA" package="CAPRD2261W240D5080H5555B">
  1323. <connects>
  1324. <connect gate="G$1" pin="1" pad="1"/>
  1325. <connect gate="G$1" pin="2" pad="2"/>
  1326. </connects>
  1327. <package3dinstances>
  1328. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290864/2"/>
  1329. </package3dinstances>
  1330. <technologies>
  1331. <technology name="_">
  1332. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1333. <attribute name="MANUFACTURER" value="" constant="no"/>
  1334. <attribute name="MPN" value="" constant="no"/>
  1335. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1336. <attribute name="PART_STATUS" value="" constant="no"/>
  1337. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1338. <attribute name="SERIES" value="" constant="no"/>
  1339. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1340. <attribute name="THERMALLOSS" value="" constant="no"/>
  1341. <attribute name="TYPE" value="" constant="no"/>
  1342. <attribute name="VALUE" value="" constant="no"/>
  1343. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1344. </technology>
  1345. </technologies>
  1346. </device>
  1347. </devices>
  1348. <spice>
  1349. <pinmapping spiceprefix="C">
  1350. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1351. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1352. </pinmapping>
  1353. </spice>
  1354. </deviceset>
  1355. <deviceset name="C-POL" urn="urn:adsk.eagle:component:16290908/4" prefix="C" uservalue="yes" library_version="4">
  1356. <description>&lt;B&gt;Capacitor Polarised - Generic</description>
  1357. <gates>
  1358. <gate name="G$1" symbol="CPOL" x="0" y="0"/>
  1359. </gates>
  1360. <devices>
  1361. <device name="TANTALUM-1206(3216-METRIC)" package="CAPMP3216X180N">
  1362. <connects>
  1363. <connect gate="G$1" pin="+" pad="1"/>
  1364. <connect gate="G$1" pin="-" pad="2"/>
  1365. </connects>
  1366. <package3dinstances>
  1367. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290884/1"/>
  1368. </package3dinstances>
  1369. <technologies>
  1370. <technology name="_">
  1371. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1372. <attribute name="MANUFACTURER" value="" constant="no"/>
  1373. <attribute name="MPN" value="" constant="no"/>
  1374. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1375. <attribute name="PART_STATUS" value="" constant="no"/>
  1376. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1377. <attribute name="SERIES" value="" constant="no"/>
  1378. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1379. <attribute name="THERMALLOSS" value="" constant="no"/>
  1380. <attribute name="TYPE" value="" constant="no"/>
  1381. <attribute name="VALUE" value="" constant="no"/>
  1382. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1383. </technology>
  1384. </technologies>
  1385. </device>
  1386. <device name="TANTALUM-1411(3528-METRIC)" package="CAPMP3528X210N">
  1387. <connects>
  1388. <connect gate="G$1" pin="+" pad="1"/>
  1389. <connect gate="G$1" pin="-" pad="2"/>
  1390. </connects>
  1391. <package3dinstances>
  1392. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290901/1"/>
  1393. </package3dinstances>
  1394. <technologies>
  1395. <technology name="_">
  1396. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1397. <attribute name="MANUFACTURER" value="" constant="no"/>
  1398. <attribute name="MPN" value="" constant="no"/>
  1399. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1400. <attribute name="PART_STATUS" value="" constant="no"/>
  1401. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1402. <attribute name="SERIES" value="" constant="no"/>
  1403. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1404. <attribute name="THERMALLOSS" value="" constant="no"/>
  1405. <attribute name="TYPE" value="" constant="no"/>
  1406. <attribute name="VALUE" value="" constant="no"/>
  1407. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1408. </technology>
  1409. </technologies>
  1410. </device>
  1411. <device name="TANTALUM-2412(6032-METRIC)" package="CAPMP6032X280N">
  1412. <connects>
  1413. <connect gate="G$1" pin="+" pad="1"/>
  1414. <connect gate="G$1" pin="-" pad="2"/>
  1415. </connects>
  1416. <package3dinstances>
  1417. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290892/1"/>
  1418. </package3dinstances>
  1419. <technologies>
  1420. <technology name="_">
  1421. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1422. <attribute name="MANUFACTURER" value="" constant="no"/>
  1423. <attribute name="MPN" value="" constant="no"/>
  1424. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1425. <attribute name="PART_STATUS" value="" constant="no"/>
  1426. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1427. <attribute name="SERIES" value="" constant="no"/>
  1428. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1429. <attribute name="THERMALLOSS" value="" constant="no"/>
  1430. <attribute name="TYPE" value="" constant="no"/>
  1431. <attribute name="VALUE" value="" constant="no"/>
  1432. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1433. </technology>
  1434. </technologies>
  1435. </device>
  1436. <device name="TANTALUM-2917(7343-METRIC)" package="CAPMP7343X310N">
  1437. <connects>
  1438. <connect gate="G$1" pin="+" pad="1"/>
  1439. <connect gate="G$1" pin="-" pad="2"/>
  1440. </connects>
  1441. <package3dinstances>
  1442. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290885/1"/>
  1443. </package3dinstances>
  1444. <technologies>
  1445. <technology name="_">
  1446. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1447. <attribute name="MANUFACTURER" value="" constant="no"/>
  1448. <attribute name="MPN" value="" constant="no"/>
  1449. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1450. <attribute name="PART_STATUS" value="" constant="no"/>
  1451. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1452. <attribute name="SERIES" value="" constant="no"/>
  1453. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1454. <attribute name="THERMALLOSS" value="" constant="no"/>
  1455. <attribute name="TYPE" value="" constant="no"/>
  1456. <attribute name="VALUE" value="" constant="no"/>
  1457. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1458. </technology>
  1459. </technologies>
  1460. </device>
  1461. <device name="RADIAL-11MM-DIA" package="CAPPRD508W65D1000H1100B">
  1462. <connects>
  1463. <connect gate="G$1" pin="+" pad="1"/>
  1464. <connect gate="G$1" pin="-" pad="2"/>
  1465. </connects>
  1466. <package3dinstances>
  1467. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290899/1"/>
  1468. </package3dinstances>
  1469. <technologies>
  1470. <technology name="_">
  1471. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1472. <attribute name="MANUFACTURER" value="" constant="no"/>
  1473. <attribute name="MPN" value="" constant="no"/>
  1474. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1475. <attribute name="PART_STATUS" value="" constant="no"/>
  1476. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1477. <attribute name="SERIES" value="" constant="no"/>
  1478. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1479. <attribute name="THERMALLOSS" value="" constant="no"/>
  1480. <attribute name="TYPE" value="" constant="no"/>
  1481. <attribute name="VALUE" value="" constant="no"/>
  1482. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1483. </technology>
  1484. </technologies>
  1485. </device>
  1486. <device name="ECAP-10.5MM" package="CAPAE1030X1050N">
  1487. <connects>
  1488. <connect gate="G$1" pin="+" pad="1"/>
  1489. <connect gate="G$1" pin="-" pad="2"/>
  1490. </connects>
  1491. <package3dinstances>
  1492. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290882/1"/>
  1493. </package3dinstances>
  1494. <technologies>
  1495. <technology name="_">
  1496. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1497. <attribute name="MANUFACTURER" value="" constant="no"/>
  1498. <attribute name="MPN" value="" constant="no"/>
  1499. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1500. <attribute name="PART_STATUS" value="" constant="no"/>
  1501. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1502. <attribute name="SERIES" value="" constant="no"/>
  1503. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1504. <attribute name="THERMALLOSS" value="" constant="no"/>
  1505. <attribute name="TYPE" value="" constant="no"/>
  1506. <attribute name="VALUE" value="" constant="no"/>
  1507. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1508. </technology>
  1509. </technologies>
  1510. </device>
  1511. <device name="ECAP-8.5MM" package="CAPAE830X1050N">
  1512. <connects>
  1513. <connect gate="G$1" pin="+" pad="1"/>
  1514. <connect gate="G$1" pin="-" pad="2"/>
  1515. </connects>
  1516. <package3dinstances>
  1517. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290889/1"/>
  1518. </package3dinstances>
  1519. <technologies>
  1520. <technology name="_">
  1521. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1522. <attribute name="MANUFACTURER" value="" constant="no"/>
  1523. <attribute name="MPN" value="" constant="no"/>
  1524. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1525. <attribute name="PART_STATUS" value="" constant="no"/>
  1526. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1527. <attribute name="SERIES" value="" constant="no"/>
  1528. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1529. <attribute name="THERMALLOSS" value="" constant="no"/>
  1530. <attribute name="TYPE" value="" constant="no"/>
  1531. <attribute name="VALUE" value="" constant="no"/>
  1532. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1533. </technology>
  1534. </technologies>
  1535. </device>
  1536. <device name="RADIAL-32MM-DIA" package="CAPPRD1000W100D2275H3200B">
  1537. <connects>
  1538. <connect gate="G$1" pin="+" pad="1"/>
  1539. <connect gate="G$1" pin="-" pad="2"/>
  1540. </connects>
  1541. <package3dinstances>
  1542. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290888/1"/>
  1543. </package3dinstances>
  1544. <technologies>
  1545. <technology name="_">
  1546. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1547. <attribute name="MANUFACTURER" value="" constant="no"/>
  1548. <attribute name="MPN" value="" constant="no"/>
  1549. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1550. <attribute name="PART_STATUS" value="" constant="no"/>
  1551. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1552. <attribute name="SERIES" value="" constant="no"/>
  1553. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1554. <attribute name="THERMALLOSS" value="" constant="no"/>
  1555. <attribute name="TYPE" value="" constant="no"/>
  1556. <attribute name="VALUE" value="" constant="no"/>
  1557. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1558. </technology>
  1559. </technologies>
  1560. </device>
  1561. <device name="ECAP-19.2MM" package="CAPAE1905X1660N">
  1562. <connects>
  1563. <connect gate="G$1" pin="+" pad="1"/>
  1564. <connect gate="G$1" pin="-" pad="2"/>
  1565. </connects>
  1566. <package3dinstances>
  1567. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290872/1"/>
  1568. </package3dinstances>
  1569. <technologies>
  1570. <technology name="_">
  1571. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1572. <attribute name="MANUFACTURER" value="" constant="no"/>
  1573. <attribute name="MPN" value="" constant="no"/>
  1574. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1575. <attribute name="PART_STATUS" value="" constant="no"/>
  1576. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1577. <attribute name="SERIES" value="" constant="no"/>
  1578. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1579. <attribute name="THERMALLOSS" value="" constant="no"/>
  1580. <attribute name="TYPE" value="" constant="no"/>
  1581. <attribute name="VALUE" value="" constant="no"/>
  1582. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1583. </technology>
  1584. </technologies>
  1585. </device>
  1586. <device name="RADIAL-25MM-DIA" package="CAPPRD550W110D1250H2500B">
  1587. <connects>
  1588. <connect gate="G$1" pin="+" pad="1"/>
  1589. <connect gate="G$1" pin="-" pad="2"/>
  1590. </connects>
  1591. <package3dinstances>
  1592. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290890/1"/>
  1593. </package3dinstances>
  1594. <technologies>
  1595. <technology name="_">
  1596. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1597. <attribute name="MANUFACTURER" value="" constant="no"/>
  1598. <attribute name="MPN" value="" constant="no"/>
  1599. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1600. <attribute name="PART_STATUS" value="" constant="no"/>
  1601. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1602. <attribute name="SERIES" value="" constant="no"/>
  1603. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1604. <attribute name="THERMALLOSS" value="" constant="no"/>
  1605. <attribute name="TYPE" value="" constant="no"/>
  1606. <attribute name="VALUE" value="" constant="no"/>
  1607. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1608. </technology>
  1609. </technologies>
  1610. </device>
  1611. <device name="RADIAL-20MM-DIA" package="CAPPRD550W60D1200H2000B">
  1612. <connects>
  1613. <connect gate="G$1" pin="+" pad="1"/>
  1614. <connect gate="G$1" pin="-" pad="2"/>
  1615. </connects>
  1616. <package3dinstances>
  1617. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290874/1"/>
  1618. </package3dinstances>
  1619. <technologies>
  1620. <technology name="_">
  1621. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1622. <attribute name="MANUFACTURER" value="" constant="no"/>
  1623. <attribute name="MPN" value="" constant="no"/>
  1624. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1625. <attribute name="PART_STATUS" value="" constant="no"/>
  1626. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1627. <attribute name="SERIES" value="" constant="no"/>
  1628. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1629. <attribute name="THERMALLOSS" value="" constant="no"/>
  1630. <attribute name="TYPE" value="" constant="no"/>
  1631. <attribute name="VALUE" value="" constant="no"/>
  1632. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1633. </technology>
  1634. </technologies>
  1635. </device>
  1636. <device name="TANTALUM-2920(7443-METRIC)" package="CAPMP7443X430N">
  1637. <connects>
  1638. <connect gate="G$1" pin="+" pad="1"/>
  1639. <connect gate="G$1" pin="-" pad="2"/>
  1640. </connects>
  1641. <package3dinstances>
  1642. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290866/1"/>
  1643. </package3dinstances>
  1644. <technologies>
  1645. <technology name="_">
  1646. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1647. <attribute name="MANUFACTURER" value="" constant="no"/>
  1648. <attribute name="MPN" value="" constant="no"/>
  1649. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1650. <attribute name="PART_STATUS" value="" constant="no"/>
  1651. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1652. <attribute name="SERIES" value="" constant="no"/>
  1653. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1654. <attribute name="THERMALLOSS" value="" constant="no"/>
  1655. <attribute name="TYPE" value="" constant="no"/>
  1656. <attribute name="VALUE" value="" constant="no"/>
  1657. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1658. </technology>
  1659. </technologies>
  1660. </device>
  1661. <device name="AXIAL-34.1MM-PITCH" package="CAPPAD3410W80L3025D1825B">
  1662. <connects>
  1663. <connect gate="G$1" pin="+" pad="1"/>
  1664. <connect gate="G$1" pin="-" pad="2"/>
  1665. </connects>
  1666. <package3dinstances>
  1667. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290868/1"/>
  1668. </package3dinstances>
  1669. <technologies>
  1670. <technology name="_">
  1671. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1672. <attribute name="MANUFACTURER" value="" constant="no"/>
  1673. <attribute name="MPN" value="" constant="no"/>
  1674. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1675. <attribute name="PART_STATUS" value="" constant="no"/>
  1676. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1677. <attribute name="SERIES" value="" constant="no"/>
  1678. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1679. <attribute name="THERMALLOSS" value="" constant="no"/>
  1680. <attribute name="TYPE" value="" constant="no"/>
  1681. <attribute name="VALUE" value="" constant="no"/>
  1682. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1683. </technology>
  1684. </technologies>
  1685. </device>
  1686. </devices>
  1687. </deviceset>
  1688. </devicesets>
  1689. </library>
  1690. <library name="Diodes" urn="urn:adsk.eagle:library:11396254">
  1691. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Diodes&lt;/i&gt;&lt;/h3&gt;
  1692. Visit us at &lt;a href="http://www.PCBLayout.com"&gt;PCBLayout.com&lt;/a&gt; for quick and hassle-free PCB Layout/Manufacturing ordering experience.
  1693. &lt;BR&gt;
  1694. &lt;BR&gt;
  1695. This library has been generated by our experienced pcb layout engineers using current IPC and/or industry standards. We &lt;b&gt;believe&lt;/b&gt; the content to be accurate, complete and current. But, this content is provided as a courtesy and &lt;u&gt;user assumes all risk and responsiblity of it's usage&lt;/u&gt;.
  1696. &lt;BR&gt;
  1697. &lt;BR&gt;
  1698. Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@PCBLayout.com&lt;/a&gt; if you have any questions/concerns regarding any of our content or services.</description>
  1699. <packages>
  1700. <package name="DO201AD" urn="urn:adsk.eagle:footprint:10898376/1" library_version="1">
  1701. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1702. <wire x1="-4.2" y1="0" x2="-4.2" y2="-2.525" width="0.127" layer="51"/>
  1703. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="51"/>
  1704. <wire x1="4.2" y1="-2.525" x2="4.2" y2="0" width="0.127" layer="51"/>
  1705. <wire x1="4.2" y1="0" x2="4.2" y2="2.525" width="0.127" layer="51"/>
  1706. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="51"/>
  1707. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="-2.525" width="0.127" layer="21"/>
  1708. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="21"/>
  1709. <wire x1="4.2" y1="-2.525" x2="4.2" y2="2.525" width="0.127" layer="21"/>
  1710. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="21"/>
  1711. <wire x1="-6.2" y1="0" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1712. <wire x1="4.2" y1="0" x2="6.2" y2="0" width="0.127" layer="51"/>
  1713. <wire x1="-5" y1="0" x2="-4.25" y2="0" width="0.127" layer="21"/>
  1714. <wire x1="4.25" y1="0" x2="5" y2="0" width="0.127" layer="21"/>
  1715. <wire x1="-7.45" y1="2.775" x2="-7.45" y2="-2.775" width="0.05" layer="39"/>
  1716. <wire x1="-7.45" y1="-2.775" x2="7.4" y2="-2.775" width="0.05" layer="39"/>
  1717. <wire x1="7.4" y1="-2.775" x2="7.4" y2="2.775" width="0.05" layer="39"/>
  1718. <wire x1="7.4" y1="2.775" x2="-7.45" y2="2.775" width="0.05" layer="39"/>
  1719. <pad name="C" x="-6.2" y="0" drill="1.25" shape="square"/>
  1720. <pad name="A" x="6.2" y="0" drill="1.25"/>
  1721. <rectangle x1="-3.5" y1="-2.525" x2="-2.25" y2="2.525" layer="21"/>
  1722. <text x="-7.75" y="3" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1723. <text x="-7.5" y="-4.25" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1724. </package>
  1725. </packages>
  1726. <packages3d>
  1727. <package3d name="DO201AD" urn="urn:adsk.eagle:package:10898389/2" type="model" library_version="1">
  1728. <packageinstances>
  1729. <packageinstance name="DO201AD"/>
  1730. </packageinstances>
  1731. </package3d>
  1732. </packages3d>
  1733. <symbols>
  1734. <symbol name="SCHOTTKY" urn="urn:adsk.eagle:symbol:10898387/1" library_version="1">
  1735. <wire x1="-1.27" y1="-1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1736. <wire x1="1.27" y1="0" x2="-1.27" y2="1.27" width="0.254" layer="94"/>
  1737. <wire x1="1.905" y1="1.27" x2="1.27" y2="1.27" width="0.254" layer="94"/>
  1738. <wire x1="1.27" y1="1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1739. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.254" layer="94"/>
  1740. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.254" layer="94"/>
  1741. <wire x1="1.27" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94"/>
  1742. <wire x1="1.905" y1="1.27" x2="1.905" y2="1.016" width="0.254" layer="94"/>
  1743. <wire x1="1.27" y1="-1.27" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1744. <wire x1="0.635" y1="-1.016" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1745. <wire x1="-1.27" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  1746. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  1747. <text x="-2.286" y="1.905" size="1.778" layer="95">&gt;NAME</text>
  1748. <text x="-2.286" y="-3.429" size="1.778" layer="96">&gt;VALUE</text>
  1749. <pin name="A" x="-2.54" y="0" visible="off" length="point" direction="pas"/>
  1750. <pin name="C" x="2.54" y="0" visible="off" length="point" direction="pas" rot="R180"/>
  1751. </symbol>
  1752. </symbols>
  1753. <devicesets>
  1754. <deviceset name="MBR360G" urn="urn:adsk.eagle:component:10898397/9" prefix="D" library_version="1">
  1755. <description>&lt;h3&gt; DIODE SCHOTTKY 60V 3A DO201AD&lt;/h3&gt;
  1756. &lt;BR&gt;
  1757. &lt;a href="https://www.onsemi.com/pub/Collateral/MBR350-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  1758. <gates>
  1759. <gate name="G$1" symbol="SCHOTTKY" x="0" y="0"/>
  1760. </gates>
  1761. <devices>
  1762. <device name="" package="DO201AD">
  1763. <connects>
  1764. <connect gate="G$1" pin="A" pad="A"/>
  1765. <connect gate="G$1" pin="C" pad="C"/>
  1766. </connects>
  1767. <package3dinstances>
  1768. <package3dinstance package3d_urn="urn:adsk.eagle:package:10898389/2"/>
  1769. </package3dinstances>
  1770. <technologies>
  1771. <technology name="">
  1772. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  1773. <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" constant="no"/>
  1774. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  1775. <attribute name="MPN" value="MBR360G" constant="no"/>
  1776. <attribute name="PACKAGE" value="DO-201AD" constant="no"/>
  1777. </technology>
  1778. </technologies>
  1779. </device>
  1780. </devices>
  1781. </deviceset>
  1782. </devicesets>
  1783. </library>
  1784. <library name="inductors" urn="urn:adsk.eagle:library:243">
  1785. <description>&lt;b&gt;Inductors and Filters&lt;/b&gt;&lt;p&gt;
  1786. Based on the previous library ind-a.lbr&lt;p&gt;
  1787. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  1788. <packages>
  1789. <package name="DR127" urn="urn:adsk.eagle:footprint:15034/1" library_version="4">
  1790. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1791. Source: coiltronics_dr_series.pdf</description>
  1792. <wire x1="-6.5" y1="6.5" x2="6.525" y2="6.5" width="0.2032" layer="21"/>
  1793. <wire x1="6.525" y1="6.5" x2="6.525" y2="-6.5" width="0.2032" layer="21"/>
  1794. <wire x1="6.525" y1="-6.5" x2="-6.5" y2="-6.5" width="0.2032" layer="21"/>
  1795. <wire x1="-6.5" y1="-6.5" x2="-6.5" y2="6.5" width="0.2032" layer="21"/>
  1796. <wire x1="-4.5254" y1="3.783" x2="-3.8006" y2="4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1797. <wire x1="-3.783" y1="-4.5254" x2="-4.5431" y2="-3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1798. <wire x1="4.5254" y1="-3.783" x2="3.8006" y2="-4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1799. <wire x1="3.783" y1="4.5254" x2="4.5431" y2="3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1800. <wire x1="0" y1="5.9" x2="4.9" y2="3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1801. <wire x1="0" y1="5.9" x2="-4.95" y2="3.225" width="0.2032" layer="21" curve="56.95663"/>
  1802. <wire x1="0" y1="-5.9" x2="-4.9" y2="-3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1803. <wire x1="0" y1="-5.9" x2="4.95" y2="-3.225" width="0.2032" layer="21" curve="56.95663"/>
  1804. <circle x="0" y="0" radius="5.9" width="0.2032" layer="51"/>
  1805. <smd name="1" x="-4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1806. <smd name="2" x="4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1807. <text x="-2.5" y="3" size="1.27" layer="25">&gt;NAME</text>
  1808. <text x="-3" y="-4.5" size="1.27" layer="27">&gt;VALUE</text>
  1809. </package>
  1810. </packages>
  1811. <packages3d>
  1812. <package3d name="DR127" urn="urn:adsk.eagle:package:15117/1" type="box" library_version="4">
  1813. <description>High Power Density, High Efficiency, Shielded Inductors
  1814. Source: coiltronics_dr_series.pdf</description>
  1815. <packageinstances>
  1816. <packageinstance name="DR127"/>
  1817. </packageinstances>
  1818. </package3d>
  1819. </packages3d>
  1820. <symbols>
  1821. <symbol name="DRK" urn="urn:adsk.eagle:symbol:28107/2" library_version="4">
  1822. <wire x1="-3.81" y1="1.651" x2="3.81" y2="1.651" width="0.254" layer="94"/>
  1823. <text x="-3.81" y="2.286" size="1.778" layer="95">&gt;NAME</text>
  1824. <text x="-3.937" y="-3.048" size="1.778" layer="96">&gt;VALUE</text>
  1825. <rectangle x1="-3.81" y1="-0.889" x2="3.81" y2="0.889" layer="94"/>
  1826. <pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  1827. <pin name="1" x="-7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1"/>
  1828. </symbol>
  1829. </symbols>
  1830. <devicesets>
  1831. <deviceset name="DR127" urn="urn:adsk.eagle:component:15196/4" prefix="L" library_version="4">
  1832. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1833. Source: coiltronics_dr_series.pdf</description>
  1834. <gates>
  1835. <gate name="G$1" symbol="DRK" x="0" y="0"/>
  1836. </gates>
  1837. <devices>
  1838. <device name="" package="DR127">
  1839. <connects>
  1840. <connect gate="G$1" pin="1" pad="1"/>
  1841. <connect gate="G$1" pin="2" pad="2"/>
  1842. </connects>
  1843. <package3dinstances>
  1844. <package3dinstance package3d_urn="urn:adsk.eagle:package:15117/1"/>
  1845. </package3dinstances>
  1846. <technologies>
  1847. <technology name="">
  1848. <attribute name="POPULARITY" value="2" constant="no"/>
  1849. <attribute name="SPICEPREFIX" value="L" constant="no"/>
  1850. </technology>
  1851. </technologies>
  1852. </device>
  1853. </devices>
  1854. <spice>
  1855. <pinmapping spiceprefix="L">
  1856. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1857. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1858. </pinmapping>
  1859. </spice>
  1860. </deviceset>
  1861. </devicesets>
  1862. </library>
  1863. <library name="eagle-ltspice" urn="urn:adsk.eagle:library:217">
  1864. <description>Default symbols for import LTspice schematics&lt;p&gt;
  1865. 2012-10-29 alf@cadsoft.de&lt;br&gt;</description>
  1866. <packages>
  1867. <package name="0204/7" urn="urn:adsk.eagle:footprint:13215/1" library_version="1">
  1868. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1869. type 0204, grid 7.5 mm</description>
  1870. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  1871. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  1872. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  1873. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  1874. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  1875. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  1876. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  1877. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1878. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1879. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1880. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1881. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1882. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  1883. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1884. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  1885. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1886. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1887. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  1888. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  1889. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  1890. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  1891. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  1892. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  1893. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  1894. </package>
  1895. <package name="0207/10" urn="urn:adsk.eagle:footprint:13216/1" library_version="1">
  1896. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1897. type 0207, grid 10 mm</description>
  1898. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  1899. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  1900. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  1901. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  1902. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  1903. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  1904. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  1905. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1906. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1907. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1908. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1909. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1910. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  1911. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1912. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  1913. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1914. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1915. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  1916. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  1917. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  1918. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  1919. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  1920. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1921. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1922. </package>
  1923. <package name="R0201" urn="urn:adsk.eagle:footprint:13233/1" library_version="1">
  1924. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  1925. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1926. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  1927. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  1928. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  1929. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1930. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1931. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1932. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1933. </package>
  1934. <package name="R0402" urn="urn:adsk.eagle:footprint:13234/1" library_version="1">
  1935. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1936. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1937. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1938. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1939. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1940. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1941. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1942. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1943. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1944. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1945. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1946. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1947. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1948. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1949. </package>
  1950. <package name="R0603" urn="urn:adsk.eagle:footprint:13235/1" library_version="1">
  1951. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1952. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1953. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1954. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1955. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1956. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1957. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1958. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1959. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1960. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1961. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1962. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1963. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1964. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1965. </package>
  1966. <package name="R0805" urn="urn:adsk.eagle:footprint:13236/1" library_version="1">
  1967. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1968. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1969. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1970. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1971. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1972. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1973. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1974. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1975. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1976. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1977. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1978. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1979. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1980. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1981. </package>
  1982. <package name="R1005" urn="urn:adsk.eagle:footprint:13237/1" library_version="1">
  1983. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1984. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1985. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1986. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1987. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1988. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1989. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1990. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1991. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1992. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  1993. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1994. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1995. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1996. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1997. </package>
  1998. <package name="R1206" urn="urn:adsk.eagle:footprint:13238/1" library_version="1">
  1999. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2000. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  2001. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  2002. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2003. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2004. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2005. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2006. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  2007. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  2008. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2009. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2010. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  2011. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2012. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2013. </package>
  2014. <package name="R1210" urn="urn:adsk.eagle:footprint:13239/1" library_version="1">
  2015. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2016. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2017. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2018. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2019. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2020. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2021. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2022. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2023. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2024. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  2025. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2026. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2027. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2028. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2029. </package>
  2030. <package name="R1218" urn="urn:adsk.eagle:footprint:13240/1" library_version="1">
  2031. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  2032. Source: http://www.vishay.com .. dcrcw.pdf</description>
  2033. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  2034. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  2035. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  2036. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  2037. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  2038. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  2039. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  2040. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  2041. </package>
  2042. <package name="R2010" urn="urn:adsk.eagle:footprint:13241/1" library_version="1">
  2043. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2044. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2045. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2046. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2047. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2048. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2049. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2050. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2051. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2052. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2053. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2054. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2055. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2056. </package>
  2057. <package name="R2012" urn="urn:adsk.eagle:footprint:13242/1" library_version="1">
  2058. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2059. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2060. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2061. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2062. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2063. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2064. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2065. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2066. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2067. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2068. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2069. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2070. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2071. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2072. </package>
  2073. <package name="R2512" urn="urn:adsk.eagle:footprint:13243/1" library_version="1">
  2074. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2075. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2076. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2077. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2078. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2079. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2080. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2081. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2082. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2083. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2084. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2085. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2086. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2087. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2088. </package>
  2089. <package name="R3216" urn="urn:adsk.eagle:footprint:13244/1" library_version="1">
  2090. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2091. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2092. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2093. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2094. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2095. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2096. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2097. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2098. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2099. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2100. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2101. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2102. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2103. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2104. </package>
  2105. <package name="R3225" urn="urn:adsk.eagle:footprint:13245/1" library_version="1">
  2106. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2107. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2108. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2109. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2110. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2111. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2112. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2113. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2114. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2115. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2116. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2117. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2118. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2119. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2120. </package>
  2121. <package name="R4527" urn="urn:adsk.eagle:footprint:13246/1" library_version="1">
  2122. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  2123. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2124. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  2125. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  2126. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  2127. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  2128. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2129. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2130. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  2131. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  2132. </package>
  2133. <package name="R5025" urn="urn:adsk.eagle:footprint:13247/1" library_version="1">
  2134. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2135. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2136. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2137. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2138. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2139. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2140. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2141. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2142. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2143. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2144. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2145. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2146. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2147. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2148. </package>
  2149. <package name="R6332" urn="urn:adsk.eagle:footprint:13248/1" library_version="1">
  2150. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2151. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2152. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2153. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2154. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2155. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2156. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2157. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2158. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2159. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2160. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2161. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2162. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2163. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2164. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2165. </package>
  2166. </packages>
  2167. <packages3d>
  2168. <package3d name="0204/7" urn="urn:adsk.eagle:package:13274/1" type="box" library_version="1">
  2169. <description>RESISTOR
  2170. type 0204, grid 7.5 mm</description>
  2171. <packageinstances>
  2172. <packageinstance name="0204/7"/>
  2173. </packageinstances>
  2174. </package3d>
  2175. <package3d name="0207/10" urn="urn:adsk.eagle:package:13275/1" type="box" library_version="1">
  2176. <description>RESISTOR
  2177. type 0207, grid 10 mm</description>
  2178. <packageinstances>
  2179. <packageinstance name="0207/10"/>
  2180. </packageinstances>
  2181. </package3d>
  2182. <package3d name="R0201" urn="urn:adsk.eagle:package:13294/1" type="box" library_version="1">
  2183. <description>RESISTOR chip
  2184. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2185. <packageinstances>
  2186. <packageinstance name="R0201"/>
  2187. </packageinstances>
  2188. </package3d>
  2189. <package3d name="R0402" urn="urn:adsk.eagle:package:13296/1" type="box" library_version="1">
  2190. <description>RESISTOR</description>
  2191. <packageinstances>
  2192. <packageinstance name="R0402"/>
  2193. </packageinstances>
  2194. </package3d>
  2195. <package3d name="R0603" urn="urn:adsk.eagle:package:13302/1" type="box" library_version="1">
  2196. <description>RESISTOR</description>
  2197. <packageinstances>
  2198. <packageinstance name="R0603"/>
  2199. </packageinstances>
  2200. </package3d>
  2201. <package3d name="R0805" urn="urn:adsk.eagle:package:13300/1" type="box" library_version="1">
  2202. <description>RESISTOR</description>
  2203. <packageinstances>
  2204. <packageinstance name="R0805"/>
  2205. </packageinstances>
  2206. </package3d>
  2207. <package3d name="R1005" urn="urn:adsk.eagle:package:13297/1" type="box" library_version="1">
  2208. <description>RESISTOR</description>
  2209. <packageinstances>
  2210. <packageinstance name="R1005"/>
  2211. </packageinstances>
  2212. </package3d>
  2213. <package3d name="R1206" urn="urn:adsk.eagle:package:13301/1" type="box" library_version="1">
  2214. <description>RESISTOR</description>
  2215. <packageinstances>
  2216. <packageinstance name="R1206"/>
  2217. </packageinstances>
  2218. </package3d>
  2219. <package3d name="R1210" urn="urn:adsk.eagle:package:13299/1" type="box" library_version="1">
  2220. <description>RESISTOR</description>
  2221. <packageinstances>
  2222. <packageinstance name="R1210"/>
  2223. </packageinstances>
  2224. </package3d>
  2225. <package3d name="R1218" urn="urn:adsk.eagle:package:13303/1" type="box" library_version="1">
  2226. <description>CRCW1218 Thick Film, Rectangular Chip Resistors
  2227. Source: http://www.vishay.com .. dcrcw.pdf</description>
  2228. <packageinstances>
  2229. <packageinstance name="R1218"/>
  2230. </packageinstances>
  2231. </package3d>
  2232. <package3d name="R2010" urn="urn:adsk.eagle:package:13309/1" type="box" library_version="1">
  2233. <description>RESISTOR</description>
  2234. <packageinstances>
  2235. <packageinstance name="R2010"/>
  2236. </packageinstances>
  2237. </package3d>
  2238. <package3d name="R2012" urn="urn:adsk.eagle:package:13306/1" type="box" library_version="1">
  2239. <description>RESISTOR</description>
  2240. <packageinstances>
  2241. <packageinstance name="R2012"/>
  2242. </packageinstances>
  2243. </package3d>
  2244. <package3d name="R2512" urn="urn:adsk.eagle:package:13304/1" type="box" library_version="1">
  2245. <description>RESISTOR</description>
  2246. <packageinstances>
  2247. <packageinstance name="R2512"/>
  2248. </packageinstances>
  2249. </package3d>
  2250. <package3d name="R3216" urn="urn:adsk.eagle:package:13305/1" type="box" library_version="1">
  2251. <description>RESISTOR</description>
  2252. <packageinstances>
  2253. <packageinstance name="R3216"/>
  2254. </packageinstances>
  2255. </package3d>
  2256. <package3d name="R3225" urn="urn:adsk.eagle:package:13311/1" type="box" library_version="1">
  2257. <description>RESISTOR</description>
  2258. <packageinstances>
  2259. <packageinstance name="R3225"/>
  2260. </packageinstances>
  2261. </package3d>
  2262. <package3d name="R4527" urn="urn:adsk.eagle:package:13310/1" type="box" library_version="1">
  2263. <description>Package 4527
  2264. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2265. <packageinstances>
  2266. <packageinstance name="R4527"/>
  2267. </packageinstances>
  2268. </package3d>
  2269. <package3d name="R5025" urn="urn:adsk.eagle:package:13308/1" type="box" library_version="1">
  2270. <description>RESISTOR</description>
  2271. <packageinstances>
  2272. <packageinstance name="R5025"/>
  2273. </packageinstances>
  2274. </package3d>
  2275. <package3d name="R6332" urn="urn:adsk.eagle:package:13307/1" type="box" library_version="1">
  2276. <description>RESISTOR
  2277. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2278. <packageinstances>
  2279. <packageinstance name="R6332"/>
  2280. </packageinstances>
  2281. </package3d>
  2282. </packages3d>
  2283. <symbols>
  2284. <symbol name="R" urn="urn:adsk.eagle:symbol:13232/1" library_version="1">
  2285. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  2286. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2287. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  2288. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2289. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  2290. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  2291. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  2292. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  2293. <text x="-5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 1</text>
  2294. <text x="5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 2</text>
  2295. </symbol>
  2296. </symbols>
  2297. <devicesets>
  2298. <deviceset name="R" urn="urn:adsk.eagle:component:13322/1" prefix="R" uservalue="yes" library_version="1">
  2299. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  2300. <gates>
  2301. <gate name="G$1" symbol="R" x="0" y="0"/>
  2302. </gates>
  2303. <devices>
  2304. <device name="0204/7" package="0204/7">
  2305. <connects>
  2306. <connect gate="G$1" pin="1" pad="1"/>
  2307. <connect gate="G$1" pin="2" pad="2"/>
  2308. </connects>
  2309. <package3dinstances>
  2310. <package3dinstance package3d_urn="urn:adsk.eagle:package:13274/1"/>
  2311. </package3dinstances>
  2312. <technologies>
  2313. <technology name="">
  2314. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2315. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2316. </technology>
  2317. </technologies>
  2318. </device>
  2319. <device name="0207/10" package="0207/10">
  2320. <connects>
  2321. <connect gate="G$1" pin="1" pad="1"/>
  2322. <connect gate="G$1" pin="2" pad="2"/>
  2323. </connects>
  2324. <package3dinstances>
  2325. <package3dinstance package3d_urn="urn:adsk.eagle:package:13275/1"/>
  2326. </package3dinstances>
  2327. <technologies>
  2328. <technology name="">
  2329. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2330. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2331. </technology>
  2332. </technologies>
  2333. </device>
  2334. <device name="R0201" package="R0201">
  2335. <connects>
  2336. <connect gate="G$1" pin="1" pad="1"/>
  2337. <connect gate="G$1" pin="2" pad="2"/>
  2338. </connects>
  2339. <package3dinstances>
  2340. <package3dinstance package3d_urn="urn:adsk.eagle:package:13294/1"/>
  2341. </package3dinstances>
  2342. <technologies>
  2343. <technology name="">
  2344. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2345. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2346. </technology>
  2347. </technologies>
  2348. </device>
  2349. <device name="R0402" package="R0402">
  2350. <connects>
  2351. <connect gate="G$1" pin="1" pad="1"/>
  2352. <connect gate="G$1" pin="2" pad="2"/>
  2353. </connects>
  2354. <package3dinstances>
  2355. <package3dinstance package3d_urn="urn:adsk.eagle:package:13296/1"/>
  2356. </package3dinstances>
  2357. <technologies>
  2358. <technology name="">
  2359. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2360. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2361. </technology>
  2362. </technologies>
  2363. </device>
  2364. <device name="R0603" package="R0603">
  2365. <connects>
  2366. <connect gate="G$1" pin="1" pad="1"/>
  2367. <connect gate="G$1" pin="2" pad="2"/>
  2368. </connects>
  2369. <package3dinstances>
  2370. <package3dinstance package3d_urn="urn:adsk.eagle:package:13302/1"/>
  2371. </package3dinstances>
  2372. <technologies>
  2373. <technology name="">
  2374. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2375. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2376. </technology>
  2377. </technologies>
  2378. </device>
  2379. <device name="" package="R0805">
  2380. <connects>
  2381. <connect gate="G$1" pin="1" pad="1"/>
  2382. <connect gate="G$1" pin="2" pad="2"/>
  2383. </connects>
  2384. <package3dinstances>
  2385. <package3dinstance package3d_urn="urn:adsk.eagle:package:13300/1"/>
  2386. </package3dinstances>
  2387. <technologies>
  2388. <technology name="">
  2389. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2390. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2391. </technology>
  2392. </technologies>
  2393. </device>
  2394. <device name="R1005" package="R1005">
  2395. <connects>
  2396. <connect gate="G$1" pin="1" pad="1"/>
  2397. <connect gate="G$1" pin="2" pad="2"/>
  2398. </connects>
  2399. <package3dinstances>
  2400. <package3dinstance package3d_urn="urn:adsk.eagle:package:13297/1"/>
  2401. </package3dinstances>
  2402. <technologies>
  2403. <technology name="">
  2404. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2405. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2406. </technology>
  2407. </technologies>
  2408. </device>
  2409. <device name="R1206" package="R1206">
  2410. <connects>
  2411. <connect gate="G$1" pin="1" pad="1"/>
  2412. <connect gate="G$1" pin="2" pad="2"/>
  2413. </connects>
  2414. <package3dinstances>
  2415. <package3dinstance package3d_urn="urn:adsk.eagle:package:13301/1"/>
  2416. </package3dinstances>
  2417. <technologies>
  2418. <technology name="">
  2419. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2420. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2421. </technology>
  2422. </technologies>
  2423. </device>
  2424. <device name="R1210" package="R1210">
  2425. <connects>
  2426. <connect gate="G$1" pin="1" pad="1"/>
  2427. <connect gate="G$1" pin="2" pad="2"/>
  2428. </connects>
  2429. <package3dinstances>
  2430. <package3dinstance package3d_urn="urn:adsk.eagle:package:13299/1"/>
  2431. </package3dinstances>
  2432. <technologies>
  2433. <technology name="">
  2434. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2435. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2436. </technology>
  2437. </technologies>
  2438. </device>
  2439. <device name="R1218" package="R1218">
  2440. <connects>
  2441. <connect gate="G$1" pin="1" pad="1"/>
  2442. <connect gate="G$1" pin="2" pad="2"/>
  2443. </connects>
  2444. <package3dinstances>
  2445. <package3dinstance package3d_urn="urn:adsk.eagle:package:13303/1"/>
  2446. </package3dinstances>
  2447. <technologies>
  2448. <technology name="">
  2449. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2450. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2451. </technology>
  2452. </technologies>
  2453. </device>
  2454. <device name="R2010" package="R2010">
  2455. <connects>
  2456. <connect gate="G$1" pin="1" pad="1"/>
  2457. <connect gate="G$1" pin="2" pad="2"/>
  2458. </connects>
  2459. <package3dinstances>
  2460. <package3dinstance package3d_urn="urn:adsk.eagle:package:13309/1"/>
  2461. </package3dinstances>
  2462. <technologies>
  2463. <technology name="">
  2464. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2465. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2466. </technology>
  2467. </technologies>
  2468. </device>
  2469. <device name="R2012" package="R2012">
  2470. <connects>
  2471. <connect gate="G$1" pin="1" pad="1"/>
  2472. <connect gate="G$1" pin="2" pad="2"/>
  2473. </connects>
  2474. <package3dinstances>
  2475. <package3dinstance package3d_urn="urn:adsk.eagle:package:13306/1"/>
  2476. </package3dinstances>
  2477. <technologies>
  2478. <technology name="">
  2479. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2480. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2481. </technology>
  2482. </technologies>
  2483. </device>
  2484. <device name="R2512" package="R2512">
  2485. <connects>
  2486. <connect gate="G$1" pin="1" pad="1"/>
  2487. <connect gate="G$1" pin="2" pad="2"/>
  2488. </connects>
  2489. <package3dinstances>
  2490. <package3dinstance package3d_urn="urn:adsk.eagle:package:13304/1"/>
  2491. </package3dinstances>
  2492. <technologies>
  2493. <technology name="">
  2494. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2495. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2496. </technology>
  2497. </technologies>
  2498. </device>
  2499. <device name="R3216" package="R3216">
  2500. <connects>
  2501. <connect gate="G$1" pin="1" pad="1"/>
  2502. <connect gate="G$1" pin="2" pad="2"/>
  2503. </connects>
  2504. <package3dinstances>
  2505. <package3dinstance package3d_urn="urn:adsk.eagle:package:13305/1"/>
  2506. </package3dinstances>
  2507. <technologies>
  2508. <technology name="">
  2509. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2510. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2511. </technology>
  2512. </technologies>
  2513. </device>
  2514. <device name="R3225" package="R3225">
  2515. <connects>
  2516. <connect gate="G$1" pin="1" pad="1"/>
  2517. <connect gate="G$1" pin="2" pad="2"/>
  2518. </connects>
  2519. <package3dinstances>
  2520. <package3dinstance package3d_urn="urn:adsk.eagle:package:13311/1"/>
  2521. </package3dinstances>
  2522. <technologies>
  2523. <technology name="">
  2524. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2525. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2526. </technology>
  2527. </technologies>
  2528. </device>
  2529. <device name="R4527" package="R4527">
  2530. <connects>
  2531. <connect gate="G$1" pin="1" pad="1"/>
  2532. <connect gate="G$1" pin="2" pad="2"/>
  2533. </connects>
  2534. <package3dinstances>
  2535. <package3dinstance package3d_urn="urn:adsk.eagle:package:13310/1"/>
  2536. </package3dinstances>
  2537. <technologies>
  2538. <technology name="">
  2539. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2540. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2541. </technology>
  2542. </technologies>
  2543. </device>
  2544. <device name="R5025" package="R5025">
  2545. <connects>
  2546. <connect gate="G$1" pin="1" pad="1"/>
  2547. <connect gate="G$1" pin="2" pad="2"/>
  2548. </connects>
  2549. <package3dinstances>
  2550. <package3dinstance package3d_urn="urn:adsk.eagle:package:13308/1"/>
  2551. </package3dinstances>
  2552. <technologies>
  2553. <technology name="">
  2554. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2555. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2556. </technology>
  2557. </technologies>
  2558. </device>
  2559. <device name="R6332" package="R6332">
  2560. <connects>
  2561. <connect gate="G$1" pin="1" pad="1"/>
  2562. <connect gate="G$1" pin="2" pad="2"/>
  2563. </connects>
  2564. <package3dinstances>
  2565. <package3dinstance package3d_urn="urn:adsk.eagle:package:13307/1"/>
  2566. </package3dinstances>
  2567. <technologies>
  2568. <technology name="">
  2569. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2570. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2571. </technology>
  2572. </technologies>
  2573. </device>
  2574. </devices>
  2575. </deviceset>
  2576. </devicesets>
  2577. </library>
  2578. <library name="supply1" urn="urn:adsk.eagle:library:371">
  2579. <description>&lt;b&gt;Supply Symbols&lt;/b&gt;&lt;p&gt;
  2580. GND, VCC, 0V, +5V, -5V, etc.&lt;p&gt;
  2581. Please keep in mind, that these devices are necessary for the
  2582. automatic wiring of the supply signals.&lt;p&gt;
  2583. The pin name defined in the symbol is identical to the net which is to be wired automatically.&lt;p&gt;
  2584. In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.&lt;p&gt;
  2585. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  2586. <packages>
  2587. </packages>
  2588. <symbols>
  2589. <symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1" library_version="1">
  2590. <wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
  2591. <text x="-2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  2592. <pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
  2593. </symbol>
  2594. </symbols>
  2595. <devicesets>
  2596. <deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND" library_version="1">
  2597. <description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>
  2598. <gates>
  2599. <gate name="1" symbol="GND" x="0" y="0"/>
  2600. </gates>
  2601. <devices>
  2602. <device name="">
  2603. <technologies>
  2604. <technology name=""/>
  2605. </technologies>
  2606. </device>
  2607. </devices>
  2608. </deviceset>
  2609. </devicesets>
  2610. </library>
  2611. <library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513">
  2612. <description>&lt;h3&gt;SparkFun Connectors&lt;/h3&gt;
  2613. This library contains electrically-functional connectors.
  2614. &lt;br&gt;
  2615. &lt;br&gt;
  2616. We've spent an enormous amount of time creating and checking these footprints and parts, but it is &lt;b&gt; the end user's responsibility&lt;/b&gt; to ensure correctness and suitablity for a given componet or application.
  2617. &lt;br&gt;
  2618. &lt;br&gt;If you enjoy using this library, please buy one of our products at &lt;a href=" www.sparkfun.com"&gt;SparkFun.com&lt;/a&gt;.
  2619. &lt;br&gt;
  2620. &lt;br&gt;
  2621. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  2622. &lt;br&gt;
  2623. &lt;br&gt;
  2624. 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>
  2625. <packages>
  2626. <package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1">
  2627. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2628. &lt;p&gt;Specifications:
  2629. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2630. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2631. &lt;/ul&gt;&lt;/p&gt;
  2632. &lt;p&gt;Example device(s):
  2633. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2634. &lt;/ul&gt;&lt;/p&gt;</description>
  2635. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2636. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2637. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2638. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2639. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2640. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2641. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2642. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2643. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2644. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2645. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2646. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2647. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2648. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2649. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2650. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2651. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2652. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2653. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2654. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2655. </package>
  2656. <package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1">
  2657. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole&lt;/h3&gt;
  2658. &lt;p&gt;Specifications:
  2659. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2660. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2661. &lt;/ul&gt;&lt;/p&gt;
  2662. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2663. &lt;p&gt;Example device(s):
  2664. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2665. &lt;/ul&gt;&lt;/p&gt;</description>
  2666. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2667. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2668. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2669. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2670. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2671. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2672. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2673. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2674. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2675. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2676. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  2677. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2678. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2679. </package>
  2680. <package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1">
  2681. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH&lt;/h3&gt;
  2682. &lt;p&gt;Specifications:
  2683. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2684. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2685. &lt;/ul&gt;&lt;/p&gt;
  2686. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2687. &lt;p&gt;Example device(s):
  2688. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2689. &lt;/ul&gt;&lt;/p&gt;</description>
  2690. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2691. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2692. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2693. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2694. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2695. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2696. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2697. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2698. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2699. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2700. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2701. <wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/>
  2702. <wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/>
  2703. <wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2704. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2705. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2706. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2707. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2708. </package>
  2709. <package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1">
  2710. <description>&lt;h3&gt;JST-Right Angle Male Header SMT&lt;/h3&gt;
  2711. &lt;p&gt;Specifications:
  2712. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2713. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2714. &lt;/ul&gt;&lt;/p&gt;
  2715. &lt;p&gt;&lt;a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2716. &lt;p&gt;Example device(s):
  2717. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2718. &lt;li&gt;JST_2MM_MALE&lt;/li&gt;
  2719. &lt;/ul&gt;&lt;/p&gt;</description>
  2720. <wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/>
  2721. <wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/>
  2722. <wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/>
  2723. <wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/>
  2724. <wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/>
  2725. <wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/>
  2726. <wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/>
  2727. <wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/>
  2728. <wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/>
  2729. <smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2730. <smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2731. <smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2732. <smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2733. <text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2734. <text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2735. </package>
  2736. <package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1">
  2737. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2738. &lt;p&gt;Specifications:
  2739. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2740. &lt;li&gt;Pin pitch:0.15"&lt;/li&gt;
  2741. &lt;/ul&gt;&lt;/p&gt;
  2742. &lt;p&gt;Example device(s):
  2743. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2744. &lt;/ul&gt;&lt;/p&gt;</description>
  2745. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/>
  2746. <wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  2747. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/>
  2748. <wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/>
  2749. <pad name="P$1" x="0" y="0" drill="1.0668"/>
  2750. <pad name="P$2" x="3.81" y="0" drill="1.0668"/>
  2751. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2752. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2753. </package>
  2754. <package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1">
  2755. <description>&lt;h3&gt;JST-Vertical Male Header SMT &lt;/h3&gt;
  2756. &lt;p&gt;Specifications:
  2757. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2758. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2759. &lt;/ul&gt;&lt;/p&gt;
  2760. &lt;p&gt;&lt;a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2761. &lt;p&gt;Example device(s):
  2762. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2763. &lt;/ul&gt;&lt;/p&gt;</description>
  2764. <wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/>
  2765. <wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/>
  2766. <wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/>
  2767. <wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/>
  2768. <wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/>
  2769. <wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/>
  2770. <wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/>
  2771. <wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/>
  2772. <wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/>
  2773. <wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/>
  2774. <wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/>
  2775. <smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2776. <smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2777. <smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/>
  2778. <smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/>
  2779. <text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2780. <text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2781. </package>
  2782. <package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1">
  2783. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -2 Pin PTH&lt;/h3&gt;
  2784. &lt;p&gt;Specifications:
  2785. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2786. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  2787. &lt;/ul&gt;&lt;/p&gt;
  2788. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2789. &lt;p&gt;Example device(s):
  2790. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2791. &lt;/ul&gt;&lt;/p&gt;</description>
  2792. <wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/>
  2793. <wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/>
  2794. <wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/>
  2795. <wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  2796. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2797. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  2798. <wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2799. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  2800. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  2801. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  2802. <wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/>
  2803. <wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/>
  2804. <wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/>
  2805. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  2806. <pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/>
  2807. <pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/>
  2808. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2809. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2810. </package>
  2811. <package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1">
  2812. <description>&lt;h3&gt;Plated Through Hole - Locking Footprint&lt;/h3&gt;
  2813. Holes are staggered by 0.005" from center to hold pins while soldering.
  2814. &lt;p&gt;Specifications:
  2815. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2816. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2817. &lt;/ul&gt;&lt;/p&gt;
  2818. &lt;p&gt;Example device(s):
  2819. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2820. &lt;/ul&gt;&lt;/p&gt;</description>
  2821. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2822. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2823. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2824. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2825. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2826. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2827. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2828. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2829. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2830. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2831. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2832. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2833. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2834. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2835. <pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2836. <pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2837. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2838. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2839. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2840. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2841. </package>
  2842. <package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1">
  2843. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  2844. Holes are offset from center by 0.005" to hold pins in place during soldering.
  2845. &lt;p&gt;Specifications:
  2846. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2847. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2848. &lt;/ul&gt;&lt;/p&gt;
  2849. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2850. &lt;p&gt;Example device(s):
  2851. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2852. &lt;/ul&gt;&lt;/p&gt;</description>
  2853. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2854. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2855. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2856. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2857. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2858. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2859. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2860. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2861. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2862. <pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2863. <pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/>
  2864. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2865. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2866. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2867. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2868. </package>
  2869. <package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1">
  2870. <description>&lt;h3&gt;Plated Through Hole - Long Pads with Locking Footprint&lt;/h3&gt;
  2871. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  2872. &lt;p&gt;Specifications:
  2873. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2874. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2875. &lt;/ul&gt;&lt;/p&gt;
  2876. &lt;p&gt;Example device(s):
  2877. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2878. &lt;/ul&gt;&lt;/p&gt;</description>
  2879. <wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/>
  2880. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  2881. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  2882. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  2883. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  2884. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  2885. <wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  2886. <wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/>
  2887. <wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/>
  2888. <wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/>
  2889. <wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/>
  2890. <pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/>
  2891. <pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/>
  2892. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2893. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2894. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2895. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2896. </package>
  2897. <package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1">
  2898. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking&lt;/h3&gt;
  2899. Holes are offset from center 0.005" to hold pins in place during soldering.
  2900. &lt;p&gt;Specifications:
  2901. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2902. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2903. &lt;/ul&gt;&lt;/p&gt;
  2904. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2905. &lt;p&gt;Example device(s):
  2906. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2907. &lt;/ul&gt;&lt;/p&gt;</description>
  2908. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2909. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2910. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2911. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2912. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2913. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2914. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2915. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2916. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2917. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2918. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2919. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2920. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2921. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2922. <circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2923. <circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2924. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2925. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  2926. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2927. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2928. </package>
  2929. <package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1">
  2930. <description>&lt;h3&gt;Plated Through Hole - Long Pads without Silk Outline&lt;/h3&gt;
  2931. &lt;p&gt;Specifications:
  2932. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2933. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2934. &lt;/ul&gt;&lt;/p&gt;
  2935. &lt;p&gt;Example device(s):
  2936. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2937. &lt;/ul&gt;&lt;/p&gt;</description>
  2938. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2939. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2940. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2941. <text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2942. </package>
  2943. <package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1">
  2944. <description>&lt;h3&gt;Plated Through Hole - No Silk Outline&lt;/h3&gt;
  2945. &lt;p&gt;Specifications:
  2946. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2947. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2948. &lt;/ul&gt;&lt;/p&gt;
  2949. &lt;p&gt;Example device(s):
  2950. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2951. &lt;/ul&gt;&lt;/p&gt;</description>
  2952. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2953. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2954. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2955. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2956. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2957. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2958. </package>
  2959. <package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1">
  2960. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  2961. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2962. &lt;p&gt;Specifications:
  2963. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2964. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2965. &lt;/ul&gt;&lt;/p&gt;
  2966. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2967. &lt;p&gt;Example device(s):
  2968. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2969. &lt;/ul&gt;&lt;/p&gt;</description>
  2970. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2971. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2972. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2973. <text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2974. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2975. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2976. <wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/>
  2977. <wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/>
  2978. <wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/>
  2979. <wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/>
  2980. <wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/>
  2981. <wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/>
  2982. <wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/>
  2983. </package>
  2984. <package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1">
  2985. <description>&lt;h3&gt;Plated Through Hole - 0.1" holes&lt;/h3&gt;
  2986. &lt;p&gt;Specifications:
  2987. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2988. &lt;li&gt;Pin pitch:0.2"&lt;/li&gt;
  2989. &lt;/ul&gt;&lt;/p&gt;
  2990. &lt;p&gt;Example device(s):
  2991. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2992. &lt;/ul&gt;&lt;/p&gt;</description>
  2993. <wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/>
  2994. <wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2995. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/>
  2996. <wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/>
  2997. <pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/>
  2998. <pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/>
  2999. <text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3000. <text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3001. </package>
  3002. <package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1">
  3003. <description>&lt;h3&gt;Pogo Pins Connector - No Silk Outline&lt;/h3&gt;
  3004. &lt;p&gt;Specifications:
  3005. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  3006. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3007. &lt;/ul&gt;&lt;/p&gt;
  3008. &lt;p&gt;Example device(s):
  3009. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3010. &lt;/ul&gt;&lt;/p&gt;</description>
  3011. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  3012. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  3013. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3014. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3015. <hole x="0" y="0" drill="1.4732"/>
  3016. <hole x="2.54" y="0" drill="1.4732"/>
  3017. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3018. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3019. </package>
  3020. <package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1">
  3021. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline&lt;/h3&gt;
  3022. &lt;p&gt;Specifications:
  3023. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  3024. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3025. &lt;/ul&gt;&lt;/p&gt;
  3026. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3027. &lt;p&gt;Example device(s):
  3028. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3029. &lt;/ul&gt;&lt;/p&gt;</description>
  3030. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/>
  3031. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/>
  3032. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/>
  3033. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  3034. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  3035. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  3036. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  3037. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  3038. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  3039. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3040. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  3041. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  3042. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  3043. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  3044. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3045. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3046. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3047. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3048. </package>
  3049. <package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1">
  3050. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole- No Silk&lt;/h3&gt;
  3051. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  3052. &lt;br&gt; No silk outline of connector.
  3053. &lt;p&gt;Specifications:
  3054. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  3055. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  3056. &lt;/ul&gt;&lt;/p&gt;
  3057. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3058. &lt;p&gt;Example device(s):
  3059. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3060. &lt;/ul&gt;&lt;/p&gt;</description>
  3061. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  3062. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  3063. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  3064. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  3065. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  3066. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  3067. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  3068. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  3069. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  3070. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  3071. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  3072. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  3073. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3074. </package>
  3075. <package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1">
  3076. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole - KIT&lt;/h3&gt;
  3077. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  3078. &lt;br&gt; This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  3079. &lt;br&gt; This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  3080. &lt;p&gt;Specifications:
  3081. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  3082. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  3083. &lt;/ul&gt;&lt;/p&gt;
  3084. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3085. &lt;p&gt;Example device(s):
  3086. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3087. &lt;/ul&gt;&lt;/p&gt;</description>
  3088. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  3089. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  3090. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  3091. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  3092. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  3093. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  3094. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  3095. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  3096. <pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  3097. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  3098. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  3099. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  3100. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3101. <polygon width="0.127" layer="30">
  3102. <vertex x="-0.9975" y="-0.6604" curve="-90.025935"/>
  3103. <vertex x="-1.6604" y="0" curve="-90.017354"/>
  3104. <vertex x="-1" y="0.6604" curve="-90"/>
  3105. <vertex x="-0.3396" y="0" curve="-90.078137"/>
  3106. </polygon>
  3107. <polygon width="0.127" layer="29">
  3108. <vertex x="-1" y="-0.2865" curve="-90.08005"/>
  3109. <vertex x="-1.2865" y="0" curve="-90.040011"/>
  3110. <vertex x="-1" y="0.2865" curve="-90"/>
  3111. <vertex x="-0.7135" y="0" curve="-90"/>
  3112. </polygon>
  3113. <polygon width="0.127" layer="30">
  3114. <vertex x="1.0025" y="-0.6604" curve="-90.025935"/>
  3115. <vertex x="0.3396" y="0" curve="-90.017354"/>
  3116. <vertex x="1" y="0.6604" curve="-90"/>
  3117. <vertex x="1.6604" y="0" curve="-90.078137"/>
  3118. </polygon>
  3119. <polygon width="0.127" layer="29">
  3120. <vertex x="1" y="-0.2865" curve="-90.08005"/>
  3121. <vertex x="0.7135" y="0" curve="-90.040011"/>
  3122. <vertex x="1" y="0.2865" curve="-90"/>
  3123. <vertex x="1.2865" y="0" curve="-90"/>
  3124. </polygon>
  3125. </package>
  3126. <package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1">
  3127. <description>&lt;h3&gt;Spring Terminal- PCB Mount 2 Pin PTH&lt;/h3&gt;
  3128. tDocu marks the spring arms
  3129. &lt;p&gt;Specifications:
  3130. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3131. &lt;li&gt;Pin pitch: 0.1"&lt;/li&gt;
  3132. &lt;/ul&gt;&lt;/p&gt;
  3133. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/SpringTerminal.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3134. &lt;p&gt;Example device(s):
  3135. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3136. &lt;/ul&gt;&lt;/p&gt;</description>
  3137. <wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/>
  3138. <wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/>
  3139. <wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/>
  3140. <wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/>
  3141. <wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/>
  3142. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/>
  3143. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/>
  3144. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/>
  3145. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/>
  3146. <wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  3147. <wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/>
  3148. <wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/>
  3149. <wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  3150. <pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/>
  3151. <pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/>
  3152. <pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/>
  3153. <pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/>
  3154. </package>
  3155. <package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1">
  3156. <description>&lt;h3&gt;2 Pin Screw Terminal - 2.54mm&lt;/h3&gt;
  3157. &lt;p&gt;Specifications:
  3158. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  3159. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3160. &lt;/ul&gt;&lt;/p&gt;
  3161. &lt;p&gt;Example device(s):
  3162. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3163. &lt;/ul&gt;&lt;/p&gt;</description>
  3164. <pad name="P2" x="0" y="0" drill="1.016" shape="square"/>
  3165. <pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/>
  3166. <wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/>
  3167. <wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/>
  3168. <wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/>
  3169. <wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/>
  3170. <wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/>
  3171. <wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/>
  3172. <wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
  3173. <text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3174. <text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3175. </package>
  3176. <package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1">
  3177. <description>2 pin poke-home connector
  3178. part number 2062-2P from STA</description>
  3179. <wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/>
  3180. <wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/>
  3181. <wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/>
  3182. <wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/>
  3183. <wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/>
  3184. <smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/>
  3185. <smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/>
  3186. <smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/>
  3187. <smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/>
  3188. <text x="0.635" y="-3.175" size="0.4064" layer="25">&gt;NAME</text>
  3189. <text x="0.635" y="-1.905" size="0.4064" layer="27">&gt;VALUE</text>
  3190. </package>
  3191. <package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1">
  3192. <wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/>
  3193. <wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  3194. <wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/>
  3195. <wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  3196. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3197. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3198. <pad name="2" x="-1.27" y="-5.85" drill="0.8"/>
  3199. <pad name="1" x="1.27" y="-5.85" drill="0.8"/>
  3200. </package>
  3201. <package name="1X08" urn="urn:adsk.eagle:footprint:37760/1" library_version="1">
  3202. <description>&lt;h3&gt;Plated Through Hole -8 Pin&lt;/h3&gt;
  3203. &lt;p&gt;Specifications:
  3204. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3205. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3206. &lt;/ul&gt;&lt;/p&gt;
  3207. &lt;p&gt;Example device(s):
  3208. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3209. &lt;/ul&gt;&lt;/p&gt;</description>
  3210. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3211. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3212. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3213. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3214. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3215. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3216. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3217. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3218. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3219. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3220. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3221. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3222. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3223. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3224. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3225. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3226. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3227. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3228. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3229. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3230. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3231. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3232. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3233. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3234. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3235. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3236. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3237. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3238. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3239. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3240. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3241. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3242. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3243. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3244. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3245. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3246. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3247. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3248. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3249. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3250. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3251. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3252. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3253. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3254. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3255. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3256. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3257. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3258. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3259. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3260. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3261. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3262. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3263. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3264. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3265. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3266. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3267. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3268. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3269. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3270. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3271. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3272. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3273. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3274. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3275. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3276. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3277. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3278. </package>
  3279. <package name="1X08_LOCK" urn="urn:adsk.eagle:footprint:37761/1" library_version="1">
  3280. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint&lt;/h3&gt;
  3281. Holes are offset 0.005", to hold pins in place during soldering.
  3282. &lt;p&gt;Specifications:
  3283. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3284. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3285. &lt;/ul&gt;&lt;/p&gt;
  3286. &lt;p&gt;Example device(s):
  3287. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3288. &lt;/ul&gt;&lt;/p&gt;</description>
  3289. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3290. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3291. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3292. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3293. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3294. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3295. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3296. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3297. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3298. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3299. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3300. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3301. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3302. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3303. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3304. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3305. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3306. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3307. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3308. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3309. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3310. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3311. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3312. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3313. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3314. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3315. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3316. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3317. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3318. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3319. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3320. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3321. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3322. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3323. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3324. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3325. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3326. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3327. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3328. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3329. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3330. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3331. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3332. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3333. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3334. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3335. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3336. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3337. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3338. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3339. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3340. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3341. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3342. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3343. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3344. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3345. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3346. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3347. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3348. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3349. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3350. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3351. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3352. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3353. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3354. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3355. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3356. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3357. </package>
  3358. <package name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37762/1" library_version="1">
  3359. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint with Long Pads&lt;/h3&gt;
  3360. Holes are offset 0.005", to hold pins in place during soldering.
  3361. &lt;p&gt;Specifications:
  3362. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3363. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3364. &lt;/ul&gt;&lt;/p&gt;
  3365. &lt;p&gt;Example device(s):
  3366. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3367. &lt;/ul&gt;&lt;/p&gt;</description>
  3368. <wire x1="1.524" y1="0" x2="1.016" y2="0" width="0.2032" layer="21"/>
  3369. <wire x1="4.064" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  3370. <wire x1="6.604" y1="0" x2="6.096" y2="0" width="0.2032" layer="21"/>
  3371. <wire x1="9.144" y1="0" x2="8.636" y2="0" width="0.2032" layer="21"/>
  3372. <wire x1="11.684" y1="0" x2="11.176" y2="0" width="0.2032" layer="21"/>
  3373. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  3374. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  3375. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  3376. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  3377. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  3378. <wire x1="14.224" y1="0" x2="13.716" y2="0" width="0.2032" layer="21"/>
  3379. <wire x1="16.764" y1="0" x2="16.256" y2="0" width="0.2032" layer="21"/>
  3380. <wire x1="19.05" y1="0" x2="19.05" y2="-0.9906" width="0.2032" layer="21"/>
  3381. <wire x1="19.05" y1="-0.9906" x2="18.7706" y2="-1.27" width="0.2032" layer="21"/>
  3382. <wire x1="19.05" y1="0" x2="19.05" y2="0.9906" width="0.2032" layer="21"/>
  3383. <wire x1="19.05" y1="0.9906" x2="18.7706" y2="1.27" width="0.2032" layer="21"/>
  3384. <wire x1="19.05" y1="0" x2="18.796" y2="0" width="0.2032" layer="21"/>
  3385. <pad name="1" x="0" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3386. <pad name="2" x="2.54" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3387. <pad name="3" x="5.08" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3388. <pad name="4" x="7.62" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3389. <pad name="5" x="10.16" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3390. <pad name="6" x="12.7" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3391. <pad name="7" x="15.24" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3392. <pad name="8" x="17.78" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3393. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  3394. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  3395. <rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="51"/>
  3396. <rectangle x1="7.3279" y1="-0.2921" x2="7.9121" y2="0.2921" layer="51" rot="R90"/>
  3397. <rectangle x1="9.8679" y1="-0.2921" x2="10.4521" y2="0.2921" layer="51"/>
  3398. <rectangle x1="12.4079" y1="-0.2921" x2="12.9921" y2="0.2921" layer="51"/>
  3399. <rectangle x1="14.9479" y1="-0.2921" x2="15.5321" y2="0.2921" layer="51"/>
  3400. <rectangle x1="17.4879" y1="-0.2921" x2="18.0721" y2="0.2921" layer="51"/>
  3401. <text x="-0.889" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3402. <text x="-1.143" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3403. </package>
  3404. <package name="1X08_LONGPADS" urn="urn:adsk.eagle:footprint:37763/1" library_version="1">
  3405. <description>&lt;h3&gt;Plated Through Hole -8 Pin Long Pads&lt;/h3&gt;
  3406. &lt;p&gt;Specifications:
  3407. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3408. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3409. &lt;/ul&gt;&lt;/p&gt;
  3410. &lt;p&gt;Example device(s):
  3411. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3412. &lt;/ul&gt;&lt;/p&gt;</description>
  3413. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3414. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3415. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3416. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3417. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3418. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3419. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3420. <pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3421. <pad name="7" x="15.24" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3422. <pad name="8" x="17.78" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3423. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3424. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3425. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3426. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3427. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3428. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3429. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3430. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3431. <text x="-1.143" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3432. <text x="-1.016" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3433. </package>
  3434. <package name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:footprint:37764/1" library_version="1">
  3435. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -8 Pin PTH&lt;/h3&gt;
  3436. &lt;p&gt;Specifications:
  3437. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3438. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3439. &lt;/ul&gt;&lt;/p&gt;
  3440. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3441. &lt;p&gt;Example device(s):
  3442. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3443. &lt;/ul&gt;&lt;/p&gt;</description>
  3444. <wire x1="-1.75" y1="3.4" x2="26.25" y2="3.4" width="0.2032" layer="21"/>
  3445. <wire x1="26.25" y1="3.4" x2="26.25" y2="-2.8" width="0.2032" layer="21"/>
  3446. <wire x1="26.25" y1="-2.8" x2="26.25" y2="-3.6" width="0.2032" layer="21"/>
  3447. <wire x1="26.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3448. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3449. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3450. <wire x1="26.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3451. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3452. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3453. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3454. <wire x1="26.25" y1="3.15" x2="26.75" y2="3.15" width="0.2032" layer="51"/>
  3455. <wire x1="26.75" y1="3.15" x2="26.75" y2="2.15" width="0.2032" layer="51"/>
  3456. <wire x1="26.75" y1="2.15" x2="26.25" y2="2.15" width="0.2032" layer="51"/>
  3457. <wire x1="1.016" y1="-1.524" x2="-0.889" y2="-1.524" width="0.2032" layer="21"/>
  3458. <wire x1="-0.889" y1="-1.524" x2="1.016" y2="-1.524" width="0.2032" layer="22"/>
  3459. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032"/>
  3460. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3461. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3462. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3463. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  3464. <pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/>
  3465. <pad name="7" x="21" y="0" drill="1.2" diameter="2.032"/>
  3466. <pad name="8" x="24.5" y="0" drill="1.2" diameter="2.032"/>
  3467. <text x="11.049" y="2.286" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3468. <text x="10.795" y="1.397" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3469. </package>
  3470. <package name="1X08_SMD" urn="urn:adsk.eagle:footprint:37765/1" library_version="1">
  3471. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3472. &lt;p&gt;Specifications:
  3473. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3474. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3475. &lt;/ul&gt;&lt;/p&gt;
  3476. &lt;p&gt;&lt;a href=”http://cdn.sparkfun.com/datasheets/Prototyping/femaleSMDheader.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3477. &lt;p&gt;Example device(s):
  3478. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3479. &lt;/ul&gt;&lt;/p&gt;</description>
  3480. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3481. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3482. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3483. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3484. <wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3485. <wire x1="-19.15" y1="-1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3486. <wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3487. <wire x1="-19.15" y1="1.25" x2="-15.963" y2="1.25" width="0.127" layer="21"/>
  3488. <wire x1="-18.63" y1="-1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3489. <wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/>
  3490. <wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/>
  3491. <wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/>
  3492. <wire x1="-14.537" y1="1.25" x2="-10.863" y2="1.25" width="0.127" layer="21"/>
  3493. <wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/>
  3494. <wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/>
  3495. <wire x1="-13.489" y1="-1.25" x2="-16.991" y2="-1.25" width="0.127" layer="21"/>
  3496. <smd name="7" x="-15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3497. <smd name="5" x="-10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3498. <smd name="3" x="-5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3499. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3500. <smd name="8" x="-17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3501. <smd name="6" x="-12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3502. <smd name="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3503. <smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3504. <text x="-18.542" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3505. <text x="-18.542" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3506. </package>
  3507. <package name="1X08_SMD_ALT" urn="urn:adsk.eagle:footprint:37766/1" library_version="1">
  3508. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3509. Alternate pin configuration
  3510. &lt;p&gt;Specifications:
  3511. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3512. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3513. &lt;/ul&gt;&lt;/p&gt;
  3514. &lt;p&gt;&lt;a href=”http://cdn.sparkfun.com/datasheets/Prototyping/femaleSMDheader.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3515. &lt;p&gt;Example device(s):
  3516. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3517. &lt;/ul&gt;&lt;/p&gt;</description>
  3518. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3519. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3520. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3521. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3522. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3523. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3524. <wire x1="-18.63" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3525. <wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/>
  3526. <wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3527. <wire x1="-19.15" y1="-1.25" x2="-15.963" y2="-1.25" width="0.127" layer="21"/>
  3528. <wire x1="-13.403" y1="1.25" x2="-17.077" y2="1.25" width="0.127" layer="21"/>
  3529. <wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/>
  3530. <wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/>
  3531. <wire x1="-14.451" y1="-1.25" x2="-10.949" y2="-1.25" width="0.127" layer="21"/>
  3532. <wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/>
  3533. <wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/>
  3534. <smd name="7" x="-15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3535. <smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3536. <smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3537. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3538. <smd name="8" x="-17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3539. <smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3540. <smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3541. <smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3542. <text x="-18.796" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3543. <text x="-18.923" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3544. </package>
  3545. <package name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:footprint:37767/1" library_version="1">
  3546. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3547. Combined footprint configuration
  3548. &lt;p&gt;Specifications:
  3549. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3550. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3551. &lt;/ul&gt;&lt;/p&gt;
  3552. &lt;p&gt;&lt;a href=”http://cdn.sparkfun.com/datasheets/Prototyping/femaleSMDheader.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3553. &lt;p&gt;Example device(s):
  3554. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3555. &lt;/ul&gt;&lt;/p&gt;</description>
  3556. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.127" layer="21"/>
  3557. <wire x1="19.15" y1="1.25" x2="19.15" y2="-1.25" width="0.127" layer="21"/>
  3558. <wire x1="-0.85" y1="-1.25" x2="-1.37" y2="-1.25" width="0.127" layer="21"/>
  3559. <wire x1="19.15" y1="-1.25" x2="18.503" y2="-1.25" width="0.127" layer="21"/>
  3560. <wire x1="18.63" y1="1.25" x2="19.15" y2="1.25" width="0.127" layer="21"/>
  3561. <wire x1="-1.37" y1="1.25" x2="-0.723" y2="1.25" width="0.127" layer="21"/>
  3562. <wire x1="14.537" y1="-1.25" x2="13.403" y2="-1.25" width="0.127" layer="21"/>
  3563. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.127" layer="21"/>
  3564. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.127" layer="21"/>
  3565. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.127" layer="21"/>
  3566. <wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.127" layer="21"/>
  3567. <wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.127" layer="21"/>
  3568. <wire x1="13.489" y1="1.25" x2="14.451" y2="1.25" width="0.127" layer="21"/>
  3569. <wire x1="16.029" y1="1.25" x2="16.991" y2="1.25" width="0.127" layer="21"/>
  3570. <wire x1="17.077" y1="-1.25" x2="15.943" y2="-1.25" width="0.127" layer="21"/>
  3571. <wire x1="11.997" y1="-1.25" x2="10.863" y2="-1.25" width="0.127" layer="21"/>
  3572. <wire x1="9.457" y1="-1.25" x2="8.323" y2="-1.25" width="0.127" layer="21"/>
  3573. <wire x1="6.917" y1="-1.25" x2="5.783" y2="-1.25" width="0.127" layer="21"/>
  3574. <wire x1="4.377" y1="-1.25" x2="3.243" y2="-1.25" width="0.127" layer="21"/>
  3575. <wire x1="1.837" y1="-1.25" x2="0.703" y2="-1.25" width="0.127" layer="21"/>
  3576. <wire x1="17.78" y1="1.27" x2="17.78" y2="-1.27" width="0.4064" layer="1"/>
  3577. <wire x1="15.24" y1="1.27" x2="15.24" y2="-1.27" width="0.4064" layer="1"/>
  3578. <wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/>
  3579. <wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/>
  3580. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  3581. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  3582. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  3583. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  3584. <smd name="7@2" x="15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3585. <smd name="5@2" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3586. <smd name="3@2" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3587. <smd name="8@2" x="17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3588. <smd name="6@2" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3589. <smd name="4@2" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3590. <smd name="2@2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3591. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3592. <smd name="2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3593. <smd name="3" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3594. <smd name="4" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3595. <smd name="5" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3596. <smd name="6" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3597. <smd name="7" x="15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3598. <smd name="8" x="17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3599. <smd name="1@2" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3600. <text x="-0.381" y="3.048" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3601. <text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3602. </package>
  3603. <package name="BM08B-SRSS-TB" urn="urn:adsk.eagle:footprint:37768/1" library_version="1">
  3604. <description>&lt;h3&gt;JST Vertical Crimp Connect&lt;/h3&gt;
  3605. &lt;p&gt;Specifications:
  3606. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3607. &lt;li&gt;Pin pitch:1mm&lt;/li&gt;
  3608. &lt;/ul&gt;&lt;/p&gt;
  3609. &lt;p&gt;&lt;a href=”http://www.jst-mfg.com/product/pdf/eng/eSR.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3610. &lt;p&gt;Example device(s):
  3611. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3612. &lt;/ul&gt;&lt;/p&gt;</description>
  3613. <wire x1="-5" y1="3.3" x2="5" y2="3.3" width="0.127" layer="51"/>
  3614. <wire x1="-5" y1="0.4" x2="-5" y2="3.3" width="0.127" layer="51"/>
  3615. <wire x1="5" y1="0.4" x2="5" y2="3.3" width="0.127" layer="51"/>
  3616. <wire x1="-5" y1="0.4" x2="5" y2="0.4" width="0.127" layer="51"/>
  3617. <wire x1="-4.1" y1="0.35" x2="-5.05" y2="0.35" width="0.2032" layer="21"/>
  3618. <wire x1="-5.05" y1="0.35" x2="-5.05" y2="1.35" width="0.2032" layer="21"/>
  3619. <wire x1="5.05" y1="0.35" x2="4.15" y2="0.35" width="0.2032" layer="21"/>
  3620. <wire x1="5.05" y1="0.35" x2="5.05" y2="1.35" width="0.2032" layer="21"/>
  3621. <wire x1="-3.9" y1="3.4" x2="3.9" y2="3.4" width="0.2032" layer="21"/>
  3622. <circle x="-4.4" y="-0.35" radius="0.1118" width="0.4064" layer="21"/>
  3623. <smd name="1" x="-3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3624. <smd name="2" x="-2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3625. <smd name="3" x="-1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3626. <smd name="4" x="-0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3627. <smd name="5" x="0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3628. <smd name="6" x="1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3629. <smd name="7" x="2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3630. <smd name="8" x="3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3631. <smd name="P$9" x="4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3632. <smd name="P$10" x="-4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3633. <text x="-1.397" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3634. <text x="-1.651" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3635. </package>
  3636. <package name="1X08_SMD_MALE" urn="urn:adsk.eagle:footprint:37769/1" library_version="1">
  3637. <description>&lt;h3&gt;SMD -8 Pin Vertical Male&lt;/h3&gt;
  3638. &lt;p&gt;Specifications:
  3639. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3640. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3641. &lt;/ul&gt;&lt;/p&gt;
  3642. &lt;p&gt;&lt;a href=”http://cdn.sparkfun.com/datasheets/Prototyping/maleSMDheader.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3643. &lt;p&gt;Example device(s):
  3644. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3645. &lt;/ul&gt;&lt;/p&gt;</description>
  3646. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3647. <wire x1="-1.27" y1="-1.25" x2="19.05" y2="-1.25" width="0.127" layer="51"/>
  3648. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.127" layer="51"/>
  3649. <wire x1="19.05" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/>
  3650. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/>
  3651. <wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/>
  3652. <wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/>
  3653. <wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/>
  3654. <wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/>
  3655. <wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/>
  3656. <wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/>
  3657. <wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/>
  3658. <wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/>
  3659. <wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/>
  3660. <wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/>
  3661. <wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/>
  3662. <wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/>
  3663. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.1778" layer="21"/>
  3664. <wire x1="16.002" y1="1.25" x2="17.018" y2="1.25" width="0.1778" layer="21"/>
  3665. <wire x1="17.018" y1="-1.25" x2="16.002" y2="-1.25" width="0.1778" layer="21"/>
  3666. <wire x1="19.05" y1="-1.25" x2="18.415" y2="-1.25" width="0.1778" layer="21"/>
  3667. <wire x1="19.05" y1="1.25" x2="18.415" y2="1.25" width="0.1778" layer="21"/>
  3668. <wire x1="13.462" y1="1.25" x2="14.478" y2="1.25" width="0.1778" layer="21"/>
  3669. <wire x1="14.478" y1="-1.25" x2="13.462" y2="-1.25" width="0.1778" layer="21"/>
  3670. <circle x="0" y="0" radius="0.64" width="0.127" layer="51"/>
  3671. <circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/>
  3672. <circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/>
  3673. <circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/>
  3674. <circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/>
  3675. <circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/>
  3676. <circle x="15.24" y="0" radius="0.64" width="0.127" layer="51"/>
  3677. <circle x="17.78" y="0" radius="0.64" width="0.127" layer="51"/>
  3678. <rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/>
  3679. <rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/>
  3680. <rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/>
  3681. <rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/>
  3682. <rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/>
  3683. <rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/>
  3684. <rectangle x1="14.92" y1="0" x2="15.56" y2="2.75" layer="51"/>
  3685. <rectangle x1="17.46" y1="-2.75" x2="18.1" y2="0" layer="51" rot="R180"/>
  3686. <smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/>
  3687. <smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/>
  3688. <smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/>
  3689. <smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/>
  3690. <smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/>
  3691. <smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/>
  3692. <smd name="7" x="15.24" y="0" dx="1.02" dy="6" layer="1"/>
  3693. <smd name="8" x="17.78" y="0" dx="1.02" dy="6" layer="1"/>
  3694. <text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3695. <text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3696. </package>
  3697. <package name="1X08_NO_SILK" urn="urn:adsk.eagle:footprint:37770/1" library_version="1">
  3698. <description>&lt;h3&gt;Plated Through Hole -8 Pin No Silk&lt;/h3&gt;
  3699. &lt;p&gt;Specifications:
  3700. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3701. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3702. &lt;/ul&gt;&lt;/p&gt;
  3703. &lt;p&gt;Example device(s):
  3704. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3705. &lt;/ul&gt;&lt;/p&gt;</description>
  3706. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3707. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3708. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3709. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3710. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3711. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3712. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3713. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3714. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3715. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3716. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3717. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3718. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3719. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3720. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3721. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3722. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3723. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3724. </package>
  3725. <package name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:footprint:37771/1" library_version="1">
  3726. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint No Silk&lt;/h3&gt;
  3727. Holes are offset 0.005", to hold pins in place during soldering.
  3728. &lt;p&gt;Specifications:
  3729. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3730. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3731. &lt;/ul&gt;&lt;/p&gt;
  3732. &lt;p&gt;Example device(s):
  3733. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3734. &lt;/ul&gt;&lt;/p&gt;</description>
  3735. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3736. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3737. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3738. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3739. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3740. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3741. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3742. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3743. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3744. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3745. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3746. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3747. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3748. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3749. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3750. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3751. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3752. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3753. </package>
  3754. <package name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:footprint:37772/1" library_version="1">
  3755. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Female Headers&lt;/h3&gt;
  3756. Holes are offset 0.005" to hold pins in place during soldering.
  3757. &lt;p&gt;Specifications:
  3758. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3759. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3760. &lt;/ul&gt;&lt;/p&gt;
  3761. &lt;p&gt;&lt;a href=”https://cdn.sparkfun.com/datasheets/Prototyping/SP-140520-XX-001.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3762. &lt;p&gt;Example device(s):
  3763. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3764. &lt;/ul&gt;&lt;/p&gt;</description>
  3765. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3766. <wire x1="-1.27" y1="1.27" x2="19.05" y2="1.27" width="0.2032" layer="21"/>
  3767. <wire x1="19.05" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3768. <wire x1="19.05" y1="1.27" x2="19.05" y2="-1.27" width="0.2032" layer="21"/>
  3769. <pad name="1" x="0" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3770. <pad name="2" x="2.54" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3771. <pad name="3" x="5.08" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3772. <pad name="4" x="7.62" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3773. <pad name="5" x="10.16" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3774. <pad name="6" x="12.7" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3775. <pad name="7" x="15.24" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3776. <pad name="8" x="17.78" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3777. <rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/>
  3778. <rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/>
  3779. <rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/>
  3780. <rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/>
  3781. <rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/>
  3782. <rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/>
  3783. <rectangle x1="14.9225" y1="-0.1905" x2="15.5575" y2="0.1905" layer="51"/>
  3784. <rectangle x1="17.4625" y1="-0.1905" x2="18.0975" y2="0.1905" layer="51"/>
  3785. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3786. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3787. </package>
  3788. <package name="1X04" urn="urn:adsk.eagle:footprint:37702/1" library_version="1">
  3789. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3790. &lt;p&gt;Specifications:
  3791. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3792. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3793. &lt;/ul&gt;&lt;/p&gt;
  3794. &lt;p&gt;Example device(s):
  3795. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3796. &lt;/ul&gt;&lt;/p&gt;</description>
  3797. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3798. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3799. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3800. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3801. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3802. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3803. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3804. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3805. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3806. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3807. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3808. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3809. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3810. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3811. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3812. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3813. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3814. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3815. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3816. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3817. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3818. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3819. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3820. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3821. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3822. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3823. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3824. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3825. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3826. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3827. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3828. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3829. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3830. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3831. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3832. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3833. </package>
  3834. <package name="MOLEX-1X4" urn="urn:adsk.eagle:footprint:37703/1" library_version="1">
  3835. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole&lt;/h3&gt;
  3836. &lt;p&gt;Specifications:
  3837. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3838. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3839. &lt;/ul&gt;&lt;/p&gt;
  3840. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3841. &lt;p&gt;Example device(s):
  3842. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3843. &lt;/ul&gt;&lt;/p&gt;</description>
  3844. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3845. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3846. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3847. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3848. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3849. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3850. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3851. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3852. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3853. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  3854. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3855. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3856. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3857. <text x="2.286" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3858. <text x="2.286" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3859. </package>
  3860. <package name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:footprint:37704/1" library_version="1">
  3861. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH&lt;/h3&gt;
  3862. &lt;p&gt;Specifications:
  3863. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3864. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3865. &lt;/ul&gt;&lt;/p&gt;
  3866. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3867. &lt;p&gt;Example device(s):
  3868. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3869. &lt;/ul&gt;&lt;/p&gt;</description>
  3870. <wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/>
  3871. <wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/>
  3872. <wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/>
  3873. <wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3874. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3875. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3876. <wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3877. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3878. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3879. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3880. <wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="51"/>
  3881. <wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="51"/>
  3882. <wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="51"/>
  3883. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3884. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3885. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3886. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3887. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3888. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3889. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3890. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3891. <text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3892. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3893. </package>
  3894. <package name="1X04_1.27MM" urn="urn:adsk.eagle:footprint:37705/1" library_version="1">
  3895. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3896. &lt;p&gt;Specifications:
  3897. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3898. &lt;li&gt;Pin pitch: 1.27mm&lt;/li&gt;
  3899. &lt;/ul&gt;&lt;/p&gt;
  3900. &lt;p&gt;Example device(s):
  3901. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3902. &lt;/ul&gt;&lt;/p&gt;</description>
  3903. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  3904. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  3905. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  3906. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  3907. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  3908. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  3909. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  3910. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  3911. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  3912. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3913. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  3914. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  3915. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  3916. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  3917. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  3918. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  3919. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  3920. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  3921. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  3922. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  3923. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  3924. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  3925. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  3926. <wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/>
  3927. <wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/>
  3928. <wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3929. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  3930. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  3931. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  3932. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  3933. <text x="-0.508" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3934. <text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3935. </package>
  3936. <package name="1X04_LOCK" urn="urn:adsk.eagle:footprint:37706/1" library_version="1">
  3937. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Locking Footprint&lt;/h3&gt;
  3938. Pins are offset 0.005" from center to lock pins in place during soldering.
  3939. &lt;p&gt;Specifications:
  3940. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3941. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3942. &lt;/ul&gt;&lt;/p&gt;
  3943. &lt;p&gt;Example device(s):
  3944. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3945. &lt;/ul&gt;&lt;/p&gt;</description>
  3946. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3947. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3948. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3949. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3950. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3951. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3952. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3953. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3954. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3955. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3956. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3957. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3958. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3959. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3960. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3961. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3962. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3963. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3964. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3965. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3966. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3967. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3968. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3969. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3970. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3971. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3972. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3973. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3974. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3975. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3976. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3977. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3978. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3979. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3980. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3981. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3982. </package>
  3983. <package name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37707/1" library_version="1">
  3984. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint&lt;/h3&gt;
  3985. Holes are offset 0.005" from center to lock pins in place during soldering.
  3986. &lt;p&gt;Specifications:
  3987. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3988. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3989. &lt;/ul&gt;&lt;/p&gt;
  3990. &lt;p&gt;Example device(s):
  3991. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3992. &lt;/ul&gt;&lt;/p&gt;</description>
  3993. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  3994. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  3995. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  3996. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  3997. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  3998. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  3999. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  4000. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  4001. <wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  4002. <wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/>
  4003. <wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/>
  4004. <wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/>
  4005. <wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/>
  4006. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  4007. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  4008. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  4009. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  4010. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  4011. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  4012. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  4013. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  4014. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4015. <text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4016. </package>
  4017. <package name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:footprint:37708/1" library_version="1">
  4018. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole Locking&lt;/h3&gt;
  4019. Holes are offset 0.005" from center to hold pins in place during soldering.
  4020. &lt;p&gt;Specifications:
  4021. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4022. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4023. &lt;/ul&gt;&lt;/p&gt;
  4024. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  4025. &lt;p&gt;Example device(s):
  4026. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4027. &lt;/ul&gt;&lt;/p&gt;</description>
  4028. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  4029. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  4030. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  4031. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  4032. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  4033. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  4034. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  4035. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  4036. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  4037. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
  4038. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  4039. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  4040. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  4041. <text x="2.667" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4042. <text x="2.032" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4043. </package>
  4044. <package name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37709/1" library_version="1">
  4045. <description>&lt;h3&gt;SMD - 4 Pin Right Angle Male Header&lt;/h3&gt;
  4046. tDocu layer shows pin locations.
  4047. &lt;p&gt;Specifications:
  4048. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4049. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4050. &lt;/ul&gt;&lt;/p&gt;
  4051. &lt;p&gt;Example device(s):
  4052. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4053. &lt;/ul&gt;&lt;/p&gt;</description>
  4054. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  4055. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  4056. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  4057. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4058. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  4059. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  4060. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  4061. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  4062. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  4063. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  4064. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  4065. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  4066. <smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4067. <smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4068. <smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4069. <smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4070. <hole x="-2.54" y="0" drill="1.4"/>
  4071. <hole x="2.54" y="0" drill="1.4"/>
  4072. <text x="-4.318" y="6.731" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4073. <text x="-4.318" y="2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4074. </package>
  4075. <package name="1X04_LONGPADS" urn="urn:adsk.eagle:footprint:37710/1" library_version="1">
  4076. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads&lt;/h3&gt;
  4077. &lt;p&gt;Specifications:
  4078. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4079. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4080. &lt;/ul&gt;&lt;/p&gt;
  4081. &lt;p&gt;Example device(s):
  4082. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4083. &lt;/ul&gt;&lt;/p&gt;</description>
  4084. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  4085. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  4086. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4087. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4088. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4089. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4090. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  4091. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  4092. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  4093. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  4094. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4095. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4096. </package>
  4097. <package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1">
  4098. <description>&lt;h3&gt;Plated Through Hole - 4 Pin No Silk Outline&lt;/h3&gt;
  4099. &lt;p&gt;Specifications:
  4100. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4101. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4102. &lt;/ul&gt;&lt;/p&gt;
  4103. &lt;p&gt;Example device(s):
  4104. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4105. &lt;/ul&gt;&lt;/p&gt;</description>
  4106. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4107. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4108. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4109. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4110. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  4111. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  4112. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  4113. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  4114. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4115. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4116. </package>
  4117. <package name="JST-4-PTH" urn="urn:adsk.eagle:footprint:37712/1" library_version="1">
  4118. <description>&lt;h3&gt;JST Right Angle 4 Pin Plated Through Hole&lt;/h3&gt;
  4119. &lt;p&gt;Specifications:
  4120. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4121. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  4122. &lt;/ul&gt;&lt;/p&gt;
  4123. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/ePH.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  4124. &lt;p&gt;Example device(s):
  4125. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4126. &lt;/ul&gt;&lt;/p&gt;</description>
  4127. <pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/>
  4128. <pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/>
  4129. <pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/>
  4130. <pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/>
  4131. <text x="-3.4" y="0.7" size="1.27" layer="51">+</text>
  4132. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  4133. <text x="0.7" y="0.9" size="0.8" layer="51">S</text>
  4134. <text x="2.7" y="0.9" size="0.8" layer="51">S</text>
  4135. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4136. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4137. <wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/>
  4138. <wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/>
  4139. <wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/>
  4140. <wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/>
  4141. <wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/>
  4142. <wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/>
  4143. <wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/>
  4144. </package>
  4145. <package name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:footprint:37713/1" library_version="1">
  4146. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH Locking&lt;/h3&gt;
  4147. Holes are offset 0.005" from center to hold pins in place during soldering.
  4148. &lt;p&gt;Specifications:
  4149. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4150. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  4151. &lt;/ul&gt;&lt;/p&gt;
  4152. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  4153. &lt;p&gt;Example device(s):
  4154. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4155. &lt;/ul&gt;&lt;/p&gt;</description>
  4156. <wire x1="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/>
  4157. <wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/>
  4158. <wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/>
  4159. <wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/>
  4160. <wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  4161. <wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/>
  4162. <wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  4163. <wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="51"/>
  4164. <wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="51"/>
  4165. <wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="51"/>
  4166. <wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="51"/>
  4167. <wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="51"/>
  4168. <wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="51"/>
  4169. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  4170. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  4171. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  4172. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  4173. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  4174. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  4175. <pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/>
  4176. <pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/>
  4177. <text x="3.81" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4178. <text x="3.81" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4179. </package>
  4180. <package name="1X04_1MM_RA" urn="urn:adsk.eagle:footprint:37714/1" library_version="1">
  4181. <description>&lt;h3&gt;SMD- 4 Pin Right Angle &lt;/h3&gt;
  4182. &lt;p&gt;Specifications:
  4183. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4184. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4185. &lt;/ul&gt;&lt;/p&gt;
  4186. &lt;p&gt;Example device(s):
  4187. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4188. &lt;/ul&gt;&lt;/p&gt;</description>
  4189. <wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/>
  4190. <wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/>
  4191. <wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/>
  4192. <wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/>
  4193. <wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/>
  4194. <circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  4195. <smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  4196. <smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  4197. <smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4198. <smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4199. <smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4200. <smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4201. <text x="-1.397" y="-2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4202. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4203. </package>
  4204. <package name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:footprint:37715/1" library_version="1">
  4205. <description>&lt;h3&gt;SMD - 4 Pin Vertical Connector&lt;/h3&gt;
  4206. &lt;p&gt;Specifications:
  4207. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4208. &lt;li&gt;SMD Pad count:8&lt;/li&gt;
  4209. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4210. &lt;/ul&gt;&lt;/p&gt;
  4211. &lt;p&gt;Example device(s):
  4212. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4213. &lt;/ul&gt;&lt;/p&gt;</description>
  4214. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  4215. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  4216. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  4217. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  4218. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  4219. <wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/>
  4220. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  4221. <wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/>
  4222. <wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/>
  4223. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  4224. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  4225. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  4226. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  4227. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  4228. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  4229. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  4230. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4231. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4232. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4233. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4234. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4235. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4236. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4237. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4238. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4239. <text x="-0.508" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4240. </package>
  4241. <package name="1X04_SMD_LONG" urn="urn:adsk.eagle:footprint:37716/1" library_version="1">
  4242. <description>&lt;h3&gt;SMD - 4 Pin w/ Long Solder Pads&lt;/h3&gt;
  4243. No silk, but tDocu layer shows pin position.
  4244. &lt;p&gt;Specifications:
  4245. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4246. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4247. &lt;/ul&gt;&lt;/p&gt;
  4248. &lt;p&gt;Example device(s):
  4249. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4250. &lt;/ul&gt;&lt;/p&gt;</description>
  4251. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  4252. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  4253. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  4254. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4255. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  4256. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  4257. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  4258. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  4259. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  4260. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  4261. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  4262. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  4263. <smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4264. <smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4265. <smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4266. <smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4267. <hole x="-2.54" y="0" drill="1.4"/>
  4268. <hole x="2.54" y="0" drill="1.4"/>
  4269. </package>
  4270. <package name="JST-4-PTH-VERT" urn="urn:adsk.eagle:footprint:37717/1" library_version="1">
  4271. <description>&lt;h3&gt;JST Vertical 4 Pin Plated Through Hole&lt;/h3&gt;
  4272. &lt;p&gt;Specifications:
  4273. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4274. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  4275. &lt;/ul&gt;&lt;/p&gt;
  4276. &lt;p&gt;&lt;a href="http://www.jst-mfg.com/product/pdf/eng/ePH.pdf"&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  4277. &lt;p&gt;Example device(s):
  4278. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4279. &lt;/ul&gt;&lt;/p&gt;</description>
  4280. <wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/>
  4281. <wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/>
  4282. <wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4283. <wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/>
  4284. <wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
  4285. <wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4286. <wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
  4287. <wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/>
  4288. <pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/>
  4289. <pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/>
  4290. <pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/>
  4291. <pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/>
  4292. <text x="-1.4" y="0.75" size="1.27" layer="51">+</text>
  4293. <text x="0.6" y="0.75" size="1.27" layer="51">-</text>
  4294. <text x="2.7" y="0.95" size="0.8" layer="51">Y</text>
  4295. <text x="-3.3" y="0.95" size="0.8" layer="51">B</text>
  4296. <text x="-1.143" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4297. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4298. </package>
  4299. <package name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37718/1" library_version="1">
  4300. <description>&lt;h3&gt;SMD - 4 Pin Right-Angle Female Header&lt;/h3&gt;
  4301. Silk outline shows header location.
  4302. &lt;p&gt;Specifications:
  4303. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4304. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4305. &lt;/ul&gt;&lt;/p&gt;
  4306. &lt;p&gt;Example device(s):
  4307. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4308. &lt;/ul&gt;&lt;/p&gt;</description>
  4309. <wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/>
  4310. <wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/>
  4311. <wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/>
  4312. <wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/>
  4313. <rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="51"/>
  4314. <rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="51"/>
  4315. <rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="51"/>
  4316. <rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="51"/>
  4317. <smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4318. <smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4319. <smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4320. <smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4321. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4322. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4323. </package>
  4324. </packages>
  4325. <packages3d>
  4326. <package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1">
  4327. <description>Plated Through Hole
  4328. Specifications:
  4329. Pin count:2
  4330. Pin pitch:0.1"
  4331. Example device(s):
  4332. CONN_02
  4333. </description>
  4334. <packageinstances>
  4335. <packageinstance name="1X02"/>
  4336. </packageinstances>
  4337. </package3d>
  4338. <package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1">
  4339. <description>Molex 2-Pin Plated Through-Hole
  4340. Specifications:
  4341. Pin count:2
  4342. Pin pitch:0.1"
  4343. Datasheet referenced for footprint
  4344. Example device(s):
  4345. CONN_02
  4346. </description>
  4347. <packageinstances>
  4348. <packageinstance name="MOLEX-1X2"/>
  4349. </packageinstances>
  4350. </package3d>
  4351. <package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1">
  4352. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH
  4353. Specifications:
  4354. Pin count: 2
  4355. Pin pitch: 3.5mm/138mil
  4356. Datasheet referenced for footprint
  4357. Example device(s):
  4358. CONN_02
  4359. </description>
  4360. <packageinstances>
  4361. <packageinstance name="SCREWTERMINAL-3.5MM-2"/>
  4362. </packageinstances>
  4363. </package3d>
  4364. <package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1">
  4365. <description>JST-Right Angle Male Header SMT
  4366. Specifications:
  4367. Pin count: 2
  4368. Pin pitch: 2mm
  4369. Datasheet referenced for footprint
  4370. Example device(s):
  4371. CONN_02
  4372. JST_2MM_MALE
  4373. </description>
  4374. <packageinstances>
  4375. <packageinstance name="JST-2-SMD"/>
  4376. </packageinstances>
  4377. </package3d>
  4378. <package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1">
  4379. <description>Plated Through Hole
  4380. Specifications:
  4381. Pin count:2
  4382. Pin pitch:0.15"
  4383. Example device(s):
  4384. CONN_02
  4385. </description>
  4386. <packageinstances>
  4387. <packageinstance name="1X02_BIG"/>
  4388. </packageinstances>
  4389. </package3d>
  4390. <package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1">
  4391. <description>JST-Vertical Male Header SMT
  4392. Specifications:
  4393. Pin count: 2
  4394. Pin pitch: 2mm
  4395. Datasheet referenced for footprint
  4396. Example device(s):
  4397. CONN_02
  4398. </description>
  4399. <packageinstances>
  4400. <packageinstance name="JST-2-SMD-VERT"/>
  4401. </packageinstances>
  4402. </package3d>
  4403. <package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1">
  4404. <description>Screw Terminal 5mm Pitch -2 Pin PTH
  4405. Specifications:
  4406. Pin count: 2
  4407. Pin pitch: 5mm/197mil
  4408. Datasheet referenced for footprint
  4409. Example device(s):
  4410. CONN_02
  4411. </description>
  4412. <packageinstances>
  4413. <packageinstance name="SCREWTERMINAL-5MM-2"/>
  4414. </packageinstances>
  4415. </package3d>
  4416. <package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1">
  4417. <description>Plated Through Hole - Locking Footprint
  4418. Holes are staggered by 0.005" from center to hold pins while soldering.
  4419. Specifications:
  4420. Pin count:2
  4421. Pin pitch:0.1"
  4422. Example device(s):
  4423. CONN_02
  4424. </description>
  4425. <packageinstances>
  4426. <packageinstance name="1X02_LOCK"/>
  4427. </packageinstances>
  4428. </package3d>
  4429. <package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1">
  4430. <description>Molex 2-Pin Plated Through-Hole Locking Footprint
  4431. Holes are offset from center by 0.005" to hold pins in place during soldering.
  4432. Specifications:
  4433. Pin count:2
  4434. Pin pitch:0.1"
  4435. Datasheet referenced for footprint
  4436. Example device(s):
  4437. CONN_02
  4438. </description>
  4439. <packageinstances>
  4440. <packageinstance name="MOLEX-1X2_LOCK"/>
  4441. </packageinstances>
  4442. </package3d>
  4443. <package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1">
  4444. <description>Plated Through Hole - Long Pads with Locking Footprint
  4445. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  4446. Specifications:
  4447. Pin count:2
  4448. Pin pitch:0.1"
  4449. Example device(s):
  4450. CONN_02
  4451. </description>
  4452. <packageinstances>
  4453. <packageinstance name="1X02_LOCK_LONGPADS"/>
  4454. </packageinstances>
  4455. </package3d>
  4456. <package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1">
  4457. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking
  4458. Holes are offset from center 0.005" to hold pins in place during soldering.
  4459. Specifications:
  4460. Pin count: 2
  4461. Pin pitch: 3.5mm/138mil
  4462. Datasheet referenced for footprint
  4463. Example device(s):
  4464. CONN_02
  4465. </description>
  4466. <packageinstances>
  4467. <packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/>
  4468. </packageinstances>
  4469. </package3d>
  4470. <package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1">
  4471. <description>Plated Through Hole - Long Pads without Silk Outline
  4472. Specifications:
  4473. Pin count:2
  4474. Pin pitch:0.1"
  4475. Example device(s):
  4476. CONN_02
  4477. </description>
  4478. <packageinstances>
  4479. <packageinstance name="1X02_LONGPADS"/>
  4480. </packageinstances>
  4481. </package3d>
  4482. <package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1">
  4483. <description>Plated Through Hole - No Silk Outline
  4484. Specifications:
  4485. Pin count:2
  4486. Pin pitch:0.1"
  4487. Example device(s):
  4488. CONN_02
  4489. </description>
  4490. <packageinstances>
  4491. <packageinstance name="1X02_NO_SILK"/>
  4492. </packageinstances>
  4493. </package3d>
  4494. <package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1">
  4495. <description>JST 2 Pin Right Angle Plated Through Hole
  4496. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4497. Specifications:
  4498. Pin count: 2
  4499. Pin pitch:2mm
  4500. Datasheet referenced for footprint
  4501. Example device(s):
  4502. CONN_02
  4503. </description>
  4504. <packageinstances>
  4505. <packageinstance name="JST-2-PTH"/>
  4506. </packageinstances>
  4507. </package3d>
  4508. <package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1">
  4509. <description>Plated Through Hole - 0.1" holes
  4510. Specifications:
  4511. Pin count:2
  4512. Pin pitch:0.2"
  4513. Example device(s):
  4514. CONN_02
  4515. </description>
  4516. <packageinstances>
  4517. <packageinstance name="1X02_XTRA_BIG"/>
  4518. </packageinstances>
  4519. </package3d>
  4520. <package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1">
  4521. <description>Pogo Pins Connector - No Silk Outline
  4522. Specifications:
  4523. Pin count:2
  4524. Pin pitch:0.1"
  4525. Example device(s):
  4526. CONN_02
  4527. </description>
  4528. <packageinstances>
  4529. <packageinstance name="1X02_PP_HOLES_ONLY"/>
  4530. </packageinstances>
  4531. </package3d>
  4532. <package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1">
  4533. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline
  4534. Specifications:
  4535. Pin count: 2
  4536. Pin pitch: 3.5mm/138mil
  4537. Datasheet referenced for footprint
  4538. Example device(s):
  4539. CONN_02
  4540. </description>
  4541. <packageinstances>
  4542. <packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/>
  4543. </packageinstances>
  4544. </package3d>
  4545. <package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1">
  4546. <description>JST 2 Pin Right Angle Plated Through Hole- No Silk
  4547. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4548. No silk outline of connector.
  4549. Specifications:
  4550. Pin count: 2
  4551. Pin pitch:2mm
  4552. Datasheet referenced for footprint
  4553. Example device(s):
  4554. CONN_02
  4555. </description>
  4556. <packageinstances>
  4557. <packageinstance name="JST-2-PTH-NS"/>
  4558. </packageinstances>
  4559. </package3d>
  4560. <package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1">
  4561. <description>JST 2 Pin Right Angle Plated Through Hole - KIT
  4562. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4563. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  4564. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  4565. Specifications:
  4566. Pin count: 2
  4567. Pin pitch:2mm
  4568. Datasheet referenced for footprint
  4569. Example device(s):
  4570. CONN_02
  4571. </description>
  4572. <packageinstances>
  4573. <packageinstance name="JST-2-PTH-KIT"/>
  4574. </packageinstances>
  4575. </package3d>
  4576. <package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1">
  4577. <description>Spring Terminal- PCB Mount 2 Pin PTH
  4578. tDocu marks the spring arms
  4579. Specifications:
  4580. Pin count: 4
  4581. Pin pitch: 0.1"
  4582. Datasheet referenced for footprint
  4583. Example device(s):
  4584. CONN_02
  4585. </description>
  4586. <packageinstances>
  4587. <packageinstance name="SPRINGTERMINAL-2.54MM-2"/>
  4588. </packageinstances>
  4589. </package3d>
  4590. <package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1">
  4591. <description>2 Pin Screw Terminal - 2.54mm
  4592. Specifications:
  4593. Pin count:2
  4594. Pin pitch:0.1"
  4595. Example device(s):
  4596. CONN_02
  4597. </description>
  4598. <packageinstances>
  4599. <packageinstance name="1X02_2.54_SCREWTERM"/>
  4600. </packageinstances>
  4601. </package3d>
  4602. <package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1">
  4603. <description>2 pin poke-home connector
  4604. part number 2062-2P from STA</description>
  4605. <packageinstances>
  4606. <packageinstance name="1X02_POKEHOME"/>
  4607. </packageinstances>
  4608. </package3d>
  4609. <package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1">
  4610. <packageinstances>
  4611. <packageinstance name="1X02_RA_PTH_FEMALE"/>
  4612. </packageinstances>
  4613. </package3d>
  4614. <package3d name="1X08" urn="urn:adsk.eagle:package:38138/1" type="box" library_version="1">
  4615. <description>Plated Through Hole -8 Pin
  4616. Specifications:
  4617. Pin count:8
  4618. Pin pitch:0.1"
  4619. Example device(s):
  4620. CONN_08
  4621. </description>
  4622. <packageinstances>
  4623. <packageinstance name="1X08"/>
  4624. </packageinstances>
  4625. </package3d>
  4626. <package3d name="1X08_LOCK" urn="urn:adsk.eagle:package:38137/1" type="box" library_version="1">
  4627. <description>Plated Through Hole -8 Pin Locking Footprint
  4628. Holes are offset 0.005", to hold pins in place during soldering.
  4629. Specifications:
  4630. Pin count:8
  4631. Pin pitch:0.1"
  4632. Example device(s):
  4633. CONN_08
  4634. </description>
  4635. <packageinstances>
  4636. <packageinstance name="1X08_LOCK"/>
  4637. </packageinstances>
  4638. </package3d>
  4639. <package3d name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38140/1" type="box" library_version="1">
  4640. <description>Plated Through Hole -8 Pin Locking Footprint with Long Pads
  4641. Holes are offset 0.005", to hold pins in place during soldering.
  4642. Specifications:
  4643. Pin count:8
  4644. Pin pitch:0.1"
  4645. Example device(s):
  4646. CONN_08
  4647. </description>
  4648. <packageinstances>
  4649. <packageinstance name="1X08_LOCK_LONGPADS"/>
  4650. </packageinstances>
  4651. </package3d>
  4652. <package3d name="1X08_LONGPADS" urn="urn:adsk.eagle:package:38142/1" type="box" library_version="1">
  4653. <description>Plated Through Hole -8 Pin Long Pads
  4654. Specifications:
  4655. Pin count:8
  4656. Pin pitch:0.1"
  4657. Example device(s):
  4658. CONN_08
  4659. </description>
  4660. <packageinstances>
  4661. <packageinstance name="1X08_LONGPADS"/>
  4662. </packageinstances>
  4663. </package3d>
  4664. <package3d name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:package:38143/1" type="box" library_version="1">
  4665. <description>Screw Terminal 3.5mm Pitch -8 Pin PTH
  4666. Specifications:
  4667. Pin count: 8
  4668. Pin pitch: 3.5mm/138mil
  4669. Datasheet referenced for footprint
  4670. Example device(s):
  4671. CONN_08
  4672. </description>
  4673. <packageinstances>
  4674. <packageinstance name="SCREWTERMINAL-3.5MM-8"/>
  4675. </packageinstances>
  4676. </package3d>
  4677. <package3d name="1X08_SMD" urn="urn:adsk.eagle:package:38144/1" type="box" library_version="1">
  4678. <description>SMD -8 Pin Vertical Female
  4679. Specifications:
  4680. Pin count:8
  4681. Pin pitch:0.1"
  4682. Datasheet referenced for footprint
  4683. Example device(s):
  4684. CONN_08
  4685. </description>
  4686. <packageinstances>
  4687. <packageinstance name="1X08_SMD"/>
  4688. </packageinstances>
  4689. </package3d>
  4690. <package3d name="1X08_SMD_ALT" urn="urn:adsk.eagle:package:38148/1" type="box" library_version="1">
  4691. <description>SMD -8 Pin Vertical Female
  4692. Alternate pin configuration
  4693. Specifications:
  4694. Pin count:8
  4695. Pin pitch:0.1"
  4696. Datasheet referenced for footprint
  4697. Example device(s):
  4698. CONN_08
  4699. </description>
  4700. <packageinstances>
  4701. <packageinstance name="1X08_SMD_ALT"/>
  4702. </packageinstances>
  4703. </package3d>
  4704. <package3d name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:package:38146/1" type="box" library_version="1">
  4705. <description>SMD -8 Pin Vertical Female
  4706. Combined footprint configuration
  4707. Specifications:
  4708. Pin count:8
  4709. Pin pitch:0.1"
  4710. Datasheet referenced for footprint
  4711. Example device(s):
  4712. CONN_08
  4713. </description>
  4714. <packageinstances>
  4715. <packageinstance name="1X08_SMD_COMBINED"/>
  4716. </packageinstances>
  4717. </package3d>
  4718. <package3d name="BM08B-SRSS-TB" urn="urn:adsk.eagle:package:38145/1" type="box" library_version="1">
  4719. <description>JST Vertical Crimp Connect
  4720. Specifications:
  4721. Pin count: 8
  4722. Pin pitch:1mm
  4723. Datasheet referenced for footprint
  4724. Example device(s):
  4725. CONN_08
  4726. </description>
  4727. <packageinstances>
  4728. <packageinstance name="BM08B-SRSS-TB"/>
  4729. </packageinstances>
  4730. </package3d>
  4731. <package3d name="1X08_SMD_MALE" urn="urn:adsk.eagle:package:38150/1" type="box" library_version="1">
  4732. <description>SMD -8 Pin Vertical Male
  4733. Specifications:
  4734. Pin count:8
  4735. Pin pitch:0.1"
  4736. Datasheet referenced for footprint
  4737. Example device(s):
  4738. CONN_08
  4739. </description>
  4740. <packageinstances>
  4741. <packageinstance name="1X08_SMD_MALE"/>
  4742. </packageinstances>
  4743. </package3d>
  4744. <package3d name="1X08_NO_SILK" urn="urn:adsk.eagle:package:38149/1" type="box" library_version="1">
  4745. <description>Plated Through Hole -8 Pin No Silk
  4746. Specifications:
  4747. Pin count:8
  4748. Pin pitch:0.1"
  4749. Example device(s):
  4750. CONN_08
  4751. </description>
  4752. <packageinstances>
  4753. <packageinstance name="1X08_NO_SILK"/>
  4754. </packageinstances>
  4755. </package3d>
  4756. <package3d name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:package:38147/1" type="box" library_version="1">
  4757. <description>Plated Through Hole -8 Pin Locking Footprint No Silk
  4758. Holes are offset 0.005", to hold pins in place during soldering.
  4759. Specifications:
  4760. Pin count:8
  4761. Pin pitch:0.1"
  4762. Example device(s):
  4763. CONN_08
  4764. </description>
  4765. <packageinstances>
  4766. <packageinstance name="1X08_LOCK_NO_SILK"/>
  4767. </packageinstances>
  4768. </package3d>
  4769. <package3d name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:package:38151/1" type="box" library_version="1">
  4770. <description>Plated Through Hole -8 Pin Locking Female Headers
  4771. Holes are offset 0.005" to hold pins in place during soldering.
  4772. Specifications:
  4773. Pin count:8
  4774. Pin pitch:0.1"
  4775. Datasheet referenced for footprint
  4776. Example device(s):
  4777. CONN_08
  4778. </description>
  4779. <packageinstances>
  4780. <packageinstance name="1X08_FEMALE_LOCK"/>
  4781. </packageinstances>
  4782. </package3d>
  4783. <package3d name="1X04" urn="urn:adsk.eagle:package:38085/1" type="box" library_version="1">
  4784. <description>Plated Through Hole - 4 Pin
  4785. Specifications:
  4786. Pin count:4
  4787. Pin pitch:0.1"
  4788. Example device(s):
  4789. CONN_04
  4790. </description>
  4791. <packageinstances>
  4792. <packageinstance name="1X04"/>
  4793. </packageinstances>
  4794. </package3d>
  4795. <package3d name="MOLEX-1X4" urn="urn:adsk.eagle:package:38087/1" type="box" library_version="1">
  4796. <description>Molex 4-Pin Plated Through-Hole
  4797. Specifications:
  4798. Pin count:4
  4799. Pin pitch:0.1"
  4800. Datasheet referenced for footprint
  4801. Example device(s):
  4802. CONN_04
  4803. </description>
  4804. <packageinstances>
  4805. <packageinstance name="MOLEX-1X4"/>
  4806. </packageinstances>
  4807. </package3d>
  4808. <package3d name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:package:38090/1" type="box" library_version="1">
  4809. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH
  4810. Specifications:
  4811. Pin count: 4
  4812. Pin pitch: 3.5mm/138mil
  4813. Datasheet referenced for footprint
  4814. Example device(s):
  4815. CONN_04
  4816. </description>
  4817. <packageinstances>
  4818. <packageinstance name="SCREWTERMINAL-3.5MM-4"/>
  4819. </packageinstances>
  4820. </package3d>
  4821. <package3d name="1X04_1.27MM" urn="urn:adsk.eagle:package:38086/1" type="box" library_version="1">
  4822. <description>Plated Through Hole - 4 Pin
  4823. Specifications:
  4824. Pin count:4
  4825. Pin pitch: 1.27mm
  4826. Example device(s):
  4827. CONN_04
  4828. </description>
  4829. <packageinstances>
  4830. <packageinstance name="1X04_1.27MM"/>
  4831. </packageinstances>
  4832. </package3d>
  4833. <package3d name="1X04_LOCK" urn="urn:adsk.eagle:package:38089/1" type="box" library_version="1">
  4834. <description>Plated Through Hole - 4 Pin Locking Footprint
  4835. Pins are offset 0.005" from center to lock pins in place during soldering.
  4836. Specifications:
  4837. Pin count:4
  4838. Pin pitch:0.1"
  4839. Example device(s):
  4840. CONN_04
  4841. </description>
  4842. <packageinstances>
  4843. <packageinstance name="1X04_LOCK"/>
  4844. </packageinstances>
  4845. </package3d>
  4846. <package3d name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38091/1" type="box" library_version="1">
  4847. <description>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint
  4848. Holes are offset 0.005" from center to lock pins in place during soldering.
  4849. Specifications:
  4850. Pin count:4
  4851. Pin pitch:0.1"
  4852. Example device(s):
  4853. CONN_04
  4854. </description>
  4855. <packageinstances>
  4856. <packageinstance name="1X04_LOCK_LONGPADS"/>
  4857. </packageinstances>
  4858. </package3d>
  4859. <package3d name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:package:38092/1" type="box" library_version="1">
  4860. <description>Molex 4-Pin Plated Through-Hole Locking
  4861. Holes are offset 0.005" from center to hold pins in place during soldering.
  4862. Specifications:
  4863. Pin count:4
  4864. Pin pitch:0.1"
  4865. Datasheet referenced for footprint
  4866. Example device(s):
  4867. CONN_04
  4868. </description>
  4869. <packageinstances>
  4870. <packageinstance name="MOLEX-1X4_LOCK"/>
  4871. </packageinstances>
  4872. </package3d>
  4873. <package3d name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:package:38093/1" type="box" library_version="1">
  4874. <description>SMD - 4 Pin Right Angle Male Header
  4875. tDocu layer shows pin locations.
  4876. Specifications:
  4877. Pin count:4
  4878. Pin pitch:0.1"
  4879. Example device(s):
  4880. CONN_04
  4881. </description>
  4882. <packageinstances>
  4883. <packageinstance name="1X04_SMD_RA_MALE"/>
  4884. </packageinstances>
  4885. </package3d>
  4886. <package3d name="1X04_LONGPADS" urn="urn:adsk.eagle:package:38098/1" type="box" library_version="1">
  4887. <description>Plated Through Hole - 4 Pin Long Pads
  4888. Specifications:
  4889. Pin count:4
  4890. Pin pitch:0.1"
  4891. Example device(s):
  4892. CONN_04
  4893. </description>
  4894. <packageinstances>
  4895. <packageinstance name="1X04_LONGPADS"/>
  4896. </packageinstances>
  4897. </package3d>
  4898. <package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1">
  4899. <description>Plated Through Hole - 4 Pin No Silk Outline
  4900. Specifications:
  4901. Pin count:4
  4902. Pin pitch:0.1"
  4903. Example device(s):
  4904. CONN_04
  4905. </description>
  4906. <packageinstances>
  4907. <packageinstance name="1X04_NO_SILK"/>
  4908. </packageinstances>
  4909. </package3d>
  4910. <package3d name="JST-4-PTH" urn="urn:adsk.eagle:package:38101/1" type="box" library_version="1">
  4911. <description>JST Right Angle 4 Pin Plated Through Hole
  4912. Specifications:
  4913. Pin count: 4
  4914. Pin pitch: 2mm
  4915. Datasheet referenced for footprint
  4916. Example device(s):
  4917. CONN_04
  4918. </description>
  4919. <packageinstances>
  4920. <packageinstance name="JST-4-PTH"/>
  4921. </packageinstances>
  4922. </package3d>
  4923. <package3d name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:package:38095/1" type="box" library_version="1">
  4924. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking
  4925. Holes are offset 0.005" from center to hold pins in place during soldering.
  4926. Specifications:
  4927. Pin count: 4
  4928. Pin pitch: 3.5mm/138mil
  4929. Datasheet referenced for footprint
  4930. Example device(s):
  4931. CONN_04
  4932. </description>
  4933. <packageinstances>
  4934. <packageinstance name="SCREWTERMINAL-3.5MM-4_LOCK"/>
  4935. </packageinstances>
  4936. </package3d>
  4937. <package3d name="1X04_1MM_RA" urn="urn:adsk.eagle:package:38096/1" type="box" library_version="1">
  4938. <description>SMD- 4 Pin Right Angle
  4939. Specifications:
  4940. Pin count:4
  4941. Pin pitch:0.1"
  4942. Example device(s):
  4943. CONN_04
  4944. </description>
  4945. <packageinstances>
  4946. <packageinstance name="1X04_1MM_RA"/>
  4947. </packageinstances>
  4948. </package3d>
  4949. <package3d name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:package:38097/1" type="box" library_version="1">
  4950. <description>SMD - 4 Pin Vertical Connector
  4951. Specifications:
  4952. Pin count:4
  4953. SMD Pad count:8
  4954. Pin pitch:0.1"
  4955. Example device(s):
  4956. CONN_04
  4957. </description>
  4958. <packageinstances>
  4959. <packageinstance name="1X04_SMD_VERTICAL_COMBO"/>
  4960. </packageinstances>
  4961. </package3d>
  4962. <package3d name="1X04_SMD_LONG" urn="urn:adsk.eagle:package:38099/1" type="box" library_version="1">
  4963. <description>SMD - 4 Pin w/ Long Solder Pads
  4964. No silk, but tDocu layer shows pin position.
  4965. Specifications:
  4966. Pin count:4
  4967. Pin pitch:0.1"
  4968. Example device(s):
  4969. CONN_04
  4970. </description>
  4971. <packageinstances>
  4972. <packageinstance name="1X04_SMD_LONG"/>
  4973. </packageinstances>
  4974. </package3d>
  4975. <package3d name="JST-4-PTH-VERT" urn="urn:adsk.eagle:package:38102/1" type="box" library_version="1">
  4976. <description>JST Vertical 4 Pin Plated Through Hole
  4977. Specifications:
  4978. Pin count: 4
  4979. Pin pitch: 2mm
  4980. Datasheet referenced for footprint
  4981. Example device(s):
  4982. CONN_04
  4983. </description>
  4984. <packageinstances>
  4985. <packageinstance name="JST-4-PTH-VERT"/>
  4986. </packageinstances>
  4987. </package3d>
  4988. <package3d name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38100/1" type="box" library_version="1">
  4989. <description>SMD - 4 Pin Right-Angle Female Header
  4990. Silk outline shows header location.
  4991. Specifications:
  4992. Pin count:4
  4993. Pin pitch:0.1"
  4994. Example device(s):
  4995. CONN_04
  4996. </description>
  4997. <packageinstances>
  4998. <packageinstance name="1X04_SMD_RA_FEMALE"/>
  4999. </packageinstances>
  5000. </package3d>
  5001. </packages3d>
  5002. <symbols>
  5003. <symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1">
  5004. <description>&lt;h3&gt;2 Pin Connection&lt;/h3&gt;</description>
  5005. <wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  5006. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  5007. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  5008. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  5009. <wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  5010. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  5011. <text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  5012. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  5013. <pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5014. <pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5015. </symbol>
  5016. <symbol name="CONN_08" urn="urn:adsk.eagle:symbol:37759/1" library_version="1">
  5017. <description>&lt;h3&gt; 8 Pin Connection&lt;/h3&gt;</description>
  5018. <wire x1="1.27" y1="-10.16" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  5019. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  5020. <wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/>
  5021. <wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.6096" layer="94"/>
  5022. <wire x1="-5.08" y1="12.7" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  5023. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  5024. <wire x1="-5.08" y1="12.7" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  5025. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  5026. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  5027. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  5028. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/>
  5029. <wire x1="-1.27" y1="10.16" x2="0" y2="10.16" width="0.6096" layer="94"/>
  5030. <text x="-5.08" y="-12.446" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  5031. <text x="-5.08" y="13.208" size="1.778" layer="95" font="vector">&gt;NAME</text>
  5032. <pin name="1" x="5.08" y="-7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5033. <pin name="2" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5034. <pin name="3" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5035. <pin name="4" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5036. <pin name="5" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5037. <pin name="6" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5038. <pin name="7" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5039. <pin name="8" x="5.08" y="10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5040. </symbol>
  5041. <symbol name="CONN_04" urn="urn:adsk.eagle:symbol:37701/1" library_version="1">
  5042. <description>&lt;h3&gt;4 Pin Connection&lt;/h3&gt;</description>
  5043. <wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  5044. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  5045. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  5046. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  5047. <wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  5048. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  5049. <wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  5050. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  5051. <text x="-5.08" y="-7.366" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  5052. <text x="-5.08" y="8.128" size="1.778" layer="95" font="vector">&gt;NAME</text>
  5053. <pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5054. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5055. <pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5056. <pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5057. </symbol>
  5058. </symbols>
  5059. <devicesets>
  5060. <deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1">
  5061. <description>&lt;h3&gt;Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections&lt;/h3&gt;
  5062. &lt;p&gt;&lt;/p&gt;
  5063. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5064. &lt;ul&gt;
  5065. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/116"&gt; Break Away Headers - Straight&lt;/a&gt; (PRT-00116)&lt;/li&gt;
  5066. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/553"&gt; Break Away Male Headers - Right Angle&lt;/a&gt; (PRT-00553)&lt;/li&gt;
  5067. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5068. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/117"&gt; Break Away Headers - Machine Pin&lt;/a&gt; (PRT-00117)&lt;/li&gt;
  5069. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/743"&gt; Break Away Female Headers - Swiss Machine Pin&lt;/a&gt; (PRT-00743)&lt;/li&gt;
  5070. &lt;/ul&gt;
  5071. &lt;p&gt;&lt;/p&gt;
  5072. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5073. &lt;ul&gt;
  5074. &lt;li&gt;&lt;a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"&gt; Screw Terimnals on SparkFun.com&lt;/a&gt; (5mm/3.5mm/2.54mm spacing)&lt;/li&gt;
  5075. &lt;/ul&gt;
  5076. &lt;p&gt;&lt;/p&gt;
  5077. &lt;b&gt;This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.&lt;/b&gt;
  5078. &lt;ul&gt;
  5079. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/11375"&gt; Hook-Up Wire - Assortment (Stranded, 22 AWG)&lt;/a&gt; (PRT-11375)&lt;/li&gt;
  5080. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/11367"&gt; Hook-Up Wire - Assortment (Solid Core, 22 AWG)&lt;/a&gt; (PRT-11367)&lt;/li&gt;
  5081. &lt;li&gt;&lt;a href="https://www.sparkfun.com/categories/141"&gt; View the entire wire category on our website here&lt;/a&gt;&lt;/li&gt;
  5082. &lt;p&gt;&lt;/p&gt;
  5083. &lt;/ul&gt;
  5084. &lt;p&gt;&lt;/p&gt;
  5085. &lt;b&gt;Special notes:&lt;/b&gt;
  5086. Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.&lt;br&gt;&lt;br&gt;
  5087. 2.54_SCREWTERM for use with PRT-10571.&lt;br&gt;&lt;br&gt;
  5088. 3.5mm Screw Terminal footprints for PRT-08084&lt;br&gt;&lt;br&gt;
  5089. 5mm Screw Terminal footprints for use with PRT-08432</description>
  5090. <gates>
  5091. <gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/>
  5092. </gates>
  5093. <devices>
  5094. <device name="" package="1X02">
  5095. <connects>
  5096. <connect gate="G$1" pin="1" pad="1"/>
  5097. <connect gate="G$1" pin="2" pad="2"/>
  5098. </connects>
  5099. <package3dinstances>
  5100. <package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/>
  5101. </package3dinstances>
  5102. <technologies>
  5103. <technology name=""/>
  5104. </technologies>
  5105. </device>
  5106. <device name="POLAR" package="MOLEX-1X2">
  5107. <connects>
  5108. <connect gate="G$1" pin="1" pad="1"/>
  5109. <connect gate="G$1" pin="2" pad="2"/>
  5110. </connects>
  5111. <package3dinstances>
  5112. <package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/>
  5113. </package3dinstances>
  5114. <technologies>
  5115. <technology name="">
  5116. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5117. </technology>
  5118. </technologies>
  5119. </device>
  5120. <device name="3.5MM" package="SCREWTERMINAL-3.5MM-2">
  5121. <connects>
  5122. <connect gate="G$1" pin="1" pad="1"/>
  5123. <connect gate="G$1" pin="2" pad="2"/>
  5124. </connects>
  5125. <package3dinstances>
  5126. <package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/>
  5127. </package3dinstances>
  5128. <technologies>
  5129. <technology name="">
  5130. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5131. </technology>
  5132. </technologies>
  5133. </device>
  5134. <device name="-JST-2MM-SMT" package="JST-2-SMD">
  5135. <connects>
  5136. <connect gate="G$1" pin="1" pad="2"/>
  5137. <connect gate="G$1" pin="2" pad="1"/>
  5138. </connects>
  5139. <package3dinstances>
  5140. <package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/>
  5141. </package3dinstances>
  5142. <technologies>
  5143. <technology name="">
  5144. <attribute name="PROD_ID" value="CONN-11443"/>
  5145. </technology>
  5146. </technologies>
  5147. </device>
  5148. <device name="PTH2" package="1X02_BIG">
  5149. <connects>
  5150. <connect gate="G$1" pin="1" pad="P$1"/>
  5151. <connect gate="G$1" pin="2" pad="P$2"/>
  5152. </connects>
  5153. <package3dinstances>
  5154. <package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/>
  5155. </package3dinstances>
  5156. <technologies>
  5157. <technology name=""/>
  5158. </technologies>
  5159. </device>
  5160. <device name="4UCON-15767" package="JST-2-SMD-VERT">
  5161. <connects>
  5162. <connect gate="G$1" pin="1" pad="GND"/>
  5163. <connect gate="G$1" pin="2" pad="VCC"/>
  5164. </connects>
  5165. <package3dinstances>
  5166. <package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/>
  5167. </package3dinstances>
  5168. <technologies>
  5169. <technology name=""/>
  5170. </technologies>
  5171. </device>
  5172. <device name="5MM" package="SCREWTERMINAL-5MM-2">
  5173. <connects>
  5174. <connect gate="G$1" pin="1" pad="1"/>
  5175. <connect gate="G$1" pin="2" pad="2"/>
  5176. </connects>
  5177. <package3dinstances>
  5178. <package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/>
  5179. </package3dinstances>
  5180. <technologies>
  5181. <technology name="">
  5182. <attribute name="SF_SKU" value="PRT-08432" constant="no"/>
  5183. </technology>
  5184. </technologies>
  5185. </device>
  5186. <device name="LOCK" package="1X02_LOCK">
  5187. <connects>
  5188. <connect gate="G$1" pin="1" pad="1"/>
  5189. <connect gate="G$1" pin="2" pad="2"/>
  5190. </connects>
  5191. <package3dinstances>
  5192. <package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/>
  5193. </package3dinstances>
  5194. <technologies>
  5195. <technology name=""/>
  5196. </technologies>
  5197. </device>
  5198. <device name="POLAR_LOCK" package="MOLEX-1X2_LOCK">
  5199. <connects>
  5200. <connect gate="G$1" pin="1" pad="1"/>
  5201. <connect gate="G$1" pin="2" pad="2"/>
  5202. </connects>
  5203. <package3dinstances>
  5204. <package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/>
  5205. </package3dinstances>
  5206. <technologies>
  5207. <technology name="">
  5208. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5209. </technology>
  5210. </technologies>
  5211. </device>
  5212. <device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS">
  5213. <connects>
  5214. <connect gate="G$1" pin="1" pad="1"/>
  5215. <connect gate="G$1" pin="2" pad="2"/>
  5216. </connects>
  5217. <package3dinstances>
  5218. <package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/>
  5219. </package3dinstances>
  5220. <technologies>
  5221. <technology name=""/>
  5222. </technologies>
  5223. </device>
  5224. <device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK">
  5225. <connects>
  5226. <connect gate="G$1" pin="1" pad="1"/>
  5227. <connect gate="G$1" pin="2" pad="2"/>
  5228. </connects>
  5229. <package3dinstances>
  5230. <package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/>
  5231. </package3dinstances>
  5232. <technologies>
  5233. <technology name="">
  5234. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5235. </technology>
  5236. </technologies>
  5237. </device>
  5238. <device name="PTH3" package="1X02_LONGPADS">
  5239. <connects>
  5240. <connect gate="G$1" pin="1" pad="1"/>
  5241. <connect gate="G$1" pin="2" pad="2"/>
  5242. </connects>
  5243. <package3dinstances>
  5244. <package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/>
  5245. </package3dinstances>
  5246. <technologies>
  5247. <technology name=""/>
  5248. </technologies>
  5249. </device>
  5250. <device name="1X02_NO_SILK" package="1X02_NO_SILK">
  5251. <connects>
  5252. <connect gate="G$1" pin="1" pad="1"/>
  5253. <connect gate="G$1" pin="2" pad="2"/>
  5254. </connects>
  5255. <package3dinstances>
  5256. <package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/>
  5257. </package3dinstances>
  5258. <technologies>
  5259. <technology name=""/>
  5260. </technologies>
  5261. </device>
  5262. <device name="JST-PTH-2" package="JST-2-PTH">
  5263. <connects>
  5264. <connect gate="G$1" pin="1" pad="1"/>
  5265. <connect gate="G$1" pin="2" pad="2"/>
  5266. </connects>
  5267. <package3dinstances>
  5268. <package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/>
  5269. </package3dinstances>
  5270. <technologies>
  5271. <technology name="">
  5272. <attribute name="PROD_ID" value="CONN-09863" constant="no"/>
  5273. <attribute name="SKU" value="PRT-09914" constant="no"/>
  5274. </technology>
  5275. </technologies>
  5276. </device>
  5277. <device name="PTH4" package="1X02_XTRA_BIG">
  5278. <connects>
  5279. <connect gate="G$1" pin="1" pad="1"/>
  5280. <connect gate="G$1" pin="2" pad="2"/>
  5281. </connects>
  5282. <package3dinstances>
  5283. <package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/>
  5284. </package3dinstances>
  5285. <technologies>
  5286. <technology name=""/>
  5287. </technologies>
  5288. </device>
  5289. <device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY">
  5290. <connects>
  5291. <connect gate="G$1" pin="1" pad="1"/>
  5292. <connect gate="G$1" pin="2" pad="2"/>
  5293. </connects>
  5294. <package3dinstances>
  5295. <package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/>
  5296. </package3dinstances>
  5297. <technologies>
  5298. <technology name=""/>
  5299. </technologies>
  5300. </device>
  5301. <device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS">
  5302. <connects>
  5303. <connect gate="G$1" pin="1" pad="1"/>
  5304. <connect gate="G$1" pin="2" pad="2"/>
  5305. </connects>
  5306. <package3dinstances>
  5307. <package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/>
  5308. </package3dinstances>
  5309. <technologies>
  5310. <technology name="">
  5311. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5312. </technology>
  5313. </technologies>
  5314. </device>
  5315. <device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS">
  5316. <connects>
  5317. <connect gate="G$1" pin="1" pad="1"/>
  5318. <connect gate="G$1" pin="2" pad="2"/>
  5319. </connects>
  5320. <package3dinstances>
  5321. <package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/>
  5322. </package3dinstances>
  5323. <technologies>
  5324. <technology name=""/>
  5325. </technologies>
  5326. </device>
  5327. <device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT">
  5328. <connects>
  5329. <connect gate="G$1" pin="1" pad="1"/>
  5330. <connect gate="G$1" pin="2" pad="2"/>
  5331. </connects>
  5332. <package3dinstances>
  5333. <package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/>
  5334. </package3dinstances>
  5335. <technologies>
  5336. <technology name=""/>
  5337. </technologies>
  5338. </device>
  5339. <device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2">
  5340. <connects>
  5341. <connect gate="G$1" pin="1" pad="1"/>
  5342. <connect gate="G$1" pin="2" pad="2"/>
  5343. </connects>
  5344. <package3dinstances>
  5345. <package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/>
  5346. </package3dinstances>
  5347. <technologies>
  5348. <technology name=""/>
  5349. </technologies>
  5350. </device>
  5351. <device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM">
  5352. <connects>
  5353. <connect gate="G$1" pin="1" pad="P1"/>
  5354. <connect gate="G$1" pin="2" pad="P2"/>
  5355. </connects>
  5356. <package3dinstances>
  5357. <package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/>
  5358. </package3dinstances>
  5359. <technologies>
  5360. <technology name=""/>
  5361. </technologies>
  5362. </device>
  5363. <device name="SMALL_POKEHOME" package="1X02_POKEHOME">
  5364. <connects>
  5365. <connect gate="G$1" pin="1" pad="P1 P3"/>
  5366. <connect gate="G$1" pin="2" pad="P2 P4"/>
  5367. </connects>
  5368. <package3dinstances>
  5369. <package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/>
  5370. </package3dinstances>
  5371. <technologies>
  5372. <technology name="">
  5373. <attribute name="PROD_ID" value="CONN-13512"/>
  5374. </technology>
  5375. </technologies>
  5376. </device>
  5377. <device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE">
  5378. <connects>
  5379. <connect gate="G$1" pin="1" pad="1"/>
  5380. <connect gate="G$1" pin="2" pad="2"/>
  5381. </connects>
  5382. <package3dinstances>
  5383. <package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/>
  5384. </package3dinstances>
  5385. <technologies>
  5386. <technology name="">
  5387. <attribute name="PROD_ID" value="CONN-13700"/>
  5388. </technology>
  5389. </technologies>
  5390. </device>
  5391. </devices>
  5392. </deviceset>
  5393. <deviceset name="CONN_08" urn="urn:adsk.eagle:component:38333/1" prefix="J" uservalue="yes" library_version="1">
  5394. <description>&lt;h3&gt;Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections&lt;/h3&gt;
  5395. &lt;p&gt;&lt;/p&gt;
  5396. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5397. &lt;ul&gt;
  5398. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/116"&gt; Break Away Headers - Straight&lt;/a&gt; (PRT-00116)&lt;/li&gt;
  5399. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/553"&gt; Break Away Male Headers - Right Angle&lt;/a&gt; (PRT-00553)&lt;/li&gt;
  5400. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5401. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/117"&gt; Break Away Headers - Machine Pin&lt;/a&gt; (PRT-00117)&lt;/li&gt;
  5402. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/743"&gt; Break Away Female Headers - Swiss Machine Pin&lt;/a&gt; (PRT-00743)&lt;/li&gt;
  5403. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/9279"&gt; Arduino Stackable Header - 8 Pin&lt;/a&gt; (PRT-09279)&lt;/li&gt;
  5404. &lt;/ul&gt;
  5405. &lt;p&gt;&lt;/p&gt;
  5406. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5407. &lt;ul&gt;
  5408. &lt;li&gt;&lt;a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"&gt; Screw Terimnals on SparkFun.com&lt;/a&gt; (5mm/3.5mm/2.54mm spacing)&lt;/li&gt;
  5409. &lt;/ul&gt;
  5410. &lt;p&gt;&lt;/p&gt;
  5411. &lt;b&gt;This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.&lt;/b&gt;
  5412. &lt;ul&gt;
  5413. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/11375"&gt; Hook-Up Wire - Assortment (Stranded, 22 AWG)&lt;/a&gt; (PRT-11375)&lt;/li&gt;
  5414. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/11367"&gt; Hook-Up Wire - Assortment (Solid Core, 22 AWG)&lt;/a&gt; (PRT-11367)&lt;/li&gt;
  5415. &lt;li&gt;&lt;a href="https://www.sparkfun.com/categories/141"&gt; View the entire wire category on our website here&lt;/a&gt;&lt;/li&gt;
  5416. &lt;p&gt;&lt;/p&gt;
  5417. &lt;/ul&gt;
  5418. &lt;p&gt;&lt;/p&gt;
  5419. &lt;b&gt;Special notes:&lt;/b&gt;
  5420. &lt;p&gt; &lt;/p&gt; Molex polarized connector foot print use with SKU : PRT-08231 with associated crimp pins and housings. 1MM SMD Version SKU: PRT-10208
  5421. &lt;p&gt;&lt;/p&gt;
  5422. NOTES ON THE VARIANTS LOCK and LOCK_LONGPADS...
  5423. This footprint was designed to help hold the alignment of a through-hole component (i.e. 6-pin header) while soldering it into place. You may notice that each hole has been shifted either up or down by 0.005 of an inch from it's more standard position (which is a perfectly straight line). This slight alteration caused the pins (the squares in the middle) to touch the edges of the holes. Because they are alternating, it causes a "brace" to hold the component in place. 0.005 has proven to be the perfect amount of "off-center" position when using our standard breakaway headers. Although looks a little odd when you look at the bare footprint, once you have a header in there, the alteration is very hard to notice. Also,if you push a header all the way into place, it is covered up entirely on the bottom side.</description>
  5424. <gates>
  5425. <gate name="G$1" symbol="CONN_08" x="-2.54" y="0"/>
  5426. </gates>
  5427. <devices>
  5428. <device name="&quot;" package="1X08">
  5429. <connects>
  5430. <connect gate="G$1" pin="1" pad="1"/>
  5431. <connect gate="G$1" pin="2" pad="2"/>
  5432. <connect gate="G$1" pin="3" pad="3"/>
  5433. <connect gate="G$1" pin="4" pad="4"/>
  5434. <connect gate="G$1" pin="5" pad="5"/>
  5435. <connect gate="G$1" pin="6" pad="6"/>
  5436. <connect gate="G$1" pin="7" pad="7"/>
  5437. <connect gate="G$1" pin="8" pad="8"/>
  5438. </connects>
  5439. <package3dinstances>
  5440. <package3dinstance package3d_urn="urn:adsk.eagle:package:38138/1"/>
  5441. </package3dinstances>
  5442. <technologies>
  5443. <technology name="">
  5444. <attribute name="PROD_ID" value="CONN-08438"/>
  5445. </technology>
  5446. </technologies>
  5447. </device>
  5448. <device name="LOCK" package="1X08_LOCK">
  5449. <connects>
  5450. <connect gate="G$1" pin="1" pad="1"/>
  5451. <connect gate="G$1" pin="2" pad="2"/>
  5452. <connect gate="G$1" pin="3" pad="3"/>
  5453. <connect gate="G$1" pin="4" pad="4"/>
  5454. <connect gate="G$1" pin="5" pad="5"/>
  5455. <connect gate="G$1" pin="6" pad="6"/>
  5456. <connect gate="G$1" pin="7" pad="7"/>
  5457. <connect gate="G$1" pin="8" pad="8"/>
  5458. </connects>
  5459. <package3dinstances>
  5460. <package3dinstance package3d_urn="urn:adsk.eagle:package:38137/1"/>
  5461. </package3dinstances>
  5462. <technologies>
  5463. <technology name=""/>
  5464. </technologies>
  5465. </device>
  5466. <device name="LOCK_LONGPADS" package="1X08_LOCK_LONGPADS">
  5467. <connects>
  5468. <connect gate="G$1" pin="1" pad="1"/>
  5469. <connect gate="G$1" pin="2" pad="2"/>
  5470. <connect gate="G$1" pin="3" pad="3"/>
  5471. <connect gate="G$1" pin="4" pad="4"/>
  5472. <connect gate="G$1" pin="5" pad="5"/>
  5473. <connect gate="G$1" pin="6" pad="6"/>
  5474. <connect gate="G$1" pin="7" pad="7"/>
  5475. <connect gate="G$1" pin="8" pad="8"/>
  5476. </connects>
  5477. <package3dinstances>
  5478. <package3dinstance package3d_urn="urn:adsk.eagle:package:38140/1"/>
  5479. </package3dinstances>
  5480. <technologies>
  5481. <technology name=""/>
  5482. </technologies>
  5483. </device>
  5484. <device name="LONGPADS" package="1X08_LONGPADS">
  5485. <connects>
  5486. <connect gate="G$1" pin="1" pad="1"/>
  5487. <connect gate="G$1" pin="2" pad="2"/>
  5488. <connect gate="G$1" pin="3" pad="3"/>
  5489. <connect gate="G$1" pin="4" pad="4"/>
  5490. <connect gate="G$1" pin="5" pad="5"/>
  5491. <connect gate="G$1" pin="6" pad="6"/>
  5492. <connect gate="G$1" pin="7" pad="7"/>
  5493. <connect gate="G$1" pin="8" pad="8"/>
  5494. </connects>
  5495. <package3dinstances>
  5496. <package3dinstance package3d_urn="urn:adsk.eagle:package:38142/1"/>
  5497. </package3dinstances>
  5498. <technologies>
  5499. <technology name=""/>
  5500. </technologies>
  5501. </device>
  5502. <device name="3.5MM-8" package="SCREWTERMINAL-3.5MM-8">
  5503. <connects>
  5504. <connect gate="G$1" pin="1" pad="1"/>
  5505. <connect gate="G$1" pin="2" pad="2"/>
  5506. <connect gate="G$1" pin="3" pad="3"/>
  5507. <connect gate="G$1" pin="4" pad="4"/>
  5508. <connect gate="G$1" pin="5" pad="5"/>
  5509. <connect gate="G$1" pin="6" pad="6"/>
  5510. <connect gate="G$1" pin="7" pad="7"/>
  5511. <connect gate="G$1" pin="8" pad="8"/>
  5512. </connects>
  5513. <package3dinstances>
  5514. <package3dinstance package3d_urn="urn:adsk.eagle:package:38143/1"/>
  5515. </package3dinstances>
  5516. <technologies>
  5517. <technology name=""/>
  5518. </technologies>
  5519. </device>
  5520. <device name="SMD-STRAIGHT-FEMALE" package="1X08_SMD">
  5521. <connects>
  5522. <connect gate="G$1" pin="1" pad="1"/>
  5523. <connect gate="G$1" pin="2" pad="2"/>
  5524. <connect gate="G$1" pin="3" pad="3"/>
  5525. <connect gate="G$1" pin="4" pad="4"/>
  5526. <connect gate="G$1" pin="5" pad="5"/>
  5527. <connect gate="G$1" pin="6" pad="6"/>
  5528. <connect gate="G$1" pin="7" pad="7"/>
  5529. <connect gate="G$1" pin="8" pad="8"/>
  5530. </connects>
  5531. <package3dinstances>
  5532. <package3dinstance package3d_urn="urn:adsk.eagle:package:38144/1"/>
  5533. </package3dinstances>
  5534. <technologies>
  5535. <technology name="">
  5536. <attribute name="PROD_ID" value="CONN-10204"/>
  5537. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5538. </technology>
  5539. </technologies>
  5540. </device>
  5541. <device name="SMD-STRAIGHT-ALT-FEMALE" package="1X08_SMD_ALT">
  5542. <connects>
  5543. <connect gate="G$1" pin="1" pad="1"/>
  5544. <connect gate="G$1" pin="2" pad="2"/>
  5545. <connect gate="G$1" pin="3" pad="3"/>
  5546. <connect gate="G$1" pin="4" pad="4"/>
  5547. <connect gate="G$1" pin="5" pad="5"/>
  5548. <connect gate="G$1" pin="6" pad="6"/>
  5549. <connect gate="G$1" pin="7" pad="7"/>
  5550. <connect gate="G$1" pin="8" pad="8"/>
  5551. </connects>
  5552. <package3dinstances>
  5553. <package3dinstance package3d_urn="urn:adsk.eagle:package:38148/1"/>
  5554. </package3dinstances>
  5555. <technologies>
  5556. <technology name="">
  5557. <attribute name="PROD_ID" value="CONN-10204"/>
  5558. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5559. </technology>
  5560. </technologies>
  5561. </device>
  5562. <device name="SMD-COMBO-FEMALE" package="1X08_SMD_COMBINED">
  5563. <connects>
  5564. <connect gate="G$1" pin="1" pad="1"/>
  5565. <connect gate="G$1" pin="2" pad="2"/>
  5566. <connect gate="G$1" pin="3" pad="3"/>
  5567. <connect gate="G$1" pin="4" pad="4"/>
  5568. <connect gate="G$1" pin="5" pad="5"/>
  5569. <connect gate="G$1" pin="6" pad="6"/>
  5570. <connect gate="G$1" pin="7" pad="7"/>
  5571. <connect gate="G$1" pin="8" pad="8"/>
  5572. </connects>
  5573. <package3dinstances>
  5574. <package3dinstance package3d_urn="urn:adsk.eagle:package:38146/1"/>
  5575. </package3dinstances>
  5576. <technologies>
  5577. <technology name="">
  5578. <attribute name="PROD_ID" value="CONN-10204"/>
  5579. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5580. </technology>
  5581. </technologies>
  5582. </device>
  5583. <device name="BM08B-SRSS-TB" package="BM08B-SRSS-TB">
  5584. <connects>
  5585. <connect gate="G$1" pin="1" pad="1"/>
  5586. <connect gate="G$1" pin="2" pad="2"/>
  5587. <connect gate="G$1" pin="3" pad="3"/>
  5588. <connect gate="G$1" pin="4" pad="4"/>
  5589. <connect gate="G$1" pin="5" pad="5"/>
  5590. <connect gate="G$1" pin="6" pad="6"/>
  5591. <connect gate="G$1" pin="7" pad="7"/>
  5592. <connect gate="G$1" pin="8" pad="8"/>
  5593. </connects>
  5594. <package3dinstances>
  5595. <package3dinstance package3d_urn="urn:adsk.eagle:package:38145/1"/>
  5596. </package3dinstances>
  5597. <technologies>
  5598. <technology name="">
  5599. <attribute name="PROD_ID" value="CONN-10556" constant="no"/>
  5600. </technology>
  5601. </technologies>
  5602. </device>
  5603. <device name="SMD-MALE" package="1X08_SMD_MALE">
  5604. <connects>
  5605. <connect gate="G$1" pin="1" pad="1"/>
  5606. <connect gate="G$1" pin="2" pad="2"/>
  5607. <connect gate="G$1" pin="3" pad="3"/>
  5608. <connect gate="G$1" pin="4" pad="4"/>
  5609. <connect gate="G$1" pin="5" pad="5"/>
  5610. <connect gate="G$1" pin="6" pad="6"/>
  5611. <connect gate="G$1" pin="7" pad="7"/>
  5612. <connect gate="G$1" pin="8" pad="8"/>
  5613. </connects>
  5614. <package3dinstances>
  5615. <package3dinstance package3d_urn="urn:adsk.eagle:package:38150/1"/>
  5616. </package3dinstances>
  5617. <technologies>
  5618. <technology name="">
  5619. <attribute name="PROD_ID" value="CONN-11292"/>
  5620. <attribute name="SF_ID" value="PRT-11541" constant="no"/>
  5621. </technology>
  5622. </technologies>
  5623. </device>
  5624. <device name="NO_SILK_FEMALE_PTH" package="1X08_NO_SILK">
  5625. <connects>
  5626. <connect gate="G$1" pin="1" pad="1"/>
  5627. <connect gate="G$1" pin="2" pad="2"/>
  5628. <connect gate="G$1" pin="3" pad="3"/>
  5629. <connect gate="G$1" pin="4" pad="4"/>
  5630. <connect gate="G$1" pin="5" pad="5"/>
  5631. <connect gate="G$1" pin="6" pad="6"/>
  5632. <connect gate="G$1" pin="7" pad="7"/>
  5633. <connect gate="G$1" pin="8" pad="8"/>
  5634. </connects>
  5635. <package3dinstances>
  5636. <package3dinstance package3d_urn="urn:adsk.eagle:package:38149/1"/>
  5637. </package3dinstances>
  5638. <technologies>
  5639. <technology name="">
  5640. <attribute name="PROD_ID" value="CONN-08438"/>
  5641. </technology>
  5642. </technologies>
  5643. </device>
  5644. <device name="LOCK_NO_SILK" package="1X08_LOCK_NO_SILK">
  5645. <connects>
  5646. <connect gate="G$1" pin="1" pad="1"/>
  5647. <connect gate="G$1" pin="2" pad="2"/>
  5648. <connect gate="G$1" pin="3" pad="3"/>
  5649. <connect gate="G$1" pin="4" pad="4"/>
  5650. <connect gate="G$1" pin="5" pad="5"/>
  5651. <connect gate="G$1" pin="6" pad="6"/>
  5652. <connect gate="G$1" pin="7" pad="7"/>
  5653. <connect gate="G$1" pin="8" pad="8"/>
  5654. </connects>
  5655. <package3dinstances>
  5656. <package3dinstance package3d_urn="urn:adsk.eagle:package:38147/1"/>
  5657. </package3dinstances>
  5658. <technologies>
  5659. <technology name=""/>
  5660. </technologies>
  5661. </device>
  5662. <device name="FEMALE_LOCK" package="1X08_FEMALE_LOCK">
  5663. <connects>
  5664. <connect gate="G$1" pin="1" pad="1"/>
  5665. <connect gate="G$1" pin="2" pad="2"/>
  5666. <connect gate="G$1" pin="3" pad="3"/>
  5667. <connect gate="G$1" pin="4" pad="4"/>
  5668. <connect gate="G$1" pin="5" pad="5"/>
  5669. <connect gate="G$1" pin="6" pad="6"/>
  5670. <connect gate="G$1" pin="7" pad="7"/>
  5671. <connect gate="G$1" pin="8" pad="8"/>
  5672. </connects>
  5673. <package3dinstances>
  5674. <package3dinstance package3d_urn="urn:adsk.eagle:package:38151/1"/>
  5675. </package3dinstances>
  5676. <technologies>
  5677. <technology name="">
  5678. <attribute name="PROD_ID" value="CONN-09233" constant="no"/>
  5679. <attribute name="SF_ID" value="PRT-09279" constant="no"/>
  5680. </technology>
  5681. </technologies>
  5682. </device>
  5683. </devices>
  5684. </deviceset>
  5685. <deviceset name="CONN_04" urn="urn:adsk.eagle:component:38327/1" prefix="J" uservalue="yes" library_version="1">
  5686. <description>&lt;h3&gt;Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections&lt;/h3&gt;
  5687. &lt;p&gt;&lt;/p&gt;
  5688. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5689. &lt;ul&gt;
  5690. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/116"&gt; Break Away Headers - Straight&lt;/a&gt; (PRT-00116)&lt;/li&gt;
  5691. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/553"&gt; Break Away Male Headers - Right Angle&lt;/a&gt; (PRT-00553)&lt;/li&gt;
  5692. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5693. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/117"&gt; Break Away Headers - Machine Pin&lt;/a&gt; (PRT-00117)&lt;/li&gt;
  5694. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/743"&gt; Break Away Female Headers - Swiss Machine Pin&lt;/a&gt; (PRT-00743)&lt;/li&gt;
  5695. &lt;/ul&gt;
  5696. &lt;p&gt;&lt;/p&gt;
  5697. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5698. &lt;ul&gt;
  5699. &lt;li&gt;&lt;a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"&gt; Screw Terimnals on SparkFun.com&lt;/a&gt; (5mm/3.5mm/2.54mm spacing)&lt;/li&gt;
  5700. &lt;/ul&gt;
  5701. &lt;p&gt;&lt;/p&gt;
  5702. &lt;b&gt;This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.&lt;/b&gt;
  5703. &lt;ul&gt;
  5704. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/11375"&gt; Hook-Up Wire - Assortment (Stranded, 22 AWG)&lt;/a&gt; (PRT-11375)&lt;/li&gt;
  5705. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/11367"&gt; Hook-Up Wire - Assortment (Solid Core, 22 AWG)&lt;/a&gt; (PRT-11367)&lt;/li&gt;
  5706. &lt;li&gt;&lt;a href="https://www.sparkfun.com/categories/141"&gt; View the entire wire category on our website here&lt;/a&gt;&lt;/li&gt;
  5707. &lt;p&gt;&lt;/p&gt;
  5708. &lt;/ul&gt;
  5709. &lt;p&gt;&lt;/p&gt;
  5710. &lt;b&gt;Special notes:&lt;/b&gt;
  5711. &lt;p&gt; &lt;/p&gt; Molex polarized connector foot print use with SKU : PRT-08231 with associated crimp pins and housings. 1MM SMD Version SKU: PRT-10208</description>
  5712. <gates>
  5713. <gate name="G$1" symbol="CONN_04" x="-2.54" y="0"/>
  5714. </gates>
  5715. <devices>
  5716. <device name="" package="1X04">
  5717. <connects>
  5718. <connect gate="G$1" pin="1" pad="1"/>
  5719. <connect gate="G$1" pin="2" pad="2"/>
  5720. <connect gate="G$1" pin="3" pad="3"/>
  5721. <connect gate="G$1" pin="4" pad="4"/>
  5722. </connects>
  5723. <package3dinstances>
  5724. <package3dinstance package3d_urn="urn:adsk.eagle:package:38085/1"/>
  5725. </package3dinstances>
  5726. <technologies>
  5727. <technology name="">
  5728. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5729. </technology>
  5730. </technologies>
  5731. </device>
  5732. <device name="POLAR" package="MOLEX-1X4">
  5733. <connects>
  5734. <connect gate="G$1" pin="1" pad="1"/>
  5735. <connect gate="G$1" pin="2" pad="2"/>
  5736. <connect gate="G$1" pin="3" pad="3"/>
  5737. <connect gate="G$1" pin="4" pad="4"/>
  5738. </connects>
  5739. <package3dinstances>
  5740. <package3dinstance package3d_urn="urn:adsk.eagle:package:38087/1"/>
  5741. </package3dinstances>
  5742. <technologies>
  5743. <technology name="">
  5744. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5745. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5746. </technology>
  5747. </technologies>
  5748. </device>
  5749. <device name="SCREW" package="SCREWTERMINAL-3.5MM-4">
  5750. <connects>
  5751. <connect gate="G$1" pin="1" pad="1"/>
  5752. <connect gate="G$1" pin="2" pad="2"/>
  5753. <connect gate="G$1" pin="3" pad="3"/>
  5754. <connect gate="G$1" pin="4" pad="4"/>
  5755. </connects>
  5756. <package3dinstances>
  5757. <package3dinstance package3d_urn="urn:adsk.eagle:package:38090/1"/>
  5758. </package3dinstances>
  5759. <technologies>
  5760. <technology name="">
  5761. <attribute name="PROD_ID" value="2xCONN-08399" constant="no"/>
  5762. <attribute name="SF_ID" value="2xPRT-08084" constant="no"/>
  5763. </technology>
  5764. </technologies>
  5765. </device>
  5766. <device name="1.27MM" package="1X04_1.27MM">
  5767. <connects>
  5768. <connect gate="G$1" pin="1" pad="1"/>
  5769. <connect gate="G$1" pin="2" pad="2"/>
  5770. <connect gate="G$1" pin="3" pad="3"/>
  5771. <connect gate="G$1" pin="4" pad="4"/>
  5772. </connects>
  5773. <package3dinstances>
  5774. <package3dinstance package3d_urn="urn:adsk.eagle:package:38086/1"/>
  5775. </package3dinstances>
  5776. <technologies>
  5777. <technology name=""/>
  5778. </technologies>
  5779. </device>
  5780. <device name="LOCK" package="1X04_LOCK">
  5781. <connects>
  5782. <connect gate="G$1" pin="1" pad="1"/>
  5783. <connect gate="G$1" pin="2" pad="2"/>
  5784. <connect gate="G$1" pin="3" pad="3"/>
  5785. <connect gate="G$1" pin="4" pad="4"/>
  5786. </connects>
  5787. <package3dinstances>
  5788. <package3dinstance package3d_urn="urn:adsk.eagle:package:38089/1"/>
  5789. </package3dinstances>
  5790. <technologies>
  5791. <technology name="">
  5792. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5793. </technology>
  5794. </technologies>
  5795. </device>
  5796. <device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS">
  5797. <connects>
  5798. <connect gate="G$1" pin="1" pad="1"/>
  5799. <connect gate="G$1" pin="2" pad="2"/>
  5800. <connect gate="G$1" pin="3" pad="3"/>
  5801. <connect gate="G$1" pin="4" pad="4"/>
  5802. </connects>
  5803. <package3dinstances>
  5804. <package3dinstance package3d_urn="urn:adsk.eagle:package:38091/1"/>
  5805. </package3dinstances>
  5806. <technologies>
  5807. <technology name="">
  5808. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5809. </technology>
  5810. </technologies>
  5811. </device>
  5812. <device name="POLAR_LOCK" package="MOLEX-1X4_LOCK">
  5813. <connects>
  5814. <connect gate="G$1" pin="1" pad="1"/>
  5815. <connect gate="G$1" pin="2" pad="2"/>
  5816. <connect gate="G$1" pin="3" pad="3"/>
  5817. <connect gate="G$1" pin="4" pad="4"/>
  5818. </connects>
  5819. <package3dinstances>
  5820. <package3dinstance package3d_urn="urn:adsk.eagle:package:38092/1"/>
  5821. </package3dinstances>
  5822. <technologies>
  5823. <technology name="">
  5824. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5825. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5826. </technology>
  5827. </technologies>
  5828. </device>
  5829. <device name="SMD" package="1X04_SMD_RA_MALE">
  5830. <connects>
  5831. <connect gate="G$1" pin="1" pad="1"/>
  5832. <connect gate="G$1" pin="2" pad="2"/>
  5833. <connect gate="G$1" pin="3" pad="3"/>
  5834. <connect gate="G$1" pin="4" pad="4"/>
  5835. </connects>
  5836. <package3dinstances>
  5837. <package3dinstance package3d_urn="urn:adsk.eagle:package:38093/1"/>
  5838. </package3dinstances>
  5839. <technologies>
  5840. <technology name="">
  5841. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5842. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5843. </technology>
  5844. </technologies>
  5845. </device>
  5846. <device name="LONGPADS" package="1X04_LONGPADS">
  5847. <connects>
  5848. <connect gate="G$1" pin="1" pad="1"/>
  5849. <connect gate="G$1" pin="2" pad="2"/>
  5850. <connect gate="G$1" pin="3" pad="3"/>
  5851. <connect gate="G$1" pin="4" pad="4"/>
  5852. </connects>
  5853. <package3dinstances>
  5854. <package3dinstance package3d_urn="urn:adsk.eagle:package:38098/1"/>
  5855. </package3dinstances>
  5856. <technologies>
  5857. <technology name="">
  5858. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5859. </technology>
  5860. </technologies>
  5861. </device>
  5862. <device name="1X04_NO_SILK" package="1X04_NO_SILK">
  5863. <connects>
  5864. <connect gate="G$1" pin="1" pad="1"/>
  5865. <connect gate="G$1" pin="2" pad="2"/>
  5866. <connect gate="G$1" pin="3" pad="3"/>
  5867. <connect gate="G$1" pin="4" pad="4"/>
  5868. </connects>
  5869. <package3dinstances>
  5870. <package3dinstance package3d_urn="urn:adsk.eagle:package:38094/1"/>
  5871. </package3dinstances>
  5872. <technologies>
  5873. <technology name="">
  5874. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5875. </technology>
  5876. </technologies>
  5877. </device>
  5878. <device name="JST-PTH" package="JST-4-PTH">
  5879. <connects>
  5880. <connect gate="G$1" pin="1" pad="1"/>
  5881. <connect gate="G$1" pin="2" pad="2"/>
  5882. <connect gate="G$1" pin="3" pad="3"/>
  5883. <connect gate="G$1" pin="4" pad="4"/>
  5884. </connects>
  5885. <package3dinstances>
  5886. <package3dinstance package3d_urn="urn:adsk.eagle:package:38101/1"/>
  5887. </package3dinstances>
  5888. <technologies>
  5889. <technology name="">
  5890. <attribute name="PROD_ID" value="WIRE-13531" constant="no"/>
  5891. <attribute name="SF_ID" value="PRT-09916" constant="no"/>
  5892. </technology>
  5893. </technologies>
  5894. </device>
  5895. <device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK">
  5896. <connects>
  5897. <connect gate="G$1" pin="1" pad="1"/>
  5898. <connect gate="G$1" pin="2" pad="2"/>
  5899. <connect gate="G$1" pin="3" pad="3"/>
  5900. <connect gate="G$1" pin="4" pad="4"/>
  5901. </connects>
  5902. <package3dinstances>
  5903. <package3dinstance package3d_urn="urn:adsk.eagle:package:38095/1"/>
  5904. </package3dinstances>
  5905. <technologies>
  5906. <technology name=""/>
  5907. </technologies>
  5908. </device>
  5909. <device name="SMD2" package="1X04_1MM_RA">
  5910. <connects>
  5911. <connect gate="G$1" pin="1" pad="1"/>
  5912. <connect gate="G$1" pin="2" pad="2"/>
  5913. <connect gate="G$1" pin="3" pad="3"/>
  5914. <connect gate="G$1" pin="4" pad="4"/>
  5915. </connects>
  5916. <package3dinstances>
  5917. <package3dinstance package3d_urn="urn:adsk.eagle:package:38096/1"/>
  5918. </package3dinstances>
  5919. <technologies>
  5920. <technology name="">
  5921. <attribute name="PROD_ID" value="CONN-10310" constant="no"/>
  5922. <attribute name="SF_ID" value="PRT-10208" constant="no"/>
  5923. </technology>
  5924. </technologies>
  5925. </device>
  5926. <device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_VERTICAL_COMBO">
  5927. <connects>
  5928. <connect gate="G$1" pin="1" pad="1"/>
  5929. <connect gate="G$1" pin="2" pad="2"/>
  5930. <connect gate="G$1" pin="3" pad="3"/>
  5931. <connect gate="G$1" pin="4" pad="4"/>
  5932. </connects>
  5933. <package3dinstances>
  5934. <package3dinstance package3d_urn="urn:adsk.eagle:package:38097/1"/>
  5935. </package3dinstances>
  5936. <technologies>
  5937. <technology name="">
  5938. <attribute name="PROD_ID" value="CONN-08511"/>
  5939. <attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/>
  5940. </technology>
  5941. </technologies>
  5942. </device>
  5943. <device name="SMD_LONG" package="1X04_SMD_LONG">
  5944. <connects>
  5945. <connect gate="G$1" pin="1" pad="1"/>
  5946. <connect gate="G$1" pin="2" pad="2"/>
  5947. <connect gate="G$1" pin="3" pad="3"/>
  5948. <connect gate="G$1" pin="4" pad="4"/>
  5949. </connects>
  5950. <package3dinstances>
  5951. <package3dinstance package3d_urn="urn:adsk.eagle:package:38099/1"/>
  5952. </package3dinstances>
  5953. <technologies>
  5954. <technology name="">
  5955. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5956. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5957. </technology>
  5958. </technologies>
  5959. </device>
  5960. <device name="JST-PTH-VERT" package="JST-4-PTH-VERT">
  5961. <connects>
  5962. <connect gate="G$1" pin="1" pad="1"/>
  5963. <connect gate="G$1" pin="2" pad="2"/>
  5964. <connect gate="G$1" pin="3" pad="3"/>
  5965. <connect gate="G$1" pin="4" pad="4"/>
  5966. </connects>
  5967. <package3dinstances>
  5968. <package3dinstance package3d_urn="urn:adsk.eagle:package:38102/1"/>
  5969. </package3dinstances>
  5970. <technologies>
  5971. <technology name="">
  5972. <attribute name="PROD_ID" value="CONN-13251"/>
  5973. </technology>
  5974. </technologies>
  5975. </device>
  5976. <device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE">
  5977. <connects>
  5978. <connect gate="G$1" pin="1" pad="1"/>
  5979. <connect gate="G$1" pin="2" pad="2"/>
  5980. <connect gate="G$1" pin="3" pad="3"/>
  5981. <connect gate="G$1" pin="4" pad="4"/>
  5982. </connects>
  5983. <package3dinstances>
  5984. <package3dinstance package3d_urn="urn:adsk.eagle:package:38100/1"/>
  5985. </package3dinstances>
  5986. <technologies>
  5987. <technology name="">
  5988. <attribute name="PROD_ID" value="CONN-12382" constant="no"/>
  5989. </technology>
  5990. </technologies>
  5991. </device>
  5992. </devices>
  5993. </deviceset>
  5994. </devicesets>
  5995. </library>
  5996. <library name="Transistor" urn="urn:adsk.eagle:library:16378713">
  5997. <description>&lt;B&gt;BJT, JFET, MOSFET, UJT, Darlington</description>
  5998. <packages>
  5999. <package name="SOT23" urn="urn:adsk.eagle:footprint:28669/1" library_version="4">
  6000. <description>&lt;b&gt;SOT-23&lt;/b&gt;</description>
  6001. <wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  6002. <wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  6003. <wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/>
  6004. <wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/>
  6005. <smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/>
  6006. <smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  6007. <smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  6008. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6009. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6010. <rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/>
  6011. <rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/>
  6012. <rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/>
  6013. </package>
  6014. <package name="TO92" urn="urn:adsk.eagle:footprint:28459/1" library_version="4">
  6015. <description>&lt;b&gt;TO 92&lt;/b&gt;</description>
  6016. <wire x1="-2.0946" y1="-1.651" x2="-2.6549" y2="-0.254" width="0.127" layer="21" curve="-32.781"/>
  6017. <wire x1="-2.6549" y1="-0.254" x2="-0.7863" y2="2.5485" width="0.127" layer="21" curve="-78.3185"/>
  6018. <wire x1="0.7863" y1="2.5484" x2="2.0945" y2="-1.651" width="0.127" layer="21" curve="-111.1"/>
  6019. <wire x1="-2.0945" y1="-1.651" x2="2.0945" y2="-1.651" width="0.127" layer="21"/>
  6020. <wire x1="-2.2537" y1="-0.254" x2="-0.2863" y2="-0.254" width="0.127" layer="51"/>
  6021. <wire x1="-2.6549" y1="-0.254" x2="-2.2537" y2="-0.254" width="0.127" layer="21"/>
  6022. <wire x1="-0.2863" y1="-0.254" x2="0.2863" y2="-0.254" width="0.127" layer="21"/>
  6023. <wire x1="2.2537" y1="-0.254" x2="2.6549" y2="-0.254" width="0.127" layer="21"/>
  6024. <wire x1="0.2863" y1="-0.254" x2="2.2537" y2="-0.254" width="0.127" layer="51"/>
  6025. <wire x1="-0.7863" y1="2.5485" x2="0.7863" y2="2.5485" width="0.127" layer="51" curve="-34.2936"/>
  6026. <pad name="1" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  6027. <pad name="2" x="0" y="1.905" drill="0.8128" shape="octagon"/>
  6028. <pad name="3" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  6029. <text x="3.175" y="0.635" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6030. <text x="3.175" y="-1.27" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6031. <text x="-0.635" y="0.635" size="1.27" layer="51" ratio="10">2</text>
  6032. <text x="-2.159" y="0" size="1.27" layer="51" ratio="10">3</text>
  6033. <text x="1.143" y="0" size="1.27" layer="51" ratio="10">1</text>
  6034. </package>
  6035. <package name="TO220BV" urn="urn:adsk.eagle:footprint:29371/1" library_version="4">
  6036. <description>&lt;b&gt;Molded Package&lt;/b&gt;&lt;p&gt;
  6037. grid 2.54 mm</description>
  6038. <wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  6039. <wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  6040. <wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  6041. <wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  6042. <wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/>
  6043. <circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/>
  6044. <pad name="G" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6045. <pad name="D" x="0" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6046. <pad name="S" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6047. <text x="-5.08" y="-6.0452" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6048. <text x="-5.08" y="-7.62" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6049. <rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/>
  6050. <rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/>
  6051. <rectangle x1="-1.651" y1="-1.27" x2="-0.889" y2="-0.762" layer="21"/>
  6052. <rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/>
  6053. <rectangle x1="0.889" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/>
  6054. <rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/>
  6055. <rectangle x1="-0.889" y1="-1.27" x2="0.889" y2="-0.762" layer="51"/>
  6056. <rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/>
  6057. </package>
  6058. </packages>
  6059. <packages3d>
  6060. <package3d name="SOT23" urn="urn:adsk.eagle:package:28738/2" type="model" library_version="4">
  6061. <description>SOT-23</description>
  6062. <packageinstances>
  6063. <packageinstance name="SOT23"/>
  6064. </packageinstances>
  6065. </package3d>
  6066. <package3d name="TO92" urn="urn:adsk.eagle:package:16378726/2" type="model" library_version="4">
  6067. <description>TO 92</description>
  6068. <packageinstances>
  6069. <packageinstance name="TO92"/>
  6070. </packageinstances>
  6071. </package3d>
  6072. <package3d name="TO220BV" urn="urn:adsk.eagle:package:29484/3" type="model" library_version="4">
  6073. <description>Molded Package
  6074. grid 2.54 mm</description>
  6075. <packageinstances>
  6076. <packageinstance name="TO220BV"/>
  6077. </packageinstances>
  6078. </package3d>
  6079. </packages3d>
  6080. <symbols>
  6081. <symbol name="MFNS" urn="urn:adsk.eagle:symbol:16378716/2" library_version="4">
  6082. <wire x1="-1.1176" y1="2.413" x2="-1.1176" y2="-2.54" width="0.254" layer="94"/>
  6083. <wire x1="-1.1176" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  6084. <wire x1="2.54" y1="1.905" x2="0.5334" y2="1.905" width="0.1524" layer="94"/>
  6085. <wire x1="2.54" y1="0" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6086. <wire x1="0.508" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6087. <wire x1="2.54" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6088. <wire x1="2.54" y1="1.905" x2="5.08" y2="1.905" width="0.1524" layer="94"/>
  6089. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6090. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6091. <wire x1="5.08" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6092. <wire x1="2.54" y1="-1.905" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  6093. <wire x1="5.08" y1="0.762" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  6094. <wire x1="4.445" y1="-0.635" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  6095. <wire x1="5.715" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6096. <wire x1="4.445" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6097. <wire x1="5.08" y1="0.762" x2="5.715" y2="0.762" width="0.1524" layer="94"/>
  6098. <wire x1="5.715" y1="0.762" x2="5.969" y2="1.016" width="0.1524" layer="94"/>
  6099. <wire x1="4.445" y1="0.762" x2="4.191" y2="0.508" width="0.1524" layer="94"/>
  6100. <wire x1="0.508" y1="0" x2="1.778" y2="-0.508" width="0.1524" layer="94"/>
  6101. <wire x1="1.778" y1="-0.508" x2="1.778" y2="0.508" width="0.1524" layer="94"/>
  6102. <wire x1="1.778" y1="0.508" x2="0.508" y2="0" width="0.1524" layer="94"/>
  6103. <wire x1="1.651" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6104. <wire x1="1.651" y1="0.254" x2="0.762" y2="0" width="0.3048" layer="94"/>
  6105. <wire x1="0.762" y1="0" x2="1.651" y2="-0.254" width="0.3048" layer="94"/>
  6106. <wire x1="1.651" y1="-0.254" x2="1.651" y2="0" width="0.3048" layer="94"/>
  6107. <wire x1="1.651" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  6108. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  6109. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  6110. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  6111. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  6112. <text x="1.27" y="2.54" size="0.8128" layer="93">D</text>
  6113. <text x="1.27" y="-3.175" size="0.8128" layer="93">S</text>
  6114. <text x="-2.54" y="-1.27" size="0.8128" layer="93">G</text>
  6115. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  6116. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  6117. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6118. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  6119. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6120. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6121. </symbol>
  6122. </symbols>
  6123. <devicesets>
  6124. <deviceset name="NMOSFET" urn="urn:adsk.eagle:component:16378730/3" prefix="Q" library_version="4">
  6125. <description>&lt;b&gt; N-Channel MOSFET - Generic</description>
  6126. <gates>
  6127. <gate name="G$1" symbol="MFNS" x="-2.54" y="0"/>
  6128. </gates>
  6129. <devices>
  6130. <device name="SOT23" package="SOT23">
  6131. <connects>
  6132. <connect gate="G$1" pin="D" pad="3"/>
  6133. <connect gate="G$1" pin="G" pad="1"/>
  6134. <connect gate="G$1" pin="S" pad="2"/>
  6135. </connects>
  6136. <package3dinstances>
  6137. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6138. </package3dinstances>
  6139. <technologies>
  6140. <technology name="">
  6141. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6142. <attribute name="DESCRIPTION" value="" constant="no"/>
  6143. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6144. <attribute name="MANUFACTURER" value="" constant="no"/>
  6145. <attribute name="MPN" value="" constant="no"/>
  6146. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6147. <attribute name="PART_STATUS" value="" constant="no"/>
  6148. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6149. <attribute name="SERIES" value="" constant="no"/>
  6150. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6151. <attribute name="THERMALLOSS" value="" constant="no"/>
  6152. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6153. </technology>
  6154. <technology name="_">
  6155. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6156. <attribute name="DESCRIPTION" value="" constant="no"/>
  6157. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6158. <attribute name="MANUFACTURER" value="" constant="no"/>
  6159. <attribute name="MPN" value="" constant="no"/>
  6160. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6161. <attribute name="PART_STATUS" value="" constant="no"/>
  6162. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6163. <attribute name="SERIES" value="" constant="no"/>
  6164. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6165. <attribute name="THERMALLOSS" value="" constant="no"/>
  6166. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6167. </technology>
  6168. </technologies>
  6169. </device>
  6170. <device name="TO92" package="TO92">
  6171. <connects>
  6172. <connect gate="G$1" pin="D" pad="1"/>
  6173. <connect gate="G$1" pin="G" pad="2"/>
  6174. <connect gate="G$1" pin="S" pad="3"/>
  6175. </connects>
  6176. <package3dinstances>
  6177. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  6178. </package3dinstances>
  6179. <technologies>
  6180. <technology name="_">
  6181. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6182. <attribute name="DESCRIPTION" value="" constant="no"/>
  6183. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6184. <attribute name="MANUFACTURER" value="" constant="no"/>
  6185. <attribute name="MPN" value="" constant="no"/>
  6186. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6187. <attribute name="PART_STATUS" value="" constant="no"/>
  6188. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6189. <attribute name="SERIES" value="" constant="no"/>
  6190. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6191. <attribute name="THERMALLOSS" value="" constant="no"/>
  6192. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6193. </technology>
  6194. </technologies>
  6195. </device>
  6196. <device name="TO220" package="TO220BV">
  6197. <connects>
  6198. <connect gate="G$1" pin="D" pad="D"/>
  6199. <connect gate="G$1" pin="G" pad="G"/>
  6200. <connect gate="G$1" pin="S" pad="S"/>
  6201. </connects>
  6202. <package3dinstances>
  6203. <package3dinstance package3d_urn="urn:adsk.eagle:package:29484/3"/>
  6204. </package3dinstances>
  6205. <technologies>
  6206. <technology name="_">
  6207. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6208. <attribute name="DESCRIPTION" value="" constant="no"/>
  6209. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6210. <attribute name="MANUFACTURER" value="" constant="no"/>
  6211. <attribute name="MPN" value="" constant="no"/>
  6212. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6213. <attribute name="PART_STATUS" value="" constant="no"/>
  6214. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6215. <attribute name="SERIES" value="" constant="no"/>
  6216. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6217. <attribute name="THERMALLOSS" value="" constant="no"/>
  6218. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6219. </technology>
  6220. </technologies>
  6221. </device>
  6222. </devices>
  6223. </deviceset>
  6224. </devicesets>
  6225. </library>
  6226. </libraries>
  6227. <attributes>
  6228. </attributes>
  6229. <variantdefs>
  6230. </variantdefs>
  6231. <classes>
  6232. <class number="0" name="default" width="0" drill="0">
  6233. </class>
  6234. </classes>
  6235. <parts>
  6236. <part name="U1" library="regulator" deviceset="MAX5035" device="DIP8" package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  6237. <part name="VIN" library="Connectors" library_urn="urn:adsk.eagle:library:14555660" deviceset="B2P-VH(LF)(SN)" device="" package3d_urn="urn:adsk.eagle:package:10989917/2"/>
  6238. <part name="C4" library="regulator" deviceset="C" device="PANASONIC_H13" package3d_urn="urn:adsk.eagle:package:21812541/1"/>
  6239. <part name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C" device="CHIP-1206(3216-METRIC)" package3d_urn="urn:adsk.eagle:package:16290893/2" technology="_"/>
  6240. <part name="D1" library="Diodes" library_urn="urn:adsk.eagle:library:11396254" deviceset="MBR360G" device="" package3d_urn="urn:adsk.eagle:package:10898389/2"/>
  6241. <part name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" deviceset="DR127" device="" package3d_urn="urn:adsk.eagle:package:15117/1"/>
  6242. <part name="C2" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C" device="CHIP-1206(3216-METRIC)" package3d_urn="urn:adsk.eagle:package:16290893/2" technology="_"/>
  6243. <part name="C3" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C-POL" device="TANTALUM-2917(7343-METRIC)" package3d_urn="urn:adsk.eagle:package:16290885/1" technology="_"/>
  6244. <part name="R1" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="1M"/>
  6245. <part name="R2" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="100K"/>
  6246. <part name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="39K"/>
  6247. <part name="GND1" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  6248. <part name="ON/OFF" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="2.54MM_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1"/>
  6249. <part name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6250. <part name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_08" device="LONGPADS" package3d_urn="urn:adsk.eagle:package:38142/1" value="COMM"/>
  6251. <part name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="" package3d_urn="urn:adsk.eagle:package:38039/1" value="STOP_LIGHT"/>
  6252. <part name="DRIVER" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_04" device="" package3d_urn="urn:adsk.eagle:package:38085/1"/>
  6253. <part name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="1M"/>
  6254. <part name="R5" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="100K"/>
  6255. <part name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6256. <part name="R6" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="22K"/>
  6257. <part name="R7" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K"/>
  6258. </parts>
  6259. <sheets>
  6260. <sheet>
  6261. <plain>
  6262. </plain>
  6263. <instances>
  6264. <instance part="U1" gate="G$1" x="55.88" y="58.42" smashed="yes">
  6265. <attribute name="NAME" x="45.72" y="73.66" size="1.778" layer="95"/>
  6266. <attribute name="VALUE" x="45.72" y="40.64" size="1.778" layer="96"/>
  6267. </instance>
  6268. <instance part="VIN" gate="G$1" x="132.08" y="73.66" smashed="yes" rot="R180">
  6269. <attribute name="NAME" x="134.62" y="67.818" size="1.778" layer="95" rot="R180"/>
  6270. <attribute name="VALUE" x="134.62" y="78.74" size="1.778" layer="96" rot="R180"/>
  6271. </instance>
  6272. <instance part="C4" gate="G$1" x="88.9" y="60.96" smashed="yes" rot="R90">
  6273. <attribute name="NAME" x="86.36" y="63.5" size="1.778" layer="95" rot="R90"/>
  6274. <attribute name="VALUE" x="93.98" y="63.5" size="1.778" layer="96" rot="R90"/>
  6275. </instance>
  6276. <instance part="C1" gate="G$1" x="53.34" y="78.74" smashed="yes" rot="R90">
  6277. <attribute name="NAME" x="50.8" y="81.28" size="1.778" layer="95" rot="R90"/>
  6278. <attribute name="VALUE" x="53.34" y="81.28" size="1.778" layer="96" rot="R90"/>
  6279. </instance>
  6280. <instance part="D1" gate="G$1" x="71.12" y="86.36" smashed="yes" rot="R180">
  6281. <attribute name="NAME" x="73.406" y="84.455" size="1.778" layer="95" rot="R180"/>
  6282. <attribute name="VALUE" x="73.406" y="89.789" size="1.778" layer="96" rot="R180"/>
  6283. </instance>
  6284. <instance part="L1" gate="G$1" x="43.18" y="86.36" smashed="yes" rot="R180">
  6285. <attribute name="NAME" x="46.99" y="84.074" size="1.778" layer="95" rot="R180"/>
  6286. <attribute name="VALUE" x="47.117" y="89.408" size="1.778" layer="96" rot="R180"/>
  6287. </instance>
  6288. <instance part="C2" gate="G$1" x="30.48" y="60.96" smashed="yes" rot="R90">
  6289. <attribute name="NAME" x="27.94" y="63.5" size="1.778" layer="95" rot="R90"/>
  6290. <attribute name="VALUE" x="30.48" y="63.5" size="1.778" layer="96" rot="R90"/>
  6291. </instance>
  6292. <instance part="C3" gate="G$1" x="17.78" y="76.2" smashed="yes">
  6293. <attribute name="NAME" x="18.923" y="76.6826" size="1.778" layer="95"/>
  6294. <attribute name="VALUE" x="18.923" y="71.6026" size="1.778" layer="96"/>
  6295. </instance>
  6296. <instance part="R1" gate="G$1" x="106.68" y="58.42" smashed="yes" rot="R270">
  6297. <attribute name="NAME" x="108.1786" y="62.23" size="1.778" layer="95" rot="R270"/>
  6298. <attribute name="VALUE" x="103.378" y="62.23" size="1.778" layer="96" rot="R270"/>
  6299. </instance>
  6300. <instance part="R2" gate="G$1" x="106.68" y="43.18" smashed="yes" rot="R270">
  6301. <attribute name="NAME" x="108.1786" y="46.99" size="1.778" layer="95" rot="R270"/>
  6302. <attribute name="VALUE" x="103.378" y="46.99" size="1.778" layer="96" rot="R270"/>
  6303. </instance>
  6304. <instance part="R3" gate="G$1" x="106.68" y="30.48" smashed="yes" rot="R90">
  6305. <attribute name="NAME" x="105.1814" y="26.67" size="1.778" layer="95" rot="R90"/>
  6306. <attribute name="VALUE" x="109.982" y="26.67" size="1.778" layer="96" rot="R90"/>
  6307. </instance>
  6308. <instance part="GND1" gate="1" x="55.88" y="15.24" smashed="yes">
  6309. <attribute name="VALUE" x="53.34" y="12.7" size="1.778" layer="96"/>
  6310. </instance>
  6311. <instance part="ON/OFF" gate="G$1" x="119.38" y="50.8" smashed="yes" rot="R180">
  6312. <attribute name="VALUE" x="121.92" y="55.626" size="1.778" layer="96" font="vector" rot="R180"/>
  6313. <attribute name="NAME" x="121.92" y="45.212" size="1.778" layer="95" font="vector" rot="R180"/>
  6314. </instance>
  6315. <instance part="Q1" gate="G$1" x="-50.8" y="81.28" smashed="yes" rot="R180">
  6316. <attribute name="NAME" x="-57.15" y="80.01" size="1.778" layer="95" rot="R180"/>
  6317. <attribute name="VALUE" x="-57.15" y="82.55" size="1.778" layer="96" rot="R180"/>
  6318. </instance>
  6319. <instance part="J1" gate="G$1" x="-20.32" y="81.28" smashed="yes" rot="R180">
  6320. <attribute name="VALUE" x="-15.24" y="93.726" size="1.778" layer="96" font="vector" rot="R180"/>
  6321. <attribute name="NAME" x="-15.24" y="68.072" size="1.778" layer="95" font="vector" rot="R180"/>
  6322. </instance>
  6323. <instance part="J2" gate="G$1" x="-17.78" y="38.1" smashed="yes" rot="R180">
  6324. <attribute name="VALUE" x="-15.24" y="42.926" size="1.778" layer="96" font="vector" rot="R180"/>
  6325. <attribute name="NAME" x="-15.24" y="32.512" size="1.778" layer="95" font="vector" rot="R180"/>
  6326. </instance>
  6327. <instance part="DRIVER" gate="G$1" x="-20.32" y="58.42" smashed="yes" rot="R180">
  6328. <attribute name="VALUE" x="-15.24" y="65.786" size="1.778" layer="96" font="vector" rot="R180"/>
  6329. <attribute name="NAME" x="-15.24" y="50.292" size="1.778" layer="95" font="vector" rot="R180"/>
  6330. </instance>
  6331. <instance part="R4" gate="G$1" x="-33.02" y="7.62" smashed="yes" rot="R180">
  6332. <attribute name="NAME" x="-29.21" y="6.1214" size="1.778" layer="95" rot="R180"/>
  6333. <attribute name="VALUE" x="-29.21" y="10.922" size="1.778" layer="96" rot="R180"/>
  6334. </instance>
  6335. <instance part="R5" gate="G$1" x="-33.02" y="-20.32" smashed="yes">
  6336. <attribute name="NAME" x="-36.83" y="-18.8214" size="1.778" layer="95"/>
  6337. <attribute name="VALUE" x="-36.83" y="-23.622" size="1.778" layer="96"/>
  6338. </instance>
  6339. <instance part="Q2" gate="G$1" x="-40.64" y="17.78" smashed="yes">
  6340. <attribute name="NAME" x="-34.29" y="19.05" size="1.778" layer="95"/>
  6341. <attribute name="VALUE" x="-34.29" y="16.51" size="1.778" layer="96"/>
  6342. </instance>
  6343. <instance part="R6" gate="G$1" x="-33.02" y="-12.7" smashed="yes" rot="R180">
  6344. <attribute name="NAME" x="-29.21" y="-14.1986" size="1.778" layer="95" rot="R180"/>
  6345. <attribute name="VALUE" x="-29.21" y="-9.398" size="1.778" layer="96" rot="R180"/>
  6346. </instance>
  6347. <instance part="R7" gate="G$1" x="-33.02" y="0" smashed="yes" rot="R180">
  6348. <attribute name="NAME" x="-29.21" y="-1.4986" size="1.778" layer="95" rot="R180"/>
  6349. <attribute name="VALUE" x="-29.21" y="3.302" size="1.778" layer="96" rot="R180"/>
  6350. </instance>
  6351. </instances>
  6352. <busses>
  6353. </busses>
  6354. <nets>
  6355. <net name="GND" class="0">
  6356. <segment>
  6357. <pinref part="U1" gate="G$1" pin="GND"/>
  6358. <wire x1="71.12" y1="55.88" x2="96.52" y2="55.88" width="0.1524" layer="91"/>
  6359. <pinref part="C4" gate="G$1" pin="P$2"/>
  6360. <wire x1="93.98" y1="60.96" x2="96.52" y2="60.96" width="0.1524" layer="91"/>
  6361. <wire x1="96.52" y1="60.96" x2="101.6" y2="60.96" width="0.1524" layer="91"/>
  6362. <wire x1="96.52" y1="55.88" x2="96.52" y2="60.96" width="0.1524" layer="91"/>
  6363. <junction x="96.52" y="60.96"/>
  6364. </segment>
  6365. <segment>
  6366. <pinref part="U1" gate="G$1" pin="SGND"/>
  6367. <wire x1="40.64" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
  6368. <wire x1="25.4" y1="55.88" x2="25.4" y2="60.96" width="0.1524" layer="91"/>
  6369. <wire x1="25.4" y1="60.96" x2="27.94" y2="60.96" width="0.1524" layer="91"/>
  6370. <pinref part="C2" gate="G$1" pin="1"/>
  6371. </segment>
  6372. <segment>
  6373. <pinref part="R3" gate="G$1" pin="1"/>
  6374. <wire x1="106.68" y1="25.4" x2="106.68" y2="22.86" width="0.1524" layer="91"/>
  6375. <wire x1="106.68" y1="22.86" x2="55.88" y2="22.86" width="0.1524" layer="91"/>
  6376. <wire x1="55.88" y1="22.86" x2="55.88" y2="17.78" width="0.1524" layer="91"/>
  6377. <pinref part="GND1" gate="1" pin="GND"/>
  6378. <pinref part="VIN" gate="G$1" pin="1"/>
  6379. <wire x1="127" y1="71.12" x2="124.46" y2="71.12" width="0.1524" layer="91"/>
  6380. <wire x1="124.46" y1="71.12" x2="124.46" y2="58.42" width="0.1524" layer="91"/>
  6381. <wire x1="124.46" y1="58.42" x2="124.46" y2="22.86" width="0.1524" layer="91"/>
  6382. <wire x1="124.46" y1="22.86" x2="111.76" y2="22.86" width="0.1524" layer="91"/>
  6383. <junction x="106.68" y="22.86"/>
  6384. <pinref part="C3" gate="G$1" pin="-"/>
  6385. <wire x1="111.76" y1="22.86" x2="106.68" y2="22.86" width="0.1524" layer="91"/>
  6386. <wire x1="55.88" y1="22.86" x2="17.78" y2="22.86" width="0.1524" layer="91"/>
  6387. <wire x1="17.78" y1="22.86" x2="17.78" y2="71.12" width="0.1524" layer="91"/>
  6388. <junction x="55.88" y="22.86"/>
  6389. <pinref part="D1" gate="G$1" pin="A"/>
  6390. <wire x1="73.66" y1="86.36" x2="139.7" y2="86.36" width="0.1524" layer="91"/>
  6391. <wire x1="139.7" y1="86.36" x2="139.7" y2="58.42" width="0.1524" layer="91"/>
  6392. <wire x1="139.7" y1="58.42" x2="124.46" y2="58.42" width="0.1524" layer="91"/>
  6393. <junction x="124.46" y="58.42"/>
  6394. <pinref part="ON/OFF" gate="G$1" pin="2"/>
  6395. <wire x1="111.76" y1="48.26" x2="111.76" y2="22.86" width="0.1524" layer="91"/>
  6396. <junction x="111.76" y="22.86"/>
  6397. </segment>
  6398. <segment>
  6399. <pinref part="J1" gate="G$1" pin="2"/>
  6400. <label x="-30.48" y="86.36" size="1.778" layer="95"/>
  6401. <pinref part="Q1" gate="G$1" pin="S"/>
  6402. <wire x1="-25.4" y1="86.36" x2="-53.34" y2="86.36" width="0.1524" layer="91"/>
  6403. </segment>
  6404. <segment>
  6405. <pinref part="R5" gate="G$1" pin="1"/>
  6406. <wire x1="-38.1" y1="-20.32" x2="-38.1" y2="-27.94" width="0.1524" layer="91"/>
  6407. <wire x1="-38.1" y1="-27.94" x2="-25.4" y2="-27.94" width="0.1524" layer="91"/>
  6408. <label x="-30.48" y="-27.94" size="1.778" layer="95"/>
  6409. </segment>
  6410. </net>
  6411. <net name="VIN" class="0">
  6412. <segment>
  6413. <pinref part="U1" gate="G$1" pin="VIN"/>
  6414. <pinref part="C4" gate="G$1" pin="P$1"/>
  6415. <wire x1="71.12" y1="60.96" x2="78.74" y2="60.96" width="0.1524" layer="91"/>
  6416. <wire x1="78.74" y1="60.96" x2="82.55" y2="60.96" width="0.1524" layer="91"/>
  6417. <wire x1="78.74" y1="60.96" x2="78.74" y2="68.58" width="0.1524" layer="91"/>
  6418. <junction x="78.74" y="60.96"/>
  6419. <wire x1="78.74" y1="68.58" x2="106.68" y2="68.58" width="0.1524" layer="91"/>
  6420. <wire x1="106.68" y1="68.58" x2="106.68" y2="63.5" width="0.1524" layer="91"/>
  6421. <pinref part="R1" gate="G$1" pin="1"/>
  6422. <pinref part="VIN" gate="G$1" pin="2"/>
  6423. <wire x1="78.74" y1="68.58" x2="78.74" y2="73.66" width="0.1524" layer="91"/>
  6424. <wire x1="78.74" y1="73.66" x2="127" y2="73.66" width="0.1524" layer="91"/>
  6425. <junction x="78.74" y="68.58"/>
  6426. </segment>
  6427. <segment>
  6428. <pinref part="Q2" gate="G$1" pin="D"/>
  6429. <wire x1="-38.1" y1="22.86" x2="-38.1" y2="25.4" width="0.1524" layer="91"/>
  6430. <wire x1="-38.1" y1="25.4" x2="-27.94" y2="25.4" width="0.1524" layer="91"/>
  6431. <label x="-33.02" y="25.4" size="1.778" layer="95"/>
  6432. </segment>
  6433. </net>
  6434. <net name="N$1" class="0">
  6435. <segment>
  6436. <pinref part="U1" gate="G$1" pin="BST"/>
  6437. <wire x1="40.64" y1="66.04" x2="38.1" y2="66.04" width="0.1524" layer="91"/>
  6438. <wire x1="38.1" y1="66.04" x2="38.1" y2="78.74" width="0.1524" layer="91"/>
  6439. <pinref part="C1" gate="G$1" pin="1"/>
  6440. <wire x1="38.1" y1="78.74" x2="50.8" y2="78.74" width="0.1524" layer="91"/>
  6441. </segment>
  6442. </net>
  6443. <net name="N$2" class="0">
  6444. <segment>
  6445. <pinref part="C1" gate="G$1" pin="2"/>
  6446. <wire x1="58.42" y1="78.74" x2="60.96" y2="78.74" width="0.1524" layer="91"/>
  6447. <wire x1="60.96" y1="78.74" x2="73.66" y2="78.74" width="0.1524" layer="91"/>
  6448. <wire x1="73.66" y1="78.74" x2="73.66" y2="66.04" width="0.1524" layer="91"/>
  6449. <pinref part="U1" gate="G$1" pin="LX"/>
  6450. <wire x1="73.66" y1="66.04" x2="71.12" y2="66.04" width="0.1524" layer="91"/>
  6451. <wire x1="60.96" y1="86.36" x2="60.96" y2="78.74" width="0.1524" layer="91"/>
  6452. <junction x="60.96" y="78.74"/>
  6453. <pinref part="D1" gate="G$1" pin="C"/>
  6454. <wire x1="68.58" y1="86.36" x2="60.96" y2="86.36" width="0.1524" layer="91"/>
  6455. <wire x1="60.96" y1="86.36" x2="50.8" y2="86.36" width="0.1524" layer="91"/>
  6456. <junction x="60.96" y="86.36"/>
  6457. <pinref part="L1" gate="G$1" pin="1"/>
  6458. </segment>
  6459. </net>
  6460. <net name="VOUT" class="0">
  6461. <segment>
  6462. <pinref part="L1" gate="G$1" pin="2"/>
  6463. <wire x1="35.56" y1="86.36" x2="22.86" y2="86.36" width="0.1524" layer="91"/>
  6464. <wire x1="22.86" y1="86.36" x2="22.86" y2="50.8" width="0.1524" layer="91"/>
  6465. <pinref part="U1" gate="G$1" pin="FB"/>
  6466. <wire x1="22.86" y1="50.8" x2="40.64" y2="50.8" width="0.1524" layer="91"/>
  6467. <wire x1="22.86" y1="86.36" x2="17.78" y2="86.36" width="0.1524" layer="91"/>
  6468. <junction x="22.86" y="86.36"/>
  6469. <wire x1="17.78" y1="86.36" x2="7.62" y2="86.36" width="0.1524" layer="91"/>
  6470. <wire x1="17.78" y1="86.36" x2="17.78" y2="78.74" width="0.1524" layer="91"/>
  6471. <junction x="17.78" y="86.36"/>
  6472. <pinref part="C3" gate="G$1" pin="+"/>
  6473. <label x="10.16" y="86.36" size="1.778" layer="95"/>
  6474. </segment>
  6475. <segment>
  6476. <pinref part="J1" gate="G$1" pin="1"/>
  6477. <wire x1="-25.4" y1="88.9" x2="-33.02" y2="88.9" width="0.1524" layer="91"/>
  6478. <label x="-33.02" y="88.9" size="1.778" layer="95"/>
  6479. </segment>
  6480. </net>
  6481. <net name="N$4" class="0">
  6482. <segment>
  6483. <pinref part="C2" gate="G$1" pin="2"/>
  6484. <pinref part="U1" gate="G$1" pin="VD"/>
  6485. <wire x1="35.56" y1="60.96" x2="40.64" y2="60.96" width="0.1524" layer="91"/>
  6486. </segment>
  6487. </net>
  6488. <net name="N$5" class="0">
  6489. <segment>
  6490. <pinref part="U1" gate="G$1" pin="ON/OFF"/>
  6491. <wire x1="71.12" y1="50.8" x2="106.68" y2="50.8" width="0.1524" layer="91"/>
  6492. <pinref part="R1" gate="G$1" pin="2"/>
  6493. <wire x1="106.68" y1="53.34" x2="106.68" y2="50.8" width="0.1524" layer="91"/>
  6494. <wire x1="106.68" y1="50.8" x2="106.68" y2="48.26" width="0.1524" layer="91"/>
  6495. <junction x="106.68" y="50.8"/>
  6496. <pinref part="R2" gate="G$1" pin="1"/>
  6497. <pinref part="ON/OFF" gate="G$1" pin="1"/>
  6498. <wire x1="106.68" y1="50.8" x2="111.76" y2="50.8" width="0.1524" layer="91"/>
  6499. </segment>
  6500. </net>
  6501. <net name="N$7" class="0">
  6502. <segment>
  6503. <pinref part="R2" gate="G$1" pin="2"/>
  6504. <pinref part="R3" gate="G$1" pin="2"/>
  6505. <wire x1="106.68" y1="38.1" x2="106.68" y2="35.56" width="0.1524" layer="91"/>
  6506. </segment>
  6507. </net>
  6508. <net name="SPIN" class="0">
  6509. <segment>
  6510. <pinref part="DRIVER" gate="G$1" pin="1"/>
  6511. <wire x1="-25.4" y1="60.96" x2="-33.02" y2="60.96" width="0.1524" layer="91"/>
  6512. <pinref part="J1" gate="G$1" pin="8"/>
  6513. <wire x1="-33.02" y1="60.96" x2="-33.02" y2="71.12" width="0.1524" layer="91"/>
  6514. <wire x1="-33.02" y1="71.12" x2="-25.4" y2="71.12" width="0.1524" layer="91"/>
  6515. <label x="-30.48" y="60.96" size="1.778" layer="95"/>
  6516. </segment>
  6517. </net>
  6518. <net name="SPOUT" class="0">
  6519. <segment>
  6520. <pinref part="DRIVER" gate="G$1" pin="2"/>
  6521. <wire x1="-25.4" y1="58.42" x2="-35.56" y2="58.42" width="0.1524" layer="91"/>
  6522. <pinref part="J1" gate="G$1" pin="7"/>
  6523. <wire x1="-35.56" y1="58.42" x2="-35.56" y2="73.66" width="0.1524" layer="91"/>
  6524. <wire x1="-35.56" y1="73.66" x2="-25.4" y2="73.66" width="0.1524" layer="91"/>
  6525. <label x="-33.02" y="58.42" size="1.778" layer="95"/>
  6526. </segment>
  6527. </net>
  6528. <net name="ST" class="0">
  6529. <segment>
  6530. <pinref part="DRIVER" gate="G$1" pin="3"/>
  6531. <wire x1="-25.4" y1="55.88" x2="-38.1" y2="55.88" width="0.1524" layer="91"/>
  6532. <pinref part="J1" gate="G$1" pin="6"/>
  6533. <wire x1="-38.1" y1="55.88" x2="-38.1" y2="76.2" width="0.1524" layer="91"/>
  6534. <wire x1="-38.1" y1="76.2" x2="-25.4" y2="76.2" width="0.1524" layer="91"/>
  6535. <label x="-27.94" y="55.88" size="1.778" layer="95"/>
  6536. </segment>
  6537. </net>
  6538. <net name="5V" class="0">
  6539. <segment>
  6540. <pinref part="DRIVER" gate="G$1" pin="4"/>
  6541. <wire x1="-25.4" y1="53.34" x2="-38.1" y2="53.34" width="0.1524" layer="91"/>
  6542. <wire x1="-38.1" y1="53.34" x2="-38.1" y2="38.1" width="0.1524" layer="91"/>
  6543. <pinref part="J2" gate="G$1" pin="1"/>
  6544. <wire x1="-38.1" y1="38.1" x2="-25.4" y2="38.1" width="0.1524" layer="91"/>
  6545. <label x="-27.94" y="53.34" size="1.778" layer="95"/>
  6546. </segment>
  6547. </net>
  6548. <net name="N$3" class="0">
  6549. <segment>
  6550. <pinref part="Q1" gate="G$1" pin="D"/>
  6551. <wire x1="-53.34" y1="76.2" x2="-53.34" y2="35.56" width="0.1524" layer="91"/>
  6552. <pinref part="J2" gate="G$1" pin="2"/>
  6553. <wire x1="-53.34" y1="35.56" x2="-25.4" y2="35.56" width="0.1524" layer="91"/>
  6554. </segment>
  6555. </net>
  6556. <net name="STLEDCTL" class="0">
  6557. <segment>
  6558. <pinref part="Q1" gate="G$1" pin="G"/>
  6559. <wire x1="-48.26" y1="83.82" x2="-45.72" y2="83.82" width="0.1524" layer="91"/>
  6560. <wire x1="-45.72" y1="83.82" x2="-45.72" y2="78.74" width="0.1524" layer="91"/>
  6561. <pinref part="J1" gate="G$1" pin="5"/>
  6562. <wire x1="-45.72" y1="78.74" x2="-25.4" y2="78.74" width="0.1524" layer="91"/>
  6563. <label x="-38.1" y="78.74" size="1.778" layer="95"/>
  6564. </segment>
  6565. </net>
  6566. <net name="PWM" class="0">
  6567. <segment>
  6568. <pinref part="Q2" gate="G$1" pin="G"/>
  6569. <wire x1="-43.18" y1="15.24" x2="-50.8" y2="15.24" width="0.1524" layer="91"/>
  6570. <label x="-50.8" y="15.24" size="1.778" layer="95"/>
  6571. </segment>
  6572. <segment>
  6573. <pinref part="J1" gate="G$1" pin="4"/>
  6574. <wire x1="-25.4" y1="81.28" x2="-35.56" y2="81.28" width="0.1524" layer="91"/>
  6575. <label x="-30.48" y="81.28" size="1.778" layer="95"/>
  6576. </segment>
  6577. </net>
  6578. <net name="BAT" class="0">
  6579. <segment>
  6580. <wire x1="-38.1" y1="-5.08" x2="-50.8" y2="-5.08" width="0.1524" layer="91"/>
  6581. <label x="-50.8" y="-7.62" size="1.778" layer="95"/>
  6582. <pinref part="R7" gate="G$1" pin="2"/>
  6583. <wire x1="-38.1" y1="0" x2="-38.1" y2="-5.08" width="0.1524" layer="91"/>
  6584. <pinref part="R6" gate="G$1" pin="2"/>
  6585. <wire x1="-38.1" y1="-5.08" x2="-38.1" y2="-12.7" width="0.1524" layer="91"/>
  6586. <junction x="-38.1" y="-5.08"/>
  6587. </segment>
  6588. <segment>
  6589. <pinref part="J1" gate="G$1" pin="3"/>
  6590. <wire x1="-25.4" y1="83.82" x2="-35.56" y2="83.82" width="0.1524" layer="91"/>
  6591. <label x="-30.48" y="83.82" size="1.778" layer="95"/>
  6592. </segment>
  6593. </net>
  6594. <net name="N$8" class="0">
  6595. <segment>
  6596. <pinref part="Q2" gate="G$1" pin="S"/>
  6597. <pinref part="R4" gate="G$1" pin="2"/>
  6598. <wire x1="-38.1" y1="12.7" x2="-38.1" y2="7.62" width="0.1524" layer="91"/>
  6599. </segment>
  6600. </net>
  6601. <net name="N$6" class="0">
  6602. <segment>
  6603. <pinref part="R4" gate="G$1" pin="1"/>
  6604. <pinref part="R7" gate="G$1" pin="1"/>
  6605. <wire x1="-27.94" y1="7.62" x2="-27.94" y2="0" width="0.1524" layer="91"/>
  6606. </segment>
  6607. </net>
  6608. <net name="N$9" class="0">
  6609. <segment>
  6610. <pinref part="R6" gate="G$1" pin="1"/>
  6611. <pinref part="R5" gate="G$1" pin="2"/>
  6612. <wire x1="-27.94" y1="-12.7" x2="-27.94" y2="-20.32" width="0.1524" layer="91"/>
  6613. </segment>
  6614. </net>
  6615. </nets>
  6616. </sheet>
  6617. </sheets>
  6618. </schematic>
  6619. </drawing>
  6620. <compatibility>
  6621. <note version="8.2" severity="warning">
  6622. Since Version 8.2, EAGLE supports online libraries. The ids
  6623. of those online libraries will not be understood (or retained)
  6624. with this version.
  6625. </note>
  6626. <note version="8.3" severity="warning">
  6627. Since Version 8.3, EAGLE supports URNs for individual library
  6628. assets (packages, symbols, and devices). The URNs of those assets
  6629. will not be understood (or retained) with this version.
  6630. </note>
  6631. <note version="8.3" severity="warning">
  6632. Since Version 8.3, EAGLE supports the association of 3D packages
  6633. with devices in libraries, schematics, and board files. Those 3D
  6634. packages will not be understood (or retained) with this version.
  6635. </note>
  6636. <note version="8.4" severity="warning">
  6637. Since Version 8.4, EAGLE supports properties for SPICE simulation.
  6638. Probes in schematics and SPICE mapping objects found in parts and library devices
  6639. will not be understood with this version. Update EAGLE to the latest version
  6640. for full support of SPICE simulation.
  6641. </note>
  6642. </compatibility>
  6643. </eagle>