ECU.s#9 458 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360
  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="7" 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="SparkFun-Connectors" urn="urn:adsk.eagle:library:513">
  148. <description>&lt;h3&gt;SparkFun Connectors&lt;/h3&gt;
  149. This library contains electrically-functional connectors.
  150. &lt;br&gt;
  151. &lt;br&gt;
  152. 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.
  153. &lt;br&gt;
  154. &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;.
  155. &lt;br&gt;
  156. &lt;br&gt;
  157. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  158. &lt;br&gt;
  159. &lt;br&gt;
  160. 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>
  161. <packages>
  162. <package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1">
  163. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  164. &lt;p&gt;Specifications:
  165. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  166. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  167. &lt;/ul&gt;&lt;/p&gt;
  168. &lt;p&gt;Example device(s):
  169. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  170. &lt;/ul&gt;&lt;/p&gt;</description>
  171. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  172. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  173. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  174. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  175. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  176. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  177. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  178. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  179. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  180. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  181. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  182. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  183. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  184. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  185. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  186. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  187. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  188. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  189. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  190. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  191. </package>
  192. <package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1">
  193. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole&lt;/h3&gt;
  194. &lt;p&gt;Specifications:
  195. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  196. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  197. &lt;/ul&gt;&lt;/p&gt;
  198. &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;
  199. &lt;p&gt;Example device(s):
  200. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  201. &lt;/ul&gt;&lt;/p&gt;</description>
  202. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  203. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  204. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  205. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  206. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  207. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  208. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  209. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  210. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  211. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  212. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  213. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  214. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  215. </package>
  216. <package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1">
  217. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH&lt;/h3&gt;
  218. &lt;p&gt;Specifications:
  219. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  220. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  221. &lt;/ul&gt;&lt;/p&gt;
  222. &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;
  223. &lt;p&gt;Example device(s):
  224. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  225. &lt;/ul&gt;&lt;/p&gt;</description>
  226. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  227. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  228. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  229. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  230. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  231. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  232. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  233. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  234. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  235. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  236. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  237. <wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/>
  238. <wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/>
  239. <wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  240. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  241. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  242. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  243. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  244. </package>
  245. <package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1">
  246. <description>&lt;h3&gt;JST-Right Angle Male Header SMT&lt;/h3&gt;
  247. &lt;p&gt;Specifications:
  248. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  249. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  250. &lt;/ul&gt;&lt;/p&gt;
  251. &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;
  252. &lt;p&gt;Example device(s):
  253. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  254. &lt;li&gt;JST_2MM_MALE&lt;/li&gt;
  255. &lt;/ul&gt;&lt;/p&gt;</description>
  256. <wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/>
  257. <wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/>
  258. <wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/>
  259. <wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/>
  260. <wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/>
  261. <wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/>
  262. <wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/>
  263. <wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/>
  264. <wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/>
  265. <smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  266. <smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  267. <smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  268. <smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  269. <text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  270. <text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  271. </package>
  272. <package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1">
  273. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  274. &lt;p&gt;Specifications:
  275. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  276. &lt;li&gt;Pin pitch:0.15"&lt;/li&gt;
  277. &lt;/ul&gt;&lt;/p&gt;
  278. &lt;p&gt;Example device(s):
  279. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  280. &lt;/ul&gt;&lt;/p&gt;</description>
  281. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/>
  282. <wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  283. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/>
  284. <wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/>
  285. <pad name="P$1" x="0" y="0" drill="1.0668"/>
  286. <pad name="P$2" x="3.81" y="0" drill="1.0668"/>
  287. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  288. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  289. </package>
  290. <package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1">
  291. <description>&lt;h3&gt;JST-Vertical Male Header SMT &lt;/h3&gt;
  292. &lt;p&gt;Specifications:
  293. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  294. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  295. &lt;/ul&gt;&lt;/p&gt;
  296. &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;
  297. &lt;p&gt;Example device(s):
  298. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  299. &lt;/ul&gt;&lt;/p&gt;</description>
  300. <wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/>
  301. <wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/>
  302. <wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/>
  303. <wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/>
  304. <wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/>
  305. <wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/>
  306. <wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/>
  307. <wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/>
  308. <wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/>
  309. <wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/>
  310. <wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/>
  311. <smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  312. <smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  313. <smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/>
  314. <smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/>
  315. <text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  316. <text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  317. </package>
  318. <package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1">
  319. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -2 Pin PTH&lt;/h3&gt;
  320. &lt;p&gt;Specifications:
  321. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  322. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  323. &lt;/ul&gt;&lt;/p&gt;
  324. &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;
  325. &lt;p&gt;Example device(s):
  326. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  327. &lt;/ul&gt;&lt;/p&gt;</description>
  328. <wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/>
  329. <wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/>
  330. <wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/>
  331. <wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  332. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  333. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  334. <wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  335. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  336. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  337. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  338. <wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/>
  339. <wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/>
  340. <wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/>
  341. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  342. <pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/>
  343. <pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/>
  344. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  345. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  346. </package>
  347. <package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1">
  348. <description>&lt;h3&gt;Plated Through Hole - Locking Footprint&lt;/h3&gt;
  349. Holes are staggered by 0.005" from center to hold pins while soldering.
  350. &lt;p&gt;Specifications:
  351. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  352. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  353. &lt;/ul&gt;&lt;/p&gt;
  354. &lt;p&gt;Example device(s):
  355. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  356. &lt;/ul&gt;&lt;/p&gt;</description>
  357. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  358. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  359. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  360. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  361. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  362. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  363. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  364. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  365. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  366. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  367. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  368. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  369. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  370. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  371. <pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  372. <pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  373. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  374. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  375. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  376. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  377. </package>
  378. <package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1">
  379. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  380. Holes are offset from center by 0.005" to hold pins in place during soldering.
  381. &lt;p&gt;Specifications:
  382. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  383. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  384. &lt;/ul&gt;&lt;/p&gt;
  385. &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;
  386. &lt;p&gt;Example device(s):
  387. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  388. &lt;/ul&gt;&lt;/p&gt;</description>
  389. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  390. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  391. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  392. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  393. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  394. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  395. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  396. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  397. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  398. <pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  399. <pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/>
  400. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  401. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  402. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  403. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  404. </package>
  405. <package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1">
  406. <description>&lt;h3&gt;Plated Through Hole - Long Pads with Locking Footprint&lt;/h3&gt;
  407. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  408. &lt;p&gt;Specifications:
  409. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  410. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  411. &lt;/ul&gt;&lt;/p&gt;
  412. &lt;p&gt;Example device(s):
  413. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  414. &lt;/ul&gt;&lt;/p&gt;</description>
  415. <wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/>
  416. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  417. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  418. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  419. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  420. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  421. <wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  422. <wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/>
  423. <wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/>
  424. <wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/>
  425. <wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/>
  426. <pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/>
  427. <pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/>
  428. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  429. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  430. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  431. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  432. </package>
  433. <package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1">
  434. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking&lt;/h3&gt;
  435. Holes are offset from center 0.005" to hold pins in place during soldering.
  436. &lt;p&gt;Specifications:
  437. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  438. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  439. &lt;/ul&gt;&lt;/p&gt;
  440. &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;
  441. &lt;p&gt;Example device(s):
  442. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  443. &lt;/ul&gt;&lt;/p&gt;</description>
  444. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  445. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  446. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  447. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  448. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  449. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  450. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  451. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  452. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  453. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  454. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  455. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  456. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  457. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  458. <circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/>
  459. <circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/>
  460. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  461. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  462. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  463. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  464. </package>
  465. <package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1">
  466. <description>&lt;h3&gt;Plated Through Hole - Long Pads without Silk Outline&lt;/h3&gt;
  467. &lt;p&gt;Specifications:
  468. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  469. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  470. &lt;/ul&gt;&lt;/p&gt;
  471. &lt;p&gt;Example device(s):
  472. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  473. &lt;/ul&gt;&lt;/p&gt;</description>
  474. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  475. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  476. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  477. <text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  478. </package>
  479. <package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1">
  480. <description>&lt;h3&gt;Plated Through Hole - No Silk Outline&lt;/h3&gt;
  481. &lt;p&gt;Specifications:
  482. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  483. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  484. &lt;/ul&gt;&lt;/p&gt;
  485. &lt;p&gt;Example device(s):
  486. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  487. &lt;/ul&gt;&lt;/p&gt;</description>
  488. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  489. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  490. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  491. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  492. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  493. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  494. </package>
  495. <package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1">
  496. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  497. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  498. &lt;p&gt;Specifications:
  499. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  500. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  501. &lt;/ul&gt;&lt;/p&gt;
  502. &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;
  503. &lt;p&gt;Example device(s):
  504. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  505. &lt;/ul&gt;&lt;/p&gt;</description>
  506. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  507. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  508. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  509. <text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  510. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  511. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  512. <wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/>
  513. <wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/>
  514. <wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/>
  515. <wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/>
  516. <wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/>
  517. <wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/>
  518. <wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/>
  519. </package>
  520. <package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1">
  521. <description>&lt;h3&gt;Plated Through Hole - 0.1" holes&lt;/h3&gt;
  522. &lt;p&gt;Specifications:
  523. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  524. &lt;li&gt;Pin pitch:0.2"&lt;/li&gt;
  525. &lt;/ul&gt;&lt;/p&gt;
  526. &lt;p&gt;Example device(s):
  527. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  528. &lt;/ul&gt;&lt;/p&gt;</description>
  529. <wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/>
  530. <wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  531. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/>
  532. <wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/>
  533. <pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/>
  534. <pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/>
  535. <text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  536. <text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  537. </package>
  538. <package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1">
  539. <description>&lt;h3&gt;Pogo Pins Connector - No Silk Outline&lt;/h3&gt;
  540. &lt;p&gt;Specifications:
  541. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  542. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  543. &lt;/ul&gt;&lt;/p&gt;
  544. &lt;p&gt;Example device(s):
  545. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  546. &lt;/ul&gt;&lt;/p&gt;</description>
  547. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  548. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  549. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  550. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  551. <hole x="0" y="0" drill="1.4732"/>
  552. <hole x="2.54" y="0" drill="1.4732"/>
  553. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  554. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  555. </package>
  556. <package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1">
  557. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline&lt;/h3&gt;
  558. &lt;p&gt;Specifications:
  559. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  560. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  561. &lt;/ul&gt;&lt;/p&gt;
  562. &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;
  563. &lt;p&gt;Example device(s):
  564. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  565. &lt;/ul&gt;&lt;/p&gt;</description>
  566. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/>
  567. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/>
  568. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/>
  569. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  570. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  571. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  572. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  573. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  574. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  575. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  576. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  577. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  578. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  579. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  580. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  581. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  582. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  583. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  584. </package>
  585. <package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1">
  586. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole- No Silk&lt;/h3&gt;
  587. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  588. &lt;br&gt; No silk outline of connector.
  589. &lt;p&gt;Specifications:
  590. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  591. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  592. &lt;/ul&gt;&lt;/p&gt;
  593. &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;
  594. &lt;p&gt;Example device(s):
  595. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  596. &lt;/ul&gt;&lt;/p&gt;</description>
  597. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  598. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  599. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  600. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  601. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  602. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  603. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  604. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  605. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  606. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  607. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  608. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  609. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  610. </package>
  611. <package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1">
  612. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole - KIT&lt;/h3&gt;
  613. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  614. &lt;br&gt; This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  615. &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.
  616. &lt;p&gt;Specifications:
  617. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  618. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  619. &lt;/ul&gt;&lt;/p&gt;
  620. &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;
  621. &lt;p&gt;Example device(s):
  622. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  623. &lt;/ul&gt;&lt;/p&gt;</description>
  624. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  625. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  626. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  627. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  628. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  629. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  630. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  631. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  632. <pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  633. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  634. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  635. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  636. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  637. <polygon width="0.127" layer="30">
  638. <vertex x="-0.9975" y="-0.6604" curve="-90.025935"/>
  639. <vertex x="-1.6604" y="0" curve="-90.017354"/>
  640. <vertex x="-1" y="0.6604" curve="-90"/>
  641. <vertex x="-0.3396" y="0" curve="-90.078137"/>
  642. </polygon>
  643. <polygon width="0.127" layer="29">
  644. <vertex x="-1" y="-0.2865" curve="-90.08005"/>
  645. <vertex x="-1.2865" y="0" curve="-90.040011"/>
  646. <vertex x="-1" y="0.2865" curve="-90"/>
  647. <vertex x="-0.7135" y="0" curve="-90"/>
  648. </polygon>
  649. <polygon width="0.127" layer="30">
  650. <vertex x="1.0025" y="-0.6604" curve="-90.025935"/>
  651. <vertex x="0.3396" y="0" curve="-90.017354"/>
  652. <vertex x="1" y="0.6604" curve="-90"/>
  653. <vertex x="1.6604" y="0" curve="-90.078137"/>
  654. </polygon>
  655. <polygon width="0.127" layer="29">
  656. <vertex x="1" y="-0.2865" curve="-90.08005"/>
  657. <vertex x="0.7135" y="0" curve="-90.040011"/>
  658. <vertex x="1" y="0.2865" curve="-90"/>
  659. <vertex x="1.2865" y="0" curve="-90"/>
  660. </polygon>
  661. </package>
  662. <package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1">
  663. <description>&lt;h3&gt;Spring Terminal- PCB Mount 2 Pin PTH&lt;/h3&gt;
  664. tDocu marks the spring arms
  665. &lt;p&gt;Specifications:
  666. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  667. &lt;li&gt;Pin pitch: 0.1"&lt;/li&gt;
  668. &lt;/ul&gt;&lt;/p&gt;
  669. &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;
  670. &lt;p&gt;Example device(s):
  671. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  672. &lt;/ul&gt;&lt;/p&gt;</description>
  673. <wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/>
  674. <wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/>
  675. <wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/>
  676. <wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/>
  677. <wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/>
  678. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/>
  679. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/>
  680. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/>
  681. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/>
  682. <wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  683. <wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/>
  684. <wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/>
  685. <wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  686. <pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/>
  687. <pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/>
  688. <pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/>
  689. <pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/>
  690. </package>
  691. <package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1">
  692. <description>&lt;h3&gt;2 Pin Screw Terminal - 2.54mm&lt;/h3&gt;
  693. &lt;p&gt;Specifications:
  694. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  695. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  696. &lt;/ul&gt;&lt;/p&gt;
  697. &lt;p&gt;Example device(s):
  698. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  699. &lt;/ul&gt;&lt;/p&gt;</description>
  700. <pad name="P2" x="0" y="0" drill="1.016" shape="square"/>
  701. <pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/>
  702. <wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/>
  703. <wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/>
  704. <wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/>
  705. <wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/>
  706. <wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/>
  707. <wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/>
  708. <wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
  709. <text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  710. <text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  711. </package>
  712. <package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1">
  713. <description>2 pin poke-home connector
  714. part number 2062-2P from STA</description>
  715. <wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/>
  716. <wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/>
  717. <wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/>
  718. <wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/>
  719. <wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/>
  720. <smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/>
  721. <smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/>
  722. <smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/>
  723. <smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/>
  724. <text x="0.635" y="-3.175" size="0.4064" layer="25">&gt;NAME</text>
  725. <text x="0.635" y="-1.905" size="0.4064" layer="27">&gt;VALUE</text>
  726. </package>
  727. <package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1">
  728. <wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/>
  729. <wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  730. <wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/>
  731. <wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  732. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  733. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  734. <pad name="2" x="-1.27" y="-5.85" drill="0.8"/>
  735. <pad name="1" x="1.27" y="-5.85" drill="0.8"/>
  736. </package>
  737. <package name="1X06" urn="urn:adsk.eagle:footprint:37589/1" library_version="1">
  738. <description>&lt;h3&gt;Plated Through Hole - 6 Pin&lt;/h3&gt;
  739. &lt;p&gt;Specifications:
  740. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  741. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  742. &lt;/ul&gt;&lt;/p&gt;
  743. &lt;p&gt;Example device(s):
  744. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  745. &lt;/ul&gt;&lt;/p&gt;</description>
  746. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  747. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  748. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  749. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  750. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  751. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  752. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  753. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  754. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  755. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  756. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  757. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  758. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  759. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  760. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  761. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  762. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  763. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  764. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  765. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  766. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  767. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  768. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  769. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  770. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  771. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  772. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  773. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  774. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  775. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  776. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  777. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  778. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  779. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  780. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  781. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  782. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  783. <wire x1="13.97" y1="0.635" x2="13.97" y2="-0.635" width="0.2032" layer="21"/>
  784. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  785. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  786. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  787. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  788. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  789. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  790. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  791. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  792. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  793. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  794. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  795. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  796. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  797. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  798. </package>
  799. <package name="MOLEX-1X6" urn="urn:adsk.eagle:footprint:37738/1" library_version="1">
  800. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole&lt;/h3&gt;
  801. &lt;p&gt;Specifications:
  802. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  803. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  804. &lt;/ul&gt;&lt;/p&gt;
  805. &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;
  806. &lt;p&gt;Example device(s):
  807. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  808. &lt;/ul&gt;&lt;/p&gt;</description>
  809. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  810. <wire x1="13.97" y1="3.048" x2="13.97" y2="-2.54" width="0.127" layer="21"/>
  811. <wire x1="13.97" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  812. <wire x1="13.97" y1="-2.54" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  813. <wire x1="12.7" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  814. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  815. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  816. <wire x1="0" y1="-1.27" x2="12.7" y2="-1.27" width="0.127" layer="21"/>
  817. <wire x1="12.7" y1="-1.27" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  818. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  819. <wire x1="0.635" y1="1.27" x2="-0.635" y2="1.27" width="0.2032" layer="22"/>
  820. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  821. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  822. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  823. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  824. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  825. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796"/>
  826. <text x="4.699" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  827. <text x="4.699" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  828. </package>
  829. <package name="MOLEX-1X6-RA" urn="urn:adsk.eagle:footprint:37739/1" library_version="1">
  830. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole Right Angle&lt;/h3&gt;
  831. tPlace shows angle of connector.
  832. &lt;p&gt;Specifications:
  833. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  834. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  835. &lt;/ul&gt;&lt;/p&gt;
  836. &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;
  837. &lt;p&gt;Example device(s):
  838. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  839. &lt;/ul&gt;&lt;/p&gt;</description>
  840. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  841. <wire x1="13.97" y1="0.635" x2="13.97" y2="3.175" width="0.127" layer="21"/>
  842. <wire x1="13.97" y1="0.635" x2="-1.27" y2="0.635" width="0.127" layer="21"/>
  843. <wire x1="13.97" y1="3.175" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  844. <wire x1="12.7" y1="3.175" x2="0" y2="3.175" width="0.127" layer="21"/>
  845. <wire x1="0" y1="3.175" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  846. <wire x1="0" y1="3.175" x2="0" y2="7.62" width="0.127" layer="21"/>
  847. <wire x1="0" y1="7.62" x2="12.7" y2="7.62" width="0.127" layer="21"/>
  848. <wire x1="12.7" y1="7.62" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  849. <wire x1="-0.635" y1="-1.27" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  850. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="22"/>
  851. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  852. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  853. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  854. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  855. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  856. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796"/>
  857. <text x="4.953" y="5.334" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  858. <text x="4.699" y="4.445" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  859. </package>
  860. <package name="1X06-SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37588/1" library_version="1">
  861. <description>&lt;h3&gt;SMD - 6 Pin Right Angle Male Header&lt;/h3&gt;
  862. tDocu layer shows pin locations.
  863. &lt;p&gt;Specifications:
  864. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  865. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  866. &lt;/ul&gt;&lt;/p&gt;
  867. &lt;p&gt;Example device(s):
  868. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  869. &lt;/ul&gt;&lt;/p&gt;</description>
  870. <wire x1="7.62" y1="1.25" x2="-7.62" y2="1.25" width="0.127" layer="51"/>
  871. <wire x1="-7.62" y1="1.25" x2="-7.62" y2="-1.25" width="0.127" layer="51"/>
  872. <wire x1="-7.62" y1="-1.25" x2="-6.35" y2="-1.25" width="0.127" layer="51"/>
  873. <wire x1="-6.35" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  874. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  875. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  876. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  877. <wire x1="3.81" y1="-1.25" x2="6.35" y2="-1.25" width="0.127" layer="51"/>
  878. <wire x1="6.35" y1="-1.25" x2="7.62" y2="-1.25" width="0.127" layer="51"/>
  879. <wire x1="7.62" y1="-1.25" x2="7.62" y2="1.25" width="0.127" layer="51"/>
  880. <wire x1="6.35" y1="-1.25" x2="6.35" y2="-7.25" width="0.127" layer="51"/>
  881. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  882. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  883. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  884. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  885. <wire x1="-6.35" y1="-1.25" x2="-6.35" y2="-7.25" width="0.127" layer="51"/>
  886. <smd name="4" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  887. <smd name="5" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  888. <smd name="6" x="6.35" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  889. <smd name="3" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  890. <smd name="2" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  891. <smd name="1" x="-6.35" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  892. <hole x="-5.08" y="0" drill="1.4"/>
  893. <hole x="5.08" y="0" drill="1.4"/>
  894. <text x="-1.524" y="0.381" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  895. <text x="-1.651" y="-1.016" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  896. </package>
  897. <package name="1X06_LOCK" urn="urn:adsk.eagle:footprint:37592/1" library_version="1">
  898. <description>&lt;h3&gt;Plated Through Hole - 6 Pin with Locking Footprint&lt;/h3&gt;
  899. Holes are offset 0.005" from center, locking pins in place during soldering.
  900. &lt;p&gt;Specifications:
  901. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  902. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  903. &lt;/ul&gt;&lt;/p&gt;
  904. &lt;p&gt;Example device(s):
  905. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  906. &lt;/ul&gt;&lt;/p&gt;</description>
  907. <wire x1="-1.27" y1="0.508" x2="-0.635" y2="1.143" width="0.2032" layer="21"/>
  908. <wire x1="-0.635" y1="1.143" x2="0.635" y2="1.143" width="0.2032" layer="21"/>
  909. <wire x1="0.635" y1="1.143" x2="1.27" y2="0.508" width="0.2032" layer="21"/>
  910. <wire x1="1.27" y1="0.508" x2="1.905" y2="1.143" width="0.2032" layer="21"/>
  911. <wire x1="1.905" y1="1.143" x2="3.175" y2="1.143" width="0.2032" layer="21"/>
  912. <wire x1="3.175" y1="1.143" x2="3.81" y2="0.508" width="0.2032" layer="21"/>
  913. <wire x1="3.81" y1="0.508" x2="4.445" y2="1.143" width="0.2032" layer="21"/>
  914. <wire x1="4.445" y1="1.143" x2="5.715" y2="1.143" width="0.2032" layer="21"/>
  915. <wire x1="5.715" y1="1.143" x2="6.35" y2="0.508" width="0.2032" layer="21"/>
  916. <wire x1="6.35" y1="0.508" x2="6.985" y2="1.143" width="0.2032" layer="21"/>
  917. <wire x1="6.985" y1="1.143" x2="8.255" y2="1.143" width="0.2032" layer="21"/>
  918. <wire x1="8.255" y1="1.143" x2="8.89" y2="0.508" width="0.2032" layer="21"/>
  919. <wire x1="8.89" y1="0.508" x2="9.525" y2="1.143" width="0.2032" layer="21"/>
  920. <wire x1="9.525" y1="1.143" x2="10.795" y2="1.143" width="0.2032" layer="21"/>
  921. <wire x1="10.795" y1="1.143" x2="11.43" y2="0.508" width="0.2032" layer="21"/>
  922. <wire x1="11.43" y1="0.508" x2="12.065" y2="1.143" width="0.2032" layer="21"/>
  923. <wire x1="12.065" y1="1.143" x2="13.335" y2="1.143" width="0.2032" layer="21"/>
  924. <wire x1="13.335" y1="1.143" x2="13.97" y2="0.508" width="0.2032" layer="21"/>
  925. <wire x1="13.97" y1="0.508" x2="13.97" y2="-0.762" width="0.2032" layer="21"/>
  926. <wire x1="13.97" y1="-0.762" x2="13.335" y2="-1.397" width="0.2032" layer="21"/>
  927. <wire x1="13.335" y1="-1.397" x2="12.065" y2="-1.397" width="0.2032" layer="21"/>
  928. <wire x1="12.065" y1="-1.397" x2="11.43" y2="-0.762" width="0.2032" layer="21"/>
  929. <wire x1="11.43" y1="-0.762" x2="10.795" y2="-1.397" width="0.2032" layer="21"/>
  930. <wire x1="10.795" y1="-1.397" x2="9.525" y2="-1.397" width="0.2032" layer="21"/>
  931. <wire x1="9.525" y1="-1.397" x2="8.89" y2="-0.762" width="0.2032" layer="21"/>
  932. <wire x1="8.89" y1="-0.762" x2="8.255" y2="-1.397" width="0.2032" layer="21"/>
  933. <wire x1="8.255" y1="-1.397" x2="6.985" y2="-1.397" width="0.2032" layer="21"/>
  934. <wire x1="6.985" y1="-1.397" x2="6.35" y2="-0.762" width="0.2032" layer="21"/>
  935. <wire x1="6.35" y1="-0.762" x2="5.715" y2="-1.397" width="0.2032" layer="21"/>
  936. <wire x1="5.715" y1="-1.397" x2="4.445" y2="-1.397" width="0.2032" layer="21"/>
  937. <wire x1="4.445" y1="-1.397" x2="3.81" y2="-0.762" width="0.2032" layer="21"/>
  938. <wire x1="3.81" y1="-0.762" x2="3.175" y2="-1.397" width="0.2032" layer="21"/>
  939. <wire x1="3.175" y1="-1.397" x2="1.905" y2="-1.397" width="0.2032" layer="21"/>
  940. <wire x1="1.905" y1="-1.397" x2="1.27" y2="-0.762" width="0.2032" layer="21"/>
  941. <wire x1="1.27" y1="-0.762" x2="0.635" y2="-1.397" width="0.2032" layer="21"/>
  942. <wire x1="0.635" y1="-1.397" x2="-0.635" y2="-1.397" width="0.2032" layer="21"/>
  943. <wire x1="-0.635" y1="-1.397" x2="-1.27" y2="-0.762" width="0.2032" layer="21"/>
  944. <wire x1="-1.27" y1="-0.762" x2="-1.27" y2="0.508" width="0.2032" layer="21"/>
  945. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  946. <pad name="2" x="2.54" y="-0.254" drill="1.016" diameter="1.8796"/>
  947. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  948. <pad name="4" x="7.62" y="-0.254" drill="1.016" diameter="1.8796"/>
  949. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  950. <pad name="6" x="12.7" y="-0.254" drill="1.016" diameter="1.8796"/>
  951. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  952. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  953. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  954. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51"/>
  955. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  956. <rectangle x1="12.4079" y1="-0.4191" x2="12.9921" y2="0.1651" layer="51"/>
  957. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  958. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  959. </package>
  960. <package name="1X06_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37740/1" library_version="1">
  961. <description>&lt;h3&gt;Plated Through Hole - 6 Pin with Locking Footprint with Long Pads&lt;/h3&gt;
  962. Holes are offset 0.005" from center, locking pins in place during soldering.
  963. &lt;p&gt;Specifications:
  964. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  965. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  966. &lt;/ul&gt;&lt;/p&gt;
  967. &lt;p&gt;Example device(s):
  968. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  969. &lt;/ul&gt;&lt;/p&gt;</description>
  970. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  971. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  972. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  973. <wire x1="9.144" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  974. <wire x1="11.684" y1="-0.127" x2="11.176" y2="-0.127" width="0.2032" layer="21"/>
  975. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  976. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  977. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  978. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  979. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  980. <wire x1="13.97" y1="-0.127" x2="13.716" y2="-0.127" width="0.2032" layer="21"/>
  981. <wire x1="13.97" y1="-0.127" x2="13.97" y2="-1.1176" width="0.2032" layer="21"/>
  982. <wire x1="13.97" y1="-1.1176" x2="13.6906" y2="-1.397" width="0.2032" layer="21"/>
  983. <wire x1="13.97" y1="-0.127" x2="13.97" y2="0.8636" width="0.2032" layer="21"/>
  984. <wire x1="13.97" y1="0.8636" x2="13.6906" y2="1.143" width="0.2032" layer="21"/>
  985. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  986. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  987. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  988. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  989. <pad name="5" x="10.16" y="0" drill="1.016" shape="long" rot="R90"/>
  990. <pad name="6" x="12.7" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  991. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  992. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  993. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  994. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  995. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  996. <rectangle x1="12.4079" y1="-0.4191" x2="12.9921" y2="0.1651" layer="51"/>
  997. <text x="-1.143" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  998. <text x="-1.143" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  999. </package>
  1000. <package name="MOLEX-1X6_LOCK" urn="urn:adsk.eagle:footprint:37741/1" library_version="1">
  1001. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  1002. Holes are offset 0.005" from center to hold pins in place during soldering.
  1003. &lt;p&gt;Specifications:
  1004. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1005. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1006. &lt;/ul&gt;&lt;/p&gt;
  1007. &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;
  1008. &lt;p&gt;Example device(s):
  1009. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1010. &lt;/ul&gt;&lt;/p&gt;</description>
  1011. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  1012. <wire x1="13.97" y1="3.048" x2="13.97" y2="-2.54" width="0.127" layer="21"/>
  1013. <wire x1="13.97" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  1014. <wire x1="13.97" y1="-2.54" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  1015. <wire x1="12.7" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  1016. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  1017. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  1018. <wire x1="0" y1="-1.27" x2="12.7" y2="-1.27" width="0.127" layer="21"/>
  1019. <wire x1="12.7" y1="-1.27" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  1020. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  1021. <wire x1="0.635" y1="1.27" x2="-0.635" y2="1.27" width="0.2032" layer="22"/>
  1022. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  1023. <pad name="2" x="2.54" y="-0.254" drill="1.016" diameter="1.8796"/>
  1024. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  1025. <pad name="4" x="7.62" y="-0.254" drill="1.016" diameter="1.8796"/>
  1026. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  1027. <pad name="6" x="12.7" y="-0.254" drill="1.016" diameter="1.8796"/>
  1028. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  1029. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  1030. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  1031. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51"/>
  1032. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  1033. <rectangle x1="12.4079" y1="-0.4191" x2="12.9921" y2="0.1651" layer="51"/>
  1034. <text x="4.445" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1035. <text x="4.191" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1036. </package>
  1037. <package name="MOLEX_1X6_RA_LOCK" urn="urn:adsk.eagle:footprint:37590/1" library_version="1">
  1038. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole Right Angle Locking Footprint&lt;/h3&gt;
  1039. Holes are offset 0.005" from center to hold pins in place during soldering.
  1040. tPlace shows location of connector.
  1041. &lt;p&gt;Specifications:
  1042. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1043. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1044. &lt;/ul&gt;&lt;/p&gt;
  1045. &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;
  1046. &lt;p&gt;Example device(s):
  1047. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1048. &lt;/ul&gt;&lt;/p&gt;</description>
  1049. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  1050. <wire x1="13.97" y1="0.635" x2="13.97" y2="3.175" width="0.127" layer="21"/>
  1051. <wire x1="13.97" y1="0.635" x2="-1.27" y2="0.635" width="0.127" layer="21"/>
  1052. <wire x1="13.97" y1="3.175" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  1053. <wire x1="12.7" y1="3.175" x2="0" y2="3.175" width="0.127" layer="21"/>
  1054. <wire x1="0" y1="3.175" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  1055. <wire x1="0" y1="3.175" x2="0" y2="7.62" width="0.127" layer="21"/>
  1056. <wire x1="0" y1="7.62" x2="12.7" y2="7.62" width="0.127" layer="21"/>
  1057. <wire x1="12.7" y1="7.62" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  1058. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1059. <wire x1="-0.635" y1="-1.27" x2="0.635" y2="-1.27" width="0.2032" layer="22"/>
  1060. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796"/>
  1061. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  1062. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  1063. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  1064. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796"/>
  1065. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796"/>
  1066. <text x="4.826" y="5.588" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1067. <text x="4.699" y="4.318" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1068. </package>
  1069. <package name="1X06_FEMALE_LOCK.010" urn="urn:adsk.eagle:footprint:37742/1" library_version="1">
  1070. <description>&lt;h3&gt;Plated Through Hole - 6 Pin Locking Header&lt;/h3&gt;
  1071. Includes silk outline for 6 pin female header
  1072. &lt;p&gt;Specifications:
  1073. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1074. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1075. &lt;/ul&gt;&lt;/p&gt;
  1076. &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;
  1077. &lt;p&gt;Example device(s):
  1078. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1079. &lt;/ul&gt;&lt;/p&gt;</description>
  1080. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  1081. <wire x1="-1.27" y1="1.27" x2="13.97" y2="1.27" width="0.2032" layer="21"/>
  1082. <wire x1="13.97" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  1083. <wire x1="13.97" y1="1.27" x2="13.97" y2="-1.27" width="0.2032" layer="21"/>
  1084. <pad name="1" x="0" y="0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  1085. <pad name="2" x="2.54" y="-0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  1086. <pad name="3" x="5.08" y="0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  1087. <pad name="4" x="7.62" y="-0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  1088. <pad name="5" x="10.16" y="0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  1089. <pad name="6" x="12.7" y="-0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  1090. <rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/>
  1091. <rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/>
  1092. <rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/>
  1093. <rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/>
  1094. <rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/>
  1095. <rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/>
  1096. <text x="-1.143" y="1.524" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1097. <text x="-1.143" y="-2.159" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1098. </package>
  1099. <package name="1X06_LONGPADS" urn="urn:adsk.eagle:footprint:37591/1" library_version="1">
  1100. <description>&lt;h3&gt;Plated Through Hole - 6 Pin with Long Pads&lt;/h3&gt;
  1101. &lt;p&gt;Specifications:
  1102. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1103. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1104. &lt;/ul&gt;&lt;/p&gt;
  1105. &lt;p&gt;Example device(s):
  1106. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1107. &lt;/ul&gt;&lt;/p&gt;</description>
  1108. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  1109. <wire x1="13.97" y1="0.635" x2="13.97" y2="-0.635" width="0.2032" layer="21"/>
  1110. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1111. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1112. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1113. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1114. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1115. <pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1116. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1117. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1118. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  1119. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  1120. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  1121. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1122. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1123. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1124. </package>
  1125. <package name="SCREWTERMINAL-3.5MM-6" urn="urn:adsk.eagle:footprint:37743/1" library_version="1">
  1126. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -6 Pin PTH&lt;/h3&gt;
  1127. &lt;p&gt;Specifications:
  1128. &lt;ul&gt;&lt;li&gt;Pin count: 6&lt;/li&gt;
  1129. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  1130. &lt;/ul&gt;&lt;/p&gt;
  1131. &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;
  1132. &lt;p&gt;Example device(s):
  1133. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1134. &lt;/ul&gt;&lt;/p&gt;</description>
  1135. <wire x1="-1.75" y1="3.4" x2="19.25" y2="3.4" width="0.2032" layer="21"/>
  1136. <wire x1="19.25" y1="3.4" x2="19.25" y2="-2.8" width="0.2032" layer="21"/>
  1137. <wire x1="19.25" y1="-2.8" x2="19.25" y2="-3.6" width="0.2032" layer="21"/>
  1138. <wire x1="19.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  1139. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  1140. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  1141. <wire x1="19.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  1142. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  1143. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  1144. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  1145. <wire x1="19.25" y1="3.15" x2="19.75" y2="3.15" width="0.2032" layer="51"/>
  1146. <wire x1="19.75" y1="3.15" x2="19.75" y2="2.15" width="0.2032" layer="51"/>
  1147. <wire x1="19.75" y1="2.15" x2="19.25" y2="2.15" width="0.2032" layer="51"/>
  1148. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  1149. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  1150. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  1151. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  1152. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  1153. <pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/>
  1154. <text x="7.112" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1155. <text x="6.858" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1156. </package>
  1157. <package name="1X06-SMD-FEMALE" urn="urn:adsk.eagle:footprint:37744/1" library_version="1">
  1158. <description>&lt;h3&gt;Header - 6 pin Female SMD&lt;/h3&gt;
  1159. Right angle 0.1"
  1160. &lt;p&gt;Specifications:
  1161. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1162. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1163. &lt;/ul&gt;&lt;/p&gt;
  1164. &lt;p&gt;&lt;a href=”http://cdn.sparkfun.com/datasheets/Prototyping/19686.pdf”&gt;Datasheet referenced for footprint:&lt;/a&gt;&lt;/p&gt;
  1165. &lt;p&gt;Example device(s):
  1166. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1167. &lt;/ul&gt;&lt;/p&gt;</description>
  1168. <wire x1="-7.5" y1="0.45" x2="-7.5" y2="-8.05" width="0.127" layer="21"/>
  1169. <wire x1="7.5" y1="0.45" x2="-7.5" y2="0.45" width="0.127" layer="21"/>
  1170. <wire x1="7.5" y1="-8.05" x2="7.5" y2="0.45" width="0.127" layer="21"/>
  1171. <wire x1="-7.5" y1="-8.05" x2="7.5" y2="-8.05" width="0.127" layer="21"/>
  1172. <smd name="4" x="-1.27" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  1173. <smd name="5" x="-3.81" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  1174. <smd name="6" x="-6.35" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  1175. <smd name="3" x="1.27" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  1176. <smd name="2" x="3.81" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  1177. <smd name="1" x="6.35" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  1178. <text x="-1.524" y="-3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1179. <text x="-1.778" y="-4.826" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1180. </package>
  1181. <package name="1X06_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37745/1" library_version="1">
  1182. <description>&lt;h3&gt; 6 Pin Holes&lt;/h3&gt;
  1183. No silk, no plating
  1184. &lt;p&gt;Specifications:
  1185. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1186. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1187. &lt;/ul&gt;&lt;/p&gt;
  1188. &lt;p&gt;Example device(s):
  1189. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1190. &lt;/ul&gt;&lt;/p&gt;</description>
  1191. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  1192. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  1193. <circle x="5.08" y="0" radius="0.635" width="0.127" layer="51"/>
  1194. <circle x="7.62" y="0" radius="0.635" width="0.127" layer="51"/>
  1195. <circle x="10.16" y="0" radius="0.635" width="0.127" layer="51"/>
  1196. <circle x="12.7" y="0" radius="0.635" width="0.127" layer="51"/>
  1197. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  1198. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  1199. <pad name="3" x="5.08" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  1200. <pad name="4" x="7.62" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  1201. <pad name="5" x="10.16" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  1202. <pad name="6" x="12.7" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  1203. <hole x="0" y="0" drill="1.4732"/>
  1204. <hole x="2.54" y="0" drill="1.4732"/>
  1205. <hole x="5.08" y="0" drill="1.4732"/>
  1206. <hole x="7.62" y="0" drill="1.4732"/>
  1207. <hole x="10.16" y="0" drill="1.4732"/>
  1208. <hole x="12.7" y="0" drill="1.4732"/>
  1209. </package>
  1210. <package name="1X06_SMD_STRAIGHT" urn="urn:adsk.eagle:footprint:37746/1" library_version="1">
  1211. <description>&lt;h3&gt; 6 Pin SMD Female Header&lt;/h3&gt;
  1212. &lt;p&gt;Specifications:
  1213. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1214. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1215. &lt;/ul&gt;&lt;/p&gt;
  1216. &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;
  1217. &lt;p&gt;Example device(s):
  1218. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1219. &lt;/ul&gt;&lt;/p&gt;</description>
  1220. <wire x1="1.37" y1="1.25" x2="-14.07" y2="1.25" width="0.127" layer="51"/>
  1221. <wire x1="-14.07" y1="1.25" x2="-14.07" y2="-1.25" width="0.127" layer="51"/>
  1222. <wire x1="-14.07" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  1223. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  1224. <wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  1225. <wire x1="-14.07" y1="-1.25" x2="-14.07" y2="1.25" width="0.127" layer="21"/>
  1226. <wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  1227. <wire x1="-14.07" y1="1.25" x2="-10.883" y2="1.25" width="0.127" layer="21"/>
  1228. <wire x1="-13.55" y1="-1.25" x2="-14.07" y2="-1.25" width="0.127" layer="21"/>
  1229. <wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/>
  1230. <wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/>
  1231. <wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/>
  1232. <wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/>
  1233. <wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/>
  1234. <smd name="5" x="-10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1235. <smd name="3" x="-5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1236. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1237. <smd name="6" x="-12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1238. <smd name="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1239. <smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1240. <text x="-13.716" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1241. <text x="-13.843" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1242. </package>
  1243. <package name="1X06_SMD_STRAIGHT_ALT" urn="urn:adsk.eagle:footprint:37747/1" library_version="1">
  1244. <description>&lt;h3&gt; 6 Pin SMD Female Header&lt;/h3&gt;
  1245. Alternate pin configuration
  1246. &lt;p&gt;Specifications:
  1247. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1248. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1249. &lt;/ul&gt;&lt;/p&gt;
  1250. &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;
  1251. &lt;p&gt;Example device(s):
  1252. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1253. &lt;/ul&gt;&lt;/p&gt;</description>
  1254. <wire x1="1.37" y1="1.25" x2="-14.07" y2="1.25" width="0.127" layer="51"/>
  1255. <wire x1="-14.07" y1="1.25" x2="-14.07" y2="-1.25" width="0.127" layer="51"/>
  1256. <wire x1="-14.07" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  1257. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  1258. <wire x1="-14.07" y1="1.25" x2="-14.07" y2="-1.25" width="0.127" layer="21"/>
  1259. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  1260. <wire x1="-13.55" y1="1.25" x2="-14.07" y2="1.25" width="0.127" layer="21"/>
  1261. <wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/>
  1262. <wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  1263. <wire x1="-14.07" y1="-1.25" x2="-10.883" y2="-1.25" width="0.127" layer="21"/>
  1264. <wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/>
  1265. <wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/>
  1266. <wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/>
  1267. <wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/>
  1268. <smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1269. <smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1270. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1271. <smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1272. <smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1273. <smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1274. <text x="-13.716" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1275. <text x="-13.843" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1276. </package>
  1277. <package name="1X06_SMD_STRAIGHT_COMBO" urn="urn:adsk.eagle:footprint:37748/1" library_version="1">
  1278. <description>&lt;h3&gt; 6 Pin SMD Female Header - Combined Footprint&lt;/h3&gt;
  1279. &lt;p&gt;Specifications:
  1280. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1281. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1282. &lt;/ul&gt;&lt;/p&gt;
  1283. &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;
  1284. &lt;p&gt;Example device(s):
  1285. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1286. &lt;/ul&gt;&lt;/p&gt;</description>
  1287. <wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/>
  1288. <wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/>
  1289. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  1290. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  1291. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  1292. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  1293. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  1294. <wire x1="14.07" y1="1.25" x2="14.07" y2="-1.25" width="0.1778" layer="21"/>
  1295. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  1296. <wire x1="14.07" y1="-1.25" x2="13.4" y2="-1.25" width="0.1778" layer="21"/>
  1297. <wire x1="13.4" y1="1.25" x2="14.07" y2="1.25" width="0.1778" layer="21"/>
  1298. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  1299. <wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.1778" layer="21"/>
  1300. <wire x1="10.949" y1="-1.29" x2="11.911" y2="-1.29" width="0.1778" layer="21"/>
  1301. <wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.1778" layer="21"/>
  1302. <wire x1="8.409" y1="-1.29" x2="9.371" y2="-1.29" width="0.1778" layer="21"/>
  1303. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  1304. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  1305. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  1306. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  1307. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  1308. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  1309. <smd name="5" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1310. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1311. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1312. <smd name="6" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1313. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1314. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  1315. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1316. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1317. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1318. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1319. <smd name="5-2" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1320. <smd name="6-2" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  1321. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1322. <text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1323. </package>
  1324. <package name="1X06_SMD_MALE" urn="urn:adsk.eagle:footprint:37749/1" library_version="1">
  1325. <description>&lt;h3&gt; 6 Pin SMD Male Header&lt;/h3&gt;
  1326. &lt;p&gt;Specifications:
  1327. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1328. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1329. &lt;/ul&gt;&lt;/p&gt;
  1330. &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;
  1331. &lt;p&gt;Example device(s):
  1332. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1333. &lt;/ul&gt;&lt;/p&gt;</description>
  1334. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  1335. <wire x1="-1.27" y1="-1.25" x2="13.97" y2="-1.25" width="0.127" layer="51"/>
  1336. <wire x1="13.97" y1="-1.25" x2="13.97" y2="1.25" width="0.127" layer="51"/>
  1337. <wire x1="13.97" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/>
  1338. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/>
  1339. <wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/>
  1340. <wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/>
  1341. <wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/>
  1342. <wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/>
  1343. <wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/>
  1344. <wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/>
  1345. <wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/>
  1346. <wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/>
  1347. <wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/>
  1348. <wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/>
  1349. <wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/>
  1350. <wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/>
  1351. <wire x1="13.97" y1="-1.25" x2="13.97" y2="1.25" width="0.1778" layer="21"/>
  1352. <wire x1="13.97" y1="-1.25" x2="13.335" y2="-1.25" width="0.1778" layer="21"/>
  1353. <wire x1="13.97" y1="1.25" x2="13.335" y2="1.25" width="0.1778" layer="21"/>
  1354. <circle x="0" y="0" radius="0.64" width="0.127" layer="51"/>
  1355. <circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/>
  1356. <circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/>
  1357. <circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/>
  1358. <circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/>
  1359. <circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/>
  1360. <rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/>
  1361. <rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/>
  1362. <rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/>
  1363. <rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/>
  1364. <rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/>
  1365. <rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/>
  1366. <smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/>
  1367. <smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/>
  1368. <smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/>
  1369. <smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/>
  1370. <smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/>
  1371. <smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/>
  1372. <text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1373. <text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1374. </package>
  1375. <package name="1X06-1MM" urn="urn:adsk.eagle:footprint:37635/1" library_version="1">
  1376. <description>&lt;h3&gt;JST SH Vertical 6-Pin Connector -SMD&lt;/h3&gt;
  1377. &lt;p&gt;Specifications:
  1378. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1379. &lt;li&gt;Pin pitch:1mm&lt;/li&gt;
  1380. &lt;p&gt;&lt;b&gt;&lt;a href="https://www.sparkfun.com/datasheets/GPS/EM406-SMDConnector-eSH.pdf"&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
  1381. &lt;/ul&gt;&lt;/p&gt;
  1382. &lt;p&gt;Example device(s):
  1383. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1384. &lt;li&gt;EM-406&lt;/li&gt;
  1385. &lt;/ul&gt;&lt;/p&gt;</description>
  1386. <wire x1="-2.54" y1="-1.651" x2="2.54" y2="-1.651" width="0.254" layer="21"/>
  1387. <wire x1="-4.318" y1="0.508" x2="-4.318" y2="1.905" width="0.254" layer="21"/>
  1388. <wire x1="3.302" y1="1.905" x2="4.318" y2="1.905" width="0.254" layer="21"/>
  1389. <wire x1="4.318" y1="1.905" x2="4.318" y2="0.508" width="0.254" layer="21"/>
  1390. <wire x1="-4.318" y1="1.905" x2="-3.302" y2="1.905" width="0.254" layer="21"/>
  1391. <smd name="1" x="-2.54" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  1392. <smd name="2" x="-1.54" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  1393. <smd name="3" x="-0.54" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  1394. <smd name="4" x="0.46" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  1395. <smd name="5" x="1.46" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  1396. <smd name="6" x="2.46" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  1397. <smd name="P$1" x="-3.84" y="-0.955" dx="1.2" dy="1.8" layer="1"/>
  1398. <smd name="P$2" x="3.76" y="-0.955" dx="1.2" dy="1.8" layer="1"/>
  1399. <text x="-1.397" y="-0.381" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1400. <text x="-1.651" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1401. <circle x="-3.6" y="2.47" radius="0.1047" width="0.4064" layer="21"/>
  1402. </package>
  1403. <package name="1X06_NO_SILK" urn="urn:adsk.eagle:footprint:37750/1" library_version="1">
  1404. <description>&lt;h3&gt;Plated Through Hole - 6 Pin No Silk Outline&lt;/h3&gt;
  1405. &lt;p&gt;Specifications:
  1406. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1407. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1408. &lt;/ul&gt;&lt;/p&gt;
  1409. &lt;p&gt;Example device(s):
  1410. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1411. &lt;/ul&gt;&lt;/p&gt;</description>
  1412. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1413. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1414. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1415. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1416. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1417. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1418. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  1419. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  1420. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  1421. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1422. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1423. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1424. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1425. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1426. </package>
  1427. <package name="1X06_1.27MM" urn="urn:adsk.eagle:footprint:37751/1" library_version="1">
  1428. <description>&lt;h3&gt;Plated Through Hole - 6 Pin&lt;/h3&gt;
  1429. &lt;p&gt;Specifications:
  1430. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  1431. &lt;li&gt;Pin pitch:1.27mm&lt;/li&gt;
  1432. &lt;/ul&gt;&lt;/p&gt;
  1433. &lt;p&gt;Example device(s):
  1434. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  1435. &lt;/ul&gt;&lt;/p&gt;</description>
  1436. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  1437. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  1438. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  1439. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  1440. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  1441. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  1442. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  1443. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  1444. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  1445. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  1446. <wire x1="4.191" y1="-0.889" x2="4.445" y2="-0.635" width="0.127" layer="21"/>
  1447. <wire x1="4.445" y1="-0.635" x2="4.699" y2="-0.889" width="0.127" layer="21"/>
  1448. <wire x1="4.699" y1="-0.889" x2="5.461" y2="-0.889" width="0.127" layer="21"/>
  1449. <wire x1="5.461" y1="0.889" x2="4.699" y2="0.889" width="0.127" layer="21"/>
  1450. <wire x1="4.699" y1="0.889" x2="4.445" y2="0.635" width="0.127" layer="21"/>
  1451. <wire x1="4.445" y1="0.635" x2="4.191" y2="0.889" width="0.127" layer="21"/>
  1452. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  1453. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  1454. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  1455. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  1456. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  1457. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  1458. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  1459. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  1460. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  1461. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  1462. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  1463. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  1464. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  1465. <wire x1="5.461" y1="-0.889" x2="5.715" y2="-0.635" width="0.127" layer="21"/>
  1466. <wire x1="5.715" y1="-0.635" x2="5.969" y2="-0.889" width="0.127" layer="21"/>
  1467. <wire x1="5.969" y1="-0.889" x2="6.731" y2="-0.889" width="0.127" layer="21"/>
  1468. <wire x1="6.731" y1="0.889" x2="5.969" y2="0.889" width="0.127" layer="21"/>
  1469. <wire x1="5.969" y1="0.889" x2="5.715" y2="0.635" width="0.127" layer="21"/>
  1470. <wire x1="5.715" y1="0.635" x2="5.461" y2="0.889" width="0.127" layer="21"/>
  1471. <wire x1="6.731" y1="0.889" x2="7.239" y2="0.381" width="0.127" layer="21"/>
  1472. <wire x1="7.239" y1="0.381" x2="7.239" y2="-0.381" width="0.127" layer="21"/>
  1473. <wire x1="7.239" y1="-0.381" x2="6.731" y2="-0.889" width="0.127" layer="21"/>
  1474. <pad name="5" x="5.08" y="0" drill="0.508" diameter="1"/>
  1475. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  1476. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  1477. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  1478. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  1479. <pad name="6" x="6.35" y="0" drill="0.508" diameter="1"/>
  1480. <text x="-0.381" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1481. <text x="-0.381" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1482. </package>
  1483. <package name="1X05" urn="urn:adsk.eagle:footprint:37722/1" library_version="1">
  1484. <description>&lt;h3&gt;Plated Through Hole - 5 Pin&lt;/h3&gt;
  1485. &lt;p&gt;Specifications:
  1486. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1487. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1488. &lt;/ul&gt;&lt;/p&gt;
  1489. &lt;p&gt;Example device(s):
  1490. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1491. &lt;/ul&gt;&lt;/p&gt;</description>
  1492. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  1493. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  1494. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  1495. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  1496. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  1497. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  1498. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  1499. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  1500. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  1501. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  1502. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  1503. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  1504. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  1505. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  1506. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  1507. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  1508. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  1509. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  1510. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  1511. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  1512. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  1513. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  1514. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  1515. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  1516. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  1517. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  1518. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  1519. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  1520. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  1521. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1522. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1523. <wire x1="11.43" y1="0.635" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  1524. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1525. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1526. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1527. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1528. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1529. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  1530. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  1531. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1532. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1533. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1534. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1535. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1536. </package>
  1537. <package name="1X05_1.27MM" urn="urn:adsk.eagle:footprint:37723/1" library_version="1">
  1538. <description>&lt;h3&gt;Plated Through Hole - 5 Pin&lt;/h3&gt;
  1539. &lt;p&gt;Specifications:
  1540. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1541. &lt;li&gt;Pin pitch: 1.27mm&lt;/li&gt;
  1542. &lt;/ul&gt;&lt;/p&gt;
  1543. &lt;p&gt;Example device(s):
  1544. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1545. &lt;/ul&gt;&lt;/p&gt;</description>
  1546. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  1547. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  1548. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  1549. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  1550. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  1551. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  1552. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  1553. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  1554. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  1555. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  1556. <wire x1="4.191" y1="-0.889" x2="4.445" y2="-0.635" width="0.127" layer="21"/>
  1557. <wire x1="4.445" y1="-0.635" x2="4.699" y2="-0.889" width="0.127" layer="21"/>
  1558. <wire x1="4.699" y1="-0.889" x2="5.461" y2="-0.889" width="0.127" layer="21"/>
  1559. <wire x1="5.461" y1="0.889" x2="4.699" y2="0.889" width="0.127" layer="21"/>
  1560. <wire x1="4.699" y1="0.889" x2="4.445" y2="0.635" width="0.127" layer="21"/>
  1561. <wire x1="4.445" y1="0.635" x2="4.191" y2="0.889" width="0.127" layer="21"/>
  1562. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  1563. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  1564. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  1565. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  1566. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  1567. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  1568. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  1569. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  1570. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  1571. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  1572. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  1573. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  1574. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  1575. <wire x1="5.461" y1="0.889" x2="5.969" y2="0.381" width="0.127" layer="21"/>
  1576. <wire x1="5.969" y1="0.381" x2="5.969" y2="-0.381" width="0.127" layer="21"/>
  1577. <wire x1="5.969" y1="-0.381" x2="5.461" y2="-0.889" width="0.127" layer="21"/>
  1578. <pad name="5" x="5.08" y="0" drill="0.508" diameter="1"/>
  1579. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  1580. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  1581. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  1582. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  1583. <text x="-0.381" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1584. <text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1585. </package>
  1586. <package name="1X05_LOCK" urn="urn:adsk.eagle:footprint:37724/1" library_version="1">
  1587. <description>&lt;h3&gt;Plated Through Hole - 5 Pin with Locking Footprint&lt;/h3&gt;
  1588. Holes are offset 0.005" from center, locking pins in place during soldering.
  1589. &lt;p&gt;Specifications:
  1590. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1591. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1592. &lt;/ul&gt;&lt;/p&gt;
  1593. &lt;p&gt;Example device(s):
  1594. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1595. &lt;/ul&gt;&lt;/p&gt;</description>
  1596. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  1597. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  1598. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  1599. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  1600. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  1601. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  1602. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  1603. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  1604. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  1605. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  1606. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  1607. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  1608. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  1609. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  1610. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  1611. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  1612. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  1613. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  1614. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  1615. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  1616. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  1617. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  1618. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  1619. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  1620. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  1621. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  1622. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  1623. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  1624. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  1625. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1626. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1627. <wire x1="11.43" y1="0.635" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  1628. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1629. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1630. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1631. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1632. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1633. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  1634. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  1635. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1636. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1637. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1638. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1639. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1640. </package>
  1641. <package name="1X05_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37725/1" library_version="1">
  1642. <description>&lt;h3&gt;Plated Through Hole - 5 Pin Long Pad with Locking Footprint&lt;/h3&gt;
  1643. Holes are offset 0.005" from center, locking pins in place during soldering.
  1644. &lt;p&gt;Specifications:
  1645. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1646. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1647. &lt;/ul&gt;&lt;/p&gt;
  1648. &lt;p&gt;Example device(s):
  1649. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1650. &lt;/ul&gt;&lt;/p&gt;</description>
  1651. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  1652. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  1653. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  1654. <wire x1="9.144" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  1655. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  1656. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  1657. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  1658. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  1659. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  1660. <wire x1="11.43" y1="-0.127" x2="11.176" y2="-0.127" width="0.2032" layer="21"/>
  1661. <wire x1="11.43" y1="-0.127" x2="11.43" y2="-1.1176" width="0.2032" layer="21"/>
  1662. <wire x1="11.43" y1="-1.1176" x2="11.1506" y2="-1.397" width="0.2032" layer="21"/>
  1663. <wire x1="11.43" y1="-0.127" x2="11.43" y2="0.8636" width="0.2032" layer="21"/>
  1664. <wire x1="11.43" y1="0.8636" x2="11.1506" y2="1.143" width="0.2032" layer="21"/>
  1665. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  1666. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  1667. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  1668. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  1669. <pad name="5" x="10.16" y="0" drill="1.016" shape="long" rot="R90"/>
  1670. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  1671. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  1672. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  1673. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  1674. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  1675. <text x="-1.27" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1676. <text x="-1.397" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1677. </package>
  1678. <package name="1X05_LONGPADS" urn="urn:adsk.eagle:footprint:37726/1" library_version="1">
  1679. <description>&lt;h3&gt;Plated Through Hole - 5 Pin Long Pads&lt;/h3&gt;
  1680. &lt;p&gt;Specifications:
  1681. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1682. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1683. &lt;/ul&gt;&lt;/p&gt;
  1684. &lt;p&gt;Example device(s):
  1685. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1686. &lt;/ul&gt;&lt;/p&gt;</description>
  1687. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  1688. <wire x1="11.43" y1="0.635" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  1689. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1690. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1691. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1692. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1693. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  1694. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  1695. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  1696. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1697. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1698. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1699. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1700. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1701. </package>
  1702. <package name="1X05_1MM" urn="urn:adsk.eagle:footprint:37637/1" library_version="1">
  1703. <description>&lt;h3&gt;SMD - 5 Pin&lt;/h3&gt;
  1704. &lt;p&gt;Specifications:
  1705. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1706. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1707. &lt;/ul&gt;&lt;/p&gt;
  1708. &lt;p&gt;&lt;a href=”http://www.sparkfun.com/datasheets/GPS/EM408-SMDConnector.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  1709. &lt;p&gt;Example device(s):
  1710. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1711. &lt;li&gt;EM-408&lt;/li&gt;
  1712. &lt;/ul&gt;&lt;/p&gt;</description>
  1713. <wire x1="2" y1="2.921" x2="-2.08" y2="2.921" width="0.254" layer="21"/>
  1714. <wire x1="3.778" y1="0.762" x2="3.778" y2="-0.635" width="0.254" layer="21"/>
  1715. <wire x1="-2.842" y1="-0.635" x2="-3.858" y2="-0.635" width="0.254" layer="21"/>
  1716. <wire x1="-3.858" y1="-0.635" x2="-3.858" y2="0.762" width="0.254" layer="21"/>
  1717. <wire x1="3.778" y1="-0.635" x2="2.762" y2="-0.635" width="0.254" layer="21"/>
  1718. <smd name="NC2" x="3.3" y="2.225" dx="1.2" dy="1.8" layer="1" rot="R180"/>
  1719. <smd name="NC1" x="-3.3" y="2.225" dx="1.2" dy="1.8" layer="1" rot="R180"/>
  1720. <smd name="5" x="2" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  1721. <smd name="4" x="1" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  1722. <smd name="3" x="0" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  1723. <smd name="2" x="-1" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  1724. <smd name="1" x="-2" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  1725. <text x="-1.524" y="1.905" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1726. <text x="-1.524" y="1.143" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1727. <circle x="3.81" y="-1.27" radius="0" width="0.508" layer="21"/>
  1728. </package>
  1729. <package name="1X05_1MM_RA" urn="urn:adsk.eagle:footprint:37727/1" library_version="1">
  1730. <description>&lt;h3&gt;SMD - 5 Pin Right Angle&lt;/h3&gt;
  1731. &lt;p&gt;Specifications:
  1732. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1733. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1734. &lt;/ul&gt;&lt;/p&gt;
  1735. &lt;p&gt;Example device(s):
  1736. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1737. &lt;/ul&gt;&lt;/p&gt;</description>
  1738. <wire x1="-2" y1="-4.6" x2="2" y2="-4.6" width="0.254" layer="21"/>
  1739. <wire x1="-3.5" y1="-2" x2="-3.5" y2="-0.35" width="0.254" layer="21"/>
  1740. <wire x1="2.75" y1="-0.35" x2="3.5" y2="-0.35" width="0.254" layer="21"/>
  1741. <wire x1="3.5" y1="-0.35" x2="3.5" y2="-2" width="0.254" layer="21"/>
  1742. <wire x1="-3.5" y1="-0.35" x2="-2.75" y2="-0.35" width="0.254" layer="21"/>
  1743. <circle x="-3" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  1744. <smd name="NC2" x="-3.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
  1745. <smd name="NC1" x="3.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
  1746. <smd name="1" x="-2" y="0" dx="0.6" dy="1.35" layer="1"/>
  1747. <smd name="2" x="-1" y="0" dx="0.6" dy="1.35" layer="1"/>
  1748. <smd name="3" x="0" y="0" dx="0.6" dy="1.35" layer="1"/>
  1749. <smd name="4" x="1" y="0" dx="0.6" dy="1.35" layer="1"/>
  1750. <smd name="5" x="2" y="0" dx="0.6" dy="1.35" layer="1"/>
  1751. <text x="-1.397" y="-2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1752. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1753. </package>
  1754. <package name="1X05_NO_SILK" urn="urn:adsk.eagle:footprint:37728/1" library_version="1">
  1755. <description>&lt;h3&gt;Plated Through Hole - 5 Pin No Silk Outline&lt;/h3&gt;
  1756. &lt;p&gt;Specifications:
  1757. &lt;ul&gt;&lt;li&gt;Pin count:5&lt;/li&gt;
  1758. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1759. &lt;/ul&gt;&lt;/p&gt;
  1760. &lt;p&gt;Example device(s):
  1761. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1762. &lt;/ul&gt;&lt;/p&gt;</description>
  1763. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1764. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1765. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1766. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1767. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1768. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  1769. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  1770. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1771. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1772. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1773. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1774. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1775. </package>
  1776. <package name="JST-5-PTH" urn="urn:adsk.eagle:footprint:37729/1" library_version="1">
  1777. <description>&lt;h3&gt;JST 5 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  1778. &lt;p&gt;Specifications:
  1779. &lt;ul&gt;&lt;li&gt;Pin count: 5&lt;/li&gt;
  1780. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  1781. &lt;/ul&gt;&lt;/p&gt;
  1782. &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;
  1783. &lt;p&gt;Example device(s):
  1784. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1785. &lt;/ul&gt;&lt;/p&gt;</description>
  1786. <pad name="1" x="-4" y="0" drill="0.7" diameter="1.6"/>
  1787. <pad name="2" x="-2" y="0" drill="0.7" diameter="1.6"/>
  1788. <pad name="3" x="0" y="0" drill="0.7" diameter="1.6"/>
  1789. <pad name="4" x="2" y="0" drill="0.7" diameter="1.6"/>
  1790. <pad name="5" x="4" y="0" drill="0.7" diameter="1.6"/>
  1791. <wire x1="-5.95" y1="-1.6" x2="-5.95" y2="6" width="0.2032" layer="21"/>
  1792. <wire x1="-5.95" y1="6" x2="5.95" y2="6" width="0.2032" layer="21"/>
  1793. <wire x1="5.95" y1="6" x2="5.95" y2="-1.6" width="0.2032" layer="21"/>
  1794. <wire x1="-5.95" y1="-1.6" x2="-5.3" y2="-1.6" width="0.2032" layer="21"/>
  1795. <wire x1="5.95" y1="-1.6" x2="5.3" y2="-1.6" width="0.2032" layer="21"/>
  1796. <wire x1="-5.3" y1="-1.6" x2="-5.3" y2="0" width="0.2032" layer="21"/>
  1797. <wire x1="5.3" y1="-1.6" x2="5.3" y2="0" width="0.2032" layer="21"/>
  1798. <text x="-1.397" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1799. <text x="-1.651" y="2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1800. </package>
  1801. <package name="JST-5-PTH-VERT" urn="urn:adsk.eagle:footprint:37730/1" library_version="1">
  1802. <description>&lt;h3&gt;JST 5 Pin Vertical Plated Through Hole&lt;/h3&gt;
  1803. &lt;p&gt;Specifications:
  1804. &lt;ul&gt;&lt;li&gt;Pin count: 5&lt;/li&gt;
  1805. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  1806. &lt;/ul&gt;&lt;/p&gt;
  1807. &lt;p&gt;Example device(s):
  1808. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1809. &lt;/ul&gt;&lt;/p&gt;</description>
  1810. <wire x1="-5.95" y1="-1.52" x2="-5.95" y2="2.98" width="0.2032" layer="21"/>
  1811. <wire x1="-5.95" y1="2.98" x2="5.95" y2="2.98" width="0.2032" layer="21"/>
  1812. <wire x1="5.95" y1="-1.52" x2="1" y2="-1.52" width="0.2032" layer="21"/>
  1813. <wire x1="-1" y1="-1.52" x2="-5.95" y2="-1.52" width="0.2032" layer="21"/>
  1814. <wire x1="-1" y1="-1.02" x2="1" y2="-1.02" width="0.2032" layer="21"/>
  1815. <wire x1="1" y1="-1.02" x2="1" y2="-1.52" width="0.2032" layer="21"/>
  1816. <wire x1="-1" y1="-1.02" x2="-1" y2="-1.52" width="0.2032" layer="21"/>
  1817. <wire x1="5.95" y1="2.98" x2="5.95" y2="-1.52" width="0.2032" layer="21"/>
  1818. <pad name="1" x="-4" y="0.18" drill="0.7" diameter="1.6"/>
  1819. <pad name="2" x="-2" y="0.18" drill="0.7" diameter="1.6"/>
  1820. <pad name="3" x="0" y="0.18" drill="0.7" diameter="1.6"/>
  1821. <pad name="4" x="2" y="0.18" drill="0.7" diameter="1.6"/>
  1822. <pad name="5" x="4" y="0.18" drill="0.7" diameter="1.6"/>
  1823. <text x="-1.651" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1824. <text x="-1.905" y="-2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1825. </package>
  1826. <package name="SCREWTERMINAL-3.5MM-5" urn="urn:adsk.eagle:footprint:37731/1" library_version="1">
  1827. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -5 Pin PTH&lt;/h3&gt;
  1828. &lt;p&gt;Specifications:
  1829. &lt;ul&gt;&lt;li&gt;Pin count: 5&lt;/li&gt;
  1830. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  1831. &lt;/ul&gt;&lt;/p&gt;
  1832. &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;
  1833. &lt;p&gt;Example device(s):
  1834. &lt;ul&gt;&lt;li&gt;CONN_05&lt;/li&gt;
  1835. &lt;/ul&gt;&lt;/p&gt;</description>
  1836. <wire x1="-1.75" y1="3.4" x2="15.75" y2="3.4" width="0.2032" layer="21"/>
  1837. <wire x1="15.75" y1="3.4" x2="15.75" y2="-2.8" width="0.2032" layer="21"/>
  1838. <wire x1="15.75" y1="-2.8" x2="15.75" y2="-3.6" width="0.2032" layer="21"/>
  1839. <wire x1="15.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  1840. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  1841. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  1842. <wire x1="15.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  1843. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  1844. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  1845. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  1846. <wire x1="15.75" y1="3.15" x2="16.25" y2="3.15" width="0.2032" layer="51"/>
  1847. <wire x1="16.25" y1="3.15" x2="16.25" y2="2.15" width="0.2032" layer="51"/>
  1848. <wire x1="16.25" y1="2.15" x2="15.75" y2="2.15" width="0.2032" layer="51"/>
  1849. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  1850. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  1851. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  1852. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  1853. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  1854. <text x="5.588" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1855. <text x="5.334" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1856. </package>
  1857. <package name="1X03" urn="urn:adsk.eagle:footprint:37678/1" library_version="1">
  1858. <description>&lt;h3&gt;Plated Through Hole - 3 Pin&lt;/h3&gt;
  1859. &lt;p&gt;Specifications:
  1860. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  1861. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1862. &lt;/ul&gt;&lt;/p&gt;
  1863. &lt;p&gt;Example device(s):
  1864. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  1865. &lt;/ul&gt;&lt;/p&gt;</description>
  1866. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  1867. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  1868. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  1869. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  1870. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  1871. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  1872. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  1873. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  1874. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  1875. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  1876. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  1877. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  1878. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  1879. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  1880. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  1881. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  1882. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  1883. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1884. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1885. <wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.2032" layer="21"/>
  1886. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1887. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1888. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  1889. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1890. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1891. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1892. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1893. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1894. </package>
  1895. <package name="MOLEX-1X3" urn="urn:adsk.eagle:footprint:37679/1" library_version="1">
  1896. <description>&lt;h3&gt;PTH - 3 Pin Vertical Molex Polarized Header&lt;/h3&gt;
  1897. &lt;p&gt;&lt;b&gt;Datasheet referenced for footprint:&lt;/b&gt;&lt;a href="http://www.4uconnector.com/online/object/4udrawing/01932.pdf"&gt; 4UCONN part # 01932 &lt;/a&gt;&lt;/p&gt;
  1898. &lt;p&gt;Specifications:
  1899. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  1900. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1901. &lt;/ul&gt;&lt;/p&gt;
  1902. &lt;p&gt;Example device(s):
  1903. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  1904. &lt;/ul&gt;&lt;/p&gt;</description>
  1905. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  1906. <wire x1="6.35" y1="3.048" x2="6.35" y2="-2.54" width="0.127" layer="21"/>
  1907. <wire x1="6.35" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  1908. <wire x1="6.35" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  1909. <wire x1="5.08" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  1910. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  1911. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  1912. <wire x1="0" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  1913. <wire x1="5.08" y1="-1.27" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  1914. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  1915. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  1916. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  1917. <text x="1.143" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1918. <text x="0.889" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1919. </package>
  1920. <package name="SCREWTERMINAL-3.5MM-3" urn="urn:adsk.eagle:footprint:37680/1" library_version="1">
  1921. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -3 Pin PTH&lt;/h3&gt;
  1922. &lt;p&gt;Specifications:
  1923. &lt;ul&gt;&lt;li&gt;Pin count: 3&lt;/li&gt;
  1924. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  1925. &lt;/ul&gt;&lt;/p&gt;
  1926. &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;
  1927. &lt;p&gt;Example device(s):
  1928. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  1929. &lt;/ul&gt;&lt;/p&gt;</description>
  1930. <wire x1="-1.75" y1="3.4" x2="8.75" y2="3.4" width="0.2032" layer="21"/>
  1931. <wire x1="8.75" y1="3.4" x2="8.75" y2="-2.8" width="0.2032" layer="21"/>
  1932. <wire x1="8.75" y1="-2.8" x2="8.75" y2="-3.6" width="0.2032" layer="21"/>
  1933. <wire x1="8.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  1934. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  1935. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  1936. <wire x1="8.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  1937. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  1938. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  1939. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  1940. <wire x1="8.75" y1="3.15" x2="9.25" y2="3.15" width="0.2032" layer="51"/>
  1941. <wire x1="9.25" y1="3.15" x2="9.25" y2="2.15" width="0.2032" layer="51"/>
  1942. <wire x1="9.25" y1="2.15" x2="8.75" y2="2.15" width="0.2032" layer="51"/>
  1943. <pad name="1" x="0" y="0" drill="1.2" diameter="2.413" shape="square"/>
  1944. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.413"/>
  1945. <pad name="3" x="7" y="0" drill="1.2" diameter="2.413"/>
  1946. <text x="2.159" y="3.683" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1947. <text x="2.032" y="-4.572" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1948. </package>
  1949. <package name="1X03_LOCK" urn="urn:adsk.eagle:footprint:37681/1" library_version="1">
  1950. <description>&lt;h3&gt;Plated Through Hole - 3 Pin Locking Footprint&lt;/h3&gt;
  1951. Pins are staggered 0.005" off center to lock pins while soldering.
  1952. &lt;p&gt;Specifications:
  1953. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  1954. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1955. &lt;/ul&gt;&lt;/p&gt;
  1956. &lt;p&gt;Example device(s):
  1957. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  1958. &lt;/ul&gt;&lt;/p&gt;</description>
  1959. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  1960. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  1961. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  1962. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  1963. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  1964. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  1965. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  1966. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  1967. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  1968. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  1969. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  1970. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  1971. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  1972. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  1973. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  1974. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  1975. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  1976. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1977. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  1978. <wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.2032" layer="21"/>
  1979. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1980. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1981. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  1982. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  1983. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  1984. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  1985. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  1986. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  1987. </package>
  1988. <package name="1X03_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37682/1" library_version="1">
  1989. <description>&lt;h3&gt;Plated Through Hole - 3 Pin Long Pad w/ Locking Footprint&lt;/h3&gt;
  1990. Holes are offset 0.005" from center to lock pins in place while soldering.
  1991. &lt;p&gt;Specifications:
  1992. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  1993. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  1994. &lt;/ul&gt;&lt;/p&gt;
  1995. &lt;p&gt;Example device(s):
  1996. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  1997. &lt;/ul&gt;&lt;/p&gt;</description>
  1998. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  1999. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  2000. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  2001. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  2002. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  2003. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  2004. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  2005. <wire x1="6.35" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  2006. <wire x1="6.35" y1="-0.127" x2="6.35" y2="-1.1176" width="0.2032" layer="21"/>
  2007. <wire x1="6.35" y1="-1.1176" x2="6.0706" y2="-1.397" width="0.2032" layer="21"/>
  2008. <wire x1="6.35" y1="-0.127" x2="6.35" y2="0.8636" width="0.2032" layer="21"/>
  2009. <wire x1="6.35" y1="0.8636" x2="6.0706" y2="1.143" width="0.2032" layer="21"/>
  2010. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  2011. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  2012. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  2013. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  2014. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  2015. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  2016. <text x="-1.27" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2017. <text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2018. </package>
  2019. <package name="MOLEX-1X3_LOCK" urn="urn:adsk.eagle:footprint:37683/1" library_version="1">
  2020. <description>&lt;h3&gt;PTH - 3 Pin Vertical Molex Polarized Header&lt;/h3&gt;
  2021. Pins are offset 0.005" from center to lock pins in place during soldering.
  2022. &lt;p&gt;&lt;b&gt;Datasheet referenced for footprint:&lt;/b&gt;&lt;a href="http://www.4uconnector.com/online/object/4udrawing/01932.pdf"&gt; 4UCONN part # 01932 &lt;/a&gt;&lt;/p&gt;
  2023. &lt;p&gt;Specifications:
  2024. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2025. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2026. &lt;/ul&gt;&lt;/p&gt;
  2027. &lt;p&gt;Example device(s):
  2028. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2029. &lt;/ul&gt;&lt;/p&gt;</description>
  2030. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2031. <wire x1="6.35" y1="3.048" x2="6.35" y2="-2.54" width="0.127" layer="21"/>
  2032. <wire x1="6.35" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2033. <wire x1="6.35" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2034. <wire x1="5.08" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2035. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2036. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2037. <wire x1="0" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  2038. <wire x1="5.08" y1="-1.27" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2039. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
  2040. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  2041. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  2042. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2043. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2044. <rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="51"/>
  2045. <text x="1.143" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2046. <text x="0.889" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2047. </package>
  2048. <package name="SCREWTERMINAL-3.5MM-3_LOCK.007S" urn="urn:adsk.eagle:footprint:37684/1" library_version="1">
  2049. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -3 Pin PTH Locking&lt;/h3&gt;
  2050. Holes are offset 0.007" from center to hold pins in place during soldering.
  2051. &lt;p&gt;Specifications:
  2052. &lt;ul&gt;&lt;li&gt;Pin count: 3&lt;/li&gt;
  2053. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2054. &lt;/ul&gt;&lt;/p&gt;
  2055. &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;
  2056. &lt;p&gt;Example device(s):
  2057. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2058. &lt;/ul&gt;&lt;/p&gt;</description>
  2059. <wire x1="-1.75" y1="3.4" x2="8.75" y2="3.4" width="0.2032" layer="21"/>
  2060. <wire x1="8.75" y1="3.4" x2="8.75" y2="-2.8" width="0.2032" layer="21"/>
  2061. <wire x1="8.75" y1="-2.8" x2="8.75" y2="-3.6" width="0.2032" layer="21"/>
  2062. <wire x1="8.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2063. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2064. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2065. <wire x1="8.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2066. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2067. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2068. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2069. <wire x1="8.75" y1="3.15" x2="9.25" y2="3.15" width="0.2032" layer="51"/>
  2070. <wire x1="9.25" y1="3.15" x2="9.25" y2="2.15" width="0.2032" layer="51"/>
  2071. <wire x1="9.25" y1="2.15" x2="8.75" y2="2.15" width="0.2032" layer="51"/>
  2072. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  2073. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  2074. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  2075. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2076. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2077. <pad name="3" x="7.1778" y="0" drill="1.2" diameter="2.032"/>
  2078. <text x="2.032" y="3.683" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2079. <text x="1.905" y="-4.699" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2080. </package>
  2081. <package name="1X03_NO_SILK" urn="urn:adsk.eagle:footprint:37685/1" library_version="1">
  2082. <description>&lt;h3&gt;Plated Through Hole - 3 Pin No Silk Outline&lt;/h3&gt;
  2083. &lt;p&gt;Specifications:
  2084. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2085. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2086. &lt;/ul&gt;&lt;/p&gt;
  2087. &lt;p&gt;Example device(s):
  2088. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2089. &lt;/ul&gt;&lt;/p&gt;</description>
  2090. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2091. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2092. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2093. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  2094. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2095. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2096. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2097. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2098. </package>
  2099. <package name="1X03_LONGPADS" urn="urn:adsk.eagle:footprint:37686/1" library_version="1">
  2100. <description>&lt;h3&gt;Plated Through Hole - 3 Pin Long Pads&lt;/h3&gt;
  2101. &lt;p&gt;Specifications:
  2102. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2103. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2104. &lt;/ul&gt;&lt;/p&gt;
  2105. &lt;p&gt;Example device(s):
  2106. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2107. &lt;/ul&gt;&lt;/p&gt;</description>
  2108. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2109. <wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.2032" layer="21"/>
  2110. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2111. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2112. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2113. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  2114. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2115. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2116. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2117. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2118. </package>
  2119. <package name="JST-3-PTH" urn="urn:adsk.eagle:footprint:37687/1" library_version="1">
  2120. <description>&lt;h3&gt;JST 3 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  2121. &lt;p&gt;Specifications:
  2122. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2123. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2124. &lt;/ul&gt;&lt;/p&gt;
  2125. &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;
  2126. &lt;p&gt;Example device(s):
  2127. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2128. &lt;/ul&gt;&lt;/p&gt;</description>
  2129. <wire x1="-3.95" y1="-1.6" x2="-3.95" y2="6" width="0.2032" layer="21"/>
  2130. <wire x1="-3.95" y1="6" x2="3.95" y2="6" width="0.2032" layer="21"/>
  2131. <wire x1="3.95" y1="6" x2="3.95" y2="-1.6" width="0.2032" layer="21"/>
  2132. <wire x1="-3.95" y1="-1.6" x2="-3.3" y2="-1.6" width="0.2032" layer="21"/>
  2133. <wire x1="3.95" y1="-1.6" x2="3.3" y2="-1.6" width="0.2032" layer="21"/>
  2134. <wire x1="-3.3" y1="-1.6" x2="-3.3" y2="0" width="0.2032" layer="21"/>
  2135. <wire x1="3.3" y1="-1.6" x2="3.3" y2="0" width="0.2032" layer="21"/>
  2136. <pad name="1" x="-2" y="0" drill="0.7" diameter="1.6"/>
  2137. <pad name="2" x="0" y="0" drill="0.7" diameter="1.6"/>
  2138. <pad name="3" x="2" y="0" drill="0.7" diameter="1.6"/>
  2139. <text x="-2.4" y="0.67" size="1.27" layer="51">+</text>
  2140. <text x="-0.4" y="0.67" size="1.27" layer="51">-</text>
  2141. <text x="1.7" y="0.87" size="0.8" layer="51">S</text>
  2142. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2143. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2144. </package>
  2145. <package name="1X03_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37688/1" library_version="1">
  2146. <description>&lt;h3&gt;Pogo Pins - 3 Pin&lt;/h3&gt;
  2147. &lt;p&gt;Specifications:
  2148. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2149. &lt;/ul&gt;&lt;/p&gt;
  2150. &lt;p&gt;Example device(s):
  2151. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2152. &lt;/ul&gt;&lt;/p&gt;</description>
  2153. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  2154. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  2155. <circle x="5.08" y="0" radius="0.635" width="0.127" layer="51"/>
  2156. <pad name="1" x="0" y="0" drill="0.9" diameter="0.8128" rot="R90"/>
  2157. <pad name="2" x="2.54" y="0" drill="0.9" diameter="0.8128" rot="R90"/>
  2158. <pad name="3" x="5.08" y="0" drill="0.9" diameter="0.8128" rot="R90"/>
  2159. <hole x="0" y="0" drill="1.4732"/>
  2160. <hole x="2.54" y="0" drill="1.4732"/>
  2161. <hole x="5.08" y="0" drill="1.4732"/>
  2162. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2163. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2164. </package>
  2165. <package name="SCREWTERMINAL-5MM-3" urn="urn:adsk.eagle:footprint:37689/1" library_version="1">
  2166. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -3 Pin PTH&lt;/h3&gt;
  2167. &lt;p&gt;Specifications:
  2168. &lt;ul&gt;&lt;li&gt;Pin count: 3&lt;/li&gt;
  2169. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  2170. &lt;/ul&gt;&lt;/p&gt;
  2171. &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;
  2172. &lt;p&gt;Example device(s):
  2173. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2174. &lt;/ul&gt;&lt;/p&gt;</description>
  2175. <wire x1="-3.1" y1="4.2" x2="13.1" y2="4.2" width="0.2032" layer="21"/>
  2176. <wire x1="13.1" y1="4.2" x2="13.1" y2="-2.3" width="0.2032" layer="21"/>
  2177. <wire x1="13.1" y1="-2.3" x2="13.1" y2="-3.3" width="0.2032" layer="21"/>
  2178. <wire x1="13.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  2179. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2180. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  2181. <wire x1="13.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2182. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  2183. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  2184. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  2185. <wire x1="13.1" y1="4" x2="13.7" y2="4" width="0.2032" layer="51"/>
  2186. <wire x1="13.7" y1="4" x2="13.7" y2="3" width="0.2032" layer="51"/>
  2187. <wire x1="13.7" y1="3" x2="13.1" y2="3" width="0.2032" layer="51"/>
  2188. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  2189. <pad name="1" x="0" y="0" drill="1.3" diameter="2.413" shape="square"/>
  2190. <pad name="2" x="5" y="0" drill="1.3" diameter="2.413"/>
  2191. <pad name="3" x="10" y="0" drill="1.3" diameter="2.413"/>
  2192. <text x="3.683" y="2.794" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2193. <text x="3.429" y="1.905" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2194. </package>
  2195. <package name="1X03_LOCK_NO_SILK" urn="urn:adsk.eagle:footprint:37690/1" library_version="1">
  2196. <description>&lt;h3&gt;Plated Through Hole - 3 Pin Locking Footprint w/out Silk Outline&lt;/h3&gt;
  2197. Holes are offset from center 0.005" to lock pins in place while soldering.
  2198. &lt;p&gt;Specifications:
  2199. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2200. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2201. &lt;/ul&gt;&lt;/p&gt;
  2202. &lt;p&gt;Example device(s):
  2203. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2204. &lt;/ul&gt;&lt;/p&gt;</description>
  2205. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  2206. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  2207. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  2208. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  2209. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2210. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2211. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2212. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2213. </package>
  2214. <package name="JST-3-SMD" urn="urn:adsk.eagle:footprint:37691/1" library_version="1">
  2215. <description>&lt;h3&gt;JST 3 Pin Right Angle SMT&lt;/h3&gt;
  2216. &lt;p&gt;Specifications:
  2217. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2218. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2219. &lt;/ul&gt;&lt;/p&gt;
  2220. &lt;p&gt;Example device(s):
  2221. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2222. &lt;/ul&gt;&lt;/p&gt;</description>
  2223. <wire x1="-4.99" y1="-2.07" x2="-4.99" y2="-5.57" width="0.2032" layer="21"/>
  2224. <wire x1="-4.99" y1="-5.57" x2="-4.19" y2="-5.57" width="0.2032" layer="21"/>
  2225. <wire x1="-4.19" y1="-5.57" x2="-4.19" y2="-3.07" width="0.2032" layer="21"/>
  2226. <wire x1="-4.19" y1="-3.07" x2="-2.99" y2="-3.07" width="0.2032" layer="21"/>
  2227. <wire x1="3.01" y1="-3.07" x2="4.21" y2="-3.07" width="0.2032" layer="21"/>
  2228. <wire x1="4.21" y1="-3.07" x2="4.21" y2="-5.57" width="0.2032" layer="21"/>
  2229. <wire x1="4.21" y1="-5.57" x2="5.01" y2="-5.57" width="0.2032" layer="21"/>
  2230. <wire x1="5.01" y1="-5.57" x2="5.01" y2="-2.07" width="0.2032" layer="21"/>
  2231. <wire x1="3.01" y1="1.93" x2="-2.99" y2="1.93" width="0.2032" layer="21"/>
  2232. <smd name="1" x="-1.99" y="-4.77" dx="1" dy="4.6" layer="1"/>
  2233. <smd name="3" x="2.01" y="-4.77" dx="1" dy="4.6" layer="1"/>
  2234. <smd name="NC1" x="-4.39" y="0.43" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2235. <smd name="NC2" x="4.41" y="0.43" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2236. <smd name="2" x="0.01" y="-4.77" dx="1" dy="4.6" layer="1"/>
  2237. <text x="-1.397" y="0.635" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2238. <text x="-1.651" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2239. </package>
  2240. <package name="1X03-1MM-RA" urn="urn:adsk.eagle:footprint:37692/1" library_version="1">
  2241. <description>&lt;h3&gt;Plated Through Hole - 3 Pin SMD&lt;/h3&gt;
  2242. &lt;p&gt;Specifications:
  2243. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2244. &lt;/ul&gt;&lt;/p&gt;
  2245. &lt;p&gt;Example device(s):
  2246. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2247. &lt;/ul&gt;&lt;/p&gt;</description>
  2248. <wire x1="-1" y1="-4.6" x2="1" y2="-4.6" width="0.254" layer="21"/>
  2249. <wire x1="-2.5" y1="-2" x2="-2.5" y2="-0.35" width="0.254" layer="21"/>
  2250. <wire x1="1.75" y1="-0.35" x2="2.4997" y2="-0.35" width="0.254" layer="21"/>
  2251. <wire x1="2.4997" y1="-0.35" x2="2.4997" y2="-2" width="0.254" layer="21"/>
  2252. <wire x1="-2.5" y1="-0.35" x2="-1.75" y2="-0.35" width="0.254" layer="21"/>
  2253. <circle x="-2" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  2254. <smd name="NC2" x="-2.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
  2255. <smd name="NC1" x="2.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
  2256. <smd name="1" x="-1" y="0" dx="0.6" dy="1.35" layer="1"/>
  2257. <smd name="2" x="0" y="0" dx="0.6" dy="1.35" layer="1"/>
  2258. <smd name="3" x="1" y="0" dx="0.6" dy="1.35" layer="1"/>
  2259. <text x="-1.397" y="-1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2260. <text x="-1.651" y="-2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2261. </package>
  2262. <package name="1X03_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37693/1" library_version="1">
  2263. <description>&lt;h3&gt;SMD - 3 Pin Right Angle Female Header&lt;/h3&gt;
  2264. Silk outline of pin location
  2265. &lt;p&gt;Specifications:
  2266. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2267. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2268. &lt;/ul&gt;&lt;/p&gt;
  2269. &lt;p&gt;Example device(s):
  2270. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2271. &lt;/ul&gt;&lt;/p&gt;</description>
  2272. <wire x1="-3.935" y1="4.25" x2="-3.935" y2="-4.25" width="0.1778" layer="21"/>
  2273. <wire x1="3.935" y1="4.25" x2="-3.935" y2="4.25" width="0.1778" layer="21"/>
  2274. <wire x1="3.935" y1="-4.25" x2="3.935" y2="4.25" width="0.1778" layer="21"/>
  2275. <wire x1="-3.935" y1="-4.25" x2="3.935" y2="-4.25" width="0.1778" layer="21"/>
  2276. <rectangle x1="-0.32" y1="6.8" x2="0.32" y2="7.65" layer="51"/>
  2277. <rectangle x1="2.22" y1="6.8" x2="2.86" y2="7.65" layer="51"/>
  2278. <rectangle x1="-2.86" y1="6.8" x2="-2.22" y2="7.65" layer="51"/>
  2279. <smd name="3" x="2.54" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  2280. <smd name="2" x="0" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  2281. <smd name="1" x="-2.54" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  2282. <text x="-1.524" y="0.889" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2283. <text x="-1.651" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2284. </package>
  2285. <package name="1X03_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37694/1" library_version="1">
  2286. <description>&lt;h3&gt;SMD- 3 Pin Right Angle Male Headers&lt;/h3&gt;
  2287. No silk outline, but tDocu layer shows pin location.
  2288. &lt;p&gt;Specifications:
  2289. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2290. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2291. &lt;/ul&gt;&lt;/p&gt;
  2292. &lt;p&gt;Example device(s):
  2293. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2294. &lt;/ul&gt;&lt;/p&gt;</description>
  2295. <wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="51"/>
  2296. <wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2297. <wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="51"/>
  2298. <wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="51"/>
  2299. <wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="51"/>
  2300. <wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2301. <wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="51"/>
  2302. <wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="51"/>
  2303. <wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="51"/>
  2304. <wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="51"/>
  2305. <rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="51"/>
  2306. <rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="51"/>
  2307. <rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="51"/>
  2308. <smd name="1" x="-2.54" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  2309. <smd name="2" x="0" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  2310. <smd name="3" x="2.54" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  2311. <text x="-1.524" y="0.254" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2312. <text x="-1.651" y="-0.889" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2313. </package>
  2314. <package name="1X03_SMD_RA_MALE_POST" urn="urn:adsk.eagle:footprint:37695/1" library_version="1">
  2315. <description>&lt;h3&gt;SMD - 3 Pin Right Angle Male Header w/ Alignment Posts&lt;/h3&gt;
  2316. &lt;p&gt;&lt;b&gt;Datasheet referenced for footprint:&lt;/b&gt;&lt;a href="http://www.4uconnector.com/online/object/4udrawing/11026.pdf"&gt; 4UCONN part # 11026 &lt;/a&gt;&lt;/p&gt;
  2317. &lt;p&gt;Specifications:
  2318. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2319. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2320. &lt;/ul&gt;&lt;/p&gt;
  2321. &lt;p&gt;Example device(s):
  2322. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2323. &lt;/ul&gt;&lt;/p&gt;</description>
  2324. <wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="51"/>
  2325. <wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2326. <wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="51"/>
  2327. <wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="51"/>
  2328. <wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="51"/>
  2329. <wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2330. <wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="51"/>
  2331. <wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="51"/>
  2332. <wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="51"/>
  2333. <wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="51"/>
  2334. <rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="51"/>
  2335. <rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="51"/>
  2336. <rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="51"/>
  2337. <smd name="1" x="-2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2338. <smd name="2" x="0" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2339. <smd name="3" x="2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2340. <hole x="-1.27" y="0" drill="1.6"/>
  2341. <hole x="1.27" y="0" drill="1.6"/>
  2342. <text x="-1.397" y="1.524" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2343. <text x="-1.651" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2344. </package>
  2345. <package name="JST-3-PTH-VERT" urn="urn:adsk.eagle:footprint:37696/1" library_version="1">
  2346. <description>&lt;h3&gt;JST 3 Pin Vertical Plated Through Hole&lt;/h3&gt;
  2347. &lt;p&gt;Specifications:
  2348. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2349. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2350. &lt;/ul&gt;&lt;/p&gt;
  2351. &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;
  2352. &lt;p&gt;Example device(s):
  2353. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2354. &lt;/ul&gt;&lt;/p&gt;</description>
  2355. <wire x1="-3.95" y1="-2.25" x2="-3.95" y2="2.25" width="0.2032" layer="21"/>
  2356. <wire x1="-3.95" y1="2.25" x2="3.95" y2="2.25" width="0.2032" layer="21"/>
  2357. <wire x1="3.95" y1="2.25" x2="3.95" y2="-2.25" width="0.2032" layer="21"/>
  2358. <wire x1="3.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  2359. <wire x1="-1" y1="-2.25" x2="-3.95" y2="-2.25" width="0.2032" layer="21"/>
  2360. <wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
  2361. <wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  2362. <wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
  2363. <pad name="1" x="-2" y="-0.55" drill="0.7" diameter="1.6"/>
  2364. <pad name="2" x="0" y="-0.55" drill="0.7" diameter="1.6"/>
  2365. <pad name="3" x="2" y="-0.55" drill="0.7" diameter="1.6"/>
  2366. <text x="-2.4" y="0.75" size="1.27" layer="51">+</text>
  2367. <text x="-0.4" y="0.75" size="1.27" layer="51">-</text>
  2368. <text x="1.7" y="0.95" size="0.8" layer="51">S</text>
  2369. <text x="-1.397" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2370. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2371. </package>
  2372. <package name="1X03_SMD_RA_MALE_POST_SMALLER" urn="urn:adsk.eagle:footprint:37697/1" library_version="1">
  2373. <description>&lt;h3&gt;SMD - 3 Pin Right Angle Male Header w/ Alignment Posts&lt;/h3&gt;
  2374. &lt;p&gt;&lt;b&gt;Datasheet referenced for footprint:&lt;/b&gt;&lt;a href="http://www.4uconnector.com/online/object/4udrawing/11026.pdf"&gt; 4UCONN part # 11026 &lt;/a&gt;&lt;/p&gt;
  2375. &lt;p&gt;Specifications:
  2376. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2377. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2378. &lt;/ul&gt;&lt;/p&gt;
  2379. &lt;p&gt;Example device(s):
  2380. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2381. &lt;/ul&gt;&lt;/p&gt;</description>
  2382. <wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="51"/>
  2383. <wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2384. <wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="51"/>
  2385. <wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="51"/>
  2386. <wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="51"/>
  2387. <wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2388. <wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="51"/>
  2389. <wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="51"/>
  2390. <wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="51"/>
  2391. <wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="51"/>
  2392. <rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="51"/>
  2393. <rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="51"/>
  2394. <rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="51"/>
  2395. <smd name="1" x="-2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2396. <smd name="2" x="0" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2397. <smd name="3" x="2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2398. <hole x="-1.27" y="0" drill="1.3589"/>
  2399. <hole x="1.27" y="0" drill="1.3589"/>
  2400. </package>
  2401. <package name="1X03_SMD_RA_MALE_POST_SMALLEST" urn="urn:adsk.eagle:footprint:37698/1" library_version="1">
  2402. <wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="51"/>
  2403. <wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2404. <wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="51"/>
  2405. <wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="51"/>
  2406. <wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="51"/>
  2407. <wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="51"/>
  2408. <wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="51"/>
  2409. <wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="51"/>
  2410. <wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="51"/>
  2411. <wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="51"/>
  2412. <rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="51"/>
  2413. <rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="51"/>
  2414. <rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="51"/>
  2415. <smd name="1" x="-2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2416. <smd name="2" x="0" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2417. <smd name="3" x="2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
  2418. <hole x="-1.27" y="0" drill="1.3462"/>
  2419. <hole x="1.27" y="0" drill="1.3462"/>
  2420. </package>
  2421. <package name="JST-3-PTH-NS" urn="urn:adsk.eagle:footprint:37699/1" library_version="1">
  2422. <description>&lt;h3&gt;JST 3 Pin Right Angle Plated Through Hole &amp;ndash; NO SILK&lt;/h3&gt;
  2423. &lt;p&gt;No silkscreen outline. tDoc layer (51) indicates connector footprint.&lt;/p&gt;
  2424. &lt;p&gt;Specifications:
  2425. &lt;ul&gt;&lt;li&gt;Pin count:3&lt;/li&gt;
  2426. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2427. &lt;/ul&gt;&lt;/p&gt;
  2428. &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;
  2429. &lt;p&gt;Example device(s):
  2430. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2431. &lt;/ul&gt;&lt;/p&gt;</description>
  2432. <wire x1="-3.95" y1="-1.6" x2="-3.95" y2="6" width="0.2032" layer="51"/>
  2433. <wire x1="-3.95" y1="6" x2="3.95" y2="6" width="0.2032" layer="51"/>
  2434. <wire x1="3.95" y1="6" x2="3.95" y2="-1.6" width="0.2032" layer="51"/>
  2435. <wire x1="-3.95" y1="-1.6" x2="-3.3" y2="-1.6" width="0.2032" layer="51"/>
  2436. <wire x1="3.95" y1="-1.6" x2="3.3" y2="-1.6" width="0.2032" layer="51"/>
  2437. <wire x1="-3.3" y1="-1.6" x2="-3.3" y2="0" width="0.2032" layer="51"/>
  2438. <wire x1="3.3" y1="-1.6" x2="3.3" y2="0" width="0.2032" layer="51"/>
  2439. <pad name="1" x="-2" y="0" drill="0.7" diameter="1.6"/>
  2440. <pad name="2" x="0" y="0" drill="0.7" diameter="1.6"/>
  2441. <pad name="3" x="2" y="0" drill="0.7" diameter="1.6"/>
  2442. <text x="-2.4" y="0.67" size="1.27" layer="51">+</text>
  2443. <text x="-0.4" y="0.67" size="1.27" layer="51">-</text>
  2444. <text x="1.7" y="0.87" size="0.8" layer="51">S</text>
  2445. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2446. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2447. </package>
  2448. <package name="SCREWTERMINAL-3.5MM-3-NS" urn="urn:adsk.eagle:footprint:37700/1" library_version="1">
  2449. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -3 Pin PTH &amp;ndash; NO SILK&lt;/h3&gt;
  2450. &lt;p&gt;No silkscreen outline. tDoc layer (51) indicates connector footprint.&lt;/p&gt;
  2451. &lt;p&gt;Specifications:
  2452. &lt;ul&gt;&lt;li&gt;Pin count: 3&lt;/li&gt;
  2453. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2454. &lt;/ul&gt;&lt;/p&gt;
  2455. &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;
  2456. &lt;p&gt;Example device(s):
  2457. &lt;ul&gt;&lt;li&gt;CONN_03&lt;/li&gt;
  2458. &lt;/ul&gt;&lt;/p&gt;</description>
  2459. <wire x1="-1.75" y1="3.4" x2="8.75" y2="3.4" width="0.2032" layer="51"/>
  2460. <wire x1="8.75" y1="3.4" x2="8.75" y2="-2.8" width="0.2032" layer="51"/>
  2461. <wire x1="8.75" y1="-2.8" x2="8.75" y2="-3.6" width="0.2032" layer="51"/>
  2462. <wire x1="8.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  2463. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2464. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  2465. <wire x1="8.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2466. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2467. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2468. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2469. <wire x1="8.75" y1="3.15" x2="9.25" y2="3.15" width="0.2032" layer="51"/>
  2470. <wire x1="9.25" y1="3.15" x2="9.25" y2="2.15" width="0.2032" layer="51"/>
  2471. <wire x1="9.25" y1="2.15" x2="8.75" y2="2.15" width="0.2032" layer="51"/>
  2472. <pad name="1" x="0" y="0" drill="1.2" diameter="2.413"/>
  2473. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.413"/>
  2474. <pad name="3" x="7" y="0" drill="1.2" diameter="2.413"/>
  2475. <text x="2.159" y="3.683" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2476. <text x="2.032" y="-4.572" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2477. </package>
  2478. </packages>
  2479. <packages3d>
  2480. <package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1">
  2481. <description>Plated Through Hole
  2482. Specifications:
  2483. Pin count:2
  2484. Pin pitch:0.1"
  2485. Example device(s):
  2486. CONN_02
  2487. </description>
  2488. <packageinstances>
  2489. <packageinstance name="1X02"/>
  2490. </packageinstances>
  2491. </package3d>
  2492. <package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1">
  2493. <description>Molex 2-Pin Plated Through-Hole
  2494. Specifications:
  2495. Pin count:2
  2496. Pin pitch:0.1"
  2497. Datasheet referenced for footprint
  2498. Example device(s):
  2499. CONN_02
  2500. </description>
  2501. <packageinstances>
  2502. <packageinstance name="MOLEX-1X2"/>
  2503. </packageinstances>
  2504. </package3d>
  2505. <package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1">
  2506. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH
  2507. Specifications:
  2508. Pin count: 2
  2509. Pin pitch: 3.5mm/138mil
  2510. Datasheet referenced for footprint
  2511. Example device(s):
  2512. CONN_02
  2513. </description>
  2514. <packageinstances>
  2515. <packageinstance name="SCREWTERMINAL-3.5MM-2"/>
  2516. </packageinstances>
  2517. </package3d>
  2518. <package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1">
  2519. <description>JST-Right Angle Male Header SMT
  2520. Specifications:
  2521. Pin count: 2
  2522. Pin pitch: 2mm
  2523. Datasheet referenced for footprint
  2524. Example device(s):
  2525. CONN_02
  2526. JST_2MM_MALE
  2527. </description>
  2528. <packageinstances>
  2529. <packageinstance name="JST-2-SMD"/>
  2530. </packageinstances>
  2531. </package3d>
  2532. <package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1">
  2533. <description>Plated Through Hole
  2534. Specifications:
  2535. Pin count:2
  2536. Pin pitch:0.15"
  2537. Example device(s):
  2538. CONN_02
  2539. </description>
  2540. <packageinstances>
  2541. <packageinstance name="1X02_BIG"/>
  2542. </packageinstances>
  2543. </package3d>
  2544. <package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1">
  2545. <description>JST-Vertical Male Header SMT
  2546. Specifications:
  2547. Pin count: 2
  2548. Pin pitch: 2mm
  2549. Datasheet referenced for footprint
  2550. Example device(s):
  2551. CONN_02
  2552. </description>
  2553. <packageinstances>
  2554. <packageinstance name="JST-2-SMD-VERT"/>
  2555. </packageinstances>
  2556. </package3d>
  2557. <package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1">
  2558. <description>Screw Terminal 5mm Pitch -2 Pin PTH
  2559. Specifications:
  2560. Pin count: 2
  2561. Pin pitch: 5mm/197mil
  2562. Datasheet referenced for footprint
  2563. Example device(s):
  2564. CONN_02
  2565. </description>
  2566. <packageinstances>
  2567. <packageinstance name="SCREWTERMINAL-5MM-2"/>
  2568. </packageinstances>
  2569. </package3d>
  2570. <package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1">
  2571. <description>Plated Through Hole - Locking Footprint
  2572. Holes are staggered by 0.005" from center to hold pins while soldering.
  2573. Specifications:
  2574. Pin count:2
  2575. Pin pitch:0.1"
  2576. Example device(s):
  2577. CONN_02
  2578. </description>
  2579. <packageinstances>
  2580. <packageinstance name="1X02_LOCK"/>
  2581. </packageinstances>
  2582. </package3d>
  2583. <package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1">
  2584. <description>Molex 2-Pin Plated Through-Hole Locking Footprint
  2585. Holes are offset from center by 0.005" to hold pins in place during soldering.
  2586. Specifications:
  2587. Pin count:2
  2588. Pin pitch:0.1"
  2589. Datasheet referenced for footprint
  2590. Example device(s):
  2591. CONN_02
  2592. </description>
  2593. <packageinstances>
  2594. <packageinstance name="MOLEX-1X2_LOCK"/>
  2595. </packageinstances>
  2596. </package3d>
  2597. <package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1">
  2598. <description>Plated Through Hole - Long Pads with Locking Footprint
  2599. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  2600. Specifications:
  2601. Pin count:2
  2602. Pin pitch:0.1"
  2603. Example device(s):
  2604. CONN_02
  2605. </description>
  2606. <packageinstances>
  2607. <packageinstance name="1X02_LOCK_LONGPADS"/>
  2608. </packageinstances>
  2609. </package3d>
  2610. <package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1">
  2611. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking
  2612. Holes are offset from center 0.005" to hold pins in place during soldering.
  2613. Specifications:
  2614. Pin count: 2
  2615. Pin pitch: 3.5mm/138mil
  2616. Datasheet referenced for footprint
  2617. Example device(s):
  2618. CONN_02
  2619. </description>
  2620. <packageinstances>
  2621. <packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/>
  2622. </packageinstances>
  2623. </package3d>
  2624. <package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1">
  2625. <description>Plated Through Hole - Long Pads without Silk Outline
  2626. Specifications:
  2627. Pin count:2
  2628. Pin pitch:0.1"
  2629. Example device(s):
  2630. CONN_02
  2631. </description>
  2632. <packageinstances>
  2633. <packageinstance name="1X02_LONGPADS"/>
  2634. </packageinstances>
  2635. </package3d>
  2636. <package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1">
  2637. <description>Plated Through Hole - No Silk Outline
  2638. Specifications:
  2639. Pin count:2
  2640. Pin pitch:0.1"
  2641. Example device(s):
  2642. CONN_02
  2643. </description>
  2644. <packageinstances>
  2645. <packageinstance name="1X02_NO_SILK"/>
  2646. </packageinstances>
  2647. </package3d>
  2648. <package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1">
  2649. <description>JST 2 Pin Right Angle Plated Through Hole
  2650. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2651. Specifications:
  2652. Pin count: 2
  2653. Pin pitch:2mm
  2654. Datasheet referenced for footprint
  2655. Example device(s):
  2656. CONN_02
  2657. </description>
  2658. <packageinstances>
  2659. <packageinstance name="JST-2-PTH"/>
  2660. </packageinstances>
  2661. </package3d>
  2662. <package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1">
  2663. <description>Plated Through Hole - 0.1" holes
  2664. Specifications:
  2665. Pin count:2
  2666. Pin pitch:0.2"
  2667. Example device(s):
  2668. CONN_02
  2669. </description>
  2670. <packageinstances>
  2671. <packageinstance name="1X02_XTRA_BIG"/>
  2672. </packageinstances>
  2673. </package3d>
  2674. <package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1">
  2675. <description>Pogo Pins Connector - No Silk Outline
  2676. Specifications:
  2677. Pin count:2
  2678. Pin pitch:0.1"
  2679. Example device(s):
  2680. CONN_02
  2681. </description>
  2682. <packageinstances>
  2683. <packageinstance name="1X02_PP_HOLES_ONLY"/>
  2684. </packageinstances>
  2685. </package3d>
  2686. <package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1">
  2687. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline
  2688. Specifications:
  2689. Pin count: 2
  2690. Pin pitch: 3.5mm/138mil
  2691. Datasheet referenced for footprint
  2692. Example device(s):
  2693. CONN_02
  2694. </description>
  2695. <packageinstances>
  2696. <packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/>
  2697. </packageinstances>
  2698. </package3d>
  2699. <package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1">
  2700. <description>JST 2 Pin Right Angle Plated Through Hole- No Silk
  2701. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2702. No silk outline of connector.
  2703. Specifications:
  2704. Pin count: 2
  2705. Pin pitch:2mm
  2706. Datasheet referenced for footprint
  2707. Example device(s):
  2708. CONN_02
  2709. </description>
  2710. <packageinstances>
  2711. <packageinstance name="JST-2-PTH-NS"/>
  2712. </packageinstances>
  2713. </package3d>
  2714. <package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1">
  2715. <description>JST 2 Pin Right Angle Plated Through Hole - KIT
  2716. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2717. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  2718. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  2719. Specifications:
  2720. Pin count: 2
  2721. Pin pitch:2mm
  2722. Datasheet referenced for footprint
  2723. Example device(s):
  2724. CONN_02
  2725. </description>
  2726. <packageinstances>
  2727. <packageinstance name="JST-2-PTH-KIT"/>
  2728. </packageinstances>
  2729. </package3d>
  2730. <package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1">
  2731. <description>Spring Terminal- PCB Mount 2 Pin PTH
  2732. tDocu marks the spring arms
  2733. Specifications:
  2734. Pin count: 4
  2735. Pin pitch: 0.1"
  2736. Datasheet referenced for footprint
  2737. Example device(s):
  2738. CONN_02
  2739. </description>
  2740. <packageinstances>
  2741. <packageinstance name="SPRINGTERMINAL-2.54MM-2"/>
  2742. </packageinstances>
  2743. </package3d>
  2744. <package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1">
  2745. <description>2 Pin Screw Terminal - 2.54mm
  2746. Specifications:
  2747. Pin count:2
  2748. Pin pitch:0.1"
  2749. Example device(s):
  2750. CONN_02
  2751. </description>
  2752. <packageinstances>
  2753. <packageinstance name="1X02_2.54_SCREWTERM"/>
  2754. </packageinstances>
  2755. </package3d>
  2756. <package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1">
  2757. <description>2 pin poke-home connector
  2758. part number 2062-2P from STA</description>
  2759. <packageinstances>
  2760. <packageinstance name="1X02_POKEHOME"/>
  2761. </packageinstances>
  2762. </package3d>
  2763. <package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1">
  2764. <packageinstances>
  2765. <packageinstance name="1X02_RA_PTH_FEMALE"/>
  2766. </packageinstances>
  2767. </package3d>
  2768. <package3d name="1X06" urn="urn:adsk.eagle:package:38009/1" type="box" library_version="1">
  2769. <description>Plated Through Hole - 6 Pin
  2770. Specifications:
  2771. Pin count:6
  2772. Pin pitch:0.1"
  2773. Example device(s):
  2774. CONN_06
  2775. </description>
  2776. <packageinstances>
  2777. <packageinstance name="1X06"/>
  2778. </packageinstances>
  2779. </package3d>
  2780. <package3d name="MOLEX-1X6" urn="urn:adsk.eagle:package:38117/1" type="box" library_version="1">
  2781. <description>Molex 6-Pin Plated Through-Hole
  2782. Specifications:
  2783. Pin count:6
  2784. Pin pitch:0.1"
  2785. Datasheet referenced for footprint
  2786. Example device(s):
  2787. CONN_06
  2788. </description>
  2789. <packageinstances>
  2790. <packageinstance name="MOLEX-1X6"/>
  2791. </packageinstances>
  2792. </package3d>
  2793. <package3d name="MOLEX-1X6-RA" urn="urn:adsk.eagle:package:38118/1" type="box" library_version="1">
  2794. <description>Molex 6-Pin Plated Through-Hole Right Angle
  2795. tPlace shows angle of connector.
  2796. Specifications:
  2797. Pin count:6
  2798. Pin pitch:0.1"
  2799. Datasheet referenced for footprint
  2800. Example device(s):
  2801. CONN_06
  2802. </description>
  2803. <packageinstances>
  2804. <packageinstance name="MOLEX-1X6-RA"/>
  2805. </packageinstances>
  2806. </package3d>
  2807. <package3d name="1X06-SMD_RA_MALE" urn="urn:adsk.eagle:package:38004/1" type="box" library_version="1">
  2808. <description>SMD - 6 Pin Right Angle Male Header
  2809. tDocu layer shows pin locations.
  2810. Specifications:
  2811. Pin count:6
  2812. Pin pitch:0.1"
  2813. Example device(s):
  2814. CONN_06
  2815. </description>
  2816. <packageinstances>
  2817. <packageinstance name="1X06-SMD_RA_MALE"/>
  2818. </packageinstances>
  2819. </package3d>
  2820. <package3d name="1X06_LOCK" urn="urn:adsk.eagle:package:38002/1" type="box" library_version="1">
  2821. <description>Plated Through Hole - 6 Pin with Locking Footprint
  2822. Holes are offset 0.005" from center, locking pins in place during soldering.
  2823. Specifications:
  2824. Pin count:6
  2825. Pin pitch:0.1"
  2826. Example device(s):
  2827. CONN_06
  2828. </description>
  2829. <packageinstances>
  2830. <packageinstance name="1X06_LOCK"/>
  2831. </packageinstances>
  2832. </package3d>
  2833. <package3d name="1X06_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38121/1" type="box" library_version="1">
  2834. <description>Plated Through Hole - 6 Pin with Locking Footprint with Long Pads
  2835. Holes are offset 0.005" from center, locking pins in place during soldering.
  2836. Specifications:
  2837. Pin count:6
  2838. Pin pitch:0.1"
  2839. Example device(s):
  2840. CONN_06
  2841. </description>
  2842. <packageinstances>
  2843. <packageinstance name="1X06_LOCK_LONGPADS"/>
  2844. </packageinstances>
  2845. </package3d>
  2846. <package3d name="MOLEX-1X6_LOCK" urn="urn:adsk.eagle:package:38123/1" type="box" library_version="1">
  2847. <description>Molex 6-Pin Plated Through-Hole Locking Footprint
  2848. Holes are offset 0.005" from center to hold pins in place during soldering.
  2849. Specifications:
  2850. Pin count:6
  2851. Pin pitch:0.1"
  2852. Datasheet referenced for footprint
  2853. Example device(s):
  2854. CONN_06
  2855. </description>
  2856. <packageinstances>
  2857. <packageinstance name="MOLEX-1X6_LOCK"/>
  2858. </packageinstances>
  2859. </package3d>
  2860. <package3d name="MOLEX_1X6_RA_LOCK" urn="urn:adsk.eagle:package:37992/1" type="box" library_version="1">
  2861. <description>Molex 6-Pin Plated Through-Hole Right Angle Locking Footprint
  2862. Holes are offset 0.005" from center to hold pins in place during soldering.
  2863. tPlace shows location of connector.
  2864. Specifications:
  2865. Pin count:6
  2866. Pin pitch:0.1"
  2867. Datasheet referenced for footprint
  2868. Example device(s):
  2869. CONN_06
  2870. </description>
  2871. <packageinstances>
  2872. <packageinstance name="MOLEX_1X6_RA_LOCK"/>
  2873. </packageinstances>
  2874. </package3d>
  2875. <package3d name="1X06_FEMALE_LOCK.010" urn="urn:adsk.eagle:package:38124/1" type="box" library_version="1">
  2876. <description>Plated Through Hole - 6 Pin Locking Header
  2877. Includes silk outline for 6 pin female header
  2878. Specifications:
  2879. Pin count:6
  2880. Pin pitch:0.1"
  2881. Datasheet referenced for footprint:
  2882. Example device(s):
  2883. CONN_06
  2884. </description>
  2885. <packageinstances>
  2886. <packageinstance name="1X06_FEMALE_LOCK.010"/>
  2887. </packageinstances>
  2888. </package3d>
  2889. <package3d name="1X06_LONGPADS" urn="urn:adsk.eagle:package:37991/1" type="box" library_version="1">
  2890. <description>Plated Through Hole - 6 Pin with Long Pads
  2891. Specifications:
  2892. Pin count:6
  2893. Pin pitch:0.1"
  2894. Example device(s):
  2895. CONN_06
  2896. </description>
  2897. <packageinstances>
  2898. <packageinstance name="1X06_LONGPADS"/>
  2899. </packageinstances>
  2900. </package3d>
  2901. <package3d name="SCREWTERMINAL-3.5MM-6" urn="urn:adsk.eagle:package:38122/1" type="box" library_version="1">
  2902. <description>Screw Terminal 3.5mm Pitch -6 Pin PTH
  2903. Specifications:
  2904. Pin count: 6
  2905. Pin pitch: 3.5mm/138mil
  2906. Datasheet referenced for footprint
  2907. Example device(s):
  2908. CONN_06
  2909. </description>
  2910. <packageinstances>
  2911. <packageinstance name="SCREWTERMINAL-3.5MM-6"/>
  2912. </packageinstances>
  2913. </package3d>
  2914. <package3d name="1X06-SMD-FEMALE" urn="urn:adsk.eagle:package:38125/1" type="box" library_version="1">
  2915. <description>Header - 6 pin Female SMD
  2916. Right angle 0.1"
  2917. Specifications:
  2918. Pin count:6
  2919. Pin pitch:0.1"
  2920. Datasheet referenced for footprint:
  2921. Example device(s):
  2922. CONN_06
  2923. </description>
  2924. <packageinstances>
  2925. <packageinstance name="1X06-SMD-FEMALE"/>
  2926. </packageinstances>
  2927. </package3d>
  2928. <package3d name="1X06_HOLES_ONLY" urn="urn:adsk.eagle:package:38126/1" type="box" library_version="1">
  2929. <description> 6 Pin Holes
  2930. No silk, no plating
  2931. Specifications:
  2932. Pin count:6
  2933. Pin pitch:0.1"
  2934. Example device(s):
  2935. CONN_06
  2936. </description>
  2937. <packageinstances>
  2938. <packageinstance name="1X06_HOLES_ONLY"/>
  2939. </packageinstances>
  2940. </package3d>
  2941. <package3d name="1X06_SMD_STRAIGHT" urn="urn:adsk.eagle:package:38139/1" type="box" library_version="1">
  2942. <description> 6 Pin SMD Female Header
  2943. Specifications:
  2944. Pin count:6
  2945. Pin pitch:0.1"
  2946. Datasheet referenced for footprint:
  2947. Example device(s):
  2948. CONN_06
  2949. </description>
  2950. <packageinstances>
  2951. <packageinstance name="1X06_SMD_STRAIGHT"/>
  2952. </packageinstances>
  2953. </package3d>
  2954. <package3d name="1X06_SMD_STRAIGHT_ALT" urn="urn:adsk.eagle:package:38141/1" type="box" library_version="1">
  2955. <description> 6 Pin SMD Female Header
  2956. Alternate pin configuration
  2957. Specifications:
  2958. Pin count:6
  2959. Pin pitch:0.1"
  2960. Datasheet referenced for footprint:
  2961. Example device(s):
  2962. CONN_06
  2963. </description>
  2964. <packageinstances>
  2965. <packageinstance name="1X06_SMD_STRAIGHT_ALT"/>
  2966. </packageinstances>
  2967. </package3d>
  2968. <package3d name="1X06_SMD_STRAIGHT_COMBO" urn="urn:adsk.eagle:package:38127/1" type="box" library_version="1">
  2969. <description> 6 Pin SMD Female Header - Combined Footprint
  2970. Specifications:
  2971. Pin count:6
  2972. Pin pitch:0.1"
  2973. Datasheet referenced for footprint:
  2974. Example device(s):
  2975. CONN_06
  2976. </description>
  2977. <packageinstances>
  2978. <packageinstance name="1X06_SMD_STRAIGHT_COMBO"/>
  2979. </packageinstances>
  2980. </package3d>
  2981. <package3d name="1X06_SMD_MALE" urn="urn:adsk.eagle:package:38128/1" type="box" library_version="1">
  2982. <description> 6 Pin SMD Male Header
  2983. Specifications:
  2984. Pin count:6
  2985. Pin pitch:0.1"
  2986. Datasheet referenced for footprint:
  2987. Example device(s):
  2988. CONN_06
  2989. </description>
  2990. <packageinstances>
  2991. <packageinstance name="1X06_SMD_MALE"/>
  2992. </packageinstances>
  2993. </package3d>
  2994. <package3d name="1X06-1MM" urn="urn:adsk.eagle:package:38023/1" type="box" library_version="1">
  2995. <description>JST SH Vertical 6-Pin Connector -SMD
  2996. Specifications:
  2997. Pin count:6
  2998. Pin pitch:1mm
  2999. Datasheet referenced for footprint
  3000. Example device(s):
  3001. CONN_06
  3002. EM-406
  3003. </description>
  3004. <packageinstances>
  3005. <packageinstance name="1X06-1MM"/>
  3006. </packageinstances>
  3007. </package3d>
  3008. <package3d name="1X06_NO_SILK" urn="urn:adsk.eagle:package:38130/1" type="box" library_version="1">
  3009. <description>Plated Through Hole - 6 Pin No Silk Outline
  3010. Specifications:
  3011. Pin count:6
  3012. Pin pitch:0.1"
  3013. Example device(s):
  3014. CONN_06
  3015. </description>
  3016. <packageinstances>
  3017. <packageinstance name="1X06_NO_SILK"/>
  3018. </packageinstances>
  3019. </package3d>
  3020. <package3d name="1X06_1.27MM" urn="urn:adsk.eagle:package:38131/1" type="box" library_version="1">
  3021. <description>Plated Through Hole - 6 Pin
  3022. Specifications:
  3023. Pin count:6
  3024. Pin pitch:1.27mm
  3025. Example device(s):
  3026. CONN_06
  3027. </description>
  3028. <packageinstances>
  3029. <packageinstance name="1X06_1.27MM"/>
  3030. </packageinstances>
  3031. </package3d>
  3032. <package3d name="1X05" urn="urn:adsk.eagle:package:38104/1" type="box" library_version="1">
  3033. <description>Plated Through Hole - 5 Pin
  3034. Specifications:
  3035. Pin count:5
  3036. Pin pitch:0.1"
  3037. Example device(s):
  3038. CONN_05
  3039. </description>
  3040. <packageinstances>
  3041. <packageinstance name="1X05"/>
  3042. </packageinstances>
  3043. </package3d>
  3044. <package3d name="1X05_1.27MM" urn="urn:adsk.eagle:package:38110/1" type="box" library_version="1">
  3045. <description>Plated Through Hole - 5 Pin
  3046. Specifications:
  3047. Pin count:5
  3048. Pin pitch: 1.27mm
  3049. Example device(s):
  3050. CONN_05
  3051. </description>
  3052. <packageinstances>
  3053. <packageinstance name="1X05_1.27MM"/>
  3054. </packageinstances>
  3055. </package3d>
  3056. <package3d name="1X05_LOCK" urn="urn:adsk.eagle:package:38105/1" type="box" library_version="1">
  3057. <description>Plated Through Hole - 5 Pin with Locking Footprint
  3058. Holes are offset 0.005" from center, locking pins in place during soldering.
  3059. Specifications:
  3060. Pin count:5
  3061. Pin pitch:0.1"
  3062. Example device(s):
  3063. CONN_05
  3064. </description>
  3065. <packageinstances>
  3066. <packageinstance name="1X05_LOCK"/>
  3067. </packageinstances>
  3068. </package3d>
  3069. <package3d name="1X05_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38107/1" type="box" library_version="1">
  3070. <description>Plated Through Hole - 5 Pin Long Pad with Locking Footprint
  3071. Holes are offset 0.005" from center, locking pins in place during soldering.
  3072. Specifications:
  3073. Pin count:5
  3074. Pin pitch:0.1"
  3075. Example device(s):
  3076. CONN_05
  3077. </description>
  3078. <packageinstances>
  3079. <packageinstance name="1X05_LOCK_LONGPADS"/>
  3080. </packageinstances>
  3081. </package3d>
  3082. <package3d name="1X05_LONGPADS" urn="urn:adsk.eagle:package:38109/1" type="box" library_version="1">
  3083. <description>Plated Through Hole - 5 Pin Long Pads
  3084. Specifications:
  3085. Pin count:5
  3086. Pin pitch:0.1"
  3087. Example device(s):
  3088. CONN_05
  3089. </description>
  3090. <packageinstances>
  3091. <packageinstance name="1X05_LONGPADS"/>
  3092. </packageinstances>
  3093. </package3d>
  3094. <package3d name="1X05_1MM" urn="urn:adsk.eagle:package:38026/1" type="box" library_version="1">
  3095. <description>SMD - 5 Pin
  3096. Specifications:
  3097. Pin count:5
  3098. Pin pitch:0.1"
  3099. Datasheet referenced for footprint
  3100. Example device(s):
  3101. CONN_05
  3102. EM-408
  3103. </description>
  3104. <packageinstances>
  3105. <packageinstance name="1X05_1MM"/>
  3106. </packageinstances>
  3107. </package3d>
  3108. <package3d name="1X05_1MM_RA" urn="urn:adsk.eagle:package:38106/1" type="box" library_version="1">
  3109. <description>SMD - 5 Pin Right Angle
  3110. Specifications:
  3111. Pin count:5
  3112. Pin pitch:0.1"
  3113. Example device(s):
  3114. CONN_05
  3115. </description>
  3116. <packageinstances>
  3117. <packageinstance name="1X05_1MM_RA"/>
  3118. </packageinstances>
  3119. </package3d>
  3120. <package3d name="1X05_NO_SILK" urn="urn:adsk.eagle:package:38108/1" type="box" library_version="1">
  3121. <description>Plated Through Hole - 5 Pin No Silk Outline
  3122. Specifications:
  3123. Pin count:5
  3124. Pin pitch:0.1"
  3125. Example device(s):
  3126. CONN_05
  3127. </description>
  3128. <packageinstances>
  3129. <packageinstance name="1X05_NO_SILK"/>
  3130. </packageinstances>
  3131. </package3d>
  3132. <package3d name="JST-5-PTH" urn="urn:adsk.eagle:package:38120/1" type="box" library_version="1">
  3133. <description>JST 5 Pin Right Angle Plated Through Hole
  3134. Specifications:
  3135. Pin count: 5
  3136. Pin pitch: 2mm
  3137. Datasheet referenced for footprint
  3138. Example device(s):
  3139. CONN_05
  3140. </description>
  3141. <packageinstances>
  3142. <packageinstance name="JST-5-PTH"/>
  3143. </packageinstances>
  3144. </package3d>
  3145. <package3d name="JST-5-PTH-VERT" urn="urn:adsk.eagle:package:38111/1" type="box" library_version="1">
  3146. <description>JST 5 Pin Vertical Plated Through Hole
  3147. Specifications:
  3148. Pin count: 5
  3149. Pin pitch: 2mm
  3150. Example device(s):
  3151. CONN_05
  3152. </description>
  3153. <packageinstances>
  3154. <packageinstance name="JST-5-PTH-VERT"/>
  3155. </packageinstances>
  3156. </package3d>
  3157. <package3d name="SCREWTERMINAL-3.5MM-5" urn="urn:adsk.eagle:package:38112/1" type="box" library_version="1">
  3158. <description>Screw Terminal 3.5mm Pitch -5 Pin PTH
  3159. Specifications:
  3160. Pin count: 5
  3161. Pin pitch: 3.5mm/138mil
  3162. Datasheet referenced for footprint
  3163. Example device(s):
  3164. CONN_05
  3165. </description>
  3166. <packageinstances>
  3167. <packageinstance name="SCREWTERMINAL-3.5MM-5"/>
  3168. </packageinstances>
  3169. </package3d>
  3170. <package3d name="1X03" urn="urn:adsk.eagle:package:38063/1" type="box" library_version="1">
  3171. <description>Plated Through Hole - 3 Pin
  3172. Specifications:
  3173. Pin count:3
  3174. Pin pitch:0.1"
  3175. Example device(s):
  3176. CONN_03
  3177. </description>
  3178. <packageinstances>
  3179. <packageinstance name="1X03"/>
  3180. </packageinstances>
  3181. </package3d>
  3182. <package3d name="MOLEX-1X3" urn="urn:adsk.eagle:package:38064/1" type="box" library_version="1">
  3183. <description>PTH - 3 Pin Vertical Molex Polarized Header
  3184. Datasheet referenced for footprint: 4UCONN part # 01932
  3185. Specifications:
  3186. Pin count:3
  3187. Pin pitch:0.1"
  3188. Example device(s):
  3189. CONN_03
  3190. </description>
  3191. <packageinstances>
  3192. <packageinstance name="MOLEX-1X3"/>
  3193. </packageinstances>
  3194. </package3d>
  3195. <package3d name="SCREWTERMINAL-3.5MM-3" urn="urn:adsk.eagle:package:38072/1" type="box" library_version="1">
  3196. <description>Screw Terminal 3.5mm Pitch -3 Pin PTH
  3197. Specifications:
  3198. Pin count: 3
  3199. Pin pitch: 3.5mm/138mil
  3200. Datasheet referenced for footprint
  3201. Example device(s):
  3202. CONN_03
  3203. </description>
  3204. <packageinstances>
  3205. <packageinstance name="SCREWTERMINAL-3.5MM-3"/>
  3206. </packageinstances>
  3207. </package3d>
  3208. <package3d name="1X03_LOCK" urn="urn:adsk.eagle:package:38071/1" type="box" library_version="1">
  3209. <description>Plated Through Hole - 3 Pin Locking Footprint
  3210. Pins are staggered 0.005" off center to lock pins while soldering.
  3211. Specifications:
  3212. Pin count:3
  3213. Pin pitch:0.1"
  3214. Example device(s):
  3215. CONN_03
  3216. </description>
  3217. <packageinstances>
  3218. <packageinstance name="1X03_LOCK"/>
  3219. </packageinstances>
  3220. </package3d>
  3221. <package3d name="1X03_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38065/1" type="box" library_version="1">
  3222. <description>Plated Through Hole - 3 Pin Long Pad w/ Locking Footprint
  3223. Holes are offset 0.005" from center to lock pins in place while soldering.
  3224. Specifications:
  3225. Pin count:3
  3226. Pin pitch:0.1"
  3227. Example device(s):
  3228. CONN_03
  3229. </description>
  3230. <packageinstances>
  3231. <packageinstance name="1X03_LOCK_LONGPADS"/>
  3232. </packageinstances>
  3233. </package3d>
  3234. <package3d name="MOLEX-1X3_LOCK" urn="urn:adsk.eagle:package:38067/1" type="box" library_version="1">
  3235. <description>PTH - 3 Pin Vertical Molex Polarized Header
  3236. Pins are offset 0.005" from center to lock pins in place during soldering.
  3237. Datasheet referenced for footprint: 4UCONN part # 01932
  3238. Specifications:
  3239. Pin count:3
  3240. Pin pitch:0.1"
  3241. Example device(s):
  3242. CONN_03
  3243. </description>
  3244. <packageinstances>
  3245. <packageinstance name="MOLEX-1X3_LOCK"/>
  3246. </packageinstances>
  3247. </package3d>
  3248. <package3d name="SCREWTERMINAL-3.5MM-3_LOCK.007S" urn="urn:adsk.eagle:package:38066/1" type="box" library_version="1">
  3249. <description>Screw Terminal 3.5mm Pitch -3 Pin PTH Locking
  3250. Holes are offset 0.007" from center to hold pins in place during soldering.
  3251. Specifications:
  3252. Pin count: 3
  3253. Pin pitch: 3.5mm/138mil
  3254. Datasheet referenced for footprint
  3255. Example device(s):
  3256. CONN_03
  3257. </description>
  3258. <packageinstances>
  3259. <packageinstance name="SCREWTERMINAL-3.5MM-3_LOCK.007S"/>
  3260. </packageinstances>
  3261. </package3d>
  3262. <package3d name="1X03_NO_SILK" urn="urn:adsk.eagle:package:38076/1" type="box" library_version="1">
  3263. <description>Plated Through Hole - 3 Pin No Silk Outline
  3264. Specifications:
  3265. Pin count:3
  3266. Pin pitch:0.1"
  3267. Example device(s):
  3268. CONN_03
  3269. </description>
  3270. <packageinstances>
  3271. <packageinstance name="1X03_NO_SILK"/>
  3272. </packageinstances>
  3273. </package3d>
  3274. <package3d name="1X03_LONGPADS" urn="urn:adsk.eagle:package:38068/1" type="box" library_version="1">
  3275. <description>Plated Through Hole - 3 Pin Long Pads
  3276. Specifications:
  3277. Pin count:3
  3278. Pin pitch:0.1"
  3279. Example device(s):
  3280. CONN_03
  3281. </description>
  3282. <packageinstances>
  3283. <packageinstance name="1X03_LONGPADS"/>
  3284. </packageinstances>
  3285. </package3d>
  3286. <package3d name="JST-3-PTH" urn="urn:adsk.eagle:package:38069/1" type="box" library_version="1">
  3287. <description>JST 3 Pin Right Angle Plated Through Hole
  3288. Specifications:
  3289. Pin count:3
  3290. Pin pitch:2mm
  3291. Datasheet referenced for footprint
  3292. Example device(s):
  3293. CONN_03
  3294. </description>
  3295. <packageinstances>
  3296. <packageinstance name="JST-3-PTH"/>
  3297. </packageinstances>
  3298. </package3d>
  3299. <package3d name="1X03_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38073/1" type="box" library_version="1">
  3300. <description>Pogo Pins - 3 Pin
  3301. Specifications:
  3302. Pin count:3
  3303. Example device(s):
  3304. CONN_03
  3305. </description>
  3306. <packageinstances>
  3307. <packageinstance name="1X03_PP_HOLES_ONLY"/>
  3308. </packageinstances>
  3309. </package3d>
  3310. <package3d name="SCREWTERMINAL-5MM-3" urn="urn:adsk.eagle:package:38070/1" type="box" library_version="1">
  3311. <description>Screw Terminal 5mm Pitch -3 Pin PTH
  3312. Specifications:
  3313. Pin count: 3
  3314. Pin pitch: 5mm/197mil
  3315. Datasheet referenced for footprint
  3316. Example device(s):
  3317. CONN_03
  3318. </description>
  3319. <packageinstances>
  3320. <packageinstance name="SCREWTERMINAL-5MM-3"/>
  3321. </packageinstances>
  3322. </package3d>
  3323. <package3d name="1X03_LOCK_NO_SILK" urn="urn:adsk.eagle:package:38074/1" type="box" library_version="1">
  3324. <description>Plated Through Hole - 3 Pin Locking Footprint w/out Silk Outline
  3325. Holes are offset from center 0.005" to lock pins in place while soldering.
  3326. Specifications:
  3327. Pin count:3
  3328. Pin pitch:0.1"
  3329. Example device(s):
  3330. CONN_03
  3331. </description>
  3332. <packageinstances>
  3333. <packageinstance name="1X03_LOCK_NO_SILK"/>
  3334. </packageinstances>
  3335. </package3d>
  3336. <package3d name="JST-3-SMD" urn="urn:adsk.eagle:package:38075/1" type="box" library_version="1">
  3337. <description>JST 3 Pin Right Angle SMT
  3338. Specifications:
  3339. Pin count:3
  3340. Pin pitch:2mm
  3341. Example device(s):
  3342. CONN_03
  3343. </description>
  3344. <packageinstances>
  3345. <packageinstance name="JST-3-SMD"/>
  3346. </packageinstances>
  3347. </package3d>
  3348. <package3d name="1X03-1MM-RA" urn="urn:adsk.eagle:package:38077/1" type="box" library_version="1">
  3349. <description>Plated Through Hole - 3 Pin SMD
  3350. Specifications:
  3351. Pin count:3
  3352. Example device(s):
  3353. CONN_03
  3354. </description>
  3355. <packageinstances>
  3356. <packageinstance name="1X03-1MM-RA"/>
  3357. </packageinstances>
  3358. </package3d>
  3359. <package3d name="1X03_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38081/1" type="box" library_version="1">
  3360. <description>SMD - 3 Pin Right Angle Female Header
  3361. Silk outline of pin location
  3362. Specifications:
  3363. Pin count:3
  3364. Pin pitch:0.1"
  3365. Example device(s):
  3366. CONN_03
  3367. </description>
  3368. <packageinstances>
  3369. <packageinstance name="1X03_SMD_RA_FEMALE"/>
  3370. </packageinstances>
  3371. </package3d>
  3372. <package3d name="1X03_SMD_RA_MALE" urn="urn:adsk.eagle:package:38078/1" type="box" library_version="1">
  3373. <description>SMD- 3 Pin Right Angle Male Headers
  3374. No silk outline, but tDocu layer shows pin location.
  3375. Specifications:
  3376. Pin count:3
  3377. Pin pitch:0.1"
  3378. Example device(s):
  3379. CONN_03
  3380. </description>
  3381. <packageinstances>
  3382. <packageinstance name="1X03_SMD_RA_MALE"/>
  3383. </packageinstances>
  3384. </package3d>
  3385. <package3d name="1X03_SMD_RA_MALE_POST" urn="urn:adsk.eagle:package:38079/1" type="box" library_version="1">
  3386. <description>SMD - 3 Pin Right Angle Male Header w/ Alignment Posts
  3387. Datasheet referenced for footprint: 4UCONN part # 11026
  3388. Specifications:
  3389. Pin count:3
  3390. Pin pitch:0.1"
  3391. Example device(s):
  3392. CONN_03
  3393. </description>
  3394. <packageinstances>
  3395. <packageinstance name="1X03_SMD_RA_MALE_POST"/>
  3396. </packageinstances>
  3397. </package3d>
  3398. <package3d name="JST-3-PTH-VERT" urn="urn:adsk.eagle:package:38080/1" type="box" library_version="1">
  3399. <description>JST 3 Pin Vertical Plated Through Hole
  3400. Specifications:
  3401. Pin count:3
  3402. Pin pitch:2mm
  3403. Datasheet referenced for footprint
  3404. Example device(s):
  3405. CONN_03
  3406. </description>
  3407. <packageinstances>
  3408. <packageinstance name="JST-3-PTH-VERT"/>
  3409. </packageinstances>
  3410. </package3d>
  3411. <package3d name="1X03_SMD_RA_MALE_POST_SMALLER" urn="urn:adsk.eagle:package:38082/1" type="box" library_version="1">
  3412. <description>SMD - 3 Pin Right Angle Male Header w/ Alignment Posts
  3413. Datasheet referenced for footprint: 4UCONN part # 11026
  3414. Specifications:
  3415. Pin count:3
  3416. Pin pitch:0.1"
  3417. Example device(s):
  3418. CONN_03
  3419. </description>
  3420. <packageinstances>
  3421. <packageinstance name="1X03_SMD_RA_MALE_POST_SMALLER"/>
  3422. </packageinstances>
  3423. </package3d>
  3424. <package3d name="1X03_SMD_RA_MALE_POST_SMALLEST" urn="urn:adsk.eagle:package:38083/1" type="box" library_version="1">
  3425. <packageinstances>
  3426. <packageinstance name="1X03_SMD_RA_MALE_POST_SMALLEST"/>
  3427. </packageinstances>
  3428. </package3d>
  3429. <package3d name="JST-3-PTH-NS" urn="urn:adsk.eagle:package:38084/1" type="box" library_version="1">
  3430. <description>JST 3 Pin Right Angle Plated Through Hole &amp;ndash; NO SILK
  3431. No silkscreen outline. tDoc layer (51) indicates connector footprint.
  3432. Specifications:
  3433. Pin count:3
  3434. Pin pitch:2mm
  3435. Datasheet referenced for footprint
  3436. Example device(s):
  3437. CONN_03
  3438. </description>
  3439. <packageinstances>
  3440. <packageinstance name="JST-3-PTH-NS"/>
  3441. </packageinstances>
  3442. </package3d>
  3443. <package3d name="SCREWTERMINAL-3.5MM-3-NS" urn="urn:adsk.eagle:package:38088/1" type="box" library_version="1">
  3444. <description>Screw Terminal 3.5mm Pitch -3 Pin PTH &amp;ndash; NO SILK
  3445. No silkscreen outline. tDoc layer (51) indicates connector footprint.
  3446. Specifications:
  3447. Pin count: 3
  3448. Pin pitch: 3.5mm/138mil
  3449. Datasheet referenced for footprint
  3450. Example device(s):
  3451. CONN_03
  3452. </description>
  3453. <packageinstances>
  3454. <packageinstance name="SCREWTERMINAL-3.5MM-3-NS"/>
  3455. </packageinstances>
  3456. </package3d>
  3457. </packages3d>
  3458. <symbols>
  3459. <symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1">
  3460. <description>&lt;h3&gt;2 Pin Connection&lt;/h3&gt;</description>
  3461. <wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  3462. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  3463. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  3464. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  3465. <wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  3466. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  3467. <text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  3468. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  3469. <pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3470. <pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3471. </symbol>
  3472. <symbol name="CONN_06" urn="urn:adsk.eagle:symbol:37638/1" library_version="1">
  3473. <description>&lt;h3&gt;6 Pin Connection&lt;/h3&gt;</description>
  3474. <wire x1="1.27" y1="-7.62" x2="-5.08" y2="-7.62" width="0.4064" layer="94"/>
  3475. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  3476. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  3477. <wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/>
  3478. <wire x1="-5.08" y1="10.16" x2="-5.08" y2="-7.62" width="0.4064" layer="94"/>
  3479. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  3480. <wire x1="-5.08" y1="10.16" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  3481. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  3482. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  3483. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/>
  3484. <text x="-5.08" y="-9.906" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  3485. <text x="-5.08" y="10.668" size="1.778" layer="95" font="vector">&gt;NAME</text>
  3486. <pin name="1" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3487. <pin name="2" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3488. <pin name="3" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3489. <pin name="4" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3490. <pin name="5" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3491. <pin name="6" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3492. </symbol>
  3493. <symbol name="CONN_05" urn="urn:adsk.eagle:symbol:37721/1" library_version="1">
  3494. <description>&lt;h3&gt;5 Pin Connection&lt;/h3&gt;</description>
  3495. <wire x1="3.81" y1="-7.62" x2="-2.54" y2="-7.62" width="0.4064" layer="94"/>
  3496. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  3497. <wire x1="1.27" y1="-2.54" x2="2.54" y2="-2.54" width="0.6096" layer="94"/>
  3498. <wire x1="1.27" y1="-5.08" x2="2.54" y2="-5.08" width="0.6096" layer="94"/>
  3499. <wire x1="-2.54" y1="7.62" x2="-2.54" y2="-7.62" width="0.4064" layer="94"/>
  3500. <wire x1="3.81" y1="-7.62" x2="3.81" y2="7.62" width="0.4064" layer="94"/>
  3501. <wire x1="-2.54" y1="7.62" x2="3.81" y2="7.62" width="0.4064" layer="94"/>
  3502. <wire x1="1.27" y1="5.08" x2="2.54" y2="5.08" width="0.6096" layer="94"/>
  3503. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  3504. <text x="-2.54" y="-9.906" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  3505. <text x="-2.54" y="8.128" size="1.778" layer="95" font="vector">&gt;NAME</text>
  3506. <pin name="1" x="7.62" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3507. <pin name="2" x="7.62" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3508. <pin name="3" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3509. <pin name="4" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3510. <pin name="5" x="7.62" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3511. </symbol>
  3512. <symbol name="CONN_03" urn="urn:adsk.eagle:symbol:37677/1" library_version="1">
  3513. <description>&lt;h3&gt;3 Pin Connection&lt;/h3&gt;</description>
  3514. <wire x1="3.81" y1="-5.08" x2="-2.54" y2="-5.08" width="0.4064" layer="94"/>
  3515. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  3516. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  3517. <wire x1="1.27" y1="-2.54" x2="2.54" y2="-2.54" width="0.6096" layer="94"/>
  3518. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-5.08" width="0.4064" layer="94"/>
  3519. <wire x1="3.81" y1="-5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  3520. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  3521. <text x="-2.54" y="-7.366" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  3522. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  3523. <pin name="1" x="7.62" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3524. <pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3525. <pin name="3" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  3526. </symbol>
  3527. </symbols>
  3528. <devicesets>
  3529. <deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1">
  3530. <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;
  3531. &lt;p&gt;&lt;/p&gt;
  3532. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  3533. &lt;ul&gt;
  3534. &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;
  3535. &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;
  3536. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  3537. &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;
  3538. &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;
  3539. &lt;/ul&gt;
  3540. &lt;p&gt;&lt;/p&gt;
  3541. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  3542. &lt;ul&gt;
  3543. &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;
  3544. &lt;/ul&gt;
  3545. &lt;p&gt;&lt;/p&gt;
  3546. &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;
  3547. &lt;ul&gt;
  3548. &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;
  3549. &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;
  3550. &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;
  3551. &lt;p&gt;&lt;/p&gt;
  3552. &lt;/ul&gt;
  3553. &lt;p&gt;&lt;/p&gt;
  3554. &lt;b&gt;Special notes:&lt;/b&gt;
  3555. Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.&lt;br&gt;&lt;br&gt;
  3556. 2.54_SCREWTERM for use with PRT-10571.&lt;br&gt;&lt;br&gt;
  3557. 3.5mm Screw Terminal footprints for PRT-08084&lt;br&gt;&lt;br&gt;
  3558. 5mm Screw Terminal footprints for use with PRT-08432</description>
  3559. <gates>
  3560. <gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/>
  3561. </gates>
  3562. <devices>
  3563. <device name="" package="1X02">
  3564. <connects>
  3565. <connect gate="G$1" pin="1" pad="1"/>
  3566. <connect gate="G$1" pin="2" pad="2"/>
  3567. </connects>
  3568. <package3dinstances>
  3569. <package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/>
  3570. </package3dinstances>
  3571. <technologies>
  3572. <technology name=""/>
  3573. </technologies>
  3574. </device>
  3575. <device name="POLAR" package="MOLEX-1X2">
  3576. <connects>
  3577. <connect gate="G$1" pin="1" pad="1"/>
  3578. <connect gate="G$1" pin="2" pad="2"/>
  3579. </connects>
  3580. <package3dinstances>
  3581. <package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/>
  3582. </package3dinstances>
  3583. <technologies>
  3584. <technology name="">
  3585. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  3586. </technology>
  3587. </technologies>
  3588. </device>
  3589. <device name="3.5MM" package="SCREWTERMINAL-3.5MM-2">
  3590. <connects>
  3591. <connect gate="G$1" pin="1" pad="1"/>
  3592. <connect gate="G$1" pin="2" pad="2"/>
  3593. </connects>
  3594. <package3dinstances>
  3595. <package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/>
  3596. </package3dinstances>
  3597. <technologies>
  3598. <technology name="">
  3599. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  3600. </technology>
  3601. </technologies>
  3602. </device>
  3603. <device name="-JST-2MM-SMT" package="JST-2-SMD">
  3604. <connects>
  3605. <connect gate="G$1" pin="1" pad="2"/>
  3606. <connect gate="G$1" pin="2" pad="1"/>
  3607. </connects>
  3608. <package3dinstances>
  3609. <package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/>
  3610. </package3dinstances>
  3611. <technologies>
  3612. <technology name="">
  3613. <attribute name="PROD_ID" value="CONN-11443"/>
  3614. </technology>
  3615. </technologies>
  3616. </device>
  3617. <device name="PTH2" package="1X02_BIG">
  3618. <connects>
  3619. <connect gate="G$1" pin="1" pad="P$1"/>
  3620. <connect gate="G$1" pin="2" pad="P$2"/>
  3621. </connects>
  3622. <package3dinstances>
  3623. <package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/>
  3624. </package3dinstances>
  3625. <technologies>
  3626. <technology name=""/>
  3627. </technologies>
  3628. </device>
  3629. <device name="4UCON-15767" package="JST-2-SMD-VERT">
  3630. <connects>
  3631. <connect gate="G$1" pin="1" pad="GND"/>
  3632. <connect gate="G$1" pin="2" pad="VCC"/>
  3633. </connects>
  3634. <package3dinstances>
  3635. <package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/>
  3636. </package3dinstances>
  3637. <technologies>
  3638. <technology name=""/>
  3639. </technologies>
  3640. </device>
  3641. <device name="5MM" package="SCREWTERMINAL-5MM-2">
  3642. <connects>
  3643. <connect gate="G$1" pin="1" pad="1"/>
  3644. <connect gate="G$1" pin="2" pad="2"/>
  3645. </connects>
  3646. <package3dinstances>
  3647. <package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/>
  3648. </package3dinstances>
  3649. <technologies>
  3650. <technology name="">
  3651. <attribute name="SF_SKU" value="PRT-08432" constant="no"/>
  3652. </technology>
  3653. </technologies>
  3654. </device>
  3655. <device name="LOCK" package="1X02_LOCK">
  3656. <connects>
  3657. <connect gate="G$1" pin="1" pad="1"/>
  3658. <connect gate="G$1" pin="2" pad="2"/>
  3659. </connects>
  3660. <package3dinstances>
  3661. <package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/>
  3662. </package3dinstances>
  3663. <technologies>
  3664. <technology name=""/>
  3665. </technologies>
  3666. </device>
  3667. <device name="POLAR_LOCK" package="MOLEX-1X2_LOCK">
  3668. <connects>
  3669. <connect gate="G$1" pin="1" pad="1"/>
  3670. <connect gate="G$1" pin="2" pad="2"/>
  3671. </connects>
  3672. <package3dinstances>
  3673. <package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/>
  3674. </package3dinstances>
  3675. <technologies>
  3676. <technology name="">
  3677. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  3678. </technology>
  3679. </technologies>
  3680. </device>
  3681. <device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS">
  3682. <connects>
  3683. <connect gate="G$1" pin="1" pad="1"/>
  3684. <connect gate="G$1" pin="2" pad="2"/>
  3685. </connects>
  3686. <package3dinstances>
  3687. <package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/>
  3688. </package3dinstances>
  3689. <technologies>
  3690. <technology name=""/>
  3691. </technologies>
  3692. </device>
  3693. <device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK">
  3694. <connects>
  3695. <connect gate="G$1" pin="1" pad="1"/>
  3696. <connect gate="G$1" pin="2" pad="2"/>
  3697. </connects>
  3698. <package3dinstances>
  3699. <package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/>
  3700. </package3dinstances>
  3701. <technologies>
  3702. <technology name="">
  3703. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  3704. </technology>
  3705. </technologies>
  3706. </device>
  3707. <device name="PTH3" package="1X02_LONGPADS">
  3708. <connects>
  3709. <connect gate="G$1" pin="1" pad="1"/>
  3710. <connect gate="G$1" pin="2" pad="2"/>
  3711. </connects>
  3712. <package3dinstances>
  3713. <package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/>
  3714. </package3dinstances>
  3715. <technologies>
  3716. <technology name=""/>
  3717. </technologies>
  3718. </device>
  3719. <device name="1X02_NO_SILK" package="1X02_NO_SILK">
  3720. <connects>
  3721. <connect gate="G$1" pin="1" pad="1"/>
  3722. <connect gate="G$1" pin="2" pad="2"/>
  3723. </connects>
  3724. <package3dinstances>
  3725. <package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/>
  3726. </package3dinstances>
  3727. <technologies>
  3728. <technology name=""/>
  3729. </technologies>
  3730. </device>
  3731. <device name="JST-PTH-2" package="JST-2-PTH">
  3732. <connects>
  3733. <connect gate="G$1" pin="1" pad="1"/>
  3734. <connect gate="G$1" pin="2" pad="2"/>
  3735. </connects>
  3736. <package3dinstances>
  3737. <package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/>
  3738. </package3dinstances>
  3739. <technologies>
  3740. <technology name="">
  3741. <attribute name="PROD_ID" value="CONN-09863" constant="no"/>
  3742. <attribute name="SKU" value="PRT-09914" constant="no"/>
  3743. </technology>
  3744. </technologies>
  3745. </device>
  3746. <device name="PTH4" package="1X02_XTRA_BIG">
  3747. <connects>
  3748. <connect gate="G$1" pin="1" pad="1"/>
  3749. <connect gate="G$1" pin="2" pad="2"/>
  3750. </connects>
  3751. <package3dinstances>
  3752. <package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/>
  3753. </package3dinstances>
  3754. <technologies>
  3755. <technology name=""/>
  3756. </technologies>
  3757. </device>
  3758. <device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY">
  3759. <connects>
  3760. <connect gate="G$1" pin="1" pad="1"/>
  3761. <connect gate="G$1" pin="2" pad="2"/>
  3762. </connects>
  3763. <package3dinstances>
  3764. <package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/>
  3765. </package3dinstances>
  3766. <technologies>
  3767. <technology name=""/>
  3768. </technologies>
  3769. </device>
  3770. <device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS">
  3771. <connects>
  3772. <connect gate="G$1" pin="1" pad="1"/>
  3773. <connect gate="G$1" pin="2" pad="2"/>
  3774. </connects>
  3775. <package3dinstances>
  3776. <package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/>
  3777. </package3dinstances>
  3778. <technologies>
  3779. <technology name="">
  3780. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  3781. </technology>
  3782. </technologies>
  3783. </device>
  3784. <device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS">
  3785. <connects>
  3786. <connect gate="G$1" pin="1" pad="1"/>
  3787. <connect gate="G$1" pin="2" pad="2"/>
  3788. </connects>
  3789. <package3dinstances>
  3790. <package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/>
  3791. </package3dinstances>
  3792. <technologies>
  3793. <technology name=""/>
  3794. </technologies>
  3795. </device>
  3796. <device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT">
  3797. <connects>
  3798. <connect gate="G$1" pin="1" pad="1"/>
  3799. <connect gate="G$1" pin="2" pad="2"/>
  3800. </connects>
  3801. <package3dinstances>
  3802. <package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/>
  3803. </package3dinstances>
  3804. <technologies>
  3805. <technology name=""/>
  3806. </technologies>
  3807. </device>
  3808. <device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2">
  3809. <connects>
  3810. <connect gate="G$1" pin="1" pad="1"/>
  3811. <connect gate="G$1" pin="2" pad="2"/>
  3812. </connects>
  3813. <package3dinstances>
  3814. <package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/>
  3815. </package3dinstances>
  3816. <technologies>
  3817. <technology name=""/>
  3818. </technologies>
  3819. </device>
  3820. <device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM">
  3821. <connects>
  3822. <connect gate="G$1" pin="1" pad="P1"/>
  3823. <connect gate="G$1" pin="2" pad="P2"/>
  3824. </connects>
  3825. <package3dinstances>
  3826. <package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/>
  3827. </package3dinstances>
  3828. <technologies>
  3829. <technology name=""/>
  3830. </technologies>
  3831. </device>
  3832. <device name="SMALL_POKEHOME" package="1X02_POKEHOME">
  3833. <connects>
  3834. <connect gate="G$1" pin="1" pad="P1 P3"/>
  3835. <connect gate="G$1" pin="2" pad="P2 P4"/>
  3836. </connects>
  3837. <package3dinstances>
  3838. <package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/>
  3839. </package3dinstances>
  3840. <technologies>
  3841. <technology name="">
  3842. <attribute name="PROD_ID" value="CONN-13512"/>
  3843. </technology>
  3844. </technologies>
  3845. </device>
  3846. <device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE">
  3847. <connects>
  3848. <connect gate="G$1" pin="1" pad="1"/>
  3849. <connect gate="G$1" pin="2" pad="2"/>
  3850. </connects>
  3851. <package3dinstances>
  3852. <package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/>
  3853. </package3dinstances>
  3854. <technologies>
  3855. <technology name="">
  3856. <attribute name="PROD_ID" value="CONN-13700"/>
  3857. </technology>
  3858. </technologies>
  3859. </device>
  3860. </devices>
  3861. </deviceset>
  3862. <deviceset name="CONN_06" urn="urn:adsk.eagle:component:38332/1" prefix="J" uservalue="yes" library_version="1">
  3863. <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;
  3864. &lt;p&gt;&lt;/p&gt;
  3865. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  3866. &lt;ul&gt;
  3867. &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;
  3868. &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;
  3869. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  3870. &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;
  3871. &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;
  3872. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/9280"&gt; Arduino Stackable Header - 6 Pin&lt;/a&gt; (PRT-09280)&lt;/li&gt;
  3873. &lt;/ul&gt;
  3874. &lt;p&gt;&lt;/p&gt;
  3875. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  3876. &lt;ul&gt;
  3877. &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;
  3878. &lt;/ul&gt;
  3879. &lt;p&gt;&lt;/p&gt;
  3880. &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;
  3881. &lt;ul&gt;
  3882. &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;
  3883. &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;
  3884. &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;
  3885. &lt;p&gt;&lt;/p&gt;
  3886. &lt;/ul&gt;</description>
  3887. <gates>
  3888. <gate name="G$1" symbol="CONN_06" x="-2.54" y="0"/>
  3889. </gates>
  3890. <devices>
  3891. <device name="SILK_FEMALE_PTH" package="1X06">
  3892. <connects>
  3893. <connect gate="G$1" pin="1" pad="1"/>
  3894. <connect gate="G$1" pin="2" pad="2"/>
  3895. <connect gate="G$1" pin="3" pad="3"/>
  3896. <connect gate="G$1" pin="4" pad="4"/>
  3897. <connect gate="G$1" pin="5" pad="5"/>
  3898. <connect gate="G$1" pin="6" pad="6"/>
  3899. </connects>
  3900. <package3dinstances>
  3901. <package3dinstance package3d_urn="urn:adsk.eagle:package:38009/1"/>
  3902. </package3dinstances>
  3903. <technologies>
  3904. <technology name="">
  3905. <attribute name="PROD_ID" value="CONN-08437"/>
  3906. </technology>
  3907. </technologies>
  3908. </device>
  3909. <device name="POLAR" package="MOLEX-1X6">
  3910. <connects>
  3911. <connect gate="G$1" pin="1" pad="1"/>
  3912. <connect gate="G$1" pin="2" pad="2"/>
  3913. <connect gate="G$1" pin="3" pad="3"/>
  3914. <connect gate="G$1" pin="4" pad="4"/>
  3915. <connect gate="G$1" pin="5" pad="5"/>
  3916. <connect gate="G$1" pin="6" pad="6"/>
  3917. </connects>
  3918. <package3dinstances>
  3919. <package3dinstance package3d_urn="urn:adsk.eagle:package:38117/1"/>
  3920. </package3dinstances>
  3921. <technologies>
  3922. <technology name=""/>
  3923. </technologies>
  3924. </device>
  3925. <device name="RA" package="MOLEX-1X6-RA">
  3926. <connects>
  3927. <connect gate="G$1" pin="1" pad="1"/>
  3928. <connect gate="G$1" pin="2" pad="2"/>
  3929. <connect gate="G$1" pin="3" pad="3"/>
  3930. <connect gate="G$1" pin="4" pad="4"/>
  3931. <connect gate="G$1" pin="5" pad="5"/>
  3932. <connect gate="G$1" pin="6" pad="6"/>
  3933. </connects>
  3934. <package3dinstances>
  3935. <package3dinstance package3d_urn="urn:adsk.eagle:package:38118/1"/>
  3936. </package3dinstances>
  3937. <technologies>
  3938. <technology name=""/>
  3939. </technologies>
  3940. </device>
  3941. <device name="SMD" package="1X06-SMD_RA_MALE">
  3942. <connects>
  3943. <connect gate="G$1" pin="1" pad="1"/>
  3944. <connect gate="G$1" pin="2" pad="2"/>
  3945. <connect gate="G$1" pin="3" pad="3"/>
  3946. <connect gate="G$1" pin="4" pad="4"/>
  3947. <connect gate="G$1" pin="5" pad="5"/>
  3948. <connect gate="G$1" pin="6" pad="6"/>
  3949. </connects>
  3950. <package3dinstances>
  3951. <package3dinstance package3d_urn="urn:adsk.eagle:package:38004/1"/>
  3952. </package3dinstances>
  3953. <technologies>
  3954. <technology name="">
  3955. <attribute name="PROD_ID" value="CONN-08971" constant="no"/>
  3956. <attribute name="VALUE" value="RA 6Pin SMD" constant="no"/>
  3957. </technology>
  3958. </technologies>
  3959. </device>
  3960. <device name="LOCK" package="1X06_LOCK">
  3961. <connects>
  3962. <connect gate="G$1" pin="1" pad="1"/>
  3963. <connect gate="G$1" pin="2" pad="2"/>
  3964. <connect gate="G$1" pin="3" pad="3"/>
  3965. <connect gate="G$1" pin="4" pad="4"/>
  3966. <connect gate="G$1" pin="5" pad="5"/>
  3967. <connect gate="G$1" pin="6" pad="6"/>
  3968. </connects>
  3969. <package3dinstances>
  3970. <package3dinstance package3d_urn="urn:adsk.eagle:package:38002/1"/>
  3971. </package3dinstances>
  3972. <technologies>
  3973. <technology name=""/>
  3974. </technologies>
  3975. </device>
  3976. <device name="LOCK_LONGPADS" package="1X06_LOCK_LONGPADS">
  3977. <connects>
  3978. <connect gate="G$1" pin="1" pad="1"/>
  3979. <connect gate="G$1" pin="2" pad="2"/>
  3980. <connect gate="G$1" pin="3" pad="3"/>
  3981. <connect gate="G$1" pin="4" pad="4"/>
  3982. <connect gate="G$1" pin="5" pad="5"/>
  3983. <connect gate="G$1" pin="6" pad="6"/>
  3984. </connects>
  3985. <package3dinstances>
  3986. <package3dinstance package3d_urn="urn:adsk.eagle:package:38121/1"/>
  3987. </package3dinstances>
  3988. <technologies>
  3989. <technology name=""/>
  3990. </technologies>
  3991. </device>
  3992. <device name="POLAR_LOCK" package="MOLEX-1X6_LOCK">
  3993. <connects>
  3994. <connect gate="G$1" pin="1" pad="1"/>
  3995. <connect gate="G$1" pin="2" pad="2"/>
  3996. <connect gate="G$1" pin="3" pad="3"/>
  3997. <connect gate="G$1" pin="4" pad="4"/>
  3998. <connect gate="G$1" pin="5" pad="5"/>
  3999. <connect gate="G$1" pin="6" pad="6"/>
  4000. </connects>
  4001. <package3dinstances>
  4002. <package3dinstance package3d_urn="urn:adsk.eagle:package:38123/1"/>
  4003. </package3dinstances>
  4004. <technologies>
  4005. <technology name=""/>
  4006. </technologies>
  4007. </device>
  4008. <device name="RA_LOCK" package="MOLEX_1X6_RA_LOCK">
  4009. <connects>
  4010. <connect gate="G$1" pin="1" pad="1"/>
  4011. <connect gate="G$1" pin="2" pad="2"/>
  4012. <connect gate="G$1" pin="3" pad="3"/>
  4013. <connect gate="G$1" pin="4" pad="4"/>
  4014. <connect gate="G$1" pin="5" pad="5"/>
  4015. <connect gate="G$1" pin="6" pad="6"/>
  4016. </connects>
  4017. <package3dinstances>
  4018. <package3dinstance package3d_urn="urn:adsk.eagle:package:37992/1"/>
  4019. </package3dinstances>
  4020. <technologies>
  4021. <technology name=""/>
  4022. </technologies>
  4023. </device>
  4024. <device name="FEMALE_LOCK" package="1X06_FEMALE_LOCK.010">
  4025. <connects>
  4026. <connect gate="G$1" pin="1" pad="1"/>
  4027. <connect gate="G$1" pin="2" pad="2"/>
  4028. <connect gate="G$1" pin="3" pad="3"/>
  4029. <connect gate="G$1" pin="4" pad="4"/>
  4030. <connect gate="G$1" pin="5" pad="5"/>
  4031. <connect gate="G$1" pin="6" pad="6"/>
  4032. </connects>
  4033. <package3dinstances>
  4034. <package3dinstance package3d_urn="urn:adsk.eagle:package:38124/1"/>
  4035. </package3dinstances>
  4036. <technologies>
  4037. <technology name=""/>
  4038. </technologies>
  4039. </device>
  4040. <device name="LONGPADS" package="1X06_LONGPADS">
  4041. <connects>
  4042. <connect gate="G$1" pin="1" pad="1"/>
  4043. <connect gate="G$1" pin="2" pad="2"/>
  4044. <connect gate="G$1" pin="3" pad="3"/>
  4045. <connect gate="G$1" pin="4" pad="4"/>
  4046. <connect gate="G$1" pin="5" pad="5"/>
  4047. <connect gate="G$1" pin="6" pad="6"/>
  4048. </connects>
  4049. <package3dinstances>
  4050. <package3dinstance package3d_urn="urn:adsk.eagle:package:37991/1"/>
  4051. </package3dinstances>
  4052. <technologies>
  4053. <technology name=""/>
  4054. </technologies>
  4055. </device>
  4056. <device name="3.5MM-6" package="SCREWTERMINAL-3.5MM-6">
  4057. <connects>
  4058. <connect gate="G$1" pin="1" pad="1"/>
  4059. <connect gate="G$1" pin="2" pad="2"/>
  4060. <connect gate="G$1" pin="3" pad="3"/>
  4061. <connect gate="G$1" pin="4" pad="4"/>
  4062. <connect gate="G$1" pin="5" pad="5"/>
  4063. <connect gate="G$1" pin="6" pad="6"/>
  4064. </connects>
  4065. <package3dinstances>
  4066. <package3dinstance package3d_urn="urn:adsk.eagle:package:38122/1"/>
  4067. </package3dinstances>
  4068. <technologies>
  4069. <technology name=""/>
  4070. </technologies>
  4071. </device>
  4072. <device name="SMD-FEMALE-V2" package="1X06-SMD-FEMALE">
  4073. <connects>
  4074. <connect gate="G$1" pin="1" pad="1"/>
  4075. <connect gate="G$1" pin="2" pad="2"/>
  4076. <connect gate="G$1" pin="3" pad="3"/>
  4077. <connect gate="G$1" pin="4" pad="4"/>
  4078. <connect gate="G$1" pin="5" pad="5"/>
  4079. <connect gate="G$1" pin="6" pad="6"/>
  4080. </connects>
  4081. <package3dinstances>
  4082. <package3dinstance package3d_urn="urn:adsk.eagle:package:38125/1"/>
  4083. </package3dinstances>
  4084. <technologies>
  4085. <technology name="">
  4086. <attribute name="PROD_ID" value="CONN-09668"/>
  4087. </technology>
  4088. </technologies>
  4089. </device>
  4090. <device name="POGOPIN_HOLES_ONLY" package="1X06_HOLES_ONLY">
  4091. <connects>
  4092. <connect gate="G$1" pin="1" pad="1"/>
  4093. <connect gate="G$1" pin="2" pad="2"/>
  4094. <connect gate="G$1" pin="3" pad="3"/>
  4095. <connect gate="G$1" pin="4" pad="4"/>
  4096. <connect gate="G$1" pin="5" pad="5"/>
  4097. <connect gate="G$1" pin="6" pad="6"/>
  4098. </connects>
  4099. <package3dinstances>
  4100. <package3dinstance package3d_urn="urn:adsk.eagle:package:38126/1"/>
  4101. </package3dinstances>
  4102. <technologies>
  4103. <technology name="">
  4104. <attribute name="PROD_ID" value="CONN-08437"/>
  4105. </technology>
  4106. </technologies>
  4107. </device>
  4108. <device name="SMD-STRAIGHT-FEMALE" package="1X06_SMD_STRAIGHT">
  4109. <connects>
  4110. <connect gate="G$1" pin="1" pad="1"/>
  4111. <connect gate="G$1" pin="2" pad="2"/>
  4112. <connect gate="G$1" pin="3" pad="3"/>
  4113. <connect gate="G$1" pin="4" pad="4"/>
  4114. <connect gate="G$1" pin="5" pad="5"/>
  4115. <connect gate="G$1" pin="6" pad="6"/>
  4116. </connects>
  4117. <package3dinstances>
  4118. <package3dinstance package3d_urn="urn:adsk.eagle:package:38139/1"/>
  4119. </package3dinstances>
  4120. <technologies>
  4121. <technology name="">
  4122. <attribute name="PROD_ID" value="CONN-10203"/>
  4123. </technology>
  4124. </technologies>
  4125. </device>
  4126. <device name="SMD-STRAIGHT-ALT-FEMALE" package="1X06_SMD_STRAIGHT_ALT">
  4127. <connects>
  4128. <connect gate="G$1" pin="1" pad="1"/>
  4129. <connect gate="G$1" pin="2" pad="2"/>
  4130. <connect gate="G$1" pin="3" pad="3"/>
  4131. <connect gate="G$1" pin="4" pad="4"/>
  4132. <connect gate="G$1" pin="5" pad="5"/>
  4133. <connect gate="G$1" pin="6" pad="6"/>
  4134. </connects>
  4135. <package3dinstances>
  4136. <package3dinstance package3d_urn="urn:adsk.eagle:package:38141/1"/>
  4137. </package3dinstances>
  4138. <technologies>
  4139. <technology name="">
  4140. <attribute name="PROD_ID" value="CONN-10203"/>
  4141. </technology>
  4142. </technologies>
  4143. </device>
  4144. <device name="SMD-STRAIGHT-COMBO-FEMALE" package="1X06_SMD_STRAIGHT_COMBO">
  4145. <connects>
  4146. <connect gate="G$1" pin="1" pad="1"/>
  4147. <connect gate="G$1" pin="2" pad="2"/>
  4148. <connect gate="G$1" pin="3" pad="3"/>
  4149. <connect gate="G$1" pin="4" pad="4"/>
  4150. <connect gate="G$1" pin="5" pad="5"/>
  4151. <connect gate="G$1" pin="6" pad="6"/>
  4152. </connects>
  4153. <package3dinstances>
  4154. <package3dinstance package3d_urn="urn:adsk.eagle:package:38127/1"/>
  4155. </package3dinstances>
  4156. <technologies>
  4157. <technology name="">
  4158. <attribute name="PROD_ID" value="CONN-10203"/>
  4159. </technology>
  4160. </technologies>
  4161. </device>
  4162. <device name="SMD_MALE" package="1X06_SMD_MALE">
  4163. <connects>
  4164. <connect gate="G$1" pin="1" pad="1"/>
  4165. <connect gate="G$1" pin="2" pad="2"/>
  4166. <connect gate="G$1" pin="3" pad="3"/>
  4167. <connect gate="G$1" pin="4" pad="4"/>
  4168. <connect gate="G$1" pin="5" pad="5"/>
  4169. <connect gate="G$1" pin="6" pad="6"/>
  4170. </connects>
  4171. <package3dinstances>
  4172. <package3dinstance package3d_urn="urn:adsk.eagle:package:38128/1"/>
  4173. </package3dinstances>
  4174. <technologies>
  4175. <technology name="">
  4176. <attribute name="PROD_ID" value="CONN-11293"/>
  4177. </technology>
  4178. </technologies>
  4179. </device>
  4180. <device name="SMD-1MM" package="1X06-1MM">
  4181. <connects>
  4182. <connect gate="G$1" pin="1" pad="1"/>
  4183. <connect gate="G$1" pin="2" pad="2"/>
  4184. <connect gate="G$1" pin="3" pad="3"/>
  4185. <connect gate="G$1" pin="4" pad="4"/>
  4186. <connect gate="G$1" pin="5" pad="5"/>
  4187. <connect gate="G$1" pin="6" pad="6"/>
  4188. </connects>
  4189. <package3dinstances>
  4190. <package3dinstance package3d_urn="urn:adsk.eagle:package:38023/1"/>
  4191. </package3dinstances>
  4192. <technologies>
  4193. <technology name="">
  4194. <attribute name="PROD_ID" value="CONN-08249" constant="no"/>
  4195. <attribute name="SF_ID" value="GPS-00579" constant="no"/>
  4196. </technology>
  4197. </technologies>
  4198. </device>
  4199. <device name="NO_SILK_FEMALE_PTH" package="1X06_NO_SILK">
  4200. <connects>
  4201. <connect gate="G$1" pin="1" pad="1"/>
  4202. <connect gate="G$1" pin="2" pad="2"/>
  4203. <connect gate="G$1" pin="3" pad="3"/>
  4204. <connect gate="G$1" pin="4" pad="4"/>
  4205. <connect gate="G$1" pin="5" pad="5"/>
  4206. <connect gate="G$1" pin="6" pad="6"/>
  4207. </connects>
  4208. <package3dinstances>
  4209. <package3dinstance package3d_urn="urn:adsk.eagle:package:38130/1"/>
  4210. </package3dinstances>
  4211. <technologies>
  4212. <technology name="">
  4213. <attribute name="PROD_ID" value="CONN-08437"/>
  4214. </technology>
  4215. </technologies>
  4216. </device>
  4217. <device name="1.27MM" package="1X06_1.27MM">
  4218. <connects>
  4219. <connect gate="G$1" pin="1" pad="1"/>
  4220. <connect gate="G$1" pin="2" pad="2"/>
  4221. <connect gate="G$1" pin="3" pad="3"/>
  4222. <connect gate="G$1" pin="4" pad="4"/>
  4223. <connect gate="G$1" pin="5" pad="5"/>
  4224. <connect gate="G$1" pin="6" pad="6"/>
  4225. </connects>
  4226. <package3dinstances>
  4227. <package3dinstance package3d_urn="urn:adsk.eagle:package:38131/1"/>
  4228. </package3dinstances>
  4229. <technologies>
  4230. <technology name=""/>
  4231. </technologies>
  4232. </device>
  4233. <device name="NO_SILK_NO_POP" package="1X06_NO_SILK">
  4234. <connects>
  4235. <connect gate="G$1" pin="1" pad="1"/>
  4236. <connect gate="G$1" pin="2" pad="2"/>
  4237. <connect gate="G$1" pin="3" pad="3"/>
  4238. <connect gate="G$1" pin="4" pad="4"/>
  4239. <connect gate="G$1" pin="5" pad="5"/>
  4240. <connect gate="G$1" pin="6" pad="6"/>
  4241. </connects>
  4242. <package3dinstances>
  4243. <package3dinstance package3d_urn="urn:adsk.eagle:package:38130/1"/>
  4244. </package3dinstances>
  4245. <technologies>
  4246. <technology name=""/>
  4247. </technologies>
  4248. </device>
  4249. </devices>
  4250. </deviceset>
  4251. <deviceset name="CONN_05" urn="urn:adsk.eagle:component:38330/1" prefix="J" uservalue="yes" library_version="1">
  4252. <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;
  4253. &lt;p&gt;&lt;/p&gt;
  4254. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  4255. &lt;ul&gt;
  4256. &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;
  4257. &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;
  4258. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  4259. &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;
  4260. &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;
  4261. &lt;/ul&gt;
  4262. &lt;p&gt;&lt;/p&gt;
  4263. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  4264. &lt;ul&gt;
  4265. &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;
  4266. &lt;/ul&gt;
  4267. &lt;p&gt;&lt;/p&gt;
  4268. &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;
  4269. &lt;ul&gt;
  4270. &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;
  4271. &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;
  4272. &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;
  4273. &lt;p&gt;&lt;/p&gt;
  4274. &lt;/ul&gt;
  4275. &lt;p&gt;&lt;/p&gt;
  4276. &lt;b&gt;Special notes:&lt;/b&gt;
  4277. &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>
  4278. <gates>
  4279. <gate name="G$1" symbol="CONN_05" x="-2.54" y="0"/>
  4280. </gates>
  4281. <devices>
  4282. <device name="" package="1X05">
  4283. <connects>
  4284. <connect gate="G$1" pin="1" pad="1"/>
  4285. <connect gate="G$1" pin="2" pad="2"/>
  4286. <connect gate="G$1" pin="3" pad="3"/>
  4287. <connect gate="G$1" pin="4" pad="4"/>
  4288. <connect gate="G$1" pin="5" pad="5"/>
  4289. </connects>
  4290. <package3dinstances>
  4291. <package3dinstance package3d_urn="urn:adsk.eagle:package:38104/1"/>
  4292. </package3dinstances>
  4293. <technologies>
  4294. <technology name=""/>
  4295. </technologies>
  4296. </device>
  4297. <device name="1.27MM" package="1X05_1.27MM">
  4298. <connects>
  4299. <connect gate="G$1" pin="1" pad="1"/>
  4300. <connect gate="G$1" pin="2" pad="2"/>
  4301. <connect gate="G$1" pin="3" pad="3"/>
  4302. <connect gate="G$1" pin="4" pad="4"/>
  4303. <connect gate="G$1" pin="5" pad="5"/>
  4304. </connects>
  4305. <package3dinstances>
  4306. <package3dinstance package3d_urn="urn:adsk.eagle:package:38110/1"/>
  4307. </package3dinstances>
  4308. <technologies>
  4309. <technology name=""/>
  4310. </technologies>
  4311. </device>
  4312. <device name="LOCK" package="1X05_LOCK">
  4313. <connects>
  4314. <connect gate="G$1" pin="1" pad="1"/>
  4315. <connect gate="G$1" pin="2" pad="2"/>
  4316. <connect gate="G$1" pin="3" pad="3"/>
  4317. <connect gate="G$1" pin="4" pad="4"/>
  4318. <connect gate="G$1" pin="5" pad="5"/>
  4319. </connects>
  4320. <package3dinstances>
  4321. <package3dinstance package3d_urn="urn:adsk.eagle:package:38105/1"/>
  4322. </package3dinstances>
  4323. <technologies>
  4324. <technology name=""/>
  4325. </technologies>
  4326. </device>
  4327. <device name="LOCK_LONGPADS" package="1X05_LOCK_LONGPADS">
  4328. <connects>
  4329. <connect gate="G$1" pin="1" pad="1"/>
  4330. <connect gate="G$1" pin="2" pad="2"/>
  4331. <connect gate="G$1" pin="3" pad="3"/>
  4332. <connect gate="G$1" pin="4" pad="4"/>
  4333. <connect gate="G$1" pin="5" pad="5"/>
  4334. </connects>
  4335. <package3dinstances>
  4336. <package3dinstance package3d_urn="urn:adsk.eagle:package:38107/1"/>
  4337. </package3dinstances>
  4338. <technologies>
  4339. <technology name=""/>
  4340. </technologies>
  4341. </device>
  4342. <device name="PTH_LONGPADS" package="1X05_LONGPADS">
  4343. <connects>
  4344. <connect gate="G$1" pin="1" pad="1"/>
  4345. <connect gate="G$1" pin="2" pad="2"/>
  4346. <connect gate="G$1" pin="3" pad="3"/>
  4347. <connect gate="G$1" pin="4" pad="4"/>
  4348. <connect gate="G$1" pin="5" pad="5"/>
  4349. </connects>
  4350. <package3dinstances>
  4351. <package3dinstance package3d_urn="urn:adsk.eagle:package:38109/1"/>
  4352. </package3dinstances>
  4353. <technologies>
  4354. <technology name=""/>
  4355. </technologies>
  4356. </device>
  4357. <device name="SMD" package="1X05_1MM">
  4358. <connects>
  4359. <connect gate="G$1" pin="1" pad="1"/>
  4360. <connect gate="G$1" pin="2" pad="2"/>
  4361. <connect gate="G$1" pin="3" pad="3"/>
  4362. <connect gate="G$1" pin="4" pad="4"/>
  4363. <connect gate="G$1" pin="5" pad="5"/>
  4364. </connects>
  4365. <package3dinstances>
  4366. <package3dinstance package3d_urn="urn:adsk.eagle:package:38026/1"/>
  4367. </package3dinstances>
  4368. <technologies>
  4369. <technology name="">
  4370. <attribute name="PROD_ID" value="CONN-08528" constant="no"/>
  4371. <attribute name="SF_ID" value="GPS-08288" constant="no"/>
  4372. </technology>
  4373. </technologies>
  4374. </device>
  4375. <device name="SMD2" package="1X05_1MM_RA">
  4376. <connects>
  4377. <connect gate="G$1" pin="1" pad="1"/>
  4378. <connect gate="G$1" pin="2" pad="2"/>
  4379. <connect gate="G$1" pin="3" pad="3"/>
  4380. <connect gate="G$1" pin="4" pad="4"/>
  4381. <connect gate="G$1" pin="5" pad="5"/>
  4382. </connects>
  4383. <package3dinstances>
  4384. <package3dinstance package3d_urn="urn:adsk.eagle:package:38106/1"/>
  4385. </package3dinstances>
  4386. <technologies>
  4387. <technology name=""/>
  4388. </technologies>
  4389. </device>
  4390. <device name="NO_SILK" package="1X05_NO_SILK">
  4391. <connects>
  4392. <connect gate="G$1" pin="1" pad="1"/>
  4393. <connect gate="G$1" pin="2" pad="2"/>
  4394. <connect gate="G$1" pin="3" pad="3"/>
  4395. <connect gate="G$1" pin="4" pad="4"/>
  4396. <connect gate="G$1" pin="5" pad="5"/>
  4397. </connects>
  4398. <package3dinstances>
  4399. <package3dinstance package3d_urn="urn:adsk.eagle:package:38108/1"/>
  4400. </package3dinstances>
  4401. <technologies>
  4402. <technology name=""/>
  4403. </technologies>
  4404. </device>
  4405. <device name="JST" package="JST-5-PTH">
  4406. <connects>
  4407. <connect gate="G$1" pin="1" pad="1"/>
  4408. <connect gate="G$1" pin="2" pad="2"/>
  4409. <connect gate="G$1" pin="3" pad="3"/>
  4410. <connect gate="G$1" pin="4" pad="4"/>
  4411. <connect gate="G$1" pin="5" pad="5"/>
  4412. </connects>
  4413. <package3dinstances>
  4414. <package3dinstance package3d_urn="urn:adsk.eagle:package:38120/1"/>
  4415. </package3dinstances>
  4416. <technologies>
  4417. <technology name="">
  4418. <attribute name="SF_ID" value="PRT-09917" constant="no"/>
  4419. </technology>
  4420. </technologies>
  4421. </device>
  4422. <device name="JST-VERT" package="JST-5-PTH-VERT">
  4423. <connects>
  4424. <connect gate="G$1" pin="1" pad="1"/>
  4425. <connect gate="G$1" pin="2" pad="2"/>
  4426. <connect gate="G$1" pin="3" pad="3"/>
  4427. <connect gate="G$1" pin="4" pad="4"/>
  4428. <connect gate="G$1" pin="5" pad="5"/>
  4429. </connects>
  4430. <package3dinstances>
  4431. <package3dinstance package3d_urn="urn:adsk.eagle:package:38111/1"/>
  4432. </package3dinstances>
  4433. <technologies>
  4434. <technology name=""/>
  4435. </technologies>
  4436. </device>
  4437. <device name="SCREW" package="SCREWTERMINAL-3.5MM-5">
  4438. <connects>
  4439. <connect gate="G$1" pin="1" pad="1"/>
  4440. <connect gate="G$1" pin="2" pad="2"/>
  4441. <connect gate="G$1" pin="3" pad="3"/>
  4442. <connect gate="G$1" pin="4" pad="4"/>
  4443. <connect gate="G$1" pin="5" pad="5"/>
  4444. </connects>
  4445. <package3dinstances>
  4446. <package3dinstance package3d_urn="urn:adsk.eagle:package:38112/1"/>
  4447. </package3dinstances>
  4448. <technologies>
  4449. <technology name="">
  4450. <attribute name="PROD_ID" value="Combine 8288+8399" constant="no"/>
  4451. </technology>
  4452. </technologies>
  4453. </device>
  4454. </devices>
  4455. </deviceset>
  4456. <deviceset name="CONN_03" urn="urn:adsk.eagle:component:38324/1" prefix="J" uservalue="yes" library_version="1">
  4457. <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;
  4458. &lt;p&gt;&lt;/p&gt;
  4459. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  4460. &lt;ul&gt;
  4461. &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;
  4462. &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;
  4463. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  4464. &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;
  4465. &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;
  4466. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/13875"&gt; Stackable Header - 3 Pin (Female, 0.1")&lt;/a&gt; (PRT-13875)&lt;/li&gt;
  4467. &lt;/ul&gt;
  4468. &lt;p&gt;&lt;/p&gt;
  4469. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  4470. &lt;ul&gt;
  4471. &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;
  4472. &lt;/ul&gt;
  4473. &lt;p&gt;&lt;/p&gt;
  4474. &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;
  4475. &lt;ul&gt;
  4476. &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;
  4477. &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;
  4478. &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;
  4479. &lt;p&gt;&lt;/p&gt;
  4480. &lt;/ul&gt;
  4481. &lt;p&gt;&lt;/p&gt;
  4482. &lt;b&gt;Special notes:&lt;/b&gt;
  4483. &lt;p&gt; &lt;/p&gt;
  4484. &lt;p&gt; &lt;/p&gt; Molex polarized connector foot print use with SKU : PRT-08232 with associated crimp pins and housings.</description>
  4485. <gates>
  4486. <gate name="J$1" symbol="CONN_03" x="-2.54" y="0"/>
  4487. </gates>
  4488. <devices>
  4489. <device name="" package="1X03">
  4490. <connects>
  4491. <connect gate="J$1" pin="1" pad="1"/>
  4492. <connect gate="J$1" pin="2" pad="2"/>
  4493. <connect gate="J$1" pin="3" pad="3"/>
  4494. </connects>
  4495. <package3dinstances>
  4496. <package3dinstance package3d_urn="urn:adsk.eagle:package:38063/1"/>
  4497. </package3dinstances>
  4498. <technologies>
  4499. <technology name=""/>
  4500. </technologies>
  4501. </device>
  4502. <device name="POLAR" package="MOLEX-1X3">
  4503. <connects>
  4504. <connect gate="J$1" pin="1" pad="1"/>
  4505. <connect gate="J$1" pin="2" pad="2"/>
  4506. <connect gate="J$1" pin="3" pad="3"/>
  4507. </connects>
  4508. <package3dinstances>
  4509. <package3dinstance package3d_urn="urn:adsk.eagle:package:38064/1"/>
  4510. </package3dinstances>
  4511. <technologies>
  4512. <technology name="">
  4513. <attribute name="PROD_ID" value="CONN-08625" constant="no"/>
  4514. <attribute name="SF_ID" value="PRT-08096" constant="no"/>
  4515. </technology>
  4516. </technologies>
  4517. </device>
  4518. <device name="SCREW" package="SCREWTERMINAL-3.5MM-3">
  4519. <connects>
  4520. <connect gate="J$1" pin="1" pad="1"/>
  4521. <connect gate="J$1" pin="2" pad="2"/>
  4522. <connect gate="J$1" pin="3" pad="3"/>
  4523. </connects>
  4524. <package3dinstances>
  4525. <package3dinstance package3d_urn="urn:adsk.eagle:package:38072/1"/>
  4526. </package3dinstances>
  4527. <technologies>
  4528. <technology name="">
  4529. <attribute name="PROD_ID" value="CONN-08288" constant="no"/>
  4530. <attribute name="SF_ID" value="PRT-08235" constant="no"/>
  4531. </technology>
  4532. </technologies>
  4533. </device>
  4534. <device name="LOCK" package="1X03_LOCK">
  4535. <connects>
  4536. <connect gate="J$1" pin="1" pad="1"/>
  4537. <connect gate="J$1" pin="2" pad="2"/>
  4538. <connect gate="J$1" pin="3" pad="3"/>
  4539. </connects>
  4540. <package3dinstances>
  4541. <package3dinstance package3d_urn="urn:adsk.eagle:package:38071/1"/>
  4542. </package3dinstances>
  4543. <technologies>
  4544. <technology name=""/>
  4545. </technologies>
  4546. </device>
  4547. <device name="LOCK_LONGPADS" package="1X03_LOCK_LONGPADS">
  4548. <connects>
  4549. <connect gate="J$1" pin="1" pad="1"/>
  4550. <connect gate="J$1" pin="2" pad="2"/>
  4551. <connect gate="J$1" pin="3" pad="3"/>
  4552. </connects>
  4553. <package3dinstances>
  4554. <package3dinstance package3d_urn="urn:adsk.eagle:package:38065/1"/>
  4555. </package3dinstances>
  4556. <technologies>
  4557. <technology name=""/>
  4558. </technologies>
  4559. </device>
  4560. <device name="POLAR_LOCK" package="MOLEX-1X3_LOCK">
  4561. <connects>
  4562. <connect gate="J$1" pin="1" pad="1"/>
  4563. <connect gate="J$1" pin="2" pad="2"/>
  4564. <connect gate="J$1" pin="3" pad="3"/>
  4565. </connects>
  4566. <package3dinstances>
  4567. <package3dinstance package3d_urn="urn:adsk.eagle:package:38067/1"/>
  4568. </package3dinstances>
  4569. <technologies>
  4570. <technology name="">
  4571. <attribute name="PROD_ID" value="CONN-08625" constant="no"/>
  4572. <attribute name="SF_ID" value="PRT-08096" constant="no"/>
  4573. </technology>
  4574. </technologies>
  4575. </device>
  4576. <device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-3_LOCK.007S">
  4577. <connects>
  4578. <connect gate="J$1" pin="1" pad="1"/>
  4579. <connect gate="J$1" pin="2" pad="2"/>
  4580. <connect gate="J$1" pin="3" pad="3"/>
  4581. </connects>
  4582. <package3dinstances>
  4583. <package3dinstance package3d_urn="urn:adsk.eagle:package:38066/1"/>
  4584. </package3dinstances>
  4585. <technologies>
  4586. <technology name="">
  4587. <attribute name="PROD_ID" value="CONN-08288" constant="no"/>
  4588. <attribute name="SF_ID" value="PRT-08235" constant="no"/>
  4589. </technology>
  4590. </technologies>
  4591. </device>
  4592. <device name="1X03_NO_SILK" package="1X03_NO_SILK">
  4593. <connects>
  4594. <connect gate="J$1" pin="1" pad="1"/>
  4595. <connect gate="J$1" pin="2" pad="2"/>
  4596. <connect gate="J$1" pin="3" pad="3"/>
  4597. </connects>
  4598. <package3dinstances>
  4599. <package3dinstance package3d_urn="urn:adsk.eagle:package:38076/1"/>
  4600. </package3dinstances>
  4601. <technologies>
  4602. <technology name=""/>
  4603. </technologies>
  4604. </device>
  4605. <device name="LONGPADS" package="1X03_LONGPADS">
  4606. <connects>
  4607. <connect gate="J$1" pin="1" pad="1"/>
  4608. <connect gate="J$1" pin="2" pad="2"/>
  4609. <connect gate="J$1" pin="3" pad="3"/>
  4610. </connects>
  4611. <package3dinstances>
  4612. <package3dinstance package3d_urn="urn:adsk.eagle:package:38068/1"/>
  4613. </package3dinstances>
  4614. <technologies>
  4615. <technology name=""/>
  4616. </technologies>
  4617. </device>
  4618. <device name="JST-PTH" package="JST-3-PTH">
  4619. <connects>
  4620. <connect gate="J$1" pin="1" pad="1"/>
  4621. <connect gate="J$1" pin="2" pad="2"/>
  4622. <connect gate="J$1" pin="3" pad="3"/>
  4623. </connects>
  4624. <package3dinstances>
  4625. <package3dinstance package3d_urn="urn:adsk.eagle:package:38069/1"/>
  4626. </package3dinstances>
  4627. <technologies>
  4628. <technology name="">
  4629. <attribute name="PROD_ID" value="WIRE-10037" constant="no"/>
  4630. <attribute name="SF_ID" value="PRT-09915" constant="no"/>
  4631. </technology>
  4632. </technologies>
  4633. </device>
  4634. <device name="POGO_PIN_HOLES_ONLY" package="1X03_PP_HOLES_ONLY">
  4635. <connects>
  4636. <connect gate="J$1" pin="1" pad="1"/>
  4637. <connect gate="J$1" pin="2" pad="2"/>
  4638. <connect gate="J$1" pin="3" pad="3"/>
  4639. </connects>
  4640. <package3dinstances>
  4641. <package3dinstance package3d_urn="urn:adsk.eagle:package:38073/1"/>
  4642. </package3dinstances>
  4643. <technologies>
  4644. <technology name=""/>
  4645. </technologies>
  4646. </device>
  4647. <device name="-SCREW-5MM" package="SCREWTERMINAL-5MM-3">
  4648. <connects>
  4649. <connect gate="J$1" pin="1" pad="1"/>
  4650. <connect gate="J$1" pin="2" pad="2"/>
  4651. <connect gate="J$1" pin="3" pad="3"/>
  4652. </connects>
  4653. <package3dinstances>
  4654. <package3dinstance package3d_urn="urn:adsk.eagle:package:38070/1"/>
  4655. </package3dinstances>
  4656. <technologies>
  4657. <technology name="">
  4658. <attribute name="PROD_ID" value="CONN-10134" constant="no"/>
  4659. <attribute name="SF_SKU" value="PRT-08433" constant="no"/>
  4660. </technology>
  4661. </technologies>
  4662. </device>
  4663. <device name="LOCK_NO_SILK" package="1X03_LOCK_NO_SILK">
  4664. <connects>
  4665. <connect gate="J$1" pin="1" pad="1"/>
  4666. <connect gate="J$1" pin="2" pad="2"/>
  4667. <connect gate="J$1" pin="3" pad="3"/>
  4668. </connects>
  4669. <package3dinstances>
  4670. <package3dinstance package3d_urn="urn:adsk.eagle:package:38074/1"/>
  4671. </package3dinstances>
  4672. <technologies>
  4673. <technology name=""/>
  4674. </technologies>
  4675. </device>
  4676. <device name="JST-SMD" package="JST-3-SMD">
  4677. <connects>
  4678. <connect gate="J$1" pin="1" pad="1"/>
  4679. <connect gate="J$1" pin="2" pad="2"/>
  4680. <connect gate="J$1" pin="3" pad="3"/>
  4681. </connects>
  4682. <package3dinstances>
  4683. <package3dinstance package3d_urn="urn:adsk.eagle:package:38075/1"/>
  4684. </package3dinstances>
  4685. <technologies>
  4686. <technology name="">
  4687. <attribute name="PROD_ID" value="CONN-12591" constant="no"/>
  4688. <attribute name="VALUE" value="3-PIN SMD" constant="no"/>
  4689. </technology>
  4690. </technologies>
  4691. </device>
  4692. <device name="SMD" package="1X03-1MM-RA">
  4693. <connects>
  4694. <connect gate="J$1" pin="1" pad="1"/>
  4695. <connect gate="J$1" pin="2" pad="2"/>
  4696. <connect gate="J$1" pin="3" pad="3"/>
  4697. </connects>
  4698. <package3dinstances>
  4699. <package3dinstance package3d_urn="urn:adsk.eagle:package:38077/1"/>
  4700. </package3dinstances>
  4701. <technologies>
  4702. <technology name=""/>
  4703. </technologies>
  4704. </device>
  4705. <device name="SMD_RA_FEMALE" package="1X03_SMD_RA_FEMALE">
  4706. <connects>
  4707. <connect gate="J$1" pin="1" pad="1"/>
  4708. <connect gate="J$1" pin="2" pad="2"/>
  4709. <connect gate="J$1" pin="3" pad="3"/>
  4710. </connects>
  4711. <package3dinstances>
  4712. <package3dinstance package3d_urn="urn:adsk.eagle:package:38081/1"/>
  4713. </package3dinstances>
  4714. <technologies>
  4715. <technology name="">
  4716. <attribute name="PROD_ID" value="CONN-10926"/>
  4717. <attribute name="VALUE" value="1x3 RA Female .1&quot;"/>
  4718. </technology>
  4719. </technologies>
  4720. </device>
  4721. <device name="SMD_RA_MALE" package="1X03_SMD_RA_MALE">
  4722. <connects>
  4723. <connect gate="J$1" pin="1" pad="1"/>
  4724. <connect gate="J$1" pin="2" pad="2"/>
  4725. <connect gate="J$1" pin="3" pad="3"/>
  4726. </connects>
  4727. <package3dinstances>
  4728. <package3dinstance package3d_urn="urn:adsk.eagle:package:38078/1"/>
  4729. </package3dinstances>
  4730. <technologies>
  4731. <technology name="">
  4732. <attribute name="PROD_ID" value="CONN-10925"/>
  4733. </technology>
  4734. </technologies>
  4735. </device>
  4736. <device name="SMD_RA_MALE_POST" package="1X03_SMD_RA_MALE_POST">
  4737. <connects>
  4738. <connect gate="J$1" pin="1" pad="1"/>
  4739. <connect gate="J$1" pin="2" pad="2"/>
  4740. <connect gate="J$1" pin="3" pad="3"/>
  4741. </connects>
  4742. <package3dinstances>
  4743. <package3dinstance package3d_urn="urn:adsk.eagle:package:38079/1"/>
  4744. </package3dinstances>
  4745. <technologies>
  4746. <technology name=""/>
  4747. </technologies>
  4748. </device>
  4749. <device name="JST-PTH-VERT" package="JST-3-PTH-VERT">
  4750. <connects>
  4751. <connect gate="J$1" pin="1" pad="1"/>
  4752. <connect gate="J$1" pin="2" pad="2"/>
  4753. <connect gate="J$1" pin="3" pad="3"/>
  4754. </connects>
  4755. <package3dinstances>
  4756. <package3dinstance package3d_urn="urn:adsk.eagle:package:38080/1"/>
  4757. </package3dinstances>
  4758. <technologies>
  4759. <technology name="">
  4760. <attribute name="PROD_ID" value="CONN-13230" constant="no"/>
  4761. </technology>
  4762. </technologies>
  4763. </device>
  4764. <device name="1X03_SMD_RA_MALE_POST_SMALLER" package="1X03_SMD_RA_MALE_POST_SMALLER">
  4765. <connects>
  4766. <connect gate="J$1" pin="1" pad="1"/>
  4767. <connect gate="J$1" pin="2" pad="2"/>
  4768. <connect gate="J$1" pin="3" pad="3"/>
  4769. </connects>
  4770. <package3dinstances>
  4771. <package3dinstance package3d_urn="urn:adsk.eagle:package:38082/1"/>
  4772. </package3dinstances>
  4773. <technologies>
  4774. <technology name="">
  4775. <attribute name="PROD_ID" value="CONN-11912" constant="no"/>
  4776. </technology>
  4777. </technologies>
  4778. </device>
  4779. <device name="1X03_SMD_RA_MALE_POST_SMALLEST" package="1X03_SMD_RA_MALE_POST_SMALLEST">
  4780. <connects>
  4781. <connect gate="J$1" pin="1" pad="1"/>
  4782. <connect gate="J$1" pin="2" pad="2"/>
  4783. <connect gate="J$1" pin="3" pad="3"/>
  4784. </connects>
  4785. <package3dinstances>
  4786. <package3dinstance package3d_urn="urn:adsk.eagle:package:38083/1"/>
  4787. </package3dinstances>
  4788. <technologies>
  4789. <technology name=""/>
  4790. </technologies>
  4791. </device>
  4792. <device name="JST-PTH-NS" package="JST-3-PTH-NS">
  4793. <connects>
  4794. <connect gate="J$1" pin="1" pad="1"/>
  4795. <connect gate="J$1" pin="2" pad="2"/>
  4796. <connect gate="J$1" pin="3" pad="3"/>
  4797. </connects>
  4798. <package3dinstances>
  4799. <package3dinstance package3d_urn="urn:adsk.eagle:package:38084/1"/>
  4800. </package3dinstances>
  4801. <technologies>
  4802. <technology name=""/>
  4803. </technologies>
  4804. </device>
  4805. <device name="SCREW-NS" package="SCREWTERMINAL-3.5MM-3-NS">
  4806. <connects>
  4807. <connect gate="J$1" pin="1" pad="1"/>
  4808. <connect gate="J$1" pin="2" pad="2"/>
  4809. <connect gate="J$1" pin="3" pad="3"/>
  4810. </connects>
  4811. <package3dinstances>
  4812. <package3dinstance package3d_urn="urn:adsk.eagle:package:38088/1"/>
  4813. </package3dinstances>
  4814. <technologies>
  4815. <technology name=""/>
  4816. </technologies>
  4817. </device>
  4818. </devices>
  4819. </deviceset>
  4820. </devicesets>
  4821. </library>
  4822. <library name="Capacitor" urn="urn:adsk.eagle:library:16290819">
  4823. <description>&lt;B&gt;Capacitors - Fixed, Variable, Trimmers</description>
  4824. <packages>
  4825. <package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/2" library_version="4">
  4826. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  4827. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  4828. <wire x1="0.55" y1="0.6286" x2="-0.55" y2="0.6286" width="0.127" layer="21"/>
  4829. <wire x1="0.55" y1="-0.6286" x2="-0.55" y2="-0.6286" width="0.127" layer="21"/>
  4830. <wire x1="0.55" y1="-0.3" x2="-0.55" y2="-0.3" width="0.12" layer="51"/>
  4831. <wire x1="-0.55" y1="-0.3" x2="-0.55" y2="0.3" width="0.12" layer="51"/>
  4832. <wire x1="-0.55" y1="0.3" x2="0.55" y2="0.3" width="0.12" layer="51"/>
  4833. <wire x1="0.55" y1="0.3" x2="0.55" y2="-0.3" width="0.12" layer="51"/>
  4834. <smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  4835. <smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  4836. <text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4837. <text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4838. </package>
  4839. <package name="CAPC1110X102" urn="urn:adsk.eagle:footprint:16290845/2" library_version="4">
  4840. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  4841. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  4842. <wire x1="0.66" y1="0.9552" x2="-0.66" y2="0.9552" width="0.127" layer="21"/>
  4843. <wire x1="0.66" y1="-0.9552" x2="-0.66" y2="-0.9552" width="0.127" layer="21"/>
  4844. <wire x1="0.66" y1="-0.635" x2="-0.66" y2="-0.635" width="0.12" layer="51"/>
  4845. <wire x1="-0.66" y1="-0.635" x2="-0.66" y2="0.635" width="0.12" layer="51"/>
  4846. <wire x1="-0.66" y1="0.635" x2="0.66" y2="0.635" width="0.12" layer="51"/>
  4847. <wire x1="0.66" y1="0.635" x2="0.66" y2="-0.635" width="0.12" layer="51"/>
  4848. <smd name="1" x="-0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  4849. <smd name="2" x="0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  4850. <text x="0" y="1.5902" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4851. <text x="0" y="-1.5902" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4852. </package>
  4853. <package name="CAPC1608X85" urn="urn:adsk.eagle:footprint:16290847/2" library_version="4">
  4854. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  4855. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  4856. <wire x1="0.875" y1="0.7991" x2="-0.875" y2="0.7991" width="0.127" layer="21"/>
  4857. <wire x1="0.875" y1="-0.7991" x2="-0.875" y2="-0.7991" width="0.127" layer="21"/>
  4858. <wire x1="0.875" y1="-0.475" x2="-0.875" y2="-0.475" width="0.12" layer="51"/>
  4859. <wire x1="-0.875" y1="-0.475" x2="-0.875" y2="0.475" width="0.12" layer="51"/>
  4860. <wire x1="-0.875" y1="0.475" x2="0.875" y2="0.475" width="0.12" layer="51"/>
  4861. <wire x1="0.875" y1="0.475" x2="0.875" y2="-0.475" width="0.12" layer="51"/>
  4862. <smd name="1" x="-0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  4863. <smd name="2" x="0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  4864. <text x="0" y="1.4341" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4865. <text x="0" y="-1.4341" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4866. </package>
  4867. <package name="CAPC2012X110" urn="urn:adsk.eagle:footprint:16290848/2" library_version="4">
  4868. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  4869. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  4870. <wire x1="1.1" y1="1.0467" x2="-1.1" y2="1.0467" width="0.127" layer="21"/>
  4871. <wire x1="1.1" y1="-1.0467" x2="-1.1" y2="-1.0467" width="0.127" layer="21"/>
  4872. <wire x1="1.1" y1="-0.725" x2="-1.1" y2="-0.725" width="0.12" layer="51"/>
  4873. <wire x1="-1.1" y1="-0.725" x2="-1.1" y2="0.725" width="0.12" layer="51"/>
  4874. <wire x1="-1.1" y1="0.725" x2="1.1" y2="0.725" width="0.12" layer="51"/>
  4875. <wire x1="1.1" y1="0.725" x2="1.1" y2="-0.725" width="0.12" layer="51"/>
  4876. <smd name="1" x="-0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  4877. <smd name="2" x="0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  4878. <text x="0" y="1.6817" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4879. <text x="0" y="-1.6817" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4880. </package>
  4881. <package name="CAPC3216X135" urn="urn:adsk.eagle:footprint:16290836/2" library_version="4">
  4882. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  4883. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  4884. <wire x1="1.7" y1="1.2217" x2="-1.7" y2="1.2217" width="0.127" layer="21"/>
  4885. <wire x1="1.7" y1="-1.2217" x2="-1.7" y2="-1.2217" width="0.127" layer="21"/>
  4886. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  4887. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  4888. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  4889. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  4890. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  4891. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  4892. <text x="0" y="1.8567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4893. <text x="0" y="-1.8567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4894. </package>
  4895. <package name="CAPC3225X135" urn="urn:adsk.eagle:footprint:16290843/2" library_version="4">
  4896. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  4897. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  4898. <wire x1="1.7" y1="1.6717" x2="-1.7" y2="1.6717" width="0.127" layer="21"/>
  4899. <wire x1="1.7" y1="-1.6717" x2="-1.7" y2="-1.6717" width="0.12" layer="21"/>
  4900. <wire x1="1.7" y1="-1.35" x2="-1.7" y2="-1.35" width="0.12" layer="51"/>
  4901. <wire x1="-1.7" y1="-1.35" x2="-1.7" y2="1.35" width="0.12" layer="51"/>
  4902. <wire x1="-1.7" y1="1.35" x2="1.7" y2="1.35" width="0.12" layer="51"/>
  4903. <wire x1="1.7" y1="1.35" x2="1.7" y2="-1.35" width="0.12" layer="51"/>
  4904. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  4905. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  4906. <text x="0" y="2.3067" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4907. <text x="0" y="-2.3067" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4908. </package>
  4909. <package name="CAPC4532X135" urn="urn:adsk.eagle:footprint:16290841/2" library_version="4">
  4910. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  4911. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  4912. <wire x1="2.4" y1="2.0217" x2="-2.4" y2="2.0217" width="0.127" layer="21"/>
  4913. <wire x1="2.4" y1="-2.0217" x2="-2.4" y2="-2.0217" width="0.127" layer="21"/>
  4914. <wire x1="2.4" y1="-1.7" x2="-2.4" y2="-1.7" width="0.12" layer="51"/>
  4915. <wire x1="-2.4" y1="-1.7" x2="-2.4" y2="1.7" width="0.12" layer="51"/>
  4916. <wire x1="-2.4" y1="1.7" x2="2.4" y2="1.7" width="0.12" layer="51"/>
  4917. <wire x1="2.4" y1="1.7" x2="2.4" y2="-1.7" width="0.12" layer="51"/>
  4918. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  4919. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  4920. <text x="0" y="2.6567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4921. <text x="0" y="-2.6567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4922. </package>
  4923. <package name="CAPM3216X180" urn="urn:adsk.eagle:footprint:16290835/2" library_version="4">
  4924. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  4925. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  4926. <wire x1="-1.7" y1="0.9084" x2="1.7" y2="0.9084" width="0.127" layer="21"/>
  4927. <wire x1="-1.7" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.127" layer="21"/>
  4928. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  4929. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  4930. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  4931. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  4932. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  4933. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  4934. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4935. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4936. </package>
  4937. <package name="CAPM3528X210" urn="urn:adsk.eagle:footprint:16290844/2" library_version="4">
  4938. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  4939. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  4940. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.127" layer="21"/>
  4941. <wire x1="-1.85" y1="-1.5" x2="1.85" y2="-1.5" width="0.127" layer="21"/>
  4942. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  4943. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  4944. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  4945. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  4946. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  4947. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  4948. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4949. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4950. </package>
  4951. <package name="CAPM6032X280" urn="urn:adsk.eagle:footprint:16290839/2" library_version="4">
  4952. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  4953. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  4954. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.127" layer="21"/>
  4955. <wire x1="-3.15" y1="-1.75" x2="3.15" y2="-1.75" width="0.127" layer="21"/>
  4956. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  4957. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  4958. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  4959. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  4960. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  4961. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  4962. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4963. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4964. </package>
  4965. <package name="CAPM7343X310" urn="urn:adsk.eagle:footprint:16290840/2" library_version="4">
  4966. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  4967. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  4968. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.127" layer="21"/>
  4969. <wire x1="-3.8" y1="-2.3" x2="3.8" y2="-2.3" width="0.127" layer="21"/>
  4970. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  4971. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  4972. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  4973. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  4974. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  4975. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  4976. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4977. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4978. </package>
  4979. <package name="CAPC4564X110" urn="urn:adsk.eagle:footprint:16290837/2" library_version="4">
  4980. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  4981. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  4982. <wire x1="2.4" y1="3.7179" x2="-2.4" y2="3.7179" width="0.127" layer="21"/>
  4983. <wire x1="2.4" y1="-3.7179" x2="-2.4" y2="-3.7179" width="0.127" layer="21"/>
  4984. <wire x1="2.4" y1="-3.4" x2="-2.4" y2="-3.4" width="0.12" layer="51"/>
  4985. <wire x1="-2.4" y1="-3.4" x2="-2.4" y2="3.4" width="0.12" layer="51"/>
  4986. <wire x1="-2.4" y1="3.4" x2="2.4" y2="3.4" width="0.12" layer="51"/>
  4987. <wire x1="2.4" y1="3.4" x2="2.4" y2="-3.4" width="0.12" layer="51"/>
  4988. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  4989. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  4990. <text x="0" y="4.3529" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  4991. <text x="0" y="-4.3529" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  4992. </package>
  4993. <package name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:footprint:16290829/2" library_version="4">
  4994. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  4995. &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>
  4996. <circle x="0" y="0" radius="5.25" width="0.127" layer="21"/>
  4997. <circle x="0" y="0" radius="5.25" width="0.12" layer="51"/>
  4998. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  4999. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  5000. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5001. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5002. </package>
  5003. <package name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:footprint:16290850/2" library_version="4">
  5004. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  5005. &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>
  5006. <circle x="0" y="0" radius="25.79" width="0.127" layer="21"/>
  5007. <circle x="0" y="0" radius="25.79" width="0.12" layer="51"/>
  5008. <pad name="1" x="-11.305" y="0" drill="2.6" diameter="3.9"/>
  5009. <pad name="2" x="11.305" y="0" drill="2.6" diameter="3.9"/>
  5010. <text x="0" y="26.425" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5011. <text x="0" y="-26.425" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5012. </package>
  5013. </packages>
  5014. <packages3d>
  5015. <package3d name="CAPC1005X60" urn="urn:adsk.eagle:package:16290895/2" type="model" library_version="4">
  5016. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  5017. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  5018. <packageinstances>
  5019. <packageinstance name="CAPC1005X60"/>
  5020. </packageinstances>
  5021. </package3d>
  5022. <package3d name="CAPC1110X102" urn="urn:adsk.eagle:package:16290904/2" type="model" library_version="4">
  5023. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  5024. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  5025. <packageinstances>
  5026. <packageinstance name="CAPC1110X102"/>
  5027. </packageinstances>
  5028. </package3d>
  5029. <package3d name="CAPC1608X85" urn="urn:adsk.eagle:package:16290898/2" type="model" library_version="4">
  5030. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  5031. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  5032. <packageinstances>
  5033. <packageinstance name="CAPC1608X85"/>
  5034. </packageinstances>
  5035. </package3d>
  5036. <package3d name="CAPC2012X110" urn="urn:adsk.eagle:package:16290897/2" type="model" library_version="4">
  5037. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  5038. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  5039. <packageinstances>
  5040. <packageinstance name="CAPC2012X110"/>
  5041. </packageinstances>
  5042. </package3d>
  5043. <package3d name="CAPC3216X135" urn="urn:adsk.eagle:package:16290893/2" type="model" library_version="4">
  5044. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  5045. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  5046. <packageinstances>
  5047. <packageinstance name="CAPC3216X135"/>
  5048. </packageinstances>
  5049. </package3d>
  5050. <package3d name="CAPC3225X135" urn="urn:adsk.eagle:package:16290903/2" type="model" library_version="4">
  5051. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  5052. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  5053. <packageinstances>
  5054. <packageinstance name="CAPC3225X135"/>
  5055. </packageinstances>
  5056. </package3d>
  5057. <package3d name="CAPC4532X135" urn="urn:adsk.eagle:package:16290900/2" type="model" library_version="4">
  5058. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  5059. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  5060. <packageinstances>
  5061. <packageinstance name="CAPC4532X135"/>
  5062. </packageinstances>
  5063. </package3d>
  5064. <package3d name="CAPM3216X180" urn="urn:adsk.eagle:package:16290894/2" type="model" library_version="4">
  5065. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  5066. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  5067. <packageinstances>
  5068. <packageinstance name="CAPM3216X180"/>
  5069. </packageinstances>
  5070. </package3d>
  5071. <package3d name="CAPM3528X210" urn="urn:adsk.eagle:package:16290902/2" type="model" library_version="4">
  5072. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  5073. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  5074. <packageinstances>
  5075. <packageinstance name="CAPM3528X210"/>
  5076. </packageinstances>
  5077. </package3d>
  5078. <package3d name="CAPM6032X280" urn="urn:adsk.eagle:package:16290896/2" type="model" library_version="4">
  5079. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  5080. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  5081. <packageinstances>
  5082. <packageinstance name="CAPM6032X280"/>
  5083. </packageinstances>
  5084. </package3d>
  5085. <package3d name="CAPM7343X310" urn="urn:adsk.eagle:package:16290891/2" type="model" library_version="4">
  5086. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  5087. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  5088. <packageinstances>
  5089. <packageinstance name="CAPM7343X310"/>
  5090. </packageinstances>
  5091. </package3d>
  5092. <package3d name="CAPC4564X110L" urn="urn:adsk.eagle:package:16290887/3" type="model" library_version="4">
  5093. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  5094. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  5095. <packageinstances>
  5096. <packageinstance name="CAPC4564X110"/>
  5097. </packageinstances>
  5098. </package3d>
  5099. <package3d name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:package:16290858/2" type="model" library_version="4">
  5100. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  5101. &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>
  5102. <packageinstances>
  5103. <packageinstance name="CAPRD550W60D1025H1250B"/>
  5104. </packageinstances>
  5105. </package3d>
  5106. <package3d name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:package:16290864/2" type="model" library_version="4">
  5107. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  5108. &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>
  5109. <packageinstances>
  5110. <packageinstance name="CAPRD2261W240D5080H5555B"/>
  5111. </packageinstances>
  5112. </package3d>
  5113. </packages3d>
  5114. <symbols>
  5115. <symbol name="C" urn="urn:adsk.eagle:symbol:16290820/1" library_version="4">
  5116. <description>Capacitor</description>
  5117. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  5118. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  5119. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  5120. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  5121. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  5122. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  5123. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  5124. <text x="2.54" y="-2.54" size="1.778" layer="97">&gt;SPICEMODEL</text>
  5125. <text x="2.54" y="0" size="1.778" layer="96">&gt;VALUE</text>
  5126. <text x="2.54" y="-5.08" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  5127. </symbol>
  5128. </symbols>
  5129. <devicesets>
  5130. <deviceset name="C" urn="urn:adsk.eagle:component:16290909/4" prefix="C" uservalue="yes" library_version="4">
  5131. <description>&lt;B&gt;Capacitor - Generic</description>
  5132. <gates>
  5133. <gate name="G$1" symbol="C" x="0" y="0"/>
  5134. </gates>
  5135. <devices>
  5136. <device name="CHIP-0402(1005-METRIC)" package="CAPC1005X60">
  5137. <connects>
  5138. <connect gate="G$1" pin="1" pad="1"/>
  5139. <connect gate="G$1" pin="2" pad="2"/>
  5140. </connects>
  5141. <package3dinstances>
  5142. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290895/2"/>
  5143. </package3dinstances>
  5144. <technologies>
  5145. <technology name="_">
  5146. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5147. <attribute name="MANUFACTURER" value="" constant="no"/>
  5148. <attribute name="MPN" value="" constant="no"/>
  5149. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5150. <attribute name="PART_STATUS" value="" constant="no"/>
  5151. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5152. <attribute name="SERIES" value="" constant="no"/>
  5153. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5154. <attribute name="THERMALLOSS" value="" constant="no"/>
  5155. <attribute name="TYPE" value="" constant="no"/>
  5156. <attribute name="VALUE" value="" constant="no"/>
  5157. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5158. </technology>
  5159. </technologies>
  5160. </device>
  5161. <device name="CHIP-0504(1310-METRIC)" package="CAPC1110X102">
  5162. <connects>
  5163. <connect gate="G$1" pin="1" pad="1"/>
  5164. <connect gate="G$1" pin="2" pad="2"/>
  5165. </connects>
  5166. <package3dinstances>
  5167. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290904/2"/>
  5168. </package3dinstances>
  5169. <technologies>
  5170. <technology name="_">
  5171. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5172. <attribute name="MANUFACTURER" value="" constant="no"/>
  5173. <attribute name="MPN" value="" constant="no"/>
  5174. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5175. <attribute name="PART_STATUS" value="" constant="no"/>
  5176. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5177. <attribute name="SERIES" value="" constant="no"/>
  5178. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5179. <attribute name="THERMALLOSS" value="" constant="no"/>
  5180. <attribute name="TYPE" value="" constant="no"/>
  5181. <attribute name="VALUE" value="" constant="no"/>
  5182. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5183. </technology>
  5184. </technologies>
  5185. </device>
  5186. <device name="CHIP-0603(1608-METRIC)" package="CAPC1608X85">
  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:16290898/2"/>
  5193. </package3dinstances>
  5194. <technologies>
  5195. <technology name="_">
  5196. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5197. <attribute name="MANUFACTURER" value="" constant="no"/>
  5198. <attribute name="MPN" value="" constant="no"/>
  5199. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5200. <attribute name="PART_STATUS" value="" constant="no"/>
  5201. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5202. <attribute name="SERIES" value="" constant="no"/>
  5203. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5204. <attribute name="THERMALLOSS" value="" constant="no"/>
  5205. <attribute name="TYPE" value="" constant="no"/>
  5206. <attribute name="VALUE" value="" constant="no"/>
  5207. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5208. </technology>
  5209. </technologies>
  5210. </device>
  5211. <device name="CHIP-0805(2012-METRIC)" package="CAPC2012X110">
  5212. <connects>
  5213. <connect gate="G$1" pin="1" pad="1"/>
  5214. <connect gate="G$1" pin="2" pad="2"/>
  5215. </connects>
  5216. <package3dinstances>
  5217. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290897/2"/>
  5218. </package3dinstances>
  5219. <technologies>
  5220. <technology name="_">
  5221. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5222. <attribute name="MANUFACTURER" value="" constant="no"/>
  5223. <attribute name="MPN" value="" constant="no"/>
  5224. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5225. <attribute name="PART_STATUS" value="" constant="no"/>
  5226. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5227. <attribute name="SERIES" value="" constant="no"/>
  5228. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5229. <attribute name="THERMALLOSS" value="" constant="no"/>
  5230. <attribute name="TYPE" value="" constant="no"/>
  5231. <attribute name="VALUE" value="" constant="no"/>
  5232. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5233. </technology>
  5234. </technologies>
  5235. </device>
  5236. <device name="CHIP-1206(3216-METRIC)" package="CAPC3216X135">
  5237. <connects>
  5238. <connect gate="G$1" pin="1" pad="1"/>
  5239. <connect gate="G$1" pin="2" pad="2"/>
  5240. </connects>
  5241. <package3dinstances>
  5242. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290893/2"/>
  5243. </package3dinstances>
  5244. <technologies>
  5245. <technology name="_">
  5246. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5247. <attribute name="MANUFACTURER" value="" constant="no"/>
  5248. <attribute name="MPN" value="" constant="no"/>
  5249. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5250. <attribute name="PART_STATUS" value="" constant="no"/>
  5251. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5252. <attribute name="SERIES" value="" constant="no"/>
  5253. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5254. <attribute name="THERMALLOSS" value="" constant="no"/>
  5255. <attribute name="TYPE" value="" constant="no"/>
  5256. <attribute name="VALUE" value="" constant="no"/>
  5257. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5258. </technology>
  5259. </technologies>
  5260. </device>
  5261. <device name="CHIP-1210(3225-METRIC)" package="CAPC3225X135">
  5262. <connects>
  5263. <connect gate="G$1" pin="1" pad="1"/>
  5264. <connect gate="G$1" pin="2" pad="2"/>
  5265. </connects>
  5266. <package3dinstances>
  5267. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290903/2"/>
  5268. </package3dinstances>
  5269. <technologies>
  5270. <technology name="_">
  5271. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5272. <attribute name="MANUFACTURER" value="" constant="no"/>
  5273. <attribute name="MPN" value="" constant="no"/>
  5274. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5275. <attribute name="PART_STATUS" value="" constant="no"/>
  5276. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5277. <attribute name="SERIES" value="" constant="no"/>
  5278. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5279. <attribute name="THERMALLOSS" value="" constant="no"/>
  5280. <attribute name="TYPE" value="" constant="no"/>
  5281. <attribute name="VALUE" value="" constant="no"/>
  5282. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5283. </technology>
  5284. </technologies>
  5285. </device>
  5286. <device name="CHIP-1812(4532-METRIC)" package="CAPC4532X135">
  5287. <connects>
  5288. <connect gate="G$1" pin="1" pad="1"/>
  5289. <connect gate="G$1" pin="2" pad="2"/>
  5290. </connects>
  5291. <package3dinstances>
  5292. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290900/2"/>
  5293. </package3dinstances>
  5294. <technologies>
  5295. <technology name="_">
  5296. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5297. <attribute name="MANUFACTURER" value="" constant="no"/>
  5298. <attribute name="MPN" value="" constant="no"/>
  5299. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5300. <attribute name="PART_STATUS" value="" constant="no"/>
  5301. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5302. <attribute name="SERIES" value="" constant="no"/>
  5303. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5304. <attribute name="THERMALLOSS" value="" constant="no"/>
  5305. <attribute name="TYPE" value="" constant="no"/>
  5306. <attribute name="VALUE" value="" constant="no"/>
  5307. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5308. </technology>
  5309. </technologies>
  5310. </device>
  5311. <device name="TANTALUM-1206(3216-METRIC)" package="CAPM3216X180">
  5312. <connects>
  5313. <connect gate="G$1" pin="1" pad="1"/>
  5314. <connect gate="G$1" pin="2" pad="2"/>
  5315. </connects>
  5316. <package3dinstances>
  5317. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290894/2"/>
  5318. </package3dinstances>
  5319. <technologies>
  5320. <technology name="_">
  5321. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5322. <attribute name="MANUFACTURER" value="" constant="no"/>
  5323. <attribute name="MPN" value="" constant="no"/>
  5324. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5325. <attribute name="PART_STATUS" value="" constant="no"/>
  5326. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5327. <attribute name="SERIES" value="" constant="no"/>
  5328. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5329. <attribute name="THERMALLOSS" value="" constant="no"/>
  5330. <attribute name="TYPE" value="" constant="no"/>
  5331. <attribute name="VALUE" value="" constant="no"/>
  5332. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5333. </technology>
  5334. </technologies>
  5335. </device>
  5336. <device name="TANTALUM-1411(3528-METRIC)" package="CAPM3528X210">
  5337. <connects>
  5338. <connect gate="G$1" pin="1" pad="1"/>
  5339. <connect gate="G$1" pin="2" pad="2"/>
  5340. </connects>
  5341. <package3dinstances>
  5342. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290902/2"/>
  5343. </package3dinstances>
  5344. <technologies>
  5345. <technology name="_">
  5346. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5347. <attribute name="MANUFACTURER" value="" constant="no"/>
  5348. <attribute name="MPN" value="" constant="no"/>
  5349. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5350. <attribute name="PART_STATUS" value="" constant="no"/>
  5351. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5352. <attribute name="SERIES" value="" constant="no"/>
  5353. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5354. <attribute name="THERMALLOSS" value="" constant="no"/>
  5355. <attribute name="TYPE" value="" constant="no"/>
  5356. <attribute name="VALUE" value="" constant="no"/>
  5357. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5358. </technology>
  5359. </technologies>
  5360. </device>
  5361. <device name="TANTALUM-2412(6032-METRIC)" package="CAPM6032X280">
  5362. <connects>
  5363. <connect gate="G$1" pin="1" pad="1"/>
  5364. <connect gate="G$1" pin="2" pad="2"/>
  5365. </connects>
  5366. <package3dinstances>
  5367. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290896/2"/>
  5368. </package3dinstances>
  5369. <technologies>
  5370. <technology name="_">
  5371. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5372. <attribute name="MANUFACTURER" value="" constant="no"/>
  5373. <attribute name="MPN" value="" constant="no"/>
  5374. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5375. <attribute name="PART_STATUS" value="" constant="no"/>
  5376. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5377. <attribute name="SERIES" value="" constant="no"/>
  5378. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5379. <attribute name="THERMALLOSS" value="" constant="no"/>
  5380. <attribute name="TYPE" value="" constant="no"/>
  5381. <attribute name="VALUE" value="" constant="no"/>
  5382. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5383. </technology>
  5384. </technologies>
  5385. </device>
  5386. <device name="TANTALUM-2917(7343-METRIC)" package="CAPM7343X310">
  5387. <connects>
  5388. <connect gate="G$1" pin="1" pad="1"/>
  5389. <connect gate="G$1" pin="2" pad="2"/>
  5390. </connects>
  5391. <package3dinstances>
  5392. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290891/2"/>
  5393. </package3dinstances>
  5394. <technologies>
  5395. <technology name="_">
  5396. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5397. <attribute name="MANUFACTURER" value="" constant="no"/>
  5398. <attribute name="MPN" value="" constant="no"/>
  5399. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5400. <attribute name="PART_STATUS" value="" constant="no"/>
  5401. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5402. <attribute name="SERIES" value="" constant="no"/>
  5403. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5404. <attribute name="THERMALLOSS" value="" constant="no"/>
  5405. <attribute name="TYPE" value="" constant="no"/>
  5406. <attribute name="VALUE" value="" constant="no"/>
  5407. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5408. </technology>
  5409. </technologies>
  5410. </device>
  5411. <device name="CHIP-1825(4564-METRIC)" package="CAPC4564X110">
  5412. <connects>
  5413. <connect gate="G$1" pin="1" pad="1"/>
  5414. <connect gate="G$1" pin="2" pad="2"/>
  5415. </connects>
  5416. <package3dinstances>
  5417. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290887/3"/>
  5418. </package3dinstances>
  5419. <technologies>
  5420. <technology name="_">
  5421. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5422. <attribute name="MANUFACTURER" value="" constant="no"/>
  5423. <attribute name="MPN" value="" constant="no"/>
  5424. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5425. <attribute name="PART_STATUS" value="" constant="no"/>
  5426. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5427. <attribute name="SERIES" value="" constant="no"/>
  5428. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5429. <attribute name="THERMALLOSS" value="" constant="no"/>
  5430. <attribute name="TYPE" value="" constant="no"/>
  5431. <attribute name="VALUE" value="" constant="no"/>
  5432. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5433. </technology>
  5434. </technologies>
  5435. </device>
  5436. <device name="RADIAL-12.5MM-DIA" package="CAPRD550W60D1025H1250B">
  5437. <connects>
  5438. <connect gate="G$1" pin="1" pad="1"/>
  5439. <connect gate="G$1" pin="2" pad="2"/>
  5440. </connects>
  5441. <package3dinstances>
  5442. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290858/2"/>
  5443. </package3dinstances>
  5444. <technologies>
  5445. <technology name="_">
  5446. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5447. <attribute name="MANUFACTURER" value="" constant="no"/>
  5448. <attribute name="MPN" value="" constant="no"/>
  5449. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5450. <attribute name="PART_STATUS" value="" constant="no"/>
  5451. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5452. <attribute name="SERIES" value="" constant="no"/>
  5453. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5454. <attribute name="THERMALLOSS" value="" constant="no"/>
  5455. <attribute name="TYPE" value="" constant="no"/>
  5456. <attribute name="VALUE" value="" constant="no"/>
  5457. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5458. </technology>
  5459. </technologies>
  5460. </device>
  5461. <device name="RADIAL-55.5MM-DIA" package="CAPRD2261W240D5080H5555B">
  5462. <connects>
  5463. <connect gate="G$1" pin="1" pad="1"/>
  5464. <connect gate="G$1" pin="2" pad="2"/>
  5465. </connects>
  5466. <package3dinstances>
  5467. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290864/2"/>
  5468. </package3dinstances>
  5469. <technologies>
  5470. <technology name="_">
  5471. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  5472. <attribute name="MANUFACTURER" value="" constant="no"/>
  5473. <attribute name="MPN" value="" constant="no"/>
  5474. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5475. <attribute name="PART_STATUS" value="" constant="no"/>
  5476. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5477. <attribute name="SERIES" value="" constant="no"/>
  5478. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  5479. <attribute name="THERMALLOSS" value="" constant="no"/>
  5480. <attribute name="TYPE" value="" constant="no"/>
  5481. <attribute name="VALUE" value="" constant="no"/>
  5482. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  5483. </technology>
  5484. </technologies>
  5485. </device>
  5486. </devices>
  5487. <spice>
  5488. <pinmapping spiceprefix="C">
  5489. <pinmap gate="G$1" pin="1" pinorder="1"/>
  5490. <pinmap gate="G$1" pin="2" pinorder="2"/>
  5491. </pinmapping>
  5492. </spice>
  5493. </deviceset>
  5494. </devicesets>
  5495. </library>
  5496. <library name="Diode" urn="urn:adsk.eagle:library:16378169">
  5497. <description>&lt;B&gt;PN Junction, BridgeRectifier, Zener, Schottky, Switching</description>
  5498. <packages>
  5499. <package name="DIOMELF3516" urn="urn:adsk.eagle:footprint:16378178/1" library_version="6">
  5500. <description>MELF, 3.50 mm length, 1.65 mm diameter
  5501. &lt;p&gt;MELF Diode package with 3.50 mm length and 1.65 mm diameter&lt;/p&gt;</description>
  5502. <wire x1="0.983" y1="1.239" x2="-2.5717" y2="1.239" width="0.12" layer="21"/>
  5503. <wire x1="-2.5717" y1="1.239" x2="-2.5717" y2="-1.239" width="0.12" layer="21"/>
  5504. <wire x1="-2.5717" y1="-1.239" x2="0.983" y2="-1.239" width="0.12" layer="21"/>
  5505. <wire x1="1.85" y1="-0.85" x2="-1.85" y2="-0.85" width="0.12" layer="51"/>
  5506. <wire x1="-1.85" y1="-0.85" x2="-1.85" y2="0.85" width="0.12" layer="51"/>
  5507. <wire x1="-1.85" y1="0.85" x2="1.85" y2="0.85" width="0.12" layer="51"/>
  5508. <wire x1="1.85" y1="0.85" x2="1.85" y2="-0.85" width="0.12" layer="51"/>
  5509. <smd name="1" x="-1.6203" y="0" dx="1.2747" dy="1.85" layer="1"/>
  5510. <smd name="2" x="1.6203" y="0" dx="1.2747" dy="1.85" layer="1"/>
  5511. <text x="0" y="1.874" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5512. <text x="0" y="-1.874" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5513. </package>
  5514. <package name="DIOMELF5024" urn="urn:adsk.eagle:footprint:16378176/1" library_version="6">
  5515. <description>MELF, 5.00 mm length, 2.49 mm diameter
  5516. &lt;p&gt;MELF Diode package with 5.00 mm length and 2.49 mm diameter&lt;/p&gt;</description>
  5517. <wire x1="1.8515" y1="1.659" x2="-3.3217" y2="1.659" width="0.12" layer="21"/>
  5518. <wire x1="-3.3217" y1="1.659" x2="-3.3217" y2="-1.659" width="0.12" layer="21"/>
  5519. <wire x1="-3.3217" y1="-1.659" x2="1.8515" y2="-1.659" width="0.12" layer="21"/>
  5520. <wire x1="2.6" y1="-1.27" x2="-2.6" y2="-1.27" width="0.12" layer="51"/>
  5521. <wire x1="-2.6" y1="-1.27" x2="-2.6" y2="1.27" width="0.12" layer="51"/>
  5522. <wire x1="-2.6" y1="1.27" x2="2.6" y2="1.27" width="0.12" layer="51"/>
  5523. <wire x1="2.6" y1="1.27" x2="2.6" y2="-1.27" width="0.12" layer="51"/>
  5524. <smd name="1" x="-2.4296" y="0" dx="1.1561" dy="2.69" layer="1"/>
  5525. <smd name="2" x="2.4296" y="0" dx="1.1561" dy="2.69" layer="1"/>
  5526. <text x="0" y="2.294" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5527. <text x="0" y="-2.294" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5528. </package>
  5529. <package name="SOD3715X135" urn="urn:adsk.eagle:footprint:9427064/1" library_version="6">
  5530. <description>SOD, 3.70 mm span, 2.70 X 1.55 X 1.35 mm body
  5531. &lt;p&gt;SOD package with 3.70 mm span with body size 2.70 X 1.55 X 1.35 mm&lt;/p&gt;</description>
  5532. <wire x1="1.425" y1="0.85" x2="-2.5991" y2="0.85" width="0.12" layer="21"/>
  5533. <wire x1="-2.5991" y1="0.85" x2="-2.5991" y2="-0.85" width="0.12" layer="21"/>
  5534. <wire x1="-2.5991" y1="-0.85" x2="1.425" y2="-0.85" width="0.12" layer="21"/>
  5535. <wire x1="1.425" y1="-0.85" x2="-1.425" y2="-0.85" width="0.12" layer="51"/>
  5536. <wire x1="-1.425" y1="-0.85" x2="-1.425" y2="0.85" width="0.12" layer="51"/>
  5537. <wire x1="-1.425" y1="0.85" x2="1.425" y2="0.85" width="0.12" layer="51"/>
  5538. <wire x1="1.425" y1="0.85" x2="1.425" y2="-0.85" width="0.12" layer="51"/>
  5539. <smd name="1" x="-1.7215" y="0" dx="1.1272" dy="0.7839" layer="1"/>
  5540. <smd name="2" x="1.7215" y="0" dx="1.1272" dy="0.7839" layer="1"/>
  5541. <text x="0" y="1.485" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5542. <text x="0" y="-1.485" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5543. </package>
  5544. <package name="SOD6126X290" urn="urn:adsk.eagle:footprint:9427065/1" library_version="6">
  5545. <description>SOD, 6.10 mm span, 4.33 X 2.60 X 2.90 mm body
  5546. &lt;p&gt;SOD package with 6.10 mm span with body size 4.33 X 2.60 X 2.90 mm&lt;/p&gt;</description>
  5547. <wire x1="2.3" y1="1.475" x2="-3.9179" y2="1.475" width="0.12" layer="21"/>
  5548. <wire x1="-3.9179" y1="1.475" x2="-3.9179" y2="-1.475" width="0.12" layer="21"/>
  5549. <wire x1="-3.9179" y1="-1.475" x2="2.3" y2="-1.475" width="0.12" layer="21"/>
  5550. <wire x1="2.3" y1="-1.475" x2="-2.3" y2="-1.475" width="0.12" layer="51"/>
  5551. <wire x1="-2.3" y1="-1.475" x2="-2.3" y2="1.475" width="0.12" layer="51"/>
  5552. <wire x1="-2.3" y1="1.475" x2="2.3" y2="1.475" width="0.12" layer="51"/>
  5553. <wire x1="2.3" y1="1.475" x2="2.3" y2="-1.475" width="0.12" layer="51"/>
  5554. <smd name="1" x="-2.7048" y="0" dx="1.7981" dy="1.7253" layer="1"/>
  5555. <smd name="2" x="2.7048" y="0" dx="1.7981" dy="1.7253" layer="1"/>
  5556. <text x="0" y="2.11" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5557. <text x="0" y="-2.11" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5558. </package>
  5559. <package name="SOD6126X350" urn="urn:adsk.eagle:footprint:9933385/1" library_version="6">
  5560. <description>SOD, 6.10 mm span, 4.20 X 2.65 X 3.50 mm body
  5561. &lt;p&gt;SOD package with 6.10 mm span with body size 4.20 X 2.65 X 3.50 mm&lt;/p&gt;</description>
  5562. <wire x1="2.225" y1="1.65" x2="-3.9179" y2="1.65" width="0.12" layer="21"/>
  5563. <wire x1="-3.9179" y1="1.65" x2="-3.9179" y2="-1.65" width="0.12" layer="21"/>
  5564. <wire x1="-3.9179" y1="-1.65" x2="2.225" y2="-1.65" width="0.12" layer="21"/>
  5565. <wire x1="2.225" y1="-1.65" x2="-2.225" y2="-1.65" width="0.12" layer="51"/>
  5566. <wire x1="-2.225" y1="-1.65" x2="-2.225" y2="1.65" width="0.12" layer="51"/>
  5567. <wire x1="-2.225" y1="1.65" x2="2.225" y2="1.65" width="0.12" layer="51"/>
  5568. <wire x1="2.225" y1="1.65" x2="2.225" y2="-1.65" width="0.12" layer="51"/>
  5569. <smd name="1" x="-2.7048" y="0" dx="1.7981" dy="1.7689" layer="1"/>
  5570. <smd name="2" x="2.7048" y="0" dx="1.7981" dy="1.7689" layer="1"/>
  5571. <text x="0" y="2.285" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5572. <text x="0" y="-2.285" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5573. </package>
  5574. <package name="SOD6236X265" urn="urn:adsk.eagle:footprint:9427053/1" library_version="6">
  5575. <description>SOD, 6.22 mm span, 4.33 X 3.63 X 2.65 mm body
  5576. &lt;p&gt;SOD package with 6.22 mm span with body size 4.33 X 3.63 X 2.65 mm&lt;/p&gt;</description>
  5577. <wire x1="2.3" y1="1.975" x2="-3.9196" y2="1.975" width="0.12" layer="21"/>
  5578. <wire x1="-3.9196" y1="1.975" x2="-3.9196" y2="-1.975" width="0.12" layer="21"/>
  5579. <wire x1="-3.9196" y1="-1.975" x2="2.3" y2="-1.975" width="0.12" layer="21"/>
  5580. <wire x1="2.3" y1="-1.975" x2="-2.3" y2="-1.975" width="0.12" layer="51"/>
  5581. <wire x1="-2.3" y1="-1.975" x2="-2.3" y2="1.975" width="0.12" layer="51"/>
  5582. <wire x1="-2.3" y1="1.975" x2="2.3" y2="1.975" width="0.12" layer="51"/>
  5583. <wire x1="2.3" y1="1.975" x2="2.3" y2="-1.975" width="0.12" layer="51"/>
  5584. <smd name="1" x="-2.7561" y="0" dx="1.699" dy="2.2839" layer="1"/>
  5585. <smd name="2" x="2.7561" y="0" dx="1.699" dy="2.2839" layer="1"/>
  5586. <text x="0" y="2.61" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5587. <text x="0" y="-2.61" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5588. </package>
  5589. <package name="SOD9959X265" urn="urn:adsk.eagle:footprint:9427066/1" library_version="6">
  5590. <description>SOD, 9.93 mm span, 6.88 X 5.90 X 2.65 mm body
  5591. &lt;p&gt;SOD package with 9.93 mm span with body size 6.88 X 5.90 X 2.65 mm&lt;/p&gt;</description>
  5592. <wire x1="3.575" y1="3.125" x2="-5.7696" y2="3.125" width="0.12" layer="21"/>
  5593. <wire x1="-5.7696" y1="3.125" x2="-5.7696" y2="-3.125" width="0.12" layer="21"/>
  5594. <wire x1="-5.7696" y1="-3.125" x2="3.575" y2="-3.125" width="0.12" layer="21"/>
  5595. <wire x1="3.575" y1="-3.125" x2="-3.575" y2="-3.125" width="0.12" layer="51"/>
  5596. <wire x1="-3.575" y1="-3.125" x2="-3.575" y2="3.125" width="0.12" layer="51"/>
  5597. <wire x1="-3.575" y1="3.125" x2="3.575" y2="3.125" width="0.12" layer="51"/>
  5598. <wire x1="3.575" y1="3.125" x2="3.575" y2="-3.125" width="0.12" layer="51"/>
  5599. <smd name="1" x="-4.5203" y="0" dx="1.8706" dy="3.2802" layer="1"/>
  5600. <smd name="2" x="4.5203" y="0" dx="1.8706" dy="3.2802" layer="1"/>
  5601. <text x="0" y="3.76" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5602. <text x="0" y="-3.76" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5603. </package>
  5604. <package name="SODFL2513X70" urn="urn:adsk.eagle:footprint:9427167/1" library_version="6">
  5605. <description>SODFL, 2.50 mm span, 1.90 X 1.30 X 0.70 mm body
  5606. &lt;p&gt;SODFL package with 2.50 mm span with body size 1.90 X 1.30 X 0.70 mm&lt;/p&gt;</description>
  5607. <wire x1="1" y1="0.7009" x2="-1.8717" y2="0.7009" width="0.12" layer="21"/>
  5608. <wire x1="-1.8717" y1="0.7009" x2="-1.8717" y2="-0.7009" width="0.12" layer="21"/>
  5609. <wire x1="-1.8717" y1="-0.7009" x2="1" y2="-0.7009" width="0.12" layer="21"/>
  5610. <wire x1="1" y1="-0.7" x2="-1" y2="-0.7" width="0.12" layer="51"/>
  5611. <wire x1="-1" y1="-0.7" x2="-1" y2="0.7" width="0.12" layer="51"/>
  5612. <wire x1="-1" y1="0.7" x2="1" y2="0.7" width="0.12" layer="51"/>
  5613. <wire x1="1" y1="0.7" x2="1" y2="-0.7" width="0.12" layer="51"/>
  5614. <smd name="1" x="-1.065" y="0" dx="0.9854" dy="0.7739" layer="1"/>
  5615. <smd name="2" x="1.065" y="0" dx="0.9854" dy="0.7739" layer="1"/>
  5616. <text x="0" y="1.3359" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5617. <text x="0" y="-1.3359" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5618. </package>
  5619. <package name="SODFL2513X75" urn="urn:adsk.eagle:footprint:9427168/1" library_version="6">
  5620. <description>SODFL, 2.50 mm span, 2.20 X 1.30 X 0.75 mm body
  5621. &lt;p&gt;SODFL package with 2.50 mm span with body size 2.20 X 1.30 X 0.75 mm&lt;/p&gt;</description>
  5622. <wire x1="1.15" y1="0.7009" x2="-1.8717" y2="0.7009" width="0.12" layer="21"/>
  5623. <wire x1="-1.8717" y1="0.7009" x2="-1.8717" y2="-0.7009" width="0.12" layer="21"/>
  5624. <wire x1="-1.8717" y1="-0.7009" x2="1.15" y2="-0.7009" width="0.12" layer="21"/>
  5625. <wire x1="1.15" y1="-0.7" x2="-1.15" y2="-0.7" width="0.12" layer="51"/>
  5626. <wire x1="-1.15" y1="-0.7" x2="-1.15" y2="0.7" width="0.12" layer="51"/>
  5627. <wire x1="-1.15" y1="0.7" x2="1.15" y2="0.7" width="0.12" layer="51"/>
  5628. <wire x1="1.15" y1="0.7" x2="1.15" y2="-0.7" width="0.12" layer="51"/>
  5629. <smd name="1" x="-0.7394" y="0" dx="1.6364" dy="1.003" layer="1"/>
  5630. <smd name="2" x="0.7394" y="0" dx="1.0027" dy="0.7739" layer="1"/>
  5631. <text x="0" y="1.3359" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5632. <text x="0" y="-1.3359" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5633. </package>
  5634. <package name="SODFL3718X115" urn="urn:adsk.eagle:footprint:9427170/1" library_version="6">
  5635. <description>SODFL, 3.70 mm span, 2.80 X 1.80 X 1.15 mm body
  5636. &lt;p&gt;SODFL package with 3.70 mm span with body size 2.80 X 1.80 X 1.15 mm&lt;/p&gt;</description>
  5637. <wire x1="1.45" y1="0.9946" x2="-2.4717" y2="0.9946" width="0.12" layer="21"/>
  5638. <wire x1="-2.4717" y1="0.9946" x2="-2.4717" y2="-0.9946" width="0.12" layer="21"/>
  5639. <wire x1="-2.4717" y1="-0.9946" x2="1.45" y2="-0.9946" width="0.12" layer="21"/>
  5640. <wire x1="1.45" y1="-0.95" x2="-1.45" y2="-0.95" width="0.12" layer="51"/>
  5641. <wire x1="-1.45" y1="-0.95" x2="-1.45" y2="0.95" width="0.12" layer="51"/>
  5642. <wire x1="-1.45" y1="0.95" x2="1.45" y2="0.95" width="0.12" layer="51"/>
  5643. <wire x1="1.45" y1="0.95" x2="1.45" y2="-0.95" width="0.12" layer="51"/>
  5644. <smd name="1" x="-1.6004" y="0" dx="1.1146" dy="1.3612" layer="1"/>
  5645. <smd name="2" x="1.6004" y="0" dx="1.1146" dy="1.3612" layer="1"/>
  5646. <text x="0" y="1.6296" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5647. <text x="0" y="-1.6296" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5648. </package>
  5649. <package name="SODFL3718X140" urn="urn:adsk.eagle:footprint:9427171/1" library_version="6">
  5650. <description>SODFL, 3.70 mm span, 2.80 X 1.80 X 1.40 mm body
  5651. &lt;p&gt;SODFL package with 3.70 mm span with body size 2.80 X 1.80 X 1.40 mm&lt;/p&gt;</description>
  5652. <wire x1="1.45" y1="0.9946" x2="-2.4717" y2="0.9946" width="0.12" layer="21"/>
  5653. <wire x1="-2.4717" y1="0.9946" x2="-2.4717" y2="-0.9946" width="0.12" layer="21"/>
  5654. <wire x1="-2.4717" y1="-0.9946" x2="1.45" y2="-0.9946" width="0.12" layer="21"/>
  5655. <wire x1="1.45" y1="-0.95" x2="-1.45" y2="-0.95" width="0.12" layer="51"/>
  5656. <wire x1="-1.45" y1="-0.95" x2="-1.45" y2="0.95" width="0.12" layer="51"/>
  5657. <wire x1="-1.45" y1="0.95" x2="1.45" y2="0.95" width="0.12" layer="51"/>
  5658. <wire x1="1.45" y1="0.95" x2="1.45" y2="-0.95" width="0.12" layer="51"/>
  5659. <smd name="1" x="-1.5233" y="0" dx="1.2688" dy="1.3612" layer="1"/>
  5660. <smd name="2" x="1.5233" y="0" dx="1.2688" dy="1.3612" layer="1"/>
  5661. <text x="0" y="1.6296" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5662. <text x="0" y="-1.6296" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5663. </package>
  5664. <package name="SODFL5336X110" urn="urn:adsk.eagle:footprint:9427173/1" library_version="6">
  5665. <description>SODFL, 5.35 mm span, 4.33 X 3.63 X 1.10 mm body
  5666. &lt;p&gt;SODFL package with 5.35 mm span with body size 4.33 X 3.63 X 1.10 mm&lt;/p&gt;</description>
  5667. <wire x1="2.3" y1="1.975" x2="-3.3202" y2="1.975" width="0.12" layer="21"/>
  5668. <wire x1="-3.3202" y1="1.975" x2="-3.3202" y2="-1.975" width="0.12" layer="21"/>
  5669. <wire x1="-3.3202" y1="-1.975" x2="2.3" y2="-1.975" width="0.12" layer="21"/>
  5670. <wire x1="2.3" y1="-1.975" x2="-2.3" y2="-1.975" width="0.12" layer="51"/>
  5671. <wire x1="-2.3" y1="-1.975" x2="-2.3" y2="1.975" width="0.12" layer="51"/>
  5672. <wire x1="-2.3" y1="1.975" x2="2.3" y2="1.975" width="0.12" layer="51"/>
  5673. <wire x1="2.3" y1="1.975" x2="2.3" y2="-1.975" width="0.12" layer="51"/>
  5674. <smd name="1" x="-2.1302" y="0" dx="1.752" dy="2.2239" layer="1"/>
  5675. <smd name="2" x="2.1302" y="0" dx="1.752" dy="2.2239" layer="1"/>
  5676. <text x="0" y="2.61" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5677. <text x="0" y="-2.61" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5678. </package>
  5679. <package name="SODFL7959X110" urn="urn:adsk.eagle:footprint:9427174/1" library_version="6">
  5680. <description>SODFL, 7.95 mm span, 6.88 X 5.90 X 1.10 mm body
  5681. &lt;p&gt;SODFL package with 7.95 mm span with body size 6.88 X 5.90 X 1.10 mm&lt;/p&gt;</description>
  5682. <wire x1="3.575" y1="3.125" x2="-4.5967" y2="3.125" width="0.12" layer="21"/>
  5683. <wire x1="-4.5967" y1="3.125" x2="-4.5967" y2="-3.125" width="0.12" layer="21"/>
  5684. <wire x1="-4.5967" y1="-3.125" x2="3.575" y2="-3.125" width="0.12" layer="21"/>
  5685. <wire x1="3.575" y1="-3.125" x2="-3.575" y2="-3.125" width="0.12" layer="51"/>
  5686. <wire x1="-3.575" y1="-3.125" x2="-3.575" y2="3.125" width="0.12" layer="51"/>
  5687. <wire x1="-3.575" y1="3.125" x2="3.575" y2="3.125" width="0.12" layer="51"/>
  5688. <wire x1="3.575" y1="3.125" x2="3.575" y2="-3.125" width="0.12" layer="51"/>
  5689. <smd name="1" x="-3.4233" y="0" dx="1.7188" dy="3.2202" layer="1"/>
  5690. <smd name="2" x="3.4233" y="0" dx="1.7188" dy="3.2202" layer="1"/>
  5691. <text x="0" y="3.76" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5692. <text x="0" y="-3.76" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5693. </package>
  5694. <package name="SODFL5226X110" urn="urn:adsk.eagle:footprint:9427175/1" library_version="6">
  5695. <description>SODFL, 5.20 mm span, 4.28 X 2.60 X 1.10 mm body
  5696. &lt;p&gt;SODFL package with 5.20 mm span with body size 4.28 X 2.60 X 1.10 mm&lt;/p&gt;</description>
  5697. <wire x1="2.3" y1="1.475" x2="-3.3179" y2="1.475" width="0.12" layer="21"/>
  5698. <wire x1="-3.3179" y1="1.475" x2="-3.3179" y2="-1.475" width="0.12" layer="21"/>
  5699. <wire x1="-3.3179" y1="-1.475" x2="2.3" y2="-1.475" width="0.12" layer="21"/>
  5700. <wire x1="2.3" y1="-1.475" x2="-2.3" y2="-1.475" width="0.12" layer="51"/>
  5701. <wire x1="-2.3" y1="-1.475" x2="-2.3" y2="1.475" width="0.12" layer="51"/>
  5702. <wire x1="-2.3" y1="1.475" x2="2.3" y2="1.475" width="0.12" layer="51"/>
  5703. <wire x1="2.3" y1="1.475" x2="2.3" y2="-1.475" width="0.12" layer="51"/>
  5704. <smd name="1" x="-2.0722" y="0" dx="1.8634" dy="1.6653" layer="1"/>
  5705. <smd name="2" x="2.0722" y="0" dx="1.8634" dy="1.6653" layer="1"/>
  5706. <text x="0" y="2.11" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5707. <text x="0" y="-2.11" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5708. </package>
  5709. <package name="SODFL4725X110" urn="urn:adsk.eagle:footprint:9427177/1" library_version="6">
  5710. <description>SODFL, 4.70 mm span, 3.80 X 2.50 X 1.10 mm body
  5711. &lt;p&gt;SODFL package with 4.70 mm span with body size 3.80 X 2.50 X 1.10 mm&lt;/p&gt;</description>
  5712. <wire x1="2" y1="1.35" x2="-3.0192" y2="1.35" width="0.12" layer="21"/>
  5713. <wire x1="-3.0192" y1="1.35" x2="-3.0192" y2="-1.35" width="0.12" layer="21"/>
  5714. <wire x1="-3.0192" y1="-1.35" x2="2" y2="-1.35" width="0.12" layer="21"/>
  5715. <wire x1="2" y1="-1.35" x2="-2" y2="-1.35" width="0.12" layer="51"/>
  5716. <wire x1="-2" y1="-1.35" x2="-2" y2="1.35" width="0.12" layer="51"/>
  5717. <wire x1="-2" y1="1.35" x2="2" y2="1.35" width="0.12" layer="51"/>
  5718. <wire x1="2" y1="1.35" x2="2" y2="-1.35" width="0.12" layer="51"/>
  5719. <smd name="1" x="-2.11" y="0" dx="1.1904" dy="2.0153" layer="1"/>
  5720. <smd name="2" x="2.11" y="0" dx="1.1904" dy="2.0153" layer="1"/>
  5721. <text x="0" y="1.985" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5722. <text x="0" y="-1.985" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5723. </package>
  5724. <package name="SODFL1608X70" urn="urn:adsk.eagle:footprint:16378177/1" library_version="6">
  5725. <description>SODFL, 1.60 mm span, 1.20 X 0.80 X 0.70 mm body
  5726. &lt;p&gt;SODFL package with 1.60 mm span with body size 1.20 X 0.80 X 0.70 mm&lt;/p&gt;</description>
  5727. <wire x1="0.65" y1="0.514" x2="-1.3786" y2="0.514" width="0.12" layer="21"/>
  5728. <wire x1="-1.3786" y1="0.514" x2="-1.3786" y2="-0.514" width="0.12" layer="21"/>
  5729. <wire x1="-1.3786" y1="-0.514" x2="0.65" y2="-0.514" width="0.12" layer="21"/>
  5730. <wire x1="0.65" y1="-0.45" x2="-0.65" y2="-0.45" width="0.12" layer="51"/>
  5731. <wire x1="-0.65" y1="-0.45" x2="-0.65" y2="0.45" width="0.12" layer="51"/>
  5732. <wire x1="-0.65" y1="0.45" x2="0.65" y2="0.45" width="0.12" layer="51"/>
  5733. <wire x1="0.65" y1="0.45" x2="0.65" y2="-0.45" width="0.12" layer="51"/>
  5734. <smd name="1" x="-0.7956" y="0" dx="0.538" dy="0.4" layer="1"/>
  5735. <smd name="2" x="0.7956" y="0" dx="0.538" dy="0.4" layer="1"/>
  5736. <text x="0" y="1.149" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5737. <text x="0" y="-1.149" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5738. </package>
  5739. <package name="DIOM5226X290N" urn="urn:adsk.eagle:footprint:16378179/1" library_version="6">
  5740. <description>Molded Body, 5.20 X 2.60 X 2.90 mm body
  5741. &lt;p&gt;Molded Body package with body size 5.20 X 2.60 X 2.90 mm&lt;/p&gt;</description>
  5742. <wire x1="2.8" y1="1.475" x2="-3.6179" y2="1.475" width="0.12" layer="21"/>
  5743. <wire x1="-3.6179" y1="1.475" x2="-3.6179" y2="-1.475" width="0.12" layer="21"/>
  5744. <wire x1="-3.6179" y1="-1.475" x2="2.8" y2="-1.475" width="0.12" layer="21"/>
  5745. <wire x1="2.8" y1="-1.475" x2="-2.8" y2="-1.475" width="0.12" layer="51"/>
  5746. <wire x1="-2.8" y1="-1.475" x2="-2.8" y2="1.475" width="0.12" layer="51"/>
  5747. <wire x1="-2.8" y1="1.475" x2="2.8" y2="1.475" width="0.12" layer="51"/>
  5748. <wire x1="2.8" y1="1.475" x2="2.8" y2="-1.475" width="0.12" layer="51"/>
  5749. <smd name="1" x="-2.1079" y="0" dx="2.392" dy="1.5653" layer="1"/>
  5750. <smd name="2" x="2.1079" y="0" dx="2.392" dy="1.5653" layer="1"/>
  5751. <text x="0" y="2.11" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5752. <text x="0" y="-2.11" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5753. </package>
  5754. <package name="DIOM5336X265N" urn="urn:adsk.eagle:footprint:16378175/1" library_version="6">
  5755. <description>Molded Body, 5.35 X 3.63 X 2.65 mm body
  5756. &lt;p&gt;Molded Body package with body size 5.35 X 3.63 X 2.65 mm&lt;/p&gt;</description>
  5757. <wire x1="2.8" y1="1.975" x2="-3.6202" y2="1.975" width="0.12" layer="21"/>
  5758. <wire x1="-3.6202" y1="1.975" x2="-3.6202" y2="-1.975" width="0.12" layer="21"/>
  5759. <wire x1="-3.6202" y1="-1.975" x2="2.8" y2="-1.975" width="0.12" layer="21"/>
  5760. <wire x1="2.8" y1="-1.975" x2="-2.8" y2="-1.975" width="0.12" layer="51"/>
  5761. <wire x1="-2.8" y1="-1.975" x2="-2.8" y2="1.975" width="0.12" layer="51"/>
  5762. <wire x1="-2.8" y1="1.975" x2="2.8" y2="1.975" width="0.12" layer="51"/>
  5763. <wire x1="2.8" y1="1.975" x2="2.8" y2="-1.975" width="0.12" layer="51"/>
  5764. <smd name="1" x="-2.1641" y="0" dx="2.2841" dy="2.1239" layer="1"/>
  5765. <smd name="2" x="2.1641" y="0" dx="2.2841" dy="2.1239" layer="1"/>
  5766. <text x="0" y="2.61" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5767. <text x="0" y="-2.61" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5768. </package>
  5769. <package name="DIOM7959X625N" urn="urn:adsk.eagle:footprint:16378174/1" library_version="6">
  5770. <description>Molded Body, 7.95 X 5.90 X 6.25 mm body
  5771. &lt;p&gt;Molded Body package with body size 7.95 X 5.90 X 6.25 mm&lt;/p&gt;</description>
  5772. <wire x1="4.075" y1="3.125" x2="-4.8967" y2="3.125" width="0.12" layer="21"/>
  5773. <wire x1="-4.8967" y1="3.125" x2="-4.8967" y2="-3.125" width="0.12" layer="21"/>
  5774. <wire x1="-4.8967" y1="-3.125" x2="4.075" y2="-3.125" width="0.12" layer="21"/>
  5775. <wire x1="4.075" y1="-3.125" x2="-4.075" y2="-3.125" width="0.12" layer="51"/>
  5776. <wire x1="-4.075" y1="-3.125" x2="-4.075" y2="3.125" width="0.12" layer="51"/>
  5777. <wire x1="-4.075" y1="3.125" x2="4.075" y2="3.125" width="0.12" layer="51"/>
  5778. <wire x1="4.075" y1="3.125" x2="4.075" y2="-3.125" width="0.12" layer="51"/>
  5779. <smd name="1" x="-3.4567" y="0" dx="2.2518" dy="3.1202" layer="1"/>
  5780. <smd name="2" x="3.4567" y="0" dx="2.2518" dy="3.1202" layer="1"/>
  5781. <text x="0" y="3.76" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  5782. <text x="0" y="-3.76" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  5783. </package>
  5784. </packages>
  5785. <packages3d>
  5786. <package3d name="DIOMELF3516L" urn="urn:adsk.eagle:package:16378190/2" type="model" library_version="6">
  5787. <description>MELF, 3.50 mm length, 1.65 mm diameter
  5788. &lt;p&gt;MELF Diode package with 3.50 mm length and 1.65 mm diameter&lt;/p&gt;</description>
  5789. <packageinstances>
  5790. <packageinstance name="DIOMELF3516"/>
  5791. </packageinstances>
  5792. </package3d>
  5793. <package3d name="DIOMELF5024" urn="urn:adsk.eagle:package:16378191/1" type="model" library_version="6">
  5794. <description>MELF, 5.00 mm length, 2.49 mm diameter
  5795. &lt;p&gt;MELF Diode package with 5.00 mm length and 2.49 mm diameter&lt;/p&gt;</description>
  5796. <packageinstances>
  5797. <packageinstance name="DIOMELF5024"/>
  5798. </packageinstances>
  5799. </package3d>
  5800. <package3d name="SOD3715X135" urn="urn:adsk.eagle:package:9427058/2" type="model" library_version="6">
  5801. <description>SOD, 3.70 mm span, 2.70 X 1.55 X 1.35 mm body
  5802. &lt;p&gt;SOD package with 3.70 mm span with body size 2.70 X 1.55 X 1.35 mm&lt;/p&gt;</description>
  5803. <packageinstances>
  5804. <packageinstance name="SOD3715X135"/>
  5805. </packageinstances>
  5806. </package3d>
  5807. <package3d name="SOD6126X290" urn="urn:adsk.eagle:package:9427057/2" type="model" library_version="6">
  5808. <description>SOD, 6.10 mm span, 4.33 X 2.60 X 2.90 mm body
  5809. &lt;p&gt;SOD package with 6.10 mm span with body size 4.33 X 2.60 X 2.90 mm&lt;/p&gt;</description>
  5810. <packageinstances>
  5811. <packageinstance name="SOD6126X290"/>
  5812. </packageinstances>
  5813. </package3d>
  5814. <package3d name="SOD6126X350" urn="urn:adsk.eagle:package:9932483/2" type="model" library_version="6">
  5815. <description>SOD, 6.10 mm span, 4.20 X 2.65 X 3.50 mm body
  5816. &lt;p&gt;SOD package with 6.10 mm span with body size 4.20 X 2.65 X 3.50 mm&lt;/p&gt;</description>
  5817. <packageinstances>
  5818. <packageinstance name="SOD6126X350"/>
  5819. </packageinstances>
  5820. </package3d>
  5821. <package3d name="SOD6236X265" urn="urn:adsk.eagle:package:9427046/2" type="model" library_version="6">
  5822. <description>SOD, 6.22 mm span, 4.33 X 3.63 X 2.65 mm body
  5823. &lt;p&gt;SOD package with 6.22 mm span with body size 4.33 X 3.63 X 2.65 mm&lt;/p&gt;</description>
  5824. <packageinstances>
  5825. <packageinstance name="SOD6236X265"/>
  5826. </packageinstances>
  5827. </package3d>
  5828. <package3d name="SOD9959X265" urn="urn:adsk.eagle:package:9427056/2" type="model" library_version="6">
  5829. <description>SOD, 9.93 mm span, 6.88 X 5.90 X 2.65 mm body
  5830. &lt;p&gt;SOD package with 9.93 mm span with body size 6.88 X 5.90 X 2.65 mm&lt;/p&gt;</description>
  5831. <packageinstances>
  5832. <packageinstance name="SOD9959X265"/>
  5833. </packageinstances>
  5834. </package3d>
  5835. <package3d name="SODFL2513X70" urn="urn:adsk.eagle:package:9427155/2" type="model" library_version="6">
  5836. <description>SODFL, 2.50 mm span, 1.90 X 1.30 X 0.70 mm body
  5837. &lt;p&gt;SODFL package with 2.50 mm span with body size 1.90 X 1.30 X 0.70 mm&lt;/p&gt;</description>
  5838. <packageinstances>
  5839. <packageinstance name="SODFL2513X70"/>
  5840. </packageinstances>
  5841. </package3d>
  5842. <package3d name="SODFL2513X75" urn="urn:adsk.eagle:package:9427154/2" type="model" library_version="6">
  5843. <description>SODFL, 2.50 mm span, 2.20 X 1.30 X 0.75 mm body
  5844. &lt;p&gt;SODFL package with 2.50 mm span with body size 2.20 X 1.30 X 0.75 mm&lt;/p&gt;</description>
  5845. <packageinstances>
  5846. <packageinstance name="SODFL2513X75"/>
  5847. </packageinstances>
  5848. </package3d>
  5849. <package3d name="SODFL3718X115" urn="urn:adsk.eagle:package:9427153/2" type="model" library_version="6">
  5850. <description>SODFL, 3.70 mm span, 2.80 X 1.80 X 1.15 mm body
  5851. &lt;p&gt;SODFL package with 3.70 mm span with body size 2.80 X 1.80 X 1.15 mm&lt;/p&gt;</description>
  5852. <packageinstances>
  5853. <packageinstance name="SODFL3718X115"/>
  5854. </packageinstances>
  5855. </package3d>
  5856. <package3d name="SODFL3718X140" urn="urn:adsk.eagle:package:9427152/2" type="model" library_version="6">
  5857. <description>SODFL, 3.70 mm span, 2.80 X 1.80 X 1.40 mm body
  5858. &lt;p&gt;SODFL package with 3.70 mm span with body size 2.80 X 1.80 X 1.40 mm&lt;/p&gt;</description>
  5859. <packageinstances>
  5860. <packageinstance name="SODFL3718X140"/>
  5861. </packageinstances>
  5862. </package3d>
  5863. <package3d name="SODFL5336X110" urn="urn:adsk.eagle:package:9427151/2" type="model" library_version="6">
  5864. <description>SODFL, 5.35 mm span, 4.33 X 3.63 X 1.10 mm body
  5865. &lt;p&gt;SODFL package with 5.35 mm span with body size 4.33 X 3.63 X 1.10 mm&lt;/p&gt;</description>
  5866. <packageinstances>
  5867. <packageinstance name="SODFL5336X110"/>
  5868. </packageinstances>
  5869. </package3d>
  5870. <package3d name="SODFL7959X110" urn="urn:adsk.eagle:package:9427150/2" type="model" library_version="6">
  5871. <description>SODFL, 7.95 mm span, 6.88 X 5.90 X 1.10 mm body
  5872. &lt;p&gt;SODFL package with 7.95 mm span with body size 6.88 X 5.90 X 1.10 mm&lt;/p&gt;</description>
  5873. <packageinstances>
  5874. <packageinstance name="SODFL7959X110"/>
  5875. </packageinstances>
  5876. </package3d>
  5877. <package3d name="SODFL5226X110" urn="urn:adsk.eagle:package:9427148/2" type="model" library_version="6">
  5878. <description>SODFL, 5.20 mm span, 4.28 X 2.60 X 1.10 mm body
  5879. &lt;p&gt;SODFL package with 5.20 mm span with body size 4.28 X 2.60 X 1.10 mm&lt;/p&gt;</description>
  5880. <packageinstances>
  5881. <packageinstance name="SODFL5226X110"/>
  5882. </packageinstances>
  5883. </package3d>
  5884. <package3d name="SODFL4725X110" urn="urn:adsk.eagle:package:9427149/2" type="model" library_version="6">
  5885. <description>SODFL, 4.70 mm span, 3.80 X 2.50 X 1.10 mm body
  5886. &lt;p&gt;SODFL package with 4.70 mm span with body size 3.80 X 2.50 X 1.10 mm&lt;/p&gt;</description>
  5887. <packageinstances>
  5888. <packageinstance name="SODFL4725X110"/>
  5889. </packageinstances>
  5890. </package3d>
  5891. <package3d name="SODFL1608X70" urn="urn:adsk.eagle:package:16378187/1" type="model" library_version="6">
  5892. <description>SODFL, 1.60 mm span, 1.20 X 0.80 X 0.70 mm body
  5893. &lt;p&gt;SODFL package with 1.60 mm span with body size 1.20 X 0.80 X 0.70 mm&lt;/p&gt;</description>
  5894. <packageinstances>
  5895. <packageinstance name="SODFL1608X70"/>
  5896. </packageinstances>
  5897. </package3d>
  5898. <package3d name="DIOM5226X290N" urn="urn:adsk.eagle:package:16378188/1" type="model" library_version="6">
  5899. <description>Molded Body, 5.20 X 2.60 X 2.90 mm body
  5900. &lt;p&gt;Molded Body package with body size 5.20 X 2.60 X 2.90 mm&lt;/p&gt;</description>
  5901. <packageinstances>
  5902. <packageinstance name="DIOM5226X290N"/>
  5903. </packageinstances>
  5904. </package3d>
  5905. <package3d name="DIOM5336X265N" urn="urn:adsk.eagle:package:16378189/1" type="model" library_version="6">
  5906. <description>Molded Body, 5.35 X 3.63 X 2.65 mm body
  5907. &lt;p&gt;Molded Body package with body size 5.35 X 3.63 X 2.65 mm&lt;/p&gt;</description>
  5908. <packageinstances>
  5909. <packageinstance name="DIOM5336X265N"/>
  5910. </packageinstances>
  5911. </package3d>
  5912. <package3d name="DIOM7959X625N" urn="urn:adsk.eagle:package:16378186/1" type="model" library_version="6">
  5913. <description>Molded Body, 7.95 X 5.90 X 6.25 mm body
  5914. &lt;p&gt;Molded Body package with body size 7.95 X 5.90 X 6.25 mm&lt;/p&gt;</description>
  5915. <packageinstances>
  5916. <packageinstance name="DIOM7959X625N"/>
  5917. </packageinstances>
  5918. </package3d>
  5919. </packages3d>
  5920. <symbols>
  5921. <symbol name="DIODE" urn="urn:adsk.eagle:symbol:16378170/2" library_version="6">
  5922. <description>Diode</description>
  5923. <pin name="A" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  5924. <pin name="C" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  5925. <text x="0" y="5.08" size="1.778" layer="95" align="center">&gt;NAME</text>
  5926. <text x="0" y="-5.08" size="1.778" layer="95" align="center">&gt;VALUE</text>
  5927. <text x="0" y="-7.62" size="1.778" layer="95" align="center">&gt;SPICEMODEL</text>
  5928. <text x="0" y="-10.16" size="1.778" layer="95" align="center">&gt;SPICEEXTRA</text>
  5929. <wire x1="-2.54" y1="-2.54" x2="-2.54" y2="2.54" width="0.254" layer="94"/>
  5930. <wire x1="-2.54" y1="2.54" x2="2.54" y2="0" width="0.254" layer="94"/>
  5931. <wire x1="2.54" y1="0" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  5932. <wire x1="2.54" y1="2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  5933. </symbol>
  5934. </symbols>
  5935. <devicesets>
  5936. <deviceset name="DIODE" urn="urn:adsk.eagle:component:16378193/4" prefix="D" library_version="6">
  5937. <description>&lt;B&gt;Diode Rectifier - Generic</description>
  5938. <gates>
  5939. <gate name="G$1" symbol="DIODE" x="0" y="0"/>
  5940. </gates>
  5941. <devices>
  5942. <device name="DO-213AA(SOD-80)" package="DIOMELF3516">
  5943. <connects>
  5944. <connect gate="G$1" pin="A" pad="2"/>
  5945. <connect gate="G$1" pin="C" pad="1"/>
  5946. </connects>
  5947. <package3dinstances>
  5948. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378190/2"/>
  5949. </package3dinstances>
  5950. <technologies>
  5951. <technology name="_">
  5952. <attribute name="CATEGORY" value="Diode" constant="no"/>
  5953. <attribute name="DESCRIPTION" value="" constant="no"/>
  5954. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  5955. <attribute name="MANUFACTURER" value="" constant="no"/>
  5956. <attribute name="MPN" value="" constant="no"/>
  5957. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5958. <attribute name="PART_STATUS" value="" constant="no"/>
  5959. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  5960. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5961. <attribute name="SERIES" value="" constant="no"/>
  5962. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  5963. <attribute name="THERMALLOSS" value="" constant="no"/>
  5964. <attribute name="TYPE" value="" constant="no"/>
  5965. </technology>
  5966. </technologies>
  5967. </device>
  5968. <device name="DO-213AB(5025-METRIC)" package="DIOMELF5024">
  5969. <connects>
  5970. <connect gate="G$1" pin="A" pad="2"/>
  5971. <connect gate="G$1" pin="C" pad="1"/>
  5972. </connects>
  5973. <package3dinstances>
  5974. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378191/1"/>
  5975. </package3dinstances>
  5976. <technologies>
  5977. <technology name="_">
  5978. <attribute name="CATEGORY" value="Diode" constant="no"/>
  5979. <attribute name="DESCRIPTION" value="" constant="no"/>
  5980. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  5981. <attribute name="MANUFACTURER" value="" constant="no"/>
  5982. <attribute name="MPN" value="" constant="no"/>
  5983. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5984. <attribute name="PART_STATUS" value="" constant="no"/>
  5985. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  5986. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5987. <attribute name="SERIES" value="" constant="no"/>
  5988. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  5989. <attribute name="THERMALLOSS" value="" constant="no"/>
  5990. <attribute name="TYPE" value="" constant="no"/>
  5991. </technology>
  5992. </technologies>
  5993. </device>
  5994. <device name="DO-215-AD" package="SOD3715X135">
  5995. <connects>
  5996. <connect gate="G$1" pin="A" pad="2"/>
  5997. <connect gate="G$1" pin="C" pad="1"/>
  5998. </connects>
  5999. <package3dinstances>
  6000. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427058/2"/>
  6001. </package3dinstances>
  6002. <technologies>
  6003. <technology name="_">
  6004. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6005. <attribute name="DESCRIPTION" value="" constant="no"/>
  6006. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6007. <attribute name="MANUFACTURER" value="" constant="no"/>
  6008. <attribute name="MPN" value="" constant="no"/>
  6009. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6010. <attribute name="PART_STATUS" value="" constant="no"/>
  6011. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6012. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6013. <attribute name="SERIES" value="" constant="no"/>
  6014. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6015. <attribute name="THERMALLOSS" value="" constant="no"/>
  6016. <attribute name="TYPE" value="" constant="no"/>
  6017. </technology>
  6018. </technologies>
  6019. </device>
  6020. <device name="DO-215-AC" package="SOD6126X290">
  6021. <connects>
  6022. <connect gate="G$1" pin="A" pad="2"/>
  6023. <connect gate="G$1" pin="C" pad="1"/>
  6024. </connects>
  6025. <package3dinstances>
  6026. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427057/2"/>
  6027. </package3dinstances>
  6028. <technologies>
  6029. <technology name="_">
  6030. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6031. <attribute name="DESCRIPTION" value="" constant="no"/>
  6032. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6033. <attribute name="MANUFACTURER" value="" constant="no"/>
  6034. <attribute name="MPN" value="" constant="no"/>
  6035. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6036. <attribute name="PART_STATUS" value="" constant="no"/>
  6037. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6038. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6039. <attribute name="SERIES" value="" constant="no"/>
  6040. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6041. <attribute name="THERMALLOSS" value="" constant="no"/>
  6042. <attribute name="TYPE" value="" constant="no"/>
  6043. </technology>
  6044. </technologies>
  6045. </device>
  6046. <device name="DO-215-BA" package="SOD6126X350">
  6047. <connects>
  6048. <connect gate="G$1" pin="A" pad="2"/>
  6049. <connect gate="G$1" pin="C" pad="1"/>
  6050. </connects>
  6051. <package3dinstances>
  6052. <package3dinstance package3d_urn="urn:adsk.eagle:package:9932483/2"/>
  6053. </package3dinstances>
  6054. <technologies>
  6055. <technology name="_">
  6056. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6057. <attribute name="DESCRIPTION" value="" constant="no"/>
  6058. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6059. <attribute name="MANUFACTURER" value="" constant="no"/>
  6060. <attribute name="MPN" value="" constant="no"/>
  6061. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6062. <attribute name="PART_STATUS" value="" constant="no"/>
  6063. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6064. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6065. <attribute name="SERIES" value="" constant="no"/>
  6066. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6067. <attribute name="THERMALLOSS" value="" constant="no"/>
  6068. <attribute name="TYPE" value="" constant="no"/>
  6069. </technology>
  6070. </technologies>
  6071. </device>
  6072. <device name="DO-215-AA" package="SOD6236X265">
  6073. <connects>
  6074. <connect gate="G$1" pin="A" pad="2"/>
  6075. <connect gate="G$1" pin="C" pad="1"/>
  6076. </connects>
  6077. <package3dinstances>
  6078. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427046/2"/>
  6079. </package3dinstances>
  6080. <technologies>
  6081. <technology name="_">
  6082. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6083. <attribute name="DESCRIPTION" value="" constant="no"/>
  6084. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6085. <attribute name="MANUFACTURER" value="" constant="no"/>
  6086. <attribute name="MPN" value="" constant="no"/>
  6087. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6088. <attribute name="PART_STATUS" value="" constant="no"/>
  6089. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6090. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6091. <attribute name="SERIES" value="" constant="no"/>
  6092. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6093. <attribute name="THERMALLOSS" value="" constant="no"/>
  6094. <attribute name="TYPE" value="" constant="no"/>
  6095. </technology>
  6096. </technologies>
  6097. </device>
  6098. <device name="DO-215-AB" package="SOD9959X265">
  6099. <connects>
  6100. <connect gate="G$1" pin="A" pad="2"/>
  6101. <connect gate="G$1" pin="C" pad="1"/>
  6102. </connects>
  6103. <package3dinstances>
  6104. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427056/2"/>
  6105. </package3dinstances>
  6106. <technologies>
  6107. <technology name="_">
  6108. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6109. <attribute name="DESCRIPTION" value="" constant="no"/>
  6110. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6111. <attribute name="MANUFACTURER" value="" constant="no"/>
  6112. <attribute name="MPN" value="" constant="no"/>
  6113. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6114. <attribute name="PART_STATUS" value="" constant="no"/>
  6115. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6116. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6117. <attribute name="SERIES" value="" constant="no"/>
  6118. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6119. <attribute name="THERMALLOSS" value="" constant="no"/>
  6120. <attribute name="TYPE" value="" constant="no"/>
  6121. </technology>
  6122. </technologies>
  6123. </device>
  6124. <device name="DO-219-AC(SOD323F)" package="SODFL2513X70">
  6125. <connects>
  6126. <connect gate="G$1" pin="A" pad="2"/>
  6127. <connect gate="G$1" pin="C" pad="1"/>
  6128. </connects>
  6129. <package3dinstances>
  6130. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427155/2"/>
  6131. </package3dinstances>
  6132. <technologies>
  6133. <technology name="_">
  6134. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6135. <attribute name="DESCRIPTION" value="" constant="no"/>
  6136. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6137. <attribute name="MANUFACTURER" value="" constant="no"/>
  6138. <attribute name="MPN" value="" constant="no"/>
  6139. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6140. <attribute name="PART_STATUS" value="" constant="no"/>
  6141. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6142. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6143. <attribute name="SERIES" value="" constant="no"/>
  6144. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6145. <attribute name="THERMALLOSS" value="" constant="no"/>
  6146. <attribute name="TYPE" value="" constant="no"/>
  6147. </technology>
  6148. </technologies>
  6149. </device>
  6150. <device name="DO-219-AD" package="SODFL2513X75">
  6151. <connects>
  6152. <connect gate="G$1" pin="A" pad="2"/>
  6153. <connect gate="G$1" pin="C" pad="1"/>
  6154. </connects>
  6155. <package3dinstances>
  6156. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427154/2"/>
  6157. </package3dinstances>
  6158. <technologies>
  6159. <technology name="_">
  6160. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6161. <attribute name="DESCRIPTION" value="" constant="no"/>
  6162. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6163. <attribute name="MANUFACTURER" value="" constant="no"/>
  6164. <attribute name="MPN" value="" constant="no"/>
  6165. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6166. <attribute name="PART_STATUS" value="" constant="no"/>
  6167. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6168. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6169. <attribute name="SERIES" value="" constant="no"/>
  6170. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6171. <attribute name="THERMALLOSS" value="" constant="no"/>
  6172. <attribute name="TYPE" value="" constant="no"/>
  6173. </technology>
  6174. </technologies>
  6175. </device>
  6176. <device name="DO-219-AB(SOD123F)" package="SODFL3718X115">
  6177. <connects>
  6178. <connect gate="G$1" pin="A" pad="2"/>
  6179. <connect gate="G$1" pin="C" pad="1"/>
  6180. </connects>
  6181. <package3dinstances>
  6182. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427153/2"/>
  6183. </package3dinstances>
  6184. <technologies>
  6185. <technology name="_">
  6186. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6187. <attribute name="DESCRIPTION" value="" constant="no"/>
  6188. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6189. <attribute name="MANUFACTURER" value="" constant="no"/>
  6190. <attribute name="MPN" value="" constant="no"/>
  6191. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6192. <attribute name="PART_STATUS" value="" constant="no"/>
  6193. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6194. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6195. <attribute name="SERIES" value="" constant="no"/>
  6196. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6197. <attribute name="THERMALLOSS" value="" constant="no"/>
  6198. <attribute name="TYPE" value="" constant="no"/>
  6199. </technology>
  6200. </technologies>
  6201. </device>
  6202. <device name="DO-219-AA" package="SODFL3718X140">
  6203. <connects>
  6204. <connect gate="G$1" pin="A" pad="2"/>
  6205. <connect gate="G$1" pin="C" pad="1"/>
  6206. </connects>
  6207. <package3dinstances>
  6208. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427152/2"/>
  6209. </package3dinstances>
  6210. <technologies>
  6211. <technology name="_">
  6212. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6213. <attribute name="DESCRIPTION" value="" constant="no"/>
  6214. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6215. <attribute name="MANUFACTURER" value="" constant="no"/>
  6216. <attribute name="MPN" value="" constant="no"/>
  6217. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6218. <attribute name="PART_STATUS" value="" constant="no"/>
  6219. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6220. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6221. <attribute name="SERIES" value="" constant="no"/>
  6222. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6223. <attribute name="THERMALLOSS" value="" constant="no"/>
  6224. <attribute name="TYPE" value="" constant="no"/>
  6225. </technology>
  6226. </technologies>
  6227. </device>
  6228. <device name="DO-221-AA" package="SODFL5336X110">
  6229. <connects>
  6230. <connect gate="G$1" pin="A" pad="2"/>
  6231. <connect gate="G$1" pin="C" pad="1"/>
  6232. </connects>
  6233. <package3dinstances>
  6234. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427151/2"/>
  6235. </package3dinstances>
  6236. <technologies>
  6237. <technology name="_">
  6238. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6239. <attribute name="DESCRIPTION" value="" constant="no"/>
  6240. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6241. <attribute name="MANUFACTURER" value="" constant="no"/>
  6242. <attribute name="MPN" value="" constant="no"/>
  6243. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6244. <attribute name="PART_STATUS" value="" constant="no"/>
  6245. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6246. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6247. <attribute name="SERIES" value="" constant="no"/>
  6248. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6249. <attribute name="THERMALLOSS" value="" constant="no"/>
  6250. <attribute name="TYPE" value="" constant="no"/>
  6251. </technology>
  6252. </technologies>
  6253. </device>
  6254. <device name="DO-221-AB" package="SODFL7959X110">
  6255. <connects>
  6256. <connect gate="G$1" pin="A" pad="2"/>
  6257. <connect gate="G$1" pin="C" pad="1"/>
  6258. </connects>
  6259. <package3dinstances>
  6260. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427150/2"/>
  6261. </package3dinstances>
  6262. <technologies>
  6263. <technology name="_">
  6264. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6265. <attribute name="DESCRIPTION" value="" constant="no"/>
  6266. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6267. <attribute name="MANUFACTURER" value="" constant="no"/>
  6268. <attribute name="MPN" value="" constant="no"/>
  6269. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6270. <attribute name="PART_STATUS" value="" constant="no"/>
  6271. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6272. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6273. <attribute name="SERIES" value="" constant="no"/>
  6274. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6275. <attribute name="THERMALLOSS" value="" constant="no"/>
  6276. <attribute name="TYPE" value="" constant="no"/>
  6277. </technology>
  6278. </technologies>
  6279. </device>
  6280. <device name="DO-221-AC" package="SODFL5226X110">
  6281. <connects>
  6282. <connect gate="G$1" pin="A" pad="2"/>
  6283. <connect gate="G$1" pin="C" pad="1"/>
  6284. </connects>
  6285. <package3dinstances>
  6286. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427148/2"/>
  6287. </package3dinstances>
  6288. <technologies>
  6289. <technology name="_">
  6290. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6291. <attribute name="DESCRIPTION" value="" constant="no"/>
  6292. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6293. <attribute name="MANUFACTURER" value="" constant="no"/>
  6294. <attribute name="MPN" value="" constant="no"/>
  6295. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6296. <attribute name="PART_STATUS" value="" constant="no"/>
  6297. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6298. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6299. <attribute name="SERIES" value="" constant="no"/>
  6300. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6301. <attribute name="THERMALLOSS" value="" constant="no"/>
  6302. <attribute name="TYPE" value="" constant="no"/>
  6303. </technology>
  6304. </technologies>
  6305. </device>
  6306. <device name="DO-221-AD" package="SODFL4725X110">
  6307. <connects>
  6308. <connect gate="G$1" pin="A" pad="2"/>
  6309. <connect gate="G$1" pin="C" pad="1"/>
  6310. </connects>
  6311. <package3dinstances>
  6312. <package3dinstance package3d_urn="urn:adsk.eagle:package:9427149/2"/>
  6313. </package3dinstances>
  6314. <technologies>
  6315. <technology name="_">
  6316. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6317. <attribute name="DESCRIPTION" value="" constant="no"/>
  6318. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6319. <attribute name="MANUFACTURER" value="" constant="no"/>
  6320. <attribute name="MPN" value="" constant="no"/>
  6321. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6322. <attribute name="PART_STATUS" value="" constant="no"/>
  6323. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6324. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6325. <attribute name="SERIES" value="" constant="no"/>
  6326. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6327. <attribute name="THERMALLOSS" value="" constant="no"/>
  6328. <attribute name="TYPE" value="" constant="no"/>
  6329. </technology>
  6330. </technologies>
  6331. </device>
  6332. <device name="SODFL(1608-METRIC)" package="SODFL1608X70">
  6333. <connects>
  6334. <connect gate="G$1" pin="A" pad="2"/>
  6335. <connect gate="G$1" pin="C" pad="1"/>
  6336. </connects>
  6337. <package3dinstances>
  6338. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378187/1"/>
  6339. </package3dinstances>
  6340. <technologies>
  6341. <technology name="_">
  6342. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6343. <attribute name="DESCRIPTION" value="" constant="no"/>
  6344. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6345. <attribute name="MANUFACTURER" value="" constant="no"/>
  6346. <attribute name="MPN" value="" constant="no"/>
  6347. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6348. <attribute name="PART_STATUS" value="" constant="no"/>
  6349. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6350. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6351. <attribute name="SERIES" value="" constant="no"/>
  6352. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6353. <attribute name="THERMALLOSS" value="" constant="no"/>
  6354. <attribute name="TYPE" value="" constant="no"/>
  6355. </technology>
  6356. </technologies>
  6357. </device>
  6358. <device name="DO-214AC(SMA)" package="DIOM5226X290N">
  6359. <connects>
  6360. <connect gate="G$1" pin="A" pad="2"/>
  6361. <connect gate="G$1" pin="C" pad="1"/>
  6362. </connects>
  6363. <package3dinstances>
  6364. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378188/1"/>
  6365. </package3dinstances>
  6366. <technologies>
  6367. <technology name="">
  6368. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6369. <attribute name="DESCRIPTION" value="" constant="no"/>
  6370. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6371. <attribute name="MANUFACTURER" value="" constant="no"/>
  6372. <attribute name="MPN" value="" constant="no"/>
  6373. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6374. <attribute name="PART_STATUS" value="" constant="no"/>
  6375. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6376. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6377. <attribute name="SERIES" value="" constant="no"/>
  6378. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6379. <attribute name="THERMALLOSS" value="" constant="no"/>
  6380. <attribute name="TYPE" value="" constant="no"/>
  6381. </technology>
  6382. </technologies>
  6383. </device>
  6384. <device name="DO-214AA(SMB)" package="DIOM5336X265N">
  6385. <connects>
  6386. <connect gate="G$1" pin="A" pad="2"/>
  6387. <connect gate="G$1" pin="C" pad="1"/>
  6388. </connects>
  6389. <package3dinstances>
  6390. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378189/1"/>
  6391. </package3dinstances>
  6392. <technologies>
  6393. <technology name="">
  6394. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6395. <attribute name="DESCRIPTION" value="" constant="no"/>
  6396. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6397. <attribute name="MANUFACTURER" value="" constant="no"/>
  6398. <attribute name="MPN" value="" constant="no"/>
  6399. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6400. <attribute name="PART_STATUS" value="" constant="no"/>
  6401. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6402. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6403. <attribute name="SERIES" value="" constant="no"/>
  6404. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6405. <attribute name="THERMALLOSS" value="" constant="no"/>
  6406. <attribute name="TYPE" value="" constant="no"/>
  6407. </technology>
  6408. </technologies>
  6409. </device>
  6410. <device name="DO-214AB(SMC)" package="DIOM7959X625N">
  6411. <connects>
  6412. <connect gate="G$1" pin="A" pad="2"/>
  6413. <connect gate="G$1" pin="C" pad="1"/>
  6414. </connects>
  6415. <package3dinstances>
  6416. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378186/1"/>
  6417. </package3dinstances>
  6418. <technologies>
  6419. <technology name="">
  6420. <attribute name="CATEGORY" value="Diode" constant="no"/>
  6421. <attribute name="DESCRIPTION" value="" constant="no"/>
  6422. <attribute name="FORWARD_CURRENT" value="" constant="no"/>
  6423. <attribute name="MANUFACTURER" value="" constant="no"/>
  6424. <attribute name="MPN" value="" constant="no"/>
  6425. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6426. <attribute name="PART_STATUS" value="" constant="no"/>
  6427. <attribute name="REVERSE_VOLTAGE" value="" constant="no"/>
  6428. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6429. <attribute name="SERIES" value="" constant="no"/>
  6430. <attribute name="SUB-CATEGORY" value="Rectifier" constant="no"/>
  6431. <attribute name="THERMALLOSS" value="" constant="no"/>
  6432. <attribute name="TYPE" value="" constant="no"/>
  6433. </technology>
  6434. </technologies>
  6435. </device>
  6436. </devices>
  6437. <spice>
  6438. <pinmapping spiceprefix="D">
  6439. <pinmap gate="G$1" pin="A" pinorder="1"/>
  6440. <pinmap gate="G$1" pin="C" pinorder="2"/>
  6441. </pinmapping>
  6442. <model name="DMOD">
  6443. **********************
  6444. * Autodesk EAGLE - Spice Model File
  6445. * Date: 9/17/17
  6446. * basic diode intrinsic model
  6447. **********************
  6448. .MODEL DMOD D</model>
  6449. </spice>
  6450. </deviceset>
  6451. </devicesets>
  6452. </library>
  6453. <library name="Transistor" urn="urn:adsk.eagle:library:16378713">
  6454. <description>&lt;B&gt;BJT, JFET, MOSFET, UJT, Darlington</description>
  6455. <packages>
  6456. <package name="SOT23" urn="urn:adsk.eagle:footprint:28669/1" library_version="4">
  6457. <description>&lt;b&gt;SOT-23&lt;/b&gt;</description>
  6458. <wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  6459. <wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  6460. <wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/>
  6461. <wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/>
  6462. <smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/>
  6463. <smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  6464. <smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  6465. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6466. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6467. <rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/>
  6468. <rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/>
  6469. <rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/>
  6470. </package>
  6471. <package name="TO92" urn="urn:adsk.eagle:footprint:28459/1" library_version="4">
  6472. <description>&lt;b&gt;TO 92&lt;/b&gt;</description>
  6473. <wire x1="-2.0946" y1="-1.651" x2="-2.6549" y2="-0.254" width="0.127" layer="21" curve="-32.781"/>
  6474. <wire x1="-2.6549" y1="-0.254" x2="-0.7863" y2="2.5485" width="0.127" layer="21" curve="-78.3185"/>
  6475. <wire x1="0.7863" y1="2.5484" x2="2.0945" y2="-1.651" width="0.127" layer="21" curve="-111.1"/>
  6476. <wire x1="-2.0945" y1="-1.651" x2="2.0945" y2="-1.651" width="0.127" layer="21"/>
  6477. <wire x1="-2.2537" y1="-0.254" x2="-0.2863" y2="-0.254" width="0.127" layer="51"/>
  6478. <wire x1="-2.6549" y1="-0.254" x2="-2.2537" y2="-0.254" width="0.127" layer="21"/>
  6479. <wire x1="-0.2863" y1="-0.254" x2="0.2863" y2="-0.254" width="0.127" layer="21"/>
  6480. <wire x1="2.2537" y1="-0.254" x2="2.6549" y2="-0.254" width="0.127" layer="21"/>
  6481. <wire x1="0.2863" y1="-0.254" x2="2.2537" y2="-0.254" width="0.127" layer="51"/>
  6482. <wire x1="-0.7863" y1="2.5485" x2="0.7863" y2="2.5485" width="0.127" layer="51" curve="-34.2936"/>
  6483. <pad name="1" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  6484. <pad name="2" x="0" y="1.905" drill="0.8128" shape="octagon"/>
  6485. <pad name="3" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  6486. <text x="3.175" y="0.635" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6487. <text x="3.175" y="-1.27" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6488. <text x="-0.635" y="0.635" size="1.27" layer="51" ratio="10">2</text>
  6489. <text x="-2.159" y="0" size="1.27" layer="51" ratio="10">3</text>
  6490. <text x="1.143" y="0" size="1.27" layer="51" ratio="10">1</text>
  6491. </package>
  6492. <package name="TO220BV" urn="urn:adsk.eagle:footprint:29371/1" library_version="4">
  6493. <description>&lt;b&gt;Molded Package&lt;/b&gt;&lt;p&gt;
  6494. grid 2.54 mm</description>
  6495. <wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  6496. <wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  6497. <wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  6498. <wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  6499. <wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/>
  6500. <circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/>
  6501. <pad name="G" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6502. <pad name="D" x="0" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6503. <pad name="S" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6504. <text x="-5.08" y="-6.0452" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6505. <text x="-5.08" y="-7.62" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6506. <rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/>
  6507. <rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/>
  6508. <rectangle x1="-1.651" y1="-1.27" x2="-0.889" y2="-0.762" layer="21"/>
  6509. <rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/>
  6510. <rectangle x1="0.889" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/>
  6511. <rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/>
  6512. <rectangle x1="-0.889" y1="-1.27" x2="0.889" y2="-0.762" layer="51"/>
  6513. <rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/>
  6514. </package>
  6515. </packages>
  6516. <packages3d>
  6517. <package3d name="SOT23" urn="urn:adsk.eagle:package:28738/2" type="model" library_version="4">
  6518. <description>SOT-23</description>
  6519. <packageinstances>
  6520. <packageinstance name="SOT23"/>
  6521. </packageinstances>
  6522. </package3d>
  6523. <package3d name="TO92" urn="urn:adsk.eagle:package:16378726/2" type="model" library_version="4">
  6524. <description>TO 92</description>
  6525. <packageinstances>
  6526. <packageinstance name="TO92"/>
  6527. </packageinstances>
  6528. </package3d>
  6529. <package3d name="TO220BV" urn="urn:adsk.eagle:package:29484/4" type="model" library_version="5">
  6530. <description>Molded Package
  6531. grid 2.54 mm</description>
  6532. <packageinstances>
  6533. <packageinstance name="TO220BV"/>
  6534. </packageinstances>
  6535. </package3d>
  6536. </packages3d>
  6537. <symbols>
  6538. <symbol name="MFNS" urn="urn:adsk.eagle:symbol:16378716/2" library_version="4">
  6539. <wire x1="-1.1176" y1="2.413" x2="-1.1176" y2="-2.54" width="0.254" layer="94"/>
  6540. <wire x1="-1.1176" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  6541. <wire x1="2.54" y1="1.905" x2="0.5334" y2="1.905" width="0.1524" layer="94"/>
  6542. <wire x1="2.54" y1="0" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6543. <wire x1="0.508" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6544. <wire x1="2.54" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6545. <wire x1="2.54" y1="1.905" x2="5.08" y2="1.905" width="0.1524" layer="94"/>
  6546. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6547. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6548. <wire x1="5.08" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6549. <wire x1="2.54" y1="-1.905" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  6550. <wire x1="5.08" y1="0.762" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  6551. <wire x1="4.445" y1="-0.635" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  6552. <wire x1="5.715" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6553. <wire x1="4.445" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6554. <wire x1="5.08" y1="0.762" x2="5.715" y2="0.762" width="0.1524" layer="94"/>
  6555. <wire x1="5.715" y1="0.762" x2="5.969" y2="1.016" width="0.1524" layer="94"/>
  6556. <wire x1="4.445" y1="0.762" x2="4.191" y2="0.508" width="0.1524" layer="94"/>
  6557. <wire x1="0.508" y1="0" x2="1.778" y2="-0.508" width="0.1524" layer="94"/>
  6558. <wire x1="1.778" y1="-0.508" x2="1.778" y2="0.508" width="0.1524" layer="94"/>
  6559. <wire x1="1.778" y1="0.508" x2="0.508" y2="0" width="0.1524" layer="94"/>
  6560. <wire x1="1.651" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6561. <wire x1="1.651" y1="0.254" x2="0.762" y2="0" width="0.3048" layer="94"/>
  6562. <wire x1="0.762" y1="0" x2="1.651" y2="-0.254" width="0.3048" layer="94"/>
  6563. <wire x1="1.651" y1="-0.254" x2="1.651" y2="0" width="0.3048" layer="94"/>
  6564. <wire x1="1.651" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  6565. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  6566. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  6567. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  6568. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  6569. <text x="1.27" y="2.54" size="0.8128" layer="93">D</text>
  6570. <text x="1.27" y="-3.175" size="0.8128" layer="93">S</text>
  6571. <text x="-2.54" y="-1.27" size="0.8128" layer="93">G</text>
  6572. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  6573. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  6574. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6575. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  6576. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6577. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6578. </symbol>
  6579. <symbol name="MFPS" urn="urn:adsk.eagle:symbol:16378717/2" library_version="4">
  6580. <wire x1="-1.016" y1="-2.54" x2="-1.016" y2="2.54" width="0.254" layer="94"/>
  6581. <wire x1="-1.016" y1="2.54" x2="-2.54" y2="2.54" width="0.1524" layer="94"/>
  6582. <wire x1="2.54" y1="-1.905" x2="0.5334" y2="-1.905" width="0.1524" layer="94"/>
  6583. <wire x1="2.54" y1="0" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6584. <wire x1="0.508" y1="1.905" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6585. <wire x1="2.54" y1="-2.54" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6586. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6587. <wire x1="5.08" y1="1.905" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6588. <wire x1="2.54" y1="1.905" x2="2.54" y2="2.54" width="0.1524" layer="94"/>
  6589. <wire x1="2.2352" y1="0" x2="2.286" y2="0" width="0.1524" layer="94"/>
  6590. <wire x1="2.286" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6591. <wire x1="2.286" y1="0" x2="1.016" y2="-0.508" width="0.1524" layer="94"/>
  6592. <wire x1="1.016" y1="-0.508" x2="1.016" y2="0.508" width="0.1524" layer="94"/>
  6593. <wire x1="1.016" y1="0.508" x2="2.286" y2="0" width="0.1524" layer="94"/>
  6594. <wire x1="1.143" y1="0" x2="0.254" y2="0" width="0.1524" layer="94"/>
  6595. <wire x1="1.143" y1="0.254" x2="2.032" y2="0" width="0.3048" layer="94"/>
  6596. <wire x1="2.032" y1="0" x2="1.143" y2="-0.254" width="0.3048" layer="94"/>
  6597. <wire x1="1.143" y1="-0.254" x2="1.143" y2="0" width="0.3048" layer="94"/>
  6598. <wire x1="1.143" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  6599. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6600. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6601. <wire x1="5.08" y1="0.762" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  6602. <wire x1="5.715" y1="-0.635" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  6603. <wire x1="4.445" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6604. <wire x1="5.715" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6605. <wire x1="5.08" y1="0.762" x2="4.445" y2="0.762" width="0.1524" layer="94"/>
  6606. <wire x1="4.445" y1="0.762" x2="4.191" y2="1.016" width="0.1524" layer="94"/>
  6607. <wire x1="5.715" y1="0.762" x2="5.969" y2="0.508" width="0.1524" layer="94"/>
  6608. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  6609. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  6610. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  6611. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  6612. <text x="1.524" y="-3.302" size="0.8128" layer="93">D</text>
  6613. <text x="1.524" y="2.54" size="0.8128" layer="93">S</text>
  6614. <text x="-2.286" y="1.27" size="0.8128" layer="93">G</text>
  6615. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  6616. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  6617. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6618. <pin name="G" x="-2.54" y="2.54" visible="off" length="point" direction="pas"/>
  6619. <pin name="D" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6620. <pin name="S" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6621. </symbol>
  6622. </symbols>
  6623. <devicesets>
  6624. <deviceset name="NMOSFET" urn="urn:adsk.eagle:component:16378730/4" prefix="Q" library_version="5">
  6625. <description>&lt;b&gt; N-Channel MOSFET - Generic</description>
  6626. <gates>
  6627. <gate name="G$1" symbol="MFNS" x="-2.54" y="0"/>
  6628. </gates>
  6629. <devices>
  6630. <device name="SOT23" package="SOT23">
  6631. <connects>
  6632. <connect gate="G$1" pin="D" pad="3"/>
  6633. <connect gate="G$1" pin="G" pad="1"/>
  6634. <connect gate="G$1" pin="S" pad="2"/>
  6635. </connects>
  6636. <package3dinstances>
  6637. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6638. </package3dinstances>
  6639. <technologies>
  6640. <technology name="">
  6641. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6642. <attribute name="DESCRIPTION" value="" constant="no"/>
  6643. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6644. <attribute name="MANUFACTURER" value="" constant="no"/>
  6645. <attribute name="MPN" value="" constant="no"/>
  6646. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6647. <attribute name="PART_STATUS" value="" constant="no"/>
  6648. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6649. <attribute name="SERIES" value="" constant="no"/>
  6650. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6651. <attribute name="THERMALLOSS" value="" constant="no"/>
  6652. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6653. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6654. </technology>
  6655. <technology name="_">
  6656. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6657. <attribute name="DESCRIPTION" value="" constant="no"/>
  6658. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6659. <attribute name="MANUFACTURER" value="" constant="no"/>
  6660. <attribute name="MPN" value="" constant="no"/>
  6661. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6662. <attribute name="PART_STATUS" value="" constant="no"/>
  6663. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6664. <attribute name="SERIES" value="" constant="no"/>
  6665. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6666. <attribute name="THERMALLOSS" value="" constant="no"/>
  6667. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6668. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6669. </technology>
  6670. </technologies>
  6671. </device>
  6672. <device name="TO92" package="TO92">
  6673. <connects>
  6674. <connect gate="G$1" pin="D" pad="1"/>
  6675. <connect gate="G$1" pin="G" pad="2"/>
  6676. <connect gate="G$1" pin="S" pad="3"/>
  6677. </connects>
  6678. <package3dinstances>
  6679. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  6680. </package3dinstances>
  6681. <technologies>
  6682. <technology name="_">
  6683. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6684. <attribute name="DESCRIPTION" value="" constant="no"/>
  6685. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6686. <attribute name="MANUFACTURER" value="" constant="no"/>
  6687. <attribute name="MPN" value="" constant="no"/>
  6688. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6689. <attribute name="PART_STATUS" value="" constant="no"/>
  6690. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6691. <attribute name="SERIES" value="" constant="no"/>
  6692. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6693. <attribute name="THERMALLOSS" value="" constant="no"/>
  6694. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6695. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6696. </technology>
  6697. </technologies>
  6698. </device>
  6699. <device name="TO220" package="TO220BV">
  6700. <connects>
  6701. <connect gate="G$1" pin="D" pad="D"/>
  6702. <connect gate="G$1" pin="G" pad="G"/>
  6703. <connect gate="G$1" pin="S" pad="S"/>
  6704. </connects>
  6705. <package3dinstances>
  6706. <package3dinstance package3d_urn="urn:adsk.eagle:package:29484/4"/>
  6707. </package3dinstances>
  6708. <technologies>
  6709. <technology name="_">
  6710. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6711. <attribute name="DESCRIPTION" value="" constant="no"/>
  6712. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6713. <attribute name="MANUFACTURER" value="" constant="no"/>
  6714. <attribute name="MPN" value="" constant="no"/>
  6715. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6716. <attribute name="PART_STATUS" value="" constant="no"/>
  6717. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6718. <attribute name="SERIES" value="" constant="no"/>
  6719. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6720. <attribute name="THERMALLOSS" value="" constant="no"/>
  6721. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6722. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6723. </technology>
  6724. </technologies>
  6725. </device>
  6726. </devices>
  6727. </deviceset>
  6728. <deviceset name="PMOSFET_" urn="urn:adsk.eagle:component:16378732/4" prefix="Q" library_version="5">
  6729. <description>&lt;b&gt;P-Channel MOSFET - Popular parts&lt;/b&gt;</description>
  6730. <gates>
  6731. <gate name="G$1" symbol="MFPS" x="-2.54" y="0"/>
  6732. </gates>
  6733. <devices>
  6734. <device name="" package="SOT23">
  6735. <connects>
  6736. <connect gate="G$1" pin="D" pad="3"/>
  6737. <connect gate="G$1" pin="G" pad="1"/>
  6738. <connect gate="G$1" pin="S" pad="2"/>
  6739. </connects>
  6740. <package3dinstances>
  6741. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6742. </package3dinstances>
  6743. <technologies>
  6744. <technology name="BSS84">
  6745. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6746. <attribute name="DESCRIPTION" value="MOSFET P-CH 50V 130MA SOT-23"/>
  6747. <attribute name="DRAIN_CURRENT" value="130mA" constant="no"/>
  6748. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  6749. <attribute name="MPN" value="BSS84" constant="no"/>
  6750. <attribute name="OPERATING_TEMP" value="-55°C ~ 150°C" constant="no"/>
  6751. <attribute name="PART_STATUS" value="Active" constant="no"/>
  6752. <attribute name="ROHS_COMPLIANT" value="Yes" constant="no"/>
  6753. <attribute name="SERIES" value="" constant="no"/>
  6754. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6755. <attribute name="THERMALLOSS" value="360mW" constant="no"/>
  6756. <attribute name="TYPE" value="P-Channel" constant="no"/>
  6757. <attribute name="VALUE" value="BSS84" constant="no"/>
  6758. </technology>
  6759. <technology name="IRLML5203">
  6760. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6761. <attribute name="DESCRIPTION" value="MOSFET P-CH 30V 3A SOT-23" constant="no"/>
  6762. <attribute name="DRAIN_CURRENT" value="3A" constant="no"/>
  6763. <attribute name="MANUFACTURER" value="Infineon Technologies" constant="no"/>
  6764. <attribute name="MPN" value="IRLML5203TRPBF" constant="no"/>
  6765. <attribute name="OPERATING_TEMP" value="-55°C ~ 150°C" constant="no"/>
  6766. <attribute name="PART_STATUS" value="Active" constant="no"/>
  6767. <attribute name="ROHS_COMPLIANT" value="Yes" constant="no"/>
  6768. <attribute name="SERIES" value="" constant="no"/>
  6769. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6770. <attribute name="THERMALLOSS" value="1.25W" constant="no"/>
  6771. <attribute name="TYPE" value="P-Channel" constant="no"/>
  6772. <attribute name="VALUE" value="IRLML5203" constant="no"/>
  6773. </technology>
  6774. </technologies>
  6775. </device>
  6776. </devices>
  6777. </deviceset>
  6778. </devicesets>
  6779. </library>
  6780. <library name="eagle-ltspice" urn="urn:adsk.eagle:library:217">
  6781. <description>Default symbols for import LTspice schematics&lt;p&gt;
  6782. 2012-10-29 alf@cadsoft.de&lt;br&gt;</description>
  6783. <packages>
  6784. <package name="0204/7" urn="urn:adsk.eagle:footprint:13215/1" library_version="1">
  6785. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  6786. type 0204, grid 7.5 mm</description>
  6787. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  6788. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  6789. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  6790. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  6791. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  6792. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  6793. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  6794. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  6795. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  6796. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  6797. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  6798. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  6799. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  6800. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  6801. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  6802. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  6803. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  6804. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  6805. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  6806. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  6807. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  6808. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  6809. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  6810. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  6811. </package>
  6812. <package name="0207/10" urn="urn:adsk.eagle:footprint:13216/1" library_version="1">
  6813. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  6814. type 0207, grid 10 mm</description>
  6815. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  6816. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  6817. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  6818. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  6819. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  6820. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  6821. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  6822. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  6823. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  6824. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  6825. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  6826. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  6827. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  6828. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  6829. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  6830. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  6831. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  6832. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  6833. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  6834. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  6835. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  6836. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  6837. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6838. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6839. </package>
  6840. <package name="R0201" urn="urn:adsk.eagle:footprint:13233/1" library_version="1">
  6841. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  6842. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  6843. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  6844. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  6845. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  6846. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  6847. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  6848. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  6849. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  6850. </package>
  6851. <package name="R0402" urn="urn:adsk.eagle:footprint:13234/1" library_version="1">
  6852. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6853. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  6854. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  6855. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  6856. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  6857. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  6858. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  6859. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  6860. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  6861. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  6862. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  6863. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  6864. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  6865. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  6866. </package>
  6867. <package name="R0603" urn="urn:adsk.eagle:footprint:13235/1" library_version="1">
  6868. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6869. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  6870. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  6871. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  6872. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  6873. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  6874. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  6875. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  6876. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  6877. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  6878. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  6879. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  6880. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  6881. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  6882. </package>
  6883. <package name="R0805" urn="urn:adsk.eagle:footprint:13236/1" library_version="1">
  6884. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  6885. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  6886. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  6887. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  6888. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  6889. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  6890. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  6891. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  6892. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  6893. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  6894. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  6895. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  6896. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  6897. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  6898. </package>
  6899. <package name="R1005" urn="urn:adsk.eagle:footprint:13237/1" library_version="1">
  6900. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6901. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  6902. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  6903. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  6904. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  6905. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  6906. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  6907. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  6908. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  6909. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  6910. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  6911. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  6912. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  6913. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  6914. </package>
  6915. <package name="R1206" urn="urn:adsk.eagle:footprint:13238/1" library_version="1">
  6916. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6917. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  6918. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  6919. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  6920. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  6921. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  6922. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  6923. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  6924. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  6925. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  6926. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  6927. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  6928. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  6929. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  6930. </package>
  6931. <package name="R1210" urn="urn:adsk.eagle:footprint:13239/1" library_version="1">
  6932. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6933. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  6934. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  6935. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  6936. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  6937. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  6938. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  6939. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  6940. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  6941. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  6942. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  6943. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  6944. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6945. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6946. </package>
  6947. <package name="R1218" urn="urn:adsk.eagle:footprint:13240/1" library_version="1">
  6948. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  6949. Source: http://www.vishay.com .. dcrcw.pdf</description>
  6950. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  6951. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  6952. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  6953. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  6954. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  6955. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  6956. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  6957. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  6958. </package>
  6959. <package name="R2010" urn="urn:adsk.eagle:footprint:13241/1" library_version="1">
  6960. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6961. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  6962. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  6963. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  6964. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  6965. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  6966. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  6967. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  6968. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  6969. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  6970. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  6971. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6972. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6973. </package>
  6974. <package name="R2012" urn="urn:adsk.eagle:footprint:13242/1" library_version="1">
  6975. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6976. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  6977. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  6978. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  6979. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  6980. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  6981. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  6982. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  6983. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  6984. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  6985. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  6986. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  6987. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  6988. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  6989. </package>
  6990. <package name="R2512" urn="urn:adsk.eagle:footprint:13243/1" library_version="1">
  6991. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  6992. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  6993. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  6994. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  6995. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  6996. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  6997. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  6998. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  6999. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  7000. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  7001. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  7002. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  7003. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  7004. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  7005. </package>
  7006. <package name="R3216" urn="urn:adsk.eagle:footprint:13244/1" library_version="1">
  7007. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  7008. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  7009. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  7010. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  7011. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  7012. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  7013. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  7014. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  7015. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  7016. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  7017. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  7018. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  7019. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  7020. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  7021. </package>
  7022. <package name="R3225" urn="urn:adsk.eagle:footprint:13245/1" library_version="1">
  7023. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  7024. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  7025. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  7026. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  7027. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  7028. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  7029. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  7030. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  7031. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  7032. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  7033. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  7034. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  7035. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  7036. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  7037. </package>
  7038. <package name="R4527" urn="urn:adsk.eagle:footprint:13246/1" library_version="1">
  7039. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  7040. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  7041. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  7042. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  7043. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  7044. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  7045. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  7046. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  7047. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  7048. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  7049. </package>
  7050. <package name="R5025" urn="urn:adsk.eagle:footprint:13247/1" library_version="1">
  7051. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  7052. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  7053. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  7054. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  7055. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  7056. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  7057. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  7058. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  7059. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  7060. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  7061. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  7062. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  7063. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  7064. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  7065. </package>
  7066. <package name="R6332" urn="urn:adsk.eagle:footprint:13248/1" library_version="1">
  7067. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  7068. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  7069. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  7070. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  7071. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  7072. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  7073. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  7074. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  7075. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  7076. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  7077. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  7078. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  7079. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  7080. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  7081. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  7082. </package>
  7083. </packages>
  7084. <packages3d>
  7085. <package3d name="0204/7" urn="urn:adsk.eagle:package:13274/1" type="box" library_version="1">
  7086. <description>RESISTOR
  7087. type 0204, grid 7.5 mm</description>
  7088. <packageinstances>
  7089. <packageinstance name="0204/7"/>
  7090. </packageinstances>
  7091. </package3d>
  7092. <package3d name="0207/10" urn="urn:adsk.eagle:package:13275/1" type="box" library_version="1">
  7093. <description>RESISTOR
  7094. type 0207, grid 10 mm</description>
  7095. <packageinstances>
  7096. <packageinstance name="0207/10"/>
  7097. </packageinstances>
  7098. </package3d>
  7099. <package3d name="R0201" urn="urn:adsk.eagle:package:13294/1" type="box" library_version="1">
  7100. <description>RESISTOR chip
  7101. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  7102. <packageinstances>
  7103. <packageinstance name="R0201"/>
  7104. </packageinstances>
  7105. </package3d>
  7106. <package3d name="R0402" urn="urn:adsk.eagle:package:13296/1" type="box" library_version="1">
  7107. <description>RESISTOR</description>
  7108. <packageinstances>
  7109. <packageinstance name="R0402"/>
  7110. </packageinstances>
  7111. </package3d>
  7112. <package3d name="R0603" urn="urn:adsk.eagle:package:13302/1" type="box" library_version="1">
  7113. <description>RESISTOR</description>
  7114. <packageinstances>
  7115. <packageinstance name="R0603"/>
  7116. </packageinstances>
  7117. </package3d>
  7118. <package3d name="R0805" urn="urn:adsk.eagle:package:13300/1" type="box" library_version="1">
  7119. <description>RESISTOR</description>
  7120. <packageinstances>
  7121. <packageinstance name="R0805"/>
  7122. </packageinstances>
  7123. </package3d>
  7124. <package3d name="R1005" urn="urn:adsk.eagle:package:13297/1" type="box" library_version="1">
  7125. <description>RESISTOR</description>
  7126. <packageinstances>
  7127. <packageinstance name="R1005"/>
  7128. </packageinstances>
  7129. </package3d>
  7130. <package3d name="R1206" urn="urn:adsk.eagle:package:13301/1" type="box" library_version="1">
  7131. <description>RESISTOR</description>
  7132. <packageinstances>
  7133. <packageinstance name="R1206"/>
  7134. </packageinstances>
  7135. </package3d>
  7136. <package3d name="R1210" urn="urn:adsk.eagle:package:13299/1" type="box" library_version="1">
  7137. <description>RESISTOR</description>
  7138. <packageinstances>
  7139. <packageinstance name="R1210"/>
  7140. </packageinstances>
  7141. </package3d>
  7142. <package3d name="R1218" urn="urn:adsk.eagle:package:13303/1" type="box" library_version="1">
  7143. <description>CRCW1218 Thick Film, Rectangular Chip Resistors
  7144. Source: http://www.vishay.com .. dcrcw.pdf</description>
  7145. <packageinstances>
  7146. <packageinstance name="R1218"/>
  7147. </packageinstances>
  7148. </package3d>
  7149. <package3d name="R2010" urn="urn:adsk.eagle:package:13309/1" type="box" library_version="1">
  7150. <description>RESISTOR</description>
  7151. <packageinstances>
  7152. <packageinstance name="R2010"/>
  7153. </packageinstances>
  7154. </package3d>
  7155. <package3d name="R2012" urn="urn:adsk.eagle:package:13306/1" type="box" library_version="1">
  7156. <description>RESISTOR</description>
  7157. <packageinstances>
  7158. <packageinstance name="R2012"/>
  7159. </packageinstances>
  7160. </package3d>
  7161. <package3d name="R2512" urn="urn:adsk.eagle:package:13304/1" type="box" library_version="1">
  7162. <description>RESISTOR</description>
  7163. <packageinstances>
  7164. <packageinstance name="R2512"/>
  7165. </packageinstances>
  7166. </package3d>
  7167. <package3d name="R3216" urn="urn:adsk.eagle:package:13305/1" type="box" library_version="1">
  7168. <description>RESISTOR</description>
  7169. <packageinstances>
  7170. <packageinstance name="R3216"/>
  7171. </packageinstances>
  7172. </package3d>
  7173. <package3d name="R3225" urn="urn:adsk.eagle:package:13311/1" type="box" library_version="1">
  7174. <description>RESISTOR</description>
  7175. <packageinstances>
  7176. <packageinstance name="R3225"/>
  7177. </packageinstances>
  7178. </package3d>
  7179. <package3d name="R5025" urn="urn:adsk.eagle:package:13308/1" type="box" library_version="1">
  7180. <description>RESISTOR</description>
  7181. <packageinstances>
  7182. <packageinstance name="R5025"/>
  7183. </packageinstances>
  7184. </package3d>
  7185. <package3d name="R6332" urn="urn:adsk.eagle:package:13307/1" type="box" library_version="1">
  7186. <description>RESISTOR
  7187. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  7188. <packageinstances>
  7189. <packageinstance name="R6332"/>
  7190. </packageinstances>
  7191. </package3d>
  7192. <package3d name="R4527" urn="urn:adsk.eagle:package:13310/2" type="model" library_version="3">
  7193. <description>Package 4527
  7194. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  7195. <packageinstances>
  7196. <packageinstance name="R4527"/>
  7197. </packageinstances>
  7198. </package3d>
  7199. </packages3d>
  7200. <symbols>
  7201. <symbol name="R" urn="urn:adsk.eagle:symbol:13232/1" library_version="1">
  7202. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  7203. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  7204. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  7205. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  7206. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  7207. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  7208. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  7209. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  7210. <text x="-5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 1</text>
  7211. <text x="5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 2</text>
  7212. </symbol>
  7213. </symbols>
  7214. <devicesets>
  7215. <deviceset name="R" urn="urn:adsk.eagle:component:13322/2" prefix="R" uservalue="yes" library_version="3">
  7216. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  7217. <gates>
  7218. <gate name="G$1" symbol="R" x="0" y="0"/>
  7219. </gates>
  7220. <devices>
  7221. <device name="0204/7" package="0204/7">
  7222. <connects>
  7223. <connect gate="G$1" pin="1" pad="1"/>
  7224. <connect gate="G$1" pin="2" pad="2"/>
  7225. </connects>
  7226. <package3dinstances>
  7227. <package3dinstance package3d_urn="urn:adsk.eagle:package:13274/1"/>
  7228. </package3dinstances>
  7229. <technologies>
  7230. <technology name="">
  7231. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7232. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7233. </technology>
  7234. </technologies>
  7235. </device>
  7236. <device name="0207/10" package="0207/10">
  7237. <connects>
  7238. <connect gate="G$1" pin="1" pad="1"/>
  7239. <connect gate="G$1" pin="2" pad="2"/>
  7240. </connects>
  7241. <package3dinstances>
  7242. <package3dinstance package3d_urn="urn:adsk.eagle:package:13275/1"/>
  7243. </package3dinstances>
  7244. <technologies>
  7245. <technology name="">
  7246. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7247. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7248. </technology>
  7249. </technologies>
  7250. </device>
  7251. <device name="R0201" package="R0201">
  7252. <connects>
  7253. <connect gate="G$1" pin="1" pad="1"/>
  7254. <connect gate="G$1" pin="2" pad="2"/>
  7255. </connects>
  7256. <package3dinstances>
  7257. <package3dinstance package3d_urn="urn:adsk.eagle:package:13294/1"/>
  7258. </package3dinstances>
  7259. <technologies>
  7260. <technology name="">
  7261. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7262. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7263. </technology>
  7264. </technologies>
  7265. </device>
  7266. <device name="R0402" package="R0402">
  7267. <connects>
  7268. <connect gate="G$1" pin="1" pad="1"/>
  7269. <connect gate="G$1" pin="2" pad="2"/>
  7270. </connects>
  7271. <package3dinstances>
  7272. <package3dinstance package3d_urn="urn:adsk.eagle:package:13296/1"/>
  7273. </package3dinstances>
  7274. <technologies>
  7275. <technology name="">
  7276. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7277. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7278. </technology>
  7279. </technologies>
  7280. </device>
  7281. <device name="R0603" package="R0603">
  7282. <connects>
  7283. <connect gate="G$1" pin="1" pad="1"/>
  7284. <connect gate="G$1" pin="2" pad="2"/>
  7285. </connects>
  7286. <package3dinstances>
  7287. <package3dinstance package3d_urn="urn:adsk.eagle:package:13302/1"/>
  7288. </package3dinstances>
  7289. <technologies>
  7290. <technology name="">
  7291. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7292. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7293. </technology>
  7294. </technologies>
  7295. </device>
  7296. <device name="" package="R0805">
  7297. <connects>
  7298. <connect gate="G$1" pin="1" pad="1"/>
  7299. <connect gate="G$1" pin="2" pad="2"/>
  7300. </connects>
  7301. <package3dinstances>
  7302. <package3dinstance package3d_urn="urn:adsk.eagle:package:13300/1"/>
  7303. </package3dinstances>
  7304. <technologies>
  7305. <technology name="">
  7306. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7307. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7308. </technology>
  7309. </technologies>
  7310. </device>
  7311. <device name="R1005" package="R1005">
  7312. <connects>
  7313. <connect gate="G$1" pin="1" pad="1"/>
  7314. <connect gate="G$1" pin="2" pad="2"/>
  7315. </connects>
  7316. <package3dinstances>
  7317. <package3dinstance package3d_urn="urn:adsk.eagle:package:13297/1"/>
  7318. </package3dinstances>
  7319. <technologies>
  7320. <technology name="">
  7321. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7322. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7323. </technology>
  7324. </technologies>
  7325. </device>
  7326. <device name="R1206" package="R1206">
  7327. <connects>
  7328. <connect gate="G$1" pin="1" pad="1"/>
  7329. <connect gate="G$1" pin="2" pad="2"/>
  7330. </connects>
  7331. <package3dinstances>
  7332. <package3dinstance package3d_urn="urn:adsk.eagle:package:13301/1"/>
  7333. </package3dinstances>
  7334. <technologies>
  7335. <technology name="">
  7336. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7337. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7338. </technology>
  7339. </technologies>
  7340. </device>
  7341. <device name="R1210" package="R1210">
  7342. <connects>
  7343. <connect gate="G$1" pin="1" pad="1"/>
  7344. <connect gate="G$1" pin="2" pad="2"/>
  7345. </connects>
  7346. <package3dinstances>
  7347. <package3dinstance package3d_urn="urn:adsk.eagle:package:13299/1"/>
  7348. </package3dinstances>
  7349. <technologies>
  7350. <technology name="">
  7351. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7352. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7353. </technology>
  7354. </technologies>
  7355. </device>
  7356. <device name="R1218" package="R1218">
  7357. <connects>
  7358. <connect gate="G$1" pin="1" pad="1"/>
  7359. <connect gate="G$1" pin="2" pad="2"/>
  7360. </connects>
  7361. <package3dinstances>
  7362. <package3dinstance package3d_urn="urn:adsk.eagle:package:13303/1"/>
  7363. </package3dinstances>
  7364. <technologies>
  7365. <technology name="">
  7366. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7367. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7368. </technology>
  7369. </technologies>
  7370. </device>
  7371. <device name="R2010" package="R2010">
  7372. <connects>
  7373. <connect gate="G$1" pin="1" pad="1"/>
  7374. <connect gate="G$1" pin="2" pad="2"/>
  7375. </connects>
  7376. <package3dinstances>
  7377. <package3dinstance package3d_urn="urn:adsk.eagle:package:13309/1"/>
  7378. </package3dinstances>
  7379. <technologies>
  7380. <technology name="">
  7381. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7382. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7383. </technology>
  7384. </technologies>
  7385. </device>
  7386. <device name="R2012" package="R2012">
  7387. <connects>
  7388. <connect gate="G$1" pin="1" pad="1"/>
  7389. <connect gate="G$1" pin="2" pad="2"/>
  7390. </connects>
  7391. <package3dinstances>
  7392. <package3dinstance package3d_urn="urn:adsk.eagle:package:13306/1"/>
  7393. </package3dinstances>
  7394. <technologies>
  7395. <technology name="">
  7396. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7397. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7398. </technology>
  7399. </technologies>
  7400. </device>
  7401. <device name="R2512" package="R2512">
  7402. <connects>
  7403. <connect gate="G$1" pin="1" pad="1"/>
  7404. <connect gate="G$1" pin="2" pad="2"/>
  7405. </connects>
  7406. <package3dinstances>
  7407. <package3dinstance package3d_urn="urn:adsk.eagle:package:13304/1"/>
  7408. </package3dinstances>
  7409. <technologies>
  7410. <technology name="">
  7411. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7412. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7413. </technology>
  7414. </technologies>
  7415. </device>
  7416. <device name="R3216" package="R3216">
  7417. <connects>
  7418. <connect gate="G$1" pin="1" pad="1"/>
  7419. <connect gate="G$1" pin="2" pad="2"/>
  7420. </connects>
  7421. <package3dinstances>
  7422. <package3dinstance package3d_urn="urn:adsk.eagle:package:13305/1"/>
  7423. </package3dinstances>
  7424. <technologies>
  7425. <technology name="">
  7426. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7427. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7428. </technology>
  7429. </technologies>
  7430. </device>
  7431. <device name="R3225" package="R3225">
  7432. <connects>
  7433. <connect gate="G$1" pin="1" pad="1"/>
  7434. <connect gate="G$1" pin="2" pad="2"/>
  7435. </connects>
  7436. <package3dinstances>
  7437. <package3dinstance package3d_urn="urn:adsk.eagle:package:13311/1"/>
  7438. </package3dinstances>
  7439. <technologies>
  7440. <technology name="">
  7441. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7442. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7443. </technology>
  7444. </technologies>
  7445. </device>
  7446. <device name="R4527" package="R4527">
  7447. <connects>
  7448. <connect gate="G$1" pin="1" pad="1"/>
  7449. <connect gate="G$1" pin="2" pad="2"/>
  7450. </connects>
  7451. <package3dinstances>
  7452. <package3dinstance package3d_urn="urn:adsk.eagle:package:13310/2"/>
  7453. </package3dinstances>
  7454. <technologies>
  7455. <technology name="">
  7456. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7457. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7458. </technology>
  7459. </technologies>
  7460. </device>
  7461. <device name="R5025" package="R5025">
  7462. <connects>
  7463. <connect gate="G$1" pin="1" pad="1"/>
  7464. <connect gate="G$1" pin="2" pad="2"/>
  7465. </connects>
  7466. <package3dinstances>
  7467. <package3dinstance package3d_urn="urn:adsk.eagle:package:13308/1"/>
  7468. </package3dinstances>
  7469. <technologies>
  7470. <technology name="">
  7471. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7472. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7473. </technology>
  7474. </technologies>
  7475. </device>
  7476. <device name="R6332" package="R6332">
  7477. <connects>
  7478. <connect gate="G$1" pin="1" pad="1"/>
  7479. <connect gate="G$1" pin="2" pad="2"/>
  7480. </connects>
  7481. <package3dinstances>
  7482. <package3dinstance package3d_urn="urn:adsk.eagle:package:13307/1"/>
  7483. </package3dinstances>
  7484. <technologies>
  7485. <technology name="">
  7486. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  7487. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  7488. </technology>
  7489. </technologies>
  7490. </device>
  7491. </devices>
  7492. </deviceset>
  7493. </devicesets>
  7494. </library>
  7495. <library name="eScooter">
  7496. <packages>
  7497. <package name="DIOM5027X220N" urn="urn:adsk.eagle:footprint:21928331/1">
  7498. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  7499. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  7500. <wire x1="2.5" y1="1.35" x2="-3.3699" y2="1.35" width="0.12" layer="21"/>
  7501. <wire x1="-3.3699" y1="1.35" x2="-3.3699" y2="-1.35" width="0.12" layer="21"/>
  7502. <wire x1="-3.3699" y1="-1.35" x2="2.5" y2="-1.35" width="0.12" layer="21"/>
  7503. <wire x1="2.5" y1="-1.35" x2="-2.5" y2="-1.35" width="0.12" layer="51"/>
  7504. <wire x1="-2.5" y1="-1.35" x2="-2.5" y2="1.35" width="0.12" layer="51"/>
  7505. <wire x1="-2.5" y1="1.35" x2="2.5" y2="1.35" width="0.12" layer="51"/>
  7506. <wire x1="2.5" y1="1.35" x2="2.5" y2="-1.35" width="0.12" layer="51"/>
  7507. <smd name="1" x="-2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  7508. <smd name="2" x="2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  7509. <text x="0" y="1.985" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  7510. <text x="0" y="-1.985" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  7511. </package>
  7512. <package name="SON254P1750X4300X120-30M" urn="urn:adsk.eagle:footprint:21849939/1">
  7513. <description>30-SON (DFN), 2.54 mm pitch, 43.00 X 17.50 X 1.20 mm body
  7514. &lt;p&gt;30-pin SON (DFN) package with 2.54 mm pitch with body size 43.00 X 17.50 X 1.20 mm&lt;/p&gt;</description>
  7515. <circle x="-9.254" y="18.9349" radius="0.25" width="0" layer="21"/>
  7516. <wire x1="-8.75" y1="18.6849" x2="-8.75" y2="21.5" width="0.12" layer="21"/>
  7517. <wire x1="-8.75" y1="21.5" x2="8.75" y2="21.5" width="0.12" layer="21"/>
  7518. <wire x1="8.75" y1="21.5" x2="8.75" y2="18.6849" width="0.12" layer="21"/>
  7519. <wire x1="-8.75" y1="-18.6849" x2="-8.75" y2="-21.5" width="0.12" layer="21"/>
  7520. <wire x1="-8.75" y1="-21.5" x2="8.75" y2="-21.5" width="0.12" layer="21"/>
  7521. <wire x1="8.75" y1="-21.5" x2="8.75" y2="-18.6849" width="0.12" layer="21"/>
  7522. <wire x1="8.75" y1="-21.5" x2="-8.75" y2="-21.5" width="0.12" layer="51"/>
  7523. <wire x1="-8.75" y1="-21.5" x2="-8.75" y2="21.5" width="0.12" layer="51"/>
  7524. <wire x1="-8.75" y1="21.5" x2="8.75" y2="21.5" width="0.12" layer="51"/>
  7525. <wire x1="8.75" y1="21.5" x2="8.75" y2="-21.5" width="0.12" layer="51"/>
  7526. <smd name="1" x="-7.95" y="17.78" dx="2.5118" dy="1.3018" layer="1"/>
  7527. <smd name="2" x="-7.95" y="15.24" dx="2.5118" dy="1.3018" layer="1"/>
  7528. <smd name="3" x="-7.95" y="12.7" dx="2.5118" dy="1.3018" layer="1"/>
  7529. <smd name="4" x="-7.95" y="10.16" dx="2.5118" dy="1.3018" layer="1"/>
  7530. <smd name="5" x="-7.95" y="7.62" dx="2.5118" dy="1.3018" layer="1"/>
  7531. <smd name="6" x="-7.95" y="5.08" dx="2.5118" dy="1.3018" layer="1"/>
  7532. <smd name="7" x="-7.95" y="2.54" dx="2.5118" dy="1.3018" layer="1"/>
  7533. <smd name="8" x="-7.95" y="0" dx="2.5118" dy="1.3018" layer="1"/>
  7534. <smd name="9" x="-7.95" y="-2.54" dx="2.5118" dy="1.3018" layer="1"/>
  7535. <smd name="10" x="-7.95" y="-5.08" dx="2.5118" dy="1.3018" layer="1"/>
  7536. <smd name="11" x="-7.95" y="-7.62" dx="2.5118" dy="1.3018" layer="1"/>
  7537. <smd name="12" x="-7.95" y="-10.16" dx="2.5118" dy="1.3018" layer="1"/>
  7538. <smd name="13" x="-7.95" y="-12.7" dx="2.5118" dy="1.3018" layer="1"/>
  7539. <smd name="14" x="-7.95" y="-15.24" dx="2.5118" dy="1.3018" layer="1"/>
  7540. <smd name="15" x="-7.95" y="-17.78" dx="2.5118" dy="1.3018" layer="1"/>
  7541. <smd name="16" x="7.95" y="-17.78" dx="2.5118" dy="1.3018" layer="1"/>
  7542. <smd name="17" x="7.95" y="-15.24" dx="2.5118" dy="1.3018" layer="1"/>
  7543. <smd name="18" x="7.95" y="-12.7" dx="2.5118" dy="1.3018" layer="1"/>
  7544. <smd name="19" x="7.95" y="-10.16" dx="2.5118" dy="1.3018" layer="1"/>
  7545. <smd name="20" x="7.95" y="-7.62" dx="2.5118" dy="1.3018" layer="1"/>
  7546. <smd name="21" x="7.95" y="-5.08" dx="2.5118" dy="1.3018" layer="1"/>
  7547. <smd name="22" x="7.95" y="-2.54" dx="2.5118" dy="1.3018" layer="1"/>
  7548. <smd name="23" x="7.95" y="0" dx="2.5118" dy="1.3018" layer="1"/>
  7549. <smd name="24" x="7.95" y="2.54" dx="2.5118" dy="1.3018" layer="1"/>
  7550. <smd name="25" x="7.95" y="5.08" dx="2.5118" dy="1.3018" layer="1"/>
  7551. <smd name="26" x="7.95" y="7.62" dx="2.5118" dy="1.3018" layer="1"/>
  7552. <smd name="27" x="7.95" y="10.16" dx="2.5118" dy="1.3018" layer="1"/>
  7553. <smd name="28" x="7.95" y="12.7" dx="2.5118" dy="1.3018" layer="1"/>
  7554. <smd name="29" x="7.95" y="15.24" dx="2.5118" dy="1.3018" layer="1"/>
  7555. <smd name="30" x="7.95" y="17.78" dx="2.5118" dy="1.3018" layer="1"/>
  7556. <text x="0" y="22.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  7557. <text x="0" y="-22.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  7558. </package>
  7559. </packages>
  7560. <packages3d>
  7561. <package3d name="DIOM5027X220N" urn="urn:adsk.eagle:package:21928182/1" type="model">
  7562. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  7563. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  7564. <packageinstances>
  7565. <packageinstance name="DIOM5027X220N"/>
  7566. </packageinstances>
  7567. </package3d>
  7568. <package3d name="SON254P1750X4300X120-30M" urn="urn:adsk.eagle:package:21849926/1" type="model">
  7569. <description>30-SON (DFN), 2.54 mm pitch, 43.00 X 17.50 X 1.20 mm body
  7570. &lt;p&gt;30-pin SON (DFN) package with 2.54 mm pitch with body size 43.00 X 17.50 X 1.20 mm&lt;/p&gt;</description>
  7571. <packageinstances>
  7572. <packageinstance name="SON254P1750X4300X120-30M"/>
  7573. </packageinstances>
  7574. </package3d>
  7575. </packages3d>
  7576. <symbols>
  7577. <symbol name="TVS_DIODE">
  7578. <wire x1="0" y1="0" x2="-1.27" y2="1.524" width="0.254" layer="94"/>
  7579. <wire x1="1.27" y1="1.524" x2="0" y2="0" width="0.254" layer="94"/>
  7580. <wire x1="-1.778" y1="-0.508" x2="-1.27" y2="0" width="0.254" layer="94"/>
  7581. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.254" layer="94"/>
  7582. <wire x1="1.27" y1="0" x2="1.778" y2="0.508" width="0.254" layer="94"/>
  7583. <wire x1="0" y1="0" x2="-1.27" y2="-1.524" width="0.254" layer="94"/>
  7584. <wire x1="1.27" y1="-1.524" x2="0" y2="0" width="0.254" layer="94"/>
  7585. <wire x1="-1.27" y1="1.524" x2="1.27" y2="1.524" width="0.254" layer="94"/>
  7586. <wire x1="-1.27" y1="-1.524" x2="1.27" y2="-1.524" width="0.254" layer="94"/>
  7587. <pin name="P$1" x="0" y="4.064" visible="off" length="short" rot="R270"/>
  7588. <pin name="P$2" x="0" y="-4.064" visible="off" length="short" rot="R90"/>
  7589. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  7590. <text x="2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  7591. </symbol>
  7592. <symbol name="ARDUINO">
  7593. <wire x1="-10.16" y1="20.32" x2="-10.16" y2="-20.32" width="0.254" layer="94"/>
  7594. <wire x1="-10.16" y1="-20.32" x2="10.16" y2="-20.32" width="0.254" layer="94"/>
  7595. <wire x1="10.16" y1="-20.32" x2="10.16" y2="20.32" width="0.254" layer="94"/>
  7596. <wire x1="10.16" y1="20.32" x2="-10.16" y2="20.32" width="0.254" layer="94"/>
  7597. <pin name="D13" x="-15.24" y="17.78" length="middle"/>
  7598. <pin name="3V3" x="-15.24" y="15.24" length="middle" direction="pwr"/>
  7599. <pin name="REF" x="-15.24" y="12.7" length="middle"/>
  7600. <pin name="A0" x="-15.24" y="10.16" length="middle"/>
  7601. <pin name="A1" x="-15.24" y="7.62" length="middle"/>
  7602. <pin name="A2" x="-15.24" y="5.08" length="middle"/>
  7603. <pin name="A3" x="-15.24" y="2.54" length="middle"/>
  7604. <pin name="A4" x="-15.24" y="0" length="middle"/>
  7605. <pin name="A5" x="-15.24" y="-2.54" length="middle"/>
  7606. <pin name="A6" x="-15.24" y="-5.08" length="middle"/>
  7607. <pin name="A7" x="-15.24" y="-7.62" length="middle"/>
  7608. <pin name="5V" x="-15.24" y="-10.16" length="middle" direction="pwr"/>
  7609. <pin name="RST" x="-15.24" y="-12.7" length="middle" direction="in"/>
  7610. <pin name="GND" x="-15.24" y="-15.24" length="middle" direction="pwr"/>
  7611. <pin name="VIN" x="-15.24" y="-17.78" length="middle" direction="pwr"/>
  7612. <pin name="TX1" x="15.24" y="-17.78" length="middle" direction="out" rot="R180"/>
  7613. <pin name="RX0" x="15.24" y="-15.24" length="middle" direction="in" rot="R180"/>
  7614. <pin name="RST2" x="15.24" y="-12.7" length="middle" direction="in" rot="R180"/>
  7615. <pin name="GND2" x="15.24" y="-10.16" length="middle" direction="pwr" rot="R180"/>
  7616. <pin name="D2" x="15.24" y="-7.62" length="middle" rot="R180"/>
  7617. <pin name="D3" x="15.24" y="-5.08" length="middle" rot="R180"/>
  7618. <pin name="D4" x="15.24" y="-2.54" length="middle" rot="R180"/>
  7619. <pin name="D5" x="15.24" y="0" length="middle" rot="R180"/>
  7620. <pin name="D6" x="15.24" y="2.54" length="middle" rot="R180"/>
  7621. <pin name="D7" x="15.24" y="5.08" length="middle" rot="R180"/>
  7622. <pin name="D8" x="15.24" y="7.62" length="middle" rot="R180"/>
  7623. <pin name="D9" x="15.24" y="10.16" length="middle" rot="R180"/>
  7624. <pin name="D10" x="15.24" y="12.7" length="middle" rot="R180"/>
  7625. <pin name="D11" x="15.24" y="15.24" length="middle" rot="R180"/>
  7626. <pin name="D12" x="15.24" y="17.78" length="middle" rot="R180"/>
  7627. <text x="-5.08" y="22.86" size="1.778" layer="95">&gt;NAME</text>
  7628. <text x="-5.08" y="-25.4" size="1.778" layer="96">&gt;VALUE</text>
  7629. </symbol>
  7630. </symbols>
  7631. <devicesets>
  7632. <deviceset name="TVS_DIODE">
  7633. <description>TVS protective diode</description>
  7634. <gates>
  7635. <gate name="D$1" symbol="TVS_DIODE" x="0" y="0"/>
  7636. </gates>
  7637. <devices>
  7638. <device name="SMA" package="DIOM5027X220N">
  7639. <connects>
  7640. <connect gate="D$1" pin="P$1" pad="1"/>
  7641. <connect gate="D$1" pin="P$2" pad="2"/>
  7642. </connects>
  7643. <package3dinstances>
  7644. <package3dinstance package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  7645. </package3dinstances>
  7646. <technologies>
  7647. <technology name=""/>
  7648. </technologies>
  7649. </device>
  7650. </devices>
  7651. </deviceset>
  7652. <deviceset name="ARDUINO">
  7653. <description>Ardino nano</description>
  7654. <gates>
  7655. <gate name="G$1" symbol="ARDUINO" x="0" y="0"/>
  7656. </gates>
  7657. <devices>
  7658. <device name="ARDUINO_NANO" package="SON254P1750X4300X120-30M">
  7659. <connects>
  7660. <connect gate="G$1" pin="3V3" pad="2"/>
  7661. <connect gate="G$1" pin="5V" pad="12"/>
  7662. <connect gate="G$1" pin="A0" pad="4"/>
  7663. <connect gate="G$1" pin="A1" pad="5"/>
  7664. <connect gate="G$1" pin="A2" pad="6"/>
  7665. <connect gate="G$1" pin="A3" pad="7"/>
  7666. <connect gate="G$1" pin="A4" pad="8"/>
  7667. <connect gate="G$1" pin="A5" pad="9"/>
  7668. <connect gate="G$1" pin="A6" pad="10"/>
  7669. <connect gate="G$1" pin="A7" pad="11"/>
  7670. <connect gate="G$1" pin="D10" pad="28"/>
  7671. <connect gate="G$1" pin="D11" pad="29"/>
  7672. <connect gate="G$1" pin="D12" pad="30"/>
  7673. <connect gate="G$1" pin="D13" pad="1"/>
  7674. <connect gate="G$1" pin="D2" pad="20"/>
  7675. <connect gate="G$1" pin="D3" pad="21"/>
  7676. <connect gate="G$1" pin="D4" pad="22"/>
  7677. <connect gate="G$1" pin="D5" pad="23"/>
  7678. <connect gate="G$1" pin="D6" pad="24"/>
  7679. <connect gate="G$1" pin="D7" pad="25"/>
  7680. <connect gate="G$1" pin="D8" pad="26"/>
  7681. <connect gate="G$1" pin="D9" pad="27"/>
  7682. <connect gate="G$1" pin="GND" pad="14"/>
  7683. <connect gate="G$1" pin="GND2" pad="19"/>
  7684. <connect gate="G$1" pin="REF" pad="3"/>
  7685. <connect gate="G$1" pin="RST" pad="13"/>
  7686. <connect gate="G$1" pin="RST2" pad="18"/>
  7687. <connect gate="G$1" pin="RX0" pad="17"/>
  7688. <connect gate="G$1" pin="TX1" pad="16"/>
  7689. <connect gate="G$1" pin="VIN" pad="15"/>
  7690. </connects>
  7691. <package3dinstances>
  7692. <package3dinstance package3d_urn="urn:adsk.eagle:package:21849926/1"/>
  7693. </package3dinstances>
  7694. <technologies>
  7695. <technology name=""/>
  7696. </technologies>
  7697. </device>
  7698. </devices>
  7699. </deviceset>
  7700. </devicesets>
  7701. </library>
  7702. <library name="supply1" urn="urn:adsk.eagle:library:371">
  7703. <description>&lt;b&gt;Supply Symbols&lt;/b&gt;&lt;p&gt;
  7704. GND, VCC, 0V, +5V, -5V, etc.&lt;p&gt;
  7705. Please keep in mind, that these devices are necessary for the
  7706. automatic wiring of the supply signals.&lt;p&gt;
  7707. The pin name defined in the symbol is identical to the net which is to be wired automatically.&lt;p&gt;
  7708. 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;
  7709. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  7710. <packages>
  7711. </packages>
  7712. <symbols>
  7713. <symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1" library_version="1">
  7714. <wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
  7715. <text x="-2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  7716. <pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
  7717. </symbol>
  7718. </symbols>
  7719. <devicesets>
  7720. <deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND" library_version="1">
  7721. <description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>
  7722. <gates>
  7723. <gate name="1" symbol="GND" x="0" y="0"/>
  7724. </gates>
  7725. <devices>
  7726. <device name="">
  7727. <technologies>
  7728. <technology name=""/>
  7729. </technologies>
  7730. </device>
  7731. </devices>
  7732. </deviceset>
  7733. </devicesets>
  7734. </library>
  7735. <library name="SparkFun-Switches">
  7736. <description>&lt;h3&gt;SparkFun Switches, Buttons, Encoders&lt;/h3&gt;
  7737. In this library you'll find switches, buttons, joysticks, and anything that moves to create or disrupt an electrical connection.
  7738. &lt;br&gt;
  7739. &lt;br&gt;
  7740. 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.
  7741. &lt;br&gt;
  7742. &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;.
  7743. &lt;br&gt;
  7744. &lt;br&gt;
  7745. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  7746. &lt;br&gt;
  7747. &lt;br&gt;
  7748. 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>
  7749. <packages>
  7750. <package name="TACTILE_SWITCH_PTH_6.0MM" urn="urn:adsk.eagle:footprint:40103/1">
  7751. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - PTH, 6.0mm Square&lt;/h3&gt;
  7752. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7753. &lt;p&gt;&lt;a href="https://www.omron.com/ecb/products/pdf/en-b3f.pdf"&gt;Datasheet&lt;/a&gt; (B3F-1000)&lt;/p&gt;</description>
  7754. <wire x1="3.048" y1="1.016" x2="3.048" y2="2.54" width="0.2032" layer="51"/>
  7755. <wire x1="3.048" y1="2.54" x2="2.54" y2="3.048" width="0.2032" layer="51"/>
  7756. <wire x1="2.54" y1="-3.048" x2="3.048" y2="-2.54" width="0.2032" layer="51"/>
  7757. <wire x1="3.048" y1="-2.54" x2="3.048" y2="-1.016" width="0.2032" layer="51"/>
  7758. <wire x1="-2.54" y1="3.048" x2="-3.048" y2="2.54" width="0.2032" layer="51"/>
  7759. <wire x1="-3.048" y1="2.54" x2="-3.048" y2="1.016" width="0.2032" layer="51"/>
  7760. <wire x1="-2.54" y1="-3.048" x2="-3.048" y2="-2.54" width="0.2032" layer="51"/>
  7761. <wire x1="-3.048" y1="-2.54" x2="-3.048" y2="-1.016" width="0.2032" layer="51"/>
  7762. <wire x1="2.54" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="51"/>
  7763. <wire x1="-2.54" y1="-3.048" x2="-2.159" y2="-3.048" width="0.2032" layer="51"/>
  7764. <wire x1="-2.54" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="51"/>
  7765. <wire x1="2.54" y1="3.048" x2="2.159" y2="3.048" width="0.2032" layer="51"/>
  7766. <wire x1="2.159" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="21"/>
  7767. <wire x1="-2.159" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="21"/>
  7768. <wire x1="3.048" y1="0.998" x2="3.048" y2="-1.016" width="0.2032" layer="21"/>
  7769. <wire x1="-3.048" y1="1.028" x2="-3.048" y2="-1.016" width="0.2032" layer="21"/>
  7770. <wire x1="-2.54" y1="1.27" x2="-2.54" y2="0.508" width="0.2032" layer="51"/>
  7771. <wire x1="-2.54" y1="-0.508" x2="-2.54" y2="-1.27" width="0.2032" layer="51"/>
  7772. <wire x1="-2.54" y1="0.508" x2="-2.159" y2="-0.381" width="0.2032" layer="51"/>
  7773. <circle x="0" y="0" radius="1.778" width="0.2032" layer="21"/>
  7774. <pad name="1" x="-3.2512" y="2.2606" drill="1.016" diameter="1.8796"/>
  7775. <pad name="2" x="3.2512" y="2.2606" drill="1.016" diameter="1.8796"/>
  7776. <pad name="3" x="-3.2512" y="-2.2606" drill="1.016" diameter="1.8796"/>
  7777. <pad name="4" x="3.2512" y="-2.2606" drill="1.016" diameter="1.8796"/>
  7778. <text x="0" y="3.302" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7779. <text x="0" y="-3.175" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7780. </package>
  7781. <package name="TACTILE_SWITCH_SMD_4.5MM" urn="urn:adsk.eagle:footprint:40104/1">
  7782. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, 4.5mm Square&lt;/h3&gt;
  7783. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7784. &lt;p&gt;&lt;a href="http://spec_sheets.e-switch.com/specs/P010338.pdf"&gt;Dimensional Drawing&lt;/a&gt;&lt;/p&gt;</description>
  7785. <wire x1="1.905" y1="1.27" x2="1.905" y2="0.445" width="0.127" layer="51"/>
  7786. <wire x1="1.905" y1="0.445" x2="2.16" y2="-0.01" width="0.127" layer="51"/>
  7787. <wire x1="1.905" y1="-0.23" x2="1.905" y2="-1.115" width="0.127" layer="51"/>
  7788. <wire x1="-2.25" y1="2.25" x2="2.25" y2="2.25" width="0.127" layer="51"/>
  7789. <wire x1="2.25" y1="2.25" x2="2.25" y2="-2.25" width="0.127" layer="51"/>
  7790. <wire x1="2.25" y1="-2.25" x2="-2.25" y2="-2.25" width="0.127" layer="51"/>
  7791. <wire x1="-2.25" y1="-2.25" x2="-2.25" y2="2.25" width="0.127" layer="51"/>
  7792. <wire x1="-2.2" y1="0.8" x2="-2.2" y2="-0.8" width="0.2032" layer="21"/>
  7793. <wire x1="1.3" y1="2.2" x2="-1.3" y2="2.2" width="0.2032" layer="21"/>
  7794. <wire x1="2.2" y1="-0.8" x2="2.2" y2="0.8" width="0.2032" layer="21"/>
  7795. <wire x1="-1.3" y1="-2.2" x2="1.3" y2="-2.2" width="0.2032" layer="21"/>
  7796. <wire x1="2.2" y1="0.8" x2="1.8" y2="0.8" width="0.2032" layer="21"/>
  7797. <wire x1="2.2" y1="-0.8" x2="1.8" y2="-0.8" width="0.2032" layer="21"/>
  7798. <wire x1="-1.8" y1="0.8" x2="-2.2" y2="0.8" width="0.2032" layer="21"/>
  7799. <wire x1="-1.8" y1="-0.8" x2="-2.2" y2="-0.8" width="0.2032" layer="21"/>
  7800. <circle x="0" y="0" radius="1.27" width="0.2032" layer="21"/>
  7801. <smd name="1" x="2.225" y="1.75" dx="1.1" dy="0.7" layer="1" rot="R90"/>
  7802. <smd name="2" x="2.225" y="-1.75" dx="1.1" dy="0.7" layer="1" rot="R90"/>
  7803. <smd name="3" x="-2.225" y="-1.75" dx="1.1" dy="0.7" layer="1" rot="R90"/>
  7804. <smd name="4" x="-2.225" y="1.75" dx="1.1" dy="0.7" layer="1" rot="R90"/>
  7805. <text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7806. <text x="0" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7807. </package>
  7808. <package name="TACTILE_SWITCH_PTH_12MM" urn="urn:adsk.eagle:footprint:40105/1">
  7809. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - PTH, 12mm Square&lt;/h3&gt;
  7810. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7811. &lt;p&gt;&lt;a href="https://www.omron.com/ecb/products/pdf/en-b3f.pdf"&gt;Datasheet&lt;/a&gt; (B3F-5050)&lt;/p&gt;</description>
  7812. <wire x1="5" y1="-1.3" x2="5" y2="-0.7" width="0.2032" layer="51"/>
  7813. <wire x1="5" y1="-0.7" x2="4.5" y2="-0.2" width="0.2032" layer="51"/>
  7814. <wire x1="5" y1="0.2" x2="5" y2="1" width="0.2032" layer="51"/>
  7815. <wire x1="-6" y1="4" x2="-6" y2="5" width="0.2032" layer="21"/>
  7816. <wire x1="-5" y1="6" x2="5" y2="6" width="0.2032" layer="21"/>
  7817. <wire x1="6" y1="5" x2="6" y2="4" width="0.2032" layer="21"/>
  7818. <wire x1="6" y1="1" x2="6" y2="-1" width="0.2032" layer="21"/>
  7819. <wire x1="6" y1="-4" x2="6" y2="-5" width="0.2032" layer="21"/>
  7820. <wire x1="5" y1="-6" x2="-5" y2="-6" width="0.2032" layer="21"/>
  7821. <wire x1="-6" y1="-5" x2="-6" y2="-4" width="0.2032" layer="21"/>
  7822. <wire x1="-6" y1="-1" x2="-6" y2="1" width="0.2032" layer="21"/>
  7823. <wire x1="-6" y1="5" x2="-5" y2="6" width="0.2032" layer="21" curve="-90"/>
  7824. <wire x1="5" y1="6" x2="6" y2="5" width="0.2032" layer="21" curve="-90"/>
  7825. <wire x1="6" y1="-5" x2="5" y2="-6" width="0.2032" layer="21" curve="-90"/>
  7826. <wire x1="-5" y1="-6" x2="-6" y2="-5" width="0.2032" layer="21" curve="-90"/>
  7827. <circle x="0" y="0" radius="3.5" width="0.2032" layer="21"/>
  7828. <circle x="-4.5" y="4.5" radius="0.3" width="0.7" layer="21"/>
  7829. <circle x="4.5" y="4.5" radius="0.3" width="0.7" layer="21"/>
  7830. <circle x="4.5" y="-4.5" radius="0.3" width="0.7" layer="21"/>
  7831. <circle x="-4.5" y="-4.5" radius="0.3" width="0.7" layer="21"/>
  7832. <pad name="4" x="-6.25" y="2.5" drill="1.2" diameter="2.159"/>
  7833. <pad name="2" x="-6.25" y="-2.5" drill="1.2" diameter="2.159"/>
  7834. <pad name="1" x="6.25" y="-2.5" drill="1.2" diameter="2.159"/>
  7835. <pad name="3" x="6.25" y="2.5" drill="1.2" diameter="2.159"/>
  7836. <text x="0" y="6.223" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7837. <text x="0" y="-6.223" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7838. </package>
  7839. <package name="TACTILE_SWITCH_SMD_6.0X3.5MM" urn="urn:adsk.eagle:footprint:40106/1">
  7840. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, 6.0 x 3.5 mm&lt;/h3&gt;
  7841. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7842. &lt;p&gt;&lt;a href="https://www.sparkfun.com/datasheets/Components/1101.pdf"&gt;Datasheet&lt;/a&gt;&lt;/p&gt;</description>
  7843. <wire x1="-3" y1="1.1" x2="-3" y2="-1.1" width="0.127" layer="51"/>
  7844. <wire x1="3" y1="1.1" x2="3" y2="-1.1" width="0.127" layer="51"/>
  7845. <wire x1="-2.75" y1="1.75" x2="-3" y2="1.5" width="0.2032" layer="21" curve="90"/>
  7846. <wire x1="-2.75" y1="1.75" x2="2.75" y2="1.75" width="0.2032" layer="21"/>
  7847. <wire x1="2.75" y1="1.75" x2="3" y2="1.5" width="0.2032" layer="21" curve="-90"/>
  7848. <wire x1="3" y1="-1.5" x2="2.75" y2="-1.75" width="0.2032" layer="21" curve="-90"/>
  7849. <wire x1="2.75" y1="-1.75" x2="-2.75" y2="-1.75" width="0.2032" layer="21"/>
  7850. <wire x1="-3" y1="-1.5" x2="-2.75" y2="-1.75" width="0.2032" layer="21" curve="90"/>
  7851. <wire x1="-3" y1="-1.5" x2="-3" y2="-1.1" width="0.2032" layer="21"/>
  7852. <wire x1="-3" y1="1.1" x2="-3" y2="1.5" width="0.2032" layer="21"/>
  7853. <wire x1="3" y1="1.1" x2="3" y2="1.5" width="0.2032" layer="21"/>
  7854. <wire x1="3" y1="-1.5" x2="3" y2="-1.1" width="0.2032" layer="21"/>
  7855. <wire x1="-1.5" y1="0.75" x2="1.5" y2="0.75" width="0.2032" layer="21"/>
  7856. <wire x1="1.5" y1="-0.75" x2="-1.5" y2="-0.75" width="0.2032" layer="21"/>
  7857. <wire x1="-1.5" y1="-0.75" x2="-1.5" y2="0.75" width="0.2032" layer="21"/>
  7858. <wire x1="1.5" y1="-0.75" x2="1.5" y2="0.75" width="0.2032" layer="21"/>
  7859. <wire x1="-2" y1="0" x2="-1" y2="0" width="0.127" layer="51"/>
  7860. <wire x1="-1" y1="0" x2="0.1" y2="0.5" width="0.127" layer="51"/>
  7861. <wire x1="0.3" y1="0" x2="2" y2="0" width="0.127" layer="51"/>
  7862. <smd name="1" x="-3.15" y="0" dx="2.3" dy="1.6" layer="1" rot="R180"/>
  7863. <smd name="2" x="3.15" y="0" dx="2.3" dy="1.6" layer="1" rot="R180"/>
  7864. <text x="0" y="1.905" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7865. <text x="0" y="-1.905" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7866. </package>
  7867. <package name="TACTILE_SWITCH_SMD_6.2MM_TALL" urn="urn:adsk.eagle:footprint:40107/1">
  7868. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, 6.2mm Square&lt;/h3&gt;
  7869. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7870. &lt;p&gt;&lt;a href="http://www.apem.com/files/apem/brochures/ADTS6-ADTSM-KTSC6.pdf"&gt;Datasheet&lt;/a&gt; (ADTSM63NVTR)&lt;/p&gt;</description>
  7871. <wire x1="-3" y1="-3" x2="3" y2="-3" width="0.2032" layer="21"/>
  7872. <wire x1="3" y1="-3" x2="3" y2="3" width="0.2032" layer="21"/>
  7873. <wire x1="3" y1="3" x2="-3" y2="3" width="0.2032" layer="21"/>
  7874. <wire x1="-3" y1="3" x2="-3" y2="-3" width="0.2032" layer="21"/>
  7875. <circle x="0" y="0" radius="1.75" width="0.2032" layer="21"/>
  7876. <smd name="A1" x="-3.975" y="-2.25" dx="1.3" dy="1.55" layer="1" rot="R90"/>
  7877. <smd name="A2" x="3.975" y="-2.25" dx="1.3" dy="1.55" layer="1" rot="R90"/>
  7878. <smd name="B1" x="-3.975" y="2.25" dx="1.3" dy="1.55" layer="1" rot="R90"/>
  7879. <smd name="B2" x="3.975" y="2.25" dx="1.3" dy="1.55" layer="1" rot="R90"/>
  7880. <text x="0" y="3.175" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7881. <text x="0" y="-3.175" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7882. </package>
  7883. <package name="TACTILE_SWITCH_PTH_RIGHT_ANGLE_KIT" urn="urn:adsk.eagle:footprint:40108/1">
  7884. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - PTH, Right-angle&lt;/h3&gt;
  7885. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7886. &lt;p&gt;&lt;a href="http://cdn.sparkfun.com/datasheets/Components/Switches/SW016.JPG"&gt;Dimensional Drawing&lt;/a&gt;&lt;/p&gt;</description>
  7887. <wire x1="1.5" y1="-3.8" x2="-1.5" y2="-3.8" width="0.127" layer="51"/>
  7888. <wire x1="-3.65" y1="-2" x2="-3.65" y2="3.5" width="0.127" layer="51"/>
  7889. <wire x1="-3.65" y1="3.5" x2="-3" y2="3.5" width="0.127" layer="51"/>
  7890. <wire x1="3" y1="3.5" x2="3.65" y2="3.5" width="0.127" layer="51"/>
  7891. <wire x1="3.65" y1="3.5" x2="3.65" y2="-2" width="0.127" layer="51"/>
  7892. <wire x1="-3" y1="2" x2="3" y2="2" width="0.127" layer="51"/>
  7893. <wire x1="-3" y1="2" x2="-3" y2="3.5" width="0.127" layer="51"/>
  7894. <wire x1="3" y1="2" x2="3" y2="3.5" width="0.127" layer="51"/>
  7895. <wire x1="-3.65" y1="-2" x2="-1.5" y2="-2" width="0.127" layer="51"/>
  7896. <wire x1="-1.5" y1="-2" x2="1.5" y2="-2" width="0.127" layer="51"/>
  7897. <wire x1="1.5" y1="-2" x2="3.65" y2="-2" width="0.127" layer="51"/>
  7898. <wire x1="1.5" y1="-2" x2="1.5" y2="-3.8" width="0.127" layer="51"/>
  7899. <wire x1="-1.5" y1="-2" x2="-1.5" y2="-3.8" width="0.127" layer="51"/>
  7900. <wire x1="-3.777" y1="1" x2="-3.777" y2="-2.127" width="0.2032" layer="21"/>
  7901. <wire x1="-3.777" y1="-2.127" x2="3.777" y2="-2.127" width="0.2032" layer="21"/>
  7902. <wire x1="3.777" y1="-2.127" x2="3.777" y2="1" width="0.2032" layer="21"/>
  7903. <wire x1="2" y1="2.127" x2="-2" y2="2.127" width="0.2032" layer="21"/>
  7904. <pad name="ANCHOR1" x="-3.5" y="2.5" drill="1.2" diameter="2.2" stop="no"/>
  7905. <pad name="ANCHOR2" x="3.5" y="2.5" drill="1.2" diameter="2.2" stop="no"/>
  7906. <pad name="1" x="-2.5" y="0" drill="0.8" diameter="1.7" stop="no"/>
  7907. <pad name="2" x="2.5" y="0" drill="0.8" diameter="1.7" stop="no"/>
  7908. <circle x="2.5" y="0" radius="0.4445" width="0" layer="29"/>
  7909. <circle x="-2.5" y="0" radius="0.4445" width="0" layer="29"/>
  7910. <circle x="-3.5" y="2.5" radius="0.635" width="0" layer="29"/>
  7911. <circle x="3.5" y="2.5" radius="0.635" width="0" layer="29"/>
  7912. <circle x="-3.5" y="2.5" radius="1.143" width="0" layer="30"/>
  7913. <circle x="2.5" y="0" radius="0.889" width="0" layer="30"/>
  7914. <circle x="-2.5" y="0" radius="0.889" width="0" layer="30"/>
  7915. <circle x="3.5" y="2.5" radius="1.143" width="0" layer="30"/>
  7916. <text x="0" y="2.286" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7917. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7918. </package>
  7919. <package name="TACTILE_SWITCH_SMD_12MM" urn="urn:adsk.eagle:footprint:40109/1">
  7920. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, 12mm Square&lt;/h3&gt;
  7921. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7922. &lt;p&gt;&lt;a href="https://cdn.sparkfun.com/datasheets/Components/Switches/N301102.pdf"&gt;Datasheet&lt;/a&gt;&lt;/p&gt;</description>
  7923. <wire x1="5" y1="-1.3" x2="5" y2="-0.7" width="0.2032" layer="51"/>
  7924. <wire x1="5" y1="-0.7" x2="4.5" y2="-0.2" width="0.2032" layer="51"/>
  7925. <wire x1="5" y1="0.2" x2="5" y2="1" width="0.2032" layer="51"/>
  7926. <wire x1="-6" y1="4" x2="-6" y2="5" width="0.2032" layer="21"/>
  7927. <wire x1="-5" y1="6" x2="5" y2="6" width="0.2032" layer="21"/>
  7928. <wire x1="6" y1="5" x2="6" y2="4" width="0.2032" layer="21"/>
  7929. <wire x1="6" y1="1" x2="6" y2="-1" width="0.2032" layer="21"/>
  7930. <wire x1="6" y1="-4" x2="6" y2="-5" width="0.2032" layer="21"/>
  7931. <wire x1="5" y1="-6" x2="-5" y2="-6" width="0.2032" layer="21"/>
  7932. <wire x1="-6" y1="-5" x2="-6" y2="-4" width="0.2032" layer="21"/>
  7933. <wire x1="-6" y1="-1" x2="-6" y2="1" width="0.2032" layer="21"/>
  7934. <wire x1="-6" y1="-5" x2="-5" y2="-6" width="0.2032" layer="21"/>
  7935. <wire x1="6" y1="-5" x2="5" y2="-6" width="0.2032" layer="21"/>
  7936. <wire x1="6" y1="5" x2="5" y2="6" width="0.2032" layer="21"/>
  7937. <wire x1="-5" y1="6" x2="-6" y2="5" width="0.2032" layer="21"/>
  7938. <circle x="0" y="0" radius="3.5" width="0.2032" layer="21"/>
  7939. <circle x="-4.5" y="4.5" radius="0.3" width="0.7" layer="21"/>
  7940. <circle x="4.5" y="4.5" radius="0.3" width="0.7" layer="21"/>
  7941. <circle x="4.5" y="-4.5" radius="0.3" width="0.7" layer="21"/>
  7942. <circle x="-4.5" y="-4.5" radius="0.3" width="0.7" layer="21"/>
  7943. <smd name="4" x="-6.975" y="2.5" dx="1.6" dy="1.55" layer="1"/>
  7944. <smd name="2" x="-6.975" y="-2.5" dx="1.6" dy="1.55" layer="1"/>
  7945. <smd name="1" x="6.975" y="-2.5" dx="1.6" dy="1.55" layer="1"/>
  7946. <smd name="3" x="6.975" y="2.5" dx="1.6" dy="1.55" layer="1"/>
  7947. <text x="0" y="6.223" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  7948. <text x="0" y="-6.223" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  7949. </package>
  7950. <package name="TACTILE_SWITCH_PTH_6.0MM_KIT" urn="urn:adsk.eagle:footprint:40110/1">
  7951. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - PTH, 6.0mm Square&lt;/h3&gt;
  7952. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  7953. &lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.&lt;/p&gt;
  7954. &lt;p&gt;&lt;a href="https://www.omron.com/ecb/products/pdf/en-b3f.pdf"&gt;Datasheet&lt;/a&gt; (B3F-1000)&lt;/p&gt;</description>
  7955. <wire x1="3.048" y1="1.016" x2="3.048" y2="2.54" width="0.2032" layer="51"/>
  7956. <wire x1="3.048" y1="2.54" x2="2.54" y2="3.048" width="0.2032" layer="51"/>
  7957. <wire x1="2.54" y1="-3.048" x2="3.048" y2="-2.54" width="0.2032" layer="51"/>
  7958. <wire x1="3.048" y1="-2.54" x2="3.048" y2="-1.016" width="0.2032" layer="51"/>
  7959. <wire x1="-2.54" y1="3.048" x2="-3.048" y2="2.54" width="0.2032" layer="51"/>
  7960. <wire x1="-3.048" y1="2.54" x2="-3.048" y2="1.016" width="0.2032" layer="51"/>
  7961. <wire x1="-2.54" y1="-3.048" x2="-3.048" y2="-2.54" width="0.2032" layer="51"/>
  7962. <wire x1="-3.048" y1="-2.54" x2="-3.048" y2="-1.016" width="0.2032" layer="51"/>
  7963. <wire x1="2.54" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="51"/>
  7964. <wire x1="-2.54" y1="-3.048" x2="-2.159" y2="-3.048" width="0.2032" layer="51"/>
  7965. <wire x1="-2.54" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="51"/>
  7966. <wire x1="2.54" y1="3.048" x2="2.159" y2="3.048" width="0.2032" layer="51"/>
  7967. <wire x1="2.159" y1="3.048" x2="-2.159" y2="3.048" width="0.2032" layer="21"/>
  7968. <wire x1="-2.159" y1="-3.048" x2="2.159" y2="-3.048" width="0.2032" layer="21"/>
  7969. <wire x1="3.048" y1="0.998" x2="3.048" y2="-1.016" width="0.2032" layer="21"/>
  7970. <wire x1="-3.048" y1="1.028" x2="-3.048" y2="-1.016" width="0.2032" layer="21"/>
  7971. <wire x1="-2.54" y1="1.27" x2="-2.54" y2="0.508" width="0.2032" layer="51"/>
  7972. <wire x1="-2.54" y1="-0.508" x2="-2.54" y2="-1.27" width="0.2032" layer="51"/>
  7973. <wire x1="-2.54" y1="0.508" x2="-2.159" y2="-0.381" width="0.2032" layer="51"/>
  7974. <circle x="0" y="0" radius="1.778" width="0.2032" layer="21"/>
  7975. <pad name="1" x="-3.2512" y="2.2606" drill="1.016" diameter="1.8796" stop="no"/>
  7976. <pad name="2" x="3.2512" y="2.2606" drill="1.016" diameter="1.8796" stop="no"/>
  7977. <pad name="3" x="-3.2512" y="-2.2606" drill="1.016" diameter="1.8796" stop="no"/>
  7978. <pad name="4" x="3.2512" y="-2.2606" drill="1.016" diameter="1.8796" stop="no"/>
  7979. <polygon width="0.127" layer="30">
  7980. <vertex x="-3.2664" y="3.142"/>
  7981. <vertex x="-3.2589" y="3.1445" curve="89.986886"/>
  7982. <vertex x="-4.1326" y="2.286"/>
  7983. <vertex x="-4.1351" y="2.2657" curve="90.00652"/>
  7984. <vertex x="-3.2563" y="1.392"/>
  7985. <vertex x="-3.2487" y="1.3869" curve="90.006616"/>
  7986. <vertex x="-2.3826" y="2.2403"/>
  7987. <vertex x="-2.3775" y="2.2683" curve="89.98711"/>
  7988. </polygon>
  7989. <polygon width="0.127" layer="29">
  7990. <vertex x="-3.2462" y="2.7026"/>
  7991. <vertex x="-3.2589" y="2.7051" curve="90.026544"/>
  7992. <vertex x="-3.6881" y="2.2733"/>
  7993. <vertex x="-3.6881" y="2.2632" curve="89.974074"/>
  7994. <vertex x="-3.2562" y="1.8213"/>
  7995. <vertex x="-3.2259" y="1.8186" curve="90.051271"/>
  7996. <vertex x="-2.8093" y="2.2658"/>
  7997. <vertex x="-2.8093" y="2.2606" curve="90.012964"/>
  7998. </polygon>
  7999. <polygon width="0.127" layer="30">
  8000. <vertex x="3.2411" y="3.1395"/>
  8001. <vertex x="3.2486" y="3.142" curve="89.986886"/>
  8002. <vertex x="2.3749" y="2.2835"/>
  8003. <vertex x="2.3724" y="2.2632" curve="90.00652"/>
  8004. <vertex x="3.2512" y="1.3895"/>
  8005. <vertex x="3.2588" y="1.3844" curve="90.006616"/>
  8006. <vertex x="4.1249" y="2.2378"/>
  8007. <vertex x="4.13" y="2.2658" curve="89.98711"/>
  8008. </polygon>
  8009. <polygon width="0.127" layer="29">
  8010. <vertex x="3.2613" y="2.7001"/>
  8011. <vertex x="3.2486" y="2.7026" curve="90.026544"/>
  8012. <vertex x="2.8194" y="2.2708"/>
  8013. <vertex x="2.8194" y="2.2607" curve="89.974074"/>
  8014. <vertex x="3.2513" y="1.8188"/>
  8015. <vertex x="3.2816" y="1.8161" curve="90.051271"/>
  8016. <vertex x="3.6982" y="2.2633"/>
  8017. <vertex x="3.6982" y="2.2581" curve="90.012964"/>
  8018. </polygon>
  8019. <polygon width="0.127" layer="30">
  8020. <vertex x="-3.2613" y="-1.3868"/>
  8021. <vertex x="-3.2538" y="-1.3843" curve="89.986886"/>
  8022. <vertex x="-4.1275" y="-2.2428"/>
  8023. <vertex x="-4.13" y="-2.2631" curve="90.00652"/>
  8024. <vertex x="-3.2512" y="-3.1368"/>
  8025. <vertex x="-3.2436" y="-3.1419" curve="90.006616"/>
  8026. <vertex x="-2.3775" y="-2.2885"/>
  8027. <vertex x="-2.3724" y="-2.2605" curve="89.98711"/>
  8028. </polygon>
  8029. <polygon width="0.127" layer="29">
  8030. <vertex x="-3.2411" y="-1.8262"/>
  8031. <vertex x="-3.2538" y="-1.8237" curve="90.026544"/>
  8032. <vertex x="-3.683" y="-2.2555"/>
  8033. <vertex x="-3.683" y="-2.2656" curve="89.974074"/>
  8034. <vertex x="-3.2511" y="-2.7075"/>
  8035. <vertex x="-3.2208" y="-2.7102" curve="90.051271"/>
  8036. <vertex x="-2.8042" y="-2.263"/>
  8037. <vertex x="-2.8042" y="-2.2682" curve="90.012964"/>
  8038. </polygon>
  8039. <polygon width="0.127" layer="30">
  8040. <vertex x="3.2411" y="-1.3843"/>
  8041. <vertex x="3.2486" y="-1.3818" curve="89.986886"/>
  8042. <vertex x="2.3749" y="-2.2403"/>
  8043. <vertex x="2.3724" y="-2.2606" curve="90.00652"/>
  8044. <vertex x="3.2512" y="-3.1343"/>
  8045. <vertex x="3.2588" y="-3.1394" curve="90.006616"/>
  8046. <vertex x="4.1249" y="-2.286"/>
  8047. <vertex x="4.13" y="-2.258" curve="89.98711"/>
  8048. </polygon>
  8049. <polygon width="0.127" layer="29">
  8050. <vertex x="3.2613" y="-1.8237"/>
  8051. <vertex x="3.2486" y="-1.8212" curve="90.026544"/>
  8052. <vertex x="2.8194" y="-2.253"/>
  8053. <vertex x="2.8194" y="-2.2631" curve="89.974074"/>
  8054. <vertex x="3.2513" y="-2.705"/>
  8055. <vertex x="3.2816" y="-2.7077" curve="90.051271"/>
  8056. <vertex x="3.6982" y="-2.2605"/>
  8057. <vertex x="3.6982" y="-2.2657" curve="90.012964"/>
  8058. </polygon>
  8059. <text x="0" y="3.175" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  8060. <text x="0" y="-3.175" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  8061. </package>
  8062. <package name="TACTILE_SWITCH_SMD_5.2MM" urn="urn:adsk.eagle:footprint:40111/1">
  8063. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, 5.2mm Square&lt;/h3&gt;
  8064. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  8065. &lt;p&gt;&lt;a href="https://www.sparkfun.com/datasheets/Components/Buttons/SMD-Button.pdf"&gt;Dimensional Drawing&lt;/a&gt;&lt;/p&gt;</description>
  8066. <wire x1="-1.54" y1="-2.54" x2="-2.54" y2="-1.54" width="0.2032" layer="51"/>
  8067. <wire x1="-2.54" y1="-1.24" x2="-2.54" y2="1.27" width="0.2032" layer="21"/>
  8068. <wire x1="-2.54" y1="1.54" x2="-1.54" y2="2.54" width="0.2032" layer="51"/>
  8069. <wire x1="-1.54" y1="2.54" x2="1.54" y2="2.54" width="0.2032" layer="21"/>
  8070. <wire x1="1.54" y1="2.54" x2="2.54" y2="1.54" width="0.2032" layer="51"/>
  8071. <wire x1="2.54" y1="1.24" x2="2.54" y2="-1.24" width="0.2032" layer="21"/>
  8072. <wire x1="2.54" y1="-1.54" x2="1.54" y2="-2.54" width="0.2032" layer="51"/>
  8073. <wire x1="1.54" y1="-2.54" x2="-1.54" y2="-2.54" width="0.2032" layer="21"/>
  8074. <wire x1="1.905" y1="1.27" x2="1.905" y2="0.445" width="0.127" layer="51"/>
  8075. <wire x1="1.905" y1="0.445" x2="2.16" y2="-0.01" width="0.127" layer="51"/>
  8076. <wire x1="1.905" y1="-0.23" x2="1.905" y2="-1.115" width="0.127" layer="51"/>
  8077. <circle x="0" y="0" radius="1.27" width="0.2032" layer="21"/>
  8078. <smd name="1" x="-2.794" y="1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
  8079. <smd name="2" x="2.794" y="1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
  8080. <smd name="3" x="-2.794" y="-1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
  8081. <smd name="4" x="2.794" y="-1.905" dx="0.762" dy="1.524" layer="1" rot="R90"/>
  8082. <text x="0" y="2.667" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  8083. <text x="0" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  8084. </package>
  8085. <package name="TACTILE_SWITCH_SMD_RIGHT_ANGLE" urn="urn:adsk.eagle:footprint:40112/1">
  8086. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, Right-angle&lt;/h3&gt;
  8087. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;</description>
  8088. <hole x="0" y="0.9" drill="0.7"/>
  8089. <hole x="0" y="-0.9" drill="0.7"/>
  8090. <smd name="1" x="-1.95" y="0" dx="2" dy="1.1" layer="1" rot="R90"/>
  8091. <smd name="2" x="1.95" y="0" dx="2" dy="1.1" layer="1" rot="R90"/>
  8092. <wire x1="-2" y1="1.2" x2="-2" y2="1.5" width="0.2032" layer="21"/>
  8093. <wire x1="-2" y1="1.5" x2="2" y2="1.5" width="0.2032" layer="21"/>
  8094. <wire x1="2" y1="1.5" x2="2" y2="1.2" width="0.2032" layer="21"/>
  8095. <wire x1="-2" y1="-1.2" x2="-2" y2="-1.5" width="0.2032" layer="21"/>
  8096. <wire x1="-2" y1="-1.5" x2="-0.7" y2="-1.5" width="0.2032" layer="21"/>
  8097. <wire x1="-0.7" y1="-1.5" x2="0.7" y2="-1.5" width="0.2032" layer="21"/>
  8098. <wire x1="0.7" y1="-1.5" x2="2" y2="-1.5" width="0.2032" layer="21"/>
  8099. <wire x1="2" y1="-1.5" x2="2" y2="-1.2" width="0.2032" layer="21"/>
  8100. <wire x1="-0.7" y1="-2.1" x2="0.7" y2="-2.1" width="0.2032" layer="21"/>
  8101. <wire x1="0.7" y1="-2.1" x2="0.7" y2="-1.5" width="0.2032" layer="21"/>
  8102. <wire x1="-0.7" y1="-2.1" x2="-0.7" y2="-1.5" width="0.2032" layer="21"/>
  8103. <text x="0" y="1.651" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  8104. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  8105. </package>
  8106. <package name="TACTILE_SWITCH_SMD_4.6X2.8MM" urn="urn:adsk.eagle:footprint:40113/1">
  8107. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST - SMD, 4.6 x 2.8mm&lt;/h3&gt;
  8108. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  8109. &lt;p&gt;&lt;a href="http://www.ck-components.com/media/1479/kmr2.pdf"&gt;Datasheet&lt;/a&gt;&lt;/p&gt;</description>
  8110. <smd name="3" x="2.05" y="0.8" dx="0.9" dy="1" layer="1"/>
  8111. <smd name="2" x="2.05" y="-0.8" dx="0.9" dy="1" layer="1"/>
  8112. <smd name="1" x="-2.05" y="-0.8" dx="0.9" dy="1" layer="1"/>
  8113. <smd name="4" x="-2.05" y="0.8" dx="0.9" dy="1" layer="1"/>
  8114. <wire x1="-2.1" y1="1.4" x2="-2.1" y2="-1.4" width="0.127" layer="51"/>
  8115. <wire x1="2.1" y1="-1.4" x2="2.1" y2="1.4" width="0.127" layer="51"/>
  8116. <wire x1="-2.1" y1="1.4" x2="2.1" y2="1.4" width="0.127" layer="51"/>
  8117. <wire x1="-2.1" y1="-1.4" x2="2.1" y2="-1.4" width="0.127" layer="51"/>
  8118. <wire x1="1.338" y1="-1.4" x2="-1.338" y2="-1.4" width="0.2032" layer="21"/>
  8119. <wire x1="-1.338" y1="1.4" x2="1.338" y2="1.4" width="0.2032" layer="21"/>
  8120. <wire x1="-2.1" y1="0.13" x2="-2.1" y2="-0.13" width="0.2032" layer="21"/>
  8121. <wire x1="2.1" y1="-0.13" x2="2.1" y2="0.13" width="0.2032" layer="21"/>
  8122. <circle x="0" y="0" radius="0.805" width="0.127" layer="21"/>
  8123. <rectangle x1="-2.3" y1="0.5" x2="-2.1" y2="1.1" layer="51"/>
  8124. <rectangle x1="-2.3" y1="-1.1" x2="-2.1" y2="-0.5" layer="51"/>
  8125. <rectangle x1="2.1" y1="-1.1" x2="2.3" y2="-0.5" layer="51" rot="R180"/>
  8126. <rectangle x1="2.1" y1="0.5" x2="2.3" y2="1.1" layer="51" rot="R180"/>
  8127. <text x="0" y="1.524" size="0.6096" layer="25" font="vector" ratio="20" align="bottom-center">&gt;Name</text>
  8128. <text x="0" y="-1.524" size="0.6096" layer="27" font="vector" ratio="20" align="top-center">&gt;Value</text>
  8129. </package>
  8130. </packages>
  8131. <packages3d>
  8132. <package3d name="TACTILE_SWITCH_PTH_6.0MM" urn="urn:adsk.eagle:package:40163/1" type="box">
  8133. <description>Momentary Switch (Pushbutton) - SPST - PTH, 6.0mm Square
  8134. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8135. Datasheet (B3F-1000)</description>
  8136. <packageinstances>
  8137. <packageinstance name="TACTILE_SWITCH_PTH_6.0MM"/>
  8138. </packageinstances>
  8139. </package3d>
  8140. <package3d name="TACTILE_SWITCH_SMD_4.5MM" urn="urn:adsk.eagle:package:40162/1" type="box">
  8141. <description>Momentary Switch (Pushbutton) - SPST - SMD, 4.5mm Square
  8142. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8143. Dimensional Drawing</description>
  8144. <packageinstances>
  8145. <packageinstance name="TACTILE_SWITCH_SMD_4.5MM"/>
  8146. </packageinstances>
  8147. </package3d>
  8148. <package3d name="TACTILE_SWITCH_PTH_12MM" urn="urn:adsk.eagle:package:40164/1" type="box">
  8149. <description>Momentary Switch (Pushbutton) - SPST - PTH, 12mm Square
  8150. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8151. Datasheet (B3F-5050)</description>
  8152. <packageinstances>
  8153. <packageinstance name="TACTILE_SWITCH_PTH_12MM"/>
  8154. </packageinstances>
  8155. </package3d>
  8156. <package3d name="TACTILE_SWITCH_SMD_6.0X3.5MM" urn="urn:adsk.eagle:package:40165/1" type="box">
  8157. <description>Momentary Switch (Pushbutton) - SPST - SMD, 6.0 x 3.5 mm
  8158. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8159. Datasheet</description>
  8160. <packageinstances>
  8161. <packageinstance name="TACTILE_SWITCH_SMD_6.0X3.5MM"/>
  8162. </packageinstances>
  8163. </package3d>
  8164. <package3d name="TACTILE_SWITCH_SMD_6.2MM_TALL" urn="urn:adsk.eagle:package:40172/1" type="box">
  8165. <description>Momentary Switch (Pushbutton) - SPST - SMD, 6.2mm Square
  8166. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8167. Datasheet (ADTSM63NVTR)</description>
  8168. <packageinstances>
  8169. <packageinstance name="TACTILE_SWITCH_SMD_6.2MM_TALL"/>
  8170. </packageinstances>
  8171. </package3d>
  8172. <package3d name="TACTILE_SWITCH_PTH_RIGHT_ANGLE_KIT" urn="urn:adsk.eagle:package:40168/1" type="box">
  8173. <description>Momentary Switch (Pushbutton) - SPST - PTH, Right-angle
  8174. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8175. Dimensional Drawing</description>
  8176. <packageinstances>
  8177. <packageinstance name="TACTILE_SWITCH_PTH_RIGHT_ANGLE_KIT"/>
  8178. </packageinstances>
  8179. </package3d>
  8180. <package3d name="TACTILE_SWITCH_SMD_12MM" urn="urn:adsk.eagle:package:40166/1" type="box">
  8181. <description>Momentary Switch (Pushbutton) - SPST - SMD, 12mm Square
  8182. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8183. Datasheet</description>
  8184. <packageinstances>
  8185. <packageinstance name="TACTILE_SWITCH_SMD_12MM"/>
  8186. </packageinstances>
  8187. </package3d>
  8188. <package3d name="TACTILE_SWITCH_PTH_6.0MM_KIT" urn="urn:adsk.eagle:package:40170/1" type="box">
  8189. <description>Momentary Switch (Pushbutton) - SPST - PTH, 6.0mm Square
  8190. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8191. Warning: This is the KIT version of this package. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  8192. Datasheet (B3F-1000)</description>
  8193. <packageinstances>
  8194. <packageinstance name="TACTILE_SWITCH_PTH_6.0MM_KIT"/>
  8195. </packageinstances>
  8196. </package3d>
  8197. <package3d name="TACTILE_SWITCH_SMD_5.2MM" urn="urn:adsk.eagle:package:40167/1" type="box">
  8198. <description>Momentary Switch (Pushbutton) - SPST - SMD, 5.2mm Square
  8199. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8200. Dimensional Drawing</description>
  8201. <packageinstances>
  8202. <packageinstance name="TACTILE_SWITCH_SMD_5.2MM"/>
  8203. </packageinstances>
  8204. </package3d>
  8205. <package3d name="TACTILE_SWITCH_SMD_RIGHT_ANGLE" urn="urn:adsk.eagle:package:40169/1" type="box">
  8206. <description>Momentary Switch (Pushbutton) - SPST - SMD, Right-angle
  8207. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).</description>
  8208. <packageinstances>
  8209. <packageinstance name="TACTILE_SWITCH_SMD_RIGHT_ANGLE"/>
  8210. </packageinstances>
  8211. </package3d>
  8212. <package3d name="TACTILE_SWITCH_SMD_4.6X2.8MM" urn="urn:adsk.eagle:package:40176/1" type="box">
  8213. <description>Momentary Switch (Pushbutton) - SPST - SMD, 4.6 x 2.8mm
  8214. Normally-open (NO) SPST momentary switches (buttons, pushbuttons).
  8215. Datasheet</description>
  8216. <packageinstances>
  8217. <packageinstance name="TACTILE_SWITCH_SMD_4.6X2.8MM"/>
  8218. </packageinstances>
  8219. </package3d>
  8220. </packages3d>
  8221. <symbols>
  8222. <symbol name="SWITCH-MOMENTARY-2">
  8223. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST&lt;/h3&gt;
  8224. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;</description>
  8225. <wire x1="1.905" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  8226. <wire x1="-2.54" y1="0" x2="1.905" y2="1.27" width="0.254" layer="94"/>
  8227. <circle x="-2.54" y="0" radius="0.127" width="0.4064" layer="94"/>
  8228. <circle x="2.54" y="0" radius="0.127" width="0.4064" layer="94"/>
  8229. <text x="0" y="1.524" size="1.778" layer="95" font="vector" align="bottom-center">&gt;NAME</text>
  8230. <text x="0" y="-0.508" size="1.778" layer="96" font="vector" align="top-center">&gt;VALUE</text>
  8231. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="2"/>
  8232. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  8233. </symbol>
  8234. </symbols>
  8235. <devicesets>
  8236. <deviceset name="MOMENTARY-SWITCH-SPST" prefix="S">
  8237. <description>&lt;h3&gt;Momentary Switch (Pushbutton) - SPST&lt;/h3&gt;
  8238. &lt;p&gt;Normally-open (NO) SPST momentary switches (buttons, pushbuttons).&lt;/p&gt;
  8239. &lt;h4&gt;Variants&lt;/h4&gt;
  8240. &lt;h5&gt;PTH-12MM - 12mm square, through-hole&lt;/h5&gt;
  8241. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/9190"&gt;Momentary Pushbutton Switch - 12mm Square&lt;/a&gt; (COM-09190)&lt;/li&gt;&lt;/ul&gt;
  8242. &lt;h5&gt;PTH-6.0MM, PTH-6.0MM-KIT - 6.0mm square, through-hole&lt;/h5&gt;
  8243. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/97"&gt;Mini Pushbutton Switch&lt;/a&gt; (COM-00097)&lt;/li&gt;
  8244. &lt;li&gt;KIT package intended for soldering kit's - only one side of pads' copper is exposed.&lt;/li&gt;&lt;/ul&gt;
  8245. &lt;h5&gt;PTH-RIGHT-ANGLE-KIT - Right-angle, through-hole&lt;/h5&gt;
  8246. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/10791"&gt;Right Angle Tactile Button&lt;/a&gt; - Used on &lt;a href="https://www.sparkfun.com/products/11734"&gt;
  8247. SparkFun BigTime Watch Kit&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
  8248. &lt;h5&gt;SMD-12MM - 12mm square, surface-mount&lt;/h5&gt;
  8249. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/12993"&gt;Tactile Button - SMD (12mm)&lt;/a&gt; (COM-12993)&lt;/li&gt;
  8250. &lt;li&gt;Used on &lt;a href="https://www.sparkfun.com/products/11888"&gt;SparkFun PicoBoard&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
  8251. &lt;h5&gt;SMD-4.5MM - 4.5mm Square Trackball Switch&lt;/h5&gt;
  8252. &lt;ul&gt;&lt;li&gt;Used on &lt;a href="https://www.sparkfun.com/products/13169"&gt;SparkFun Blackberry Trackballer Breakout&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
  8253. &lt;h5&gt;SMD-4.6MMX2.8MM - 4.60mm x 2.80mm, surface mount&lt;/h5&gt;
  8254. &lt;ul&gt;&lt;li&gt;Used on &lt;a href="https://www.sparkfun.com/products/13664"&gt;SparkFun SAMD21 Mini Breakout&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
  8255. &lt;h5&gt;SMD-5.2MM, SMD-5.2-REDUNDANT - 5.2mm square, surface-mount&lt;/h5&gt;
  8256. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/8720"&gt;Mini Pushbutton Switch - SMD&lt;/a&gt; (COM-08720)&lt;/li&gt;
  8257. &lt;li&gt;Used on &lt;a href="https://www.sparkfun.com/products/11114"&gt;Arduino Pro Mini&lt;/a&gt;&lt;/li&gt;
  8258. &lt;li&gt;REDUNDANT package connects both switch circuits together&lt;/li&gt;&lt;/ul&gt;
  8259. &lt;h5&gt;SMD-6.0X3.5MM - 6.0 x 3.5mm, surface mount&lt;/h5&gt;
  8260. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/8229"&gt;Momentary Reset Switch SMD&lt;/a&gt; (COM-08229)&lt;/li&gt;&lt;/ul&gt;
  8261. &lt;h5&gt;SMD-6.2MM-TALL - 6.2mm square, surface mount&lt;/h5&gt;
  8262. &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/12992"&gt;Tactile Button - SMD (6mm)&lt;/a&gt;&lt;/li&gt;
  8263. &lt;li&gt;Used on &lt;a href="https://www.sparkfun.com/products/12651"&gt;SparkFun Digital Sandbox&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
  8264. &lt;h5&gt;SMD-RIGHT-ANGLE - Right-angle, surface mount&lt;/h5&gt;
  8265. &lt;ul&gt;&lt;li&gt;Used on &lt;a href="https://www.sparkfun.com/products/13036"&gt;SparkFun Block for Intel® Edison - Arduino&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
  8266. <gates>
  8267. <gate name="G$1" symbol="SWITCH-MOMENTARY-2" x="0" y="0"/>
  8268. </gates>
  8269. <devices>
  8270. <device name="-PTH-6.0MM" package="TACTILE_SWITCH_PTH_6.0MM">
  8271. <connects>
  8272. <connect gate="G$1" pin="1" pad="1 2"/>
  8273. <connect gate="G$1" pin="2" pad="3 4"/>
  8274. </connects>
  8275. <package3dinstances>
  8276. <package3dinstance package3d_urn="urn:adsk.eagle:package:40163/1"/>
  8277. </package3dinstances>
  8278. <technologies>
  8279. <technology name="">
  8280. <attribute name="PROD_ID" value=" SWCH-08441"/>
  8281. <attribute name="SF_SKU" value="COM-00097"/>
  8282. </technology>
  8283. </technologies>
  8284. </device>
  8285. <device name="-SMD-4.5MM" package="TACTILE_SWITCH_SMD_4.5MM">
  8286. <connects>
  8287. <connect gate="G$1" pin="1" pad="2 3"/>
  8288. <connect gate="G$1" pin="2" pad="1 4"/>
  8289. </connects>
  8290. <package3dinstances>
  8291. <package3dinstance package3d_urn="urn:adsk.eagle:package:40162/1"/>
  8292. </package3dinstances>
  8293. <technologies>
  8294. <technology name="">
  8295. <attribute name="PROD_ID" value="SWCH-09213"/>
  8296. </technology>
  8297. </technologies>
  8298. </device>
  8299. <device name="-PTH-12MM" package="TACTILE_SWITCH_PTH_12MM">
  8300. <connects>
  8301. <connect gate="G$1" pin="1" pad="1"/>
  8302. <connect gate="G$1" pin="2" pad="3"/>
  8303. </connects>
  8304. <package3dinstances>
  8305. <package3dinstance package3d_urn="urn:adsk.eagle:package:40164/1"/>
  8306. </package3dinstances>
  8307. <technologies>
  8308. <technology name="">
  8309. <attribute name="PROD_ID" value="SWCH-09185"/>
  8310. <attribute name="SF_SKU" value="COM-09190"/>
  8311. </technology>
  8312. </technologies>
  8313. </device>
  8314. <device name="-SMD-6.0X3.5MM" package="TACTILE_SWITCH_SMD_6.0X3.5MM">
  8315. <connects>
  8316. <connect gate="G$1" pin="1" pad="1"/>
  8317. <connect gate="G$1" pin="2" pad="2"/>
  8318. </connects>
  8319. <package3dinstances>
  8320. <package3dinstance package3d_urn="urn:adsk.eagle:package:40165/1"/>
  8321. </package3dinstances>
  8322. <technologies>
  8323. <technology name="">
  8324. <attribute name="PROD_ID" value="SWCH-00815"/>
  8325. <attribute name="SF_SKU" value="COM-08229"/>
  8326. </technology>
  8327. </technologies>
  8328. </device>
  8329. <device name="-SMD-6.2MM-TALL" package="TACTILE_SWITCH_SMD_6.2MM_TALL">
  8330. <connects>
  8331. <connect gate="G$1" pin="1" pad="A2"/>
  8332. <connect gate="G$1" pin="2" pad="B2"/>
  8333. </connects>
  8334. <package3dinstances>
  8335. <package3dinstance package3d_urn="urn:adsk.eagle:package:40172/1"/>
  8336. </package3dinstances>
  8337. <technologies>
  8338. <technology name="">
  8339. <attribute name="PROD_ID" value="SWCH-11966"/>
  8340. <attribute name="SF_SKU" value="COM-12992"/>
  8341. </technology>
  8342. </technologies>
  8343. </device>
  8344. <device name="-PTH-RIGHT-ANGLE-KIT" package="TACTILE_SWITCH_PTH_RIGHT_ANGLE_KIT">
  8345. <connects>
  8346. <connect gate="G$1" pin="1" pad="1"/>
  8347. <connect gate="G$1" pin="2" pad="2"/>
  8348. </connects>
  8349. <package3dinstances>
  8350. <package3dinstance package3d_urn="urn:adsk.eagle:package:40168/1"/>
  8351. </package3dinstances>
  8352. <technologies>
  8353. <technology name="">
  8354. <attribute name="PROD_ID" value="CONN-10672"/>
  8355. <attribute name="SF_SKU" value="COM-10791"/>
  8356. </technology>
  8357. </technologies>
  8358. </device>
  8359. <device name="-SMD-12MM" package="TACTILE_SWITCH_SMD_12MM">
  8360. <connects>
  8361. <connect gate="G$1" pin="1" pad="1"/>
  8362. <connect gate="G$1" pin="2" pad="3"/>
  8363. </connects>
  8364. <package3dinstances>
  8365. <package3dinstance package3d_urn="urn:adsk.eagle:package:40166/1"/>
  8366. </package3dinstances>
  8367. <technologies>
  8368. <technology name="">
  8369. <attribute name="PROD_ID" value="SWCH-11967"/>
  8370. <attribute name="SF_SKU" value="COM-12993"/>
  8371. </technology>
  8372. </technologies>
  8373. </device>
  8374. <device name="-PTH-6.0MM-KIT" package="TACTILE_SWITCH_PTH_6.0MM_KIT">
  8375. <connects>
  8376. <connect gate="G$1" pin="1" pad="1"/>
  8377. <connect gate="G$1" pin="2" pad="3"/>
  8378. </connects>
  8379. <package3dinstances>
  8380. <package3dinstance package3d_urn="urn:adsk.eagle:package:40170/1"/>
  8381. </package3dinstances>
  8382. <technologies>
  8383. <technology name="">
  8384. <attribute name="PROD_ID" value="SWCH-08441"/>
  8385. <attribute name="SF_SKU" value="COM-00097 "/>
  8386. </technology>
  8387. </technologies>
  8388. </device>
  8389. <device name="-SMD-5.2MM" package="TACTILE_SWITCH_SMD_5.2MM">
  8390. <connects>
  8391. <connect gate="G$1" pin="1" pad="1"/>
  8392. <connect gate="G$1" pin="2" pad="3"/>
  8393. </connects>
  8394. <package3dinstances>
  8395. <package3dinstance package3d_urn="urn:adsk.eagle:package:40167/1"/>
  8396. </package3dinstances>
  8397. <technologies>
  8398. <technology name="">
  8399. <attribute name="PROD_ID" value="SWCH-08247"/>
  8400. <attribute name="SF_SKU" value="COM-08720"/>
  8401. </technology>
  8402. </technologies>
  8403. </device>
  8404. <device name="-SMD-5.2-REDUNDANT" package="TACTILE_SWITCH_SMD_5.2MM">
  8405. <connects>
  8406. <connect gate="G$1" pin="1" pad="1 2"/>
  8407. <connect gate="G$1" pin="2" pad="3 4"/>
  8408. </connects>
  8409. <package3dinstances>
  8410. <package3dinstance package3d_urn="urn:adsk.eagle:package:40167/1"/>
  8411. </package3dinstances>
  8412. <technologies>
  8413. <technology name="">
  8414. <attribute name="PROD_ID" value="SWCH-08247"/>
  8415. <attribute name="SF_SKU" value="COM-08720"/>
  8416. </technology>
  8417. </technologies>
  8418. </device>
  8419. <device name="-SMD-RIGHT-ANGLE" package="TACTILE_SWITCH_SMD_RIGHT_ANGLE">
  8420. <connects>
  8421. <connect gate="G$1" pin="1" pad="1"/>
  8422. <connect gate="G$1" pin="2" pad="2"/>
  8423. </connects>
  8424. <package3dinstances>
  8425. <package3dinstance package3d_urn="urn:adsk.eagle:package:40169/1"/>
  8426. </package3dinstances>
  8427. <technologies>
  8428. <technology name="">
  8429. <attribute name="PROD_ID" value="COMP-12265" constant="no"/>
  8430. </technology>
  8431. </technologies>
  8432. </device>
  8433. <device name="-SMD-4.6X2.8MM" package="TACTILE_SWITCH_SMD_4.6X2.8MM">
  8434. <connects>
  8435. <connect gate="G$1" pin="1" pad="1 2"/>
  8436. <connect gate="G$1" pin="2" pad="3 4"/>
  8437. </connects>
  8438. <package3dinstances>
  8439. <package3dinstance package3d_urn="urn:adsk.eagle:package:40176/1"/>
  8440. </package3dinstances>
  8441. <technologies>
  8442. <technology name="">
  8443. <attribute name="PROD_ID" value="SWCH-13065"/>
  8444. </technology>
  8445. </technologies>
  8446. </device>
  8447. </devices>
  8448. </deviceset>
  8449. </devicesets>
  8450. </library>
  8451. <library name="buzzer">
  8452. <description>&lt;b&gt;Speakers and Buzzers&lt;/b&gt;&lt;p&gt;
  8453. &lt;ul&gt;Distributors:
  8454. &lt;li&gt;Buerklin
  8455. &lt;li&gt;Spoerle
  8456. &lt;li&gt;Schukat
  8457. &lt;/ul&gt;
  8458. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  8459. <packages>
  8460. <package name="F/HGP" urn="urn:adsk.eagle:footprint:5238/1" locally_modified="yes">
  8461. <description>&lt;b&gt;BUZZER&lt;/b&gt;</description>
  8462. <pad name="1" x="-3.81" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  8463. <pad name="2" x="3.81" y="0" drill="1.016" diameter="2.159" shape="octagon"/>
  8464. <text x="4.445" y="6.985" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  8465. <text x="-3.683" y="-3.81" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  8466. <circle x="0" y="0" radius="6.0827625" width="0.127" layer="21"/>
  8467. </package>
  8468. </packages>
  8469. <packages3d>
  8470. <package3d name="F/HGP" urn="urn:adsk.eagle:package:5287/1" type="box">
  8471. <description>BUZZER</description>
  8472. <packageinstances>
  8473. <packageinstance name="F/HGP"/>
  8474. </packageinstances>
  8475. </package3d>
  8476. </packages3d>
  8477. <symbols>
  8478. <symbol name="BWS">
  8479. <wire x1="-2.54" y1="5.08" x2="5.08" y2="5.08" width="0.254" layer="94" curve="180"/>
  8480. <wire x1="-2.54" y1="5.08" x2="5.08" y2="5.08" width="0.254" layer="94"/>
  8481. <wire x1="0" y1="3.175" x2="1.27" y2="3.175" width="0.1524" layer="94" curve="-180" cap="flat"/>
  8482. <wire x1="1.27" y1="3.175" x2="2.54" y2="3.175" width="0.1524" layer="94" curve="180" cap="flat"/>
  8483. <wire x1="2.54" y1="-2.54" x2="2.54" y2="1.397" width="0.1524" layer="94"/>
  8484. <wire x1="0" y1="-2.54" x2="0" y2="1.397" width="0.1524" layer="94"/>
  8485. <text x="-2.54" y="6.35" size="1.778" layer="95">&gt;NAME</text>
  8486. <text x="6.35" y="0" size="1.778" layer="96">&gt;VALUE</text>
  8487. <pin name="2" x="5.08" y="-2.54" visible="pad" length="short" direction="pas" rot="R180"/>
  8488. <pin name="1" x="-2.54" y="-2.54" visible="pad" length="short" direction="pas"/>
  8489. </symbol>
  8490. </symbols>
  8491. <devicesets>
  8492. <deviceset name="F/HGP" prefix="SG">
  8493. <description>&lt;b&gt;BUZZER&lt;/b&gt;&lt;p&gt; Source: Buerklin</description>
  8494. <gates>
  8495. <gate name="G$1" symbol="BWS" x="0" y="0"/>
  8496. </gates>
  8497. <devices>
  8498. <device name="" package="F/HGP">
  8499. <connects>
  8500. <connect gate="G$1" pin="1" pad="1"/>
  8501. <connect gate="G$1" pin="2" pad="2"/>
  8502. </connects>
  8503. <package3dinstances>
  8504. <package3dinstance package3d_urn="urn:adsk.eagle:package:5287/1"/>
  8505. </package3dinstances>
  8506. <technologies>
  8507. <technology name="">
  8508. <attribute name="MF" value="" constant="no"/>
  8509. <attribute name="MPN" value="" constant="no"/>
  8510. <attribute name="OC_FARNELL" value="unknown" constant="no"/>
  8511. <attribute name="OC_NEWARK" value="unknown" constant="no"/>
  8512. <attribute name="POPULARITY" value="0" constant="no"/>
  8513. </technology>
  8514. </technologies>
  8515. </device>
  8516. </devices>
  8517. </deviceset>
  8518. </devicesets>
  8519. </library>
  8520. </libraries>
  8521. <attributes>
  8522. </attributes>
  8523. <variantdefs>
  8524. </variantdefs>
  8525. <classes>
  8526. <class number="0" name="default" width="0" drill="0">
  8527. </class>
  8528. </classes>
  8529. <parts>
  8530. <part name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="" package3d_urn="urn:adsk.eagle:package:38039/1" value="Break"/>
  8531. <part name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_06" device="SILK_FEMALE_PTH" package3d_urn="urn:adsk.eagle:package:38009/1" value="COMM"/>
  8532. <part name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="" package3d_urn="urn:adsk.eagle:package:38039/1" value="PWR"/>
  8533. <part name="J4" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_05" device="" package3d_urn="urn:adsk.eagle:package:38104/1" value="DISPLAY"/>
  8534. <part name="J5" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_03" device="" package3d_urn="urn:adsk.eagle:package:38063/1" value="THROTTLE"/>
  8535. <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="_" value="0.1uF"/>
  8536. <part name="J6" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="" package3d_urn="urn:adsk.eagle:package:38039/1" value="LED"/>
  8537. <part name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFET"/>
  8538. <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="10K"/>
  8539. <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="10K"/>
  8540. <part name="D2" library="Diode" library_urn="urn:adsk.eagle:library:16378169" deviceset="DIODE" device="DO-215-AC" package3d_urn="urn:adsk.eagle:package:9427057/2" technology="_" value=""/>
  8541. <part name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="PMOSFET_" device="" package3d_urn="urn:adsk.eagle:package:28738/2" technology="BSS84" value="BSS84"/>
  8542. <part name="D3" library="Diode" library_urn="urn:adsk.eagle:library:16378169" deviceset="DIODE" device="DO-215-AC" package3d_urn="urn:adsk.eagle:package:9427057/2" technology="_" value=""/>
  8543. <part name="Q5" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFET"/>
  8544. <part name="J7" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_06" device="SILK_FEMALE_PTH" package3d_urn="urn:adsk.eagle:package:38009/1" value="SPEED"/>
  8545. <part name="C3" 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="_" value="0.1uF"/>
  8546. <part name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFET"/>
  8547. <part name="D4" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  8548. <part name="D6" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  8549. <part name="D7" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  8550. <part name="D8" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  8551. <part name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
  8552. <part name="R5" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
  8553. <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="_" value="0.1uF"/>
  8554. <part name="GND1" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8555. <part name="GND2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8556. <part name="U1" library="eScooter" deviceset="ARDUINO" device="ARDUINO_NANO" package3d_urn="urn:adsk.eagle:package:21849926/1" value="Arduino Nano Every"/>
  8557. <part name="S1" library="SparkFun-Switches" deviceset="MOMENTARY-SWITCH-SPST" device="-PTH-6.0MM" package3d_urn="urn:adsk.eagle:package:40163/1"/>
  8558. <part name="SG1" library="buzzer" deviceset="F/HGP" device="" package3d_urn="urn:adsk.eagle:package:5287/1"/>
  8559. <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="10K"/>
  8560. <part name="D1" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  8561. <part name="GND3" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8562. <part name="GND4" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8563. <part name="GND5" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8564. <part name="GND6" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8565. <part name="GND7" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8566. <part name="GND8" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8567. <part name="GND9" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  8568. </parts>
  8569. <sheets>
  8570. <sheet>
  8571. <plain>
  8572. </plain>
  8573. <instances>
  8574. <instance part="J1" gate="G$1" x="27.94" y="111.76" smashed="yes">
  8575. <attribute name="VALUE" x="25.4" y="106.934" size="1.778" layer="96" font="vector"/>
  8576. <attribute name="NAME" x="25.4" y="117.348" size="1.778" layer="95" font="vector"/>
  8577. </instance>
  8578. <instance part="J2" gate="G$1" x="114.3" y="86.36" smashed="yes" rot="R180">
  8579. <attribute name="VALUE" x="119.38" y="96.266" size="1.778" layer="96" font="vector" rot="R180"/>
  8580. <attribute name="NAME" x="119.38" y="75.692" size="1.778" layer="95" font="vector" rot="R180"/>
  8581. </instance>
  8582. <instance part="J3" gate="G$1" x="-119.38" y="73.66" smashed="yes" rot="MR180">
  8583. <attribute name="VALUE" x="-121.92" y="78.486" size="1.778" layer="96" font="vector" rot="MR180"/>
  8584. <attribute name="NAME" x="-121.92" y="68.072" size="1.778" layer="95" font="vector" rot="MR180"/>
  8585. </instance>
  8586. <instance part="J4" gate="G$1" x="116.84" y="38.1" smashed="yes" rot="MR0">
  8587. <attribute name="VALUE" x="119.634" y="33.02" size="1.778" layer="96" font="vector" rot="MR90"/>
  8588. <attribute name="NAME" x="119.38" y="46.228" size="1.778" layer="95" font="vector" rot="MR0"/>
  8589. </instance>
  8590. <instance part="J5" gate="J$1" x="-10.16" y="111.76" smashed="yes" rot="MR180">
  8591. <attribute name="VALUE" x="-15.24" y="106.426" size="1.778" layer="96" font="vector" rot="MR180"/>
  8592. <attribute name="NAME" x="-12.7" y="118.872" size="1.778" layer="95" font="vector" rot="MR180"/>
  8593. </instance>
  8594. <instance part="C1" gate="G$1" x="-25.4" y="109.22" smashed="yes" rot="R180">
  8595. <attribute name="NAME" x="-27.94" y="109.22" size="1.778" layer="95" rot="R180"/>
  8596. <attribute name="VALUE" x="-27.94" y="114.3" size="1.778" layer="96" rot="R180"/>
  8597. </instance>
  8598. <instance part="J6" gate="G$1" x="116.84" y="22.86" smashed="yes" rot="R180">
  8599. <attribute name="VALUE" x="119.38" y="17.526" size="1.778" layer="96" font="vector" rot="R180"/>
  8600. <attribute name="NAME" x="119.38" y="27.432" size="1.778" layer="95" font="vector" rot="R180"/>
  8601. </instance>
  8602. <instance part="Q2" gate="G$1" x="-76.2" y="73.66" smashed="yes" rot="MR0">
  8603. <attribute name="NAME" x="-85.09" y="69.85" size="1.778" layer="95"/>
  8604. <attribute name="VALUE" x="-85.09" y="77.47" size="1.778" layer="96"/>
  8605. </instance>
  8606. <instance part="R2" gate="G$1" x="-93.98" y="73.66" smashed="yes" rot="MR0">
  8607. <attribute name="NAME" x="-90.17" y="75.1586" size="1.778" layer="95" rot="MR0"/>
  8608. <attribute name="VALUE" x="-90.17" y="70.358" size="1.778" layer="96" rot="MR0"/>
  8609. </instance>
  8610. <instance part="R1" gate="G$1" x="-71.12" y="66.04" smashed="yes" rot="MR180">
  8611. <attribute name="NAME" x="-74.93" y="64.5414" size="1.778" layer="95" rot="MR180"/>
  8612. <attribute name="VALUE" x="-74.93" y="69.342" size="1.778" layer="96" rot="MR180"/>
  8613. </instance>
  8614. <instance part="D2" gate="G$1" x="-86.36" y="63.5" smashed="yes" rot="MR270">
  8615. <attribute name="NAME" x="-91.44" y="63.5" size="1.778" layer="95" rot="MR180" align="center"/>
  8616. <attribute name="VALUE" x="-81.28" y="63.5" size="1.778" layer="95" rot="MR270" align="center"/>
  8617. </instance>
  8618. <instance part="Q4" gate="G$1" x="-99.06" y="81.28" smashed="yes" rot="R180">
  8619. <attribute name="NAME" x="-105.41" y="80.01" size="1.778" layer="95" rot="R180"/>
  8620. <attribute name="VALUE" x="-105.41" y="82.55" size="1.778" layer="96" rot="R180"/>
  8621. </instance>
  8622. <instance part="D3" gate="G$1" x="-71.12" y="43.18" smashed="yes" rot="MR0">
  8623. <attribute name="NAME" x="-71.12" y="40.64" size="1.778" layer="95" rot="MR0" align="center"/>
  8624. <attribute name="VALUE" x="-71.12" y="38.1" size="1.778" layer="95" rot="MR0" align="center"/>
  8625. </instance>
  8626. <instance part="Q5" gate="G$1" x="83.82" y="71.12" smashed="yes" rot="MR270">
  8627. <attribute name="NAME" x="82.55" y="64.77" size="1.778" layer="95" rot="MR270"/>
  8628. </instance>
  8629. <instance part="J7" gate="G$1" x="-78.74" y="109.22" smashed="yes">
  8630. <attribute name="VALUE" x="-83.82" y="99.314" size="1.778" layer="96" font="vector"/>
  8631. <attribute name="NAME" x="-83.82" y="119.888" size="1.778" layer="95" font="vector"/>
  8632. </instance>
  8633. <instance part="C3" gate="G$1" x="-58.42" y="116.84" smashed="yes" rot="MR270">
  8634. <attribute name="NAME" x="-55.88" y="114.3" size="1.778" layer="95" rot="R270"/>
  8635. <attribute name="VALUE" x="-58.42" y="114.3" size="1.778" layer="96" rot="MR270"/>
  8636. </instance>
  8637. <instance part="Q1" gate="G$1" x="101.6" y="12.7" smashed="yes">
  8638. <attribute name="NAME" x="118.11" y="13.97" size="1.778" layer="95"/>
  8639. </instance>
  8640. <instance part="D4" gate="D$1" x="-17.78" y="111.76" smashed="yes" rot="R180">
  8641. <attribute name="NAME" x="-20.32" y="109.22" size="1.778" layer="95" rot="R180"/>
  8642. </instance>
  8643. <instance part="D6" gate="D$1" x="-63.5" y="104.14" smashed="yes" rot="R270">
  8644. <attribute name="NAME" x="-63.5" y="101.6" size="1.778" layer="95" rot="R180"/>
  8645. </instance>
  8646. <instance part="D7" gate="D$1" x="-58.42" y="63.5" smashed="yes" rot="MR0">
  8647. <attribute name="NAME" x="-60.96" y="63.5" size="1.778" layer="95" rot="MR0"/>
  8648. </instance>
  8649. <instance part="D8" gate="D$1" x="-71.12" y="50.8" smashed="yes" rot="MR90">
  8650. <attribute name="NAME" x="-71.12" y="53.34" size="1.778" layer="95" rot="MR0"/>
  8651. </instance>
  8652. <instance part="R4" gate="G$1" x="99.06" y="68.58" smashed="yes">
  8653. <attribute name="NAME" x="95.25" y="70.0786" size="1.778" layer="95"/>
  8654. <attribute name="VALUE" x="95.25" y="65.278" size="1.778" layer="96"/>
  8655. </instance>
  8656. <instance part="R5" gate="G$1" x="96.52" y="2.54" smashed="yes" rot="R90">
  8657. <attribute name="NAME" x="95.0214" y="-1.27" size="1.778" layer="95" rot="R90"/>
  8658. <attribute name="VALUE" x="99.822" y="-1.27" size="1.778" layer="96" rot="R90"/>
  8659. </instance>
  8660. <instance part="C2" gate="G$1" x="124.46" y="81.28" smashed="yes">
  8661. <attribute name="NAME" x="129.54" y="78.74" size="1.778" layer="95" rot="R180"/>
  8662. <attribute name="VALUE" x="129.54" y="83.82" size="1.778" layer="96" rot="R180"/>
  8663. </instance>
  8664. <instance part="GND1" gate="1" x="104.14" y="-10.16" smashed="yes">
  8665. <attribute name="VALUE" x="101.6" y="-12.7" size="1.778" layer="96"/>
  8666. </instance>
  8667. <instance part="GND2" gate="1" x="-22.86" y="35.56" smashed="yes">
  8668. <attribute name="VALUE" x="-25.4" y="33.02" size="1.778" layer="96"/>
  8669. </instance>
  8670. <instance part="U1" gate="G$1" x="10.16" y="63.5" smashed="yes">
  8671. <attribute name="NAME" x="10.16" y="86.36" size="1.778" layer="95"/>
  8672. <attribute name="VALUE" x="0" y="40.64" size="1.778" layer="96"/>
  8673. </instance>
  8674. <instance part="S1" gate="G$1" x="-78.74" y="55.88" smashed="yes" rot="MR0">
  8675. <attribute name="NAME" x="-78.74" y="57.404" size="1.778" layer="95" font="vector" rot="MR0" align="bottom-center"/>
  8676. </instance>
  8677. <instance part="SG1" gate="G$1" x="53.34" y="2.54" smashed="yes" rot="MR90">
  8678. <attribute name="NAME" x="59.69" y="0" size="1.778" layer="95" rot="MR90"/>
  8679. </instance>
  8680. <instance part="R3" gate="G$1" x="60.96" y="114.3" smashed="yes" rot="R180">
  8681. <attribute name="NAME" x="64.77" y="112.8014" size="1.778" layer="95" rot="R180"/>
  8682. <attribute name="VALUE" x="64.77" y="117.602" size="1.778" layer="96" rot="R180"/>
  8683. </instance>
  8684. <instance part="D1" gate="D$1" x="45.72" y="111.76" smashed="yes" rot="R90">
  8685. <attribute name="NAME" x="43.18" y="106.68" size="1.778" layer="95"/>
  8686. </instance>
  8687. <instance part="GND3" gate="1" x="-104.14" y="35.56" smashed="yes">
  8688. <attribute name="VALUE" x="-106.68" y="33.02" size="1.778" layer="96"/>
  8689. </instance>
  8690. <instance part="GND4" gate="1" x="5.08" y="96.52" smashed="yes">
  8691. <attribute name="VALUE" x="2.54" y="93.98" size="1.778" layer="96"/>
  8692. </instance>
  8693. <instance part="GND5" gate="1" x="-71.12" y="96.52" smashed="yes">
  8694. <attribute name="VALUE" x="-73.66" y="93.98" size="1.778" layer="96"/>
  8695. </instance>
  8696. <instance part="GND6" gate="1" x="50.8" y="-10.16" smashed="yes">
  8697. <attribute name="VALUE" x="48.26" y="-12.7" size="1.778" layer="96"/>
  8698. </instance>
  8699. <instance part="GND7" gate="1" x="40.64" y="96.52" smashed="yes">
  8700. <attribute name="VALUE" x="38.1" y="93.98" size="1.778" layer="96"/>
  8701. </instance>
  8702. <instance part="GND8" gate="1" x="124.46" y="53.34" smashed="yes">
  8703. <attribute name="VALUE" x="121.92" y="50.8" size="1.778" layer="96"/>
  8704. </instance>
  8705. <instance part="GND9" gate="1" x="76.2" y="-10.16" smashed="yes">
  8706. <attribute name="VALUE" x="73.66" y="-12.7" size="1.778" layer="96"/>
  8707. </instance>
  8708. </instances>
  8709. <busses>
  8710. <bus name="I2C:GND,SCL,SDA">
  8711. <segment>
  8712. <wire x1="-38.1" y1="116.84" x2="-38.1" y2="45.72" width="0.762" layer="92"/>
  8713. </segment>
  8714. </bus>
  8715. <bus name="SPI:CLK,CS,DIN,GND">
  8716. <segment>
  8717. <wire x1="58.42" y1="81.28" x2="58.42" y2="33.02" width="0.762" layer="92"/>
  8718. </segment>
  8719. </bus>
  8720. </busses>
  8721. <nets>
  8722. <net name="GND" class="0">
  8723. <segment>
  8724. <pinref part="C1" gate="G$1" pin="1"/>
  8725. <pinref part="D4" gate="D$1" pin="P$1"/>
  8726. <wire x1="-25.4" y1="101.6" x2="-25.4" y2="106.68" width="0.1524" layer="91"/>
  8727. <wire x1="-17.78" y1="101.6" x2="-17.78" y2="107.696" width="0.1524" layer="91"/>
  8728. <pinref part="J5" gate="J$1" pin="3"/>
  8729. <wire x1="-2.54" y1="109.22" x2="5.08" y2="109.22" width="0.1524" layer="91"/>
  8730. <wire x1="5.08" y1="109.22" x2="5.08" y2="101.6" width="0.1524" layer="91"/>
  8731. <pinref part="GND4" gate="1" pin="GND"/>
  8732. <wire x1="5.08" y1="99.06" x2="5.08" y2="101.6" width="0.1524" layer="91"/>
  8733. <label x="-2.54" y="109.22" size="1.778" layer="95"/>
  8734. <wire x1="-25.4" y1="101.6" x2="-17.78" y2="101.6" width="0.1524" layer="91"/>
  8735. <junction x="-17.78" y="101.6"/>
  8736. <wire x1="-17.78" y1="101.6" x2="5.08" y2="101.6" width="0.1524" layer="91"/>
  8737. <junction x="5.08" y="101.6"/>
  8738. </segment>
  8739. <segment>
  8740. <pinref part="SG1" gate="G$1" pin="1"/>
  8741. <pinref part="GND6" gate="1" pin="GND"/>
  8742. <wire x1="50.8" y1="-7.62" x2="50.8" y2="0" width="0.1524" layer="91"/>
  8743. </segment>
  8744. <segment>
  8745. <pinref part="GND5" gate="1" pin="GND"/>
  8746. <pinref part="J7" gate="G$1" pin="1"/>
  8747. <wire x1="-73.66" y1="104.14" x2="-71.12" y2="104.14" width="0.1524" layer="91"/>
  8748. <pinref part="D6" gate="D$1" pin="P$2"/>
  8749. <wire x1="-67.564" y1="104.14" x2="-68.58" y2="104.14" width="0.1524" layer="91"/>
  8750. <wire x1="-68.58" y1="104.14" x2="-71.12" y2="104.14" width="0.1524" layer="91"/>
  8751. <junction x="-71.12" y="104.14"/>
  8752. <wire x1="-71.12" y1="104.14" x2="-71.12" y2="99.06" width="0.1524" layer="91"/>
  8753. <label x="-71.12" y="104.14" size="1.778" layer="95" rot="MR0"/>
  8754. </segment>
  8755. <segment>
  8756. <pinref part="GND3" gate="1" pin="GND"/>
  8757. <pinref part="J3" gate="G$1" pin="2"/>
  8758. <wire x1="-111.76" y1="71.12" x2="-104.14" y2="71.12" width="0.1524" layer="91"/>
  8759. <wire x1="-104.14" y1="71.12" x2="-104.14" y2="38.1" width="0.1524" layer="91"/>
  8760. <label x="-106.68" y="71.12" size="1.778" layer="95" rot="MR0"/>
  8761. </segment>
  8762. <segment>
  8763. <pinref part="GND7" gate="1" pin="GND"/>
  8764. <pinref part="J1" gate="G$1" pin="1"/>
  8765. <wire x1="35.56" y1="111.76" x2="38.1" y2="111.76" width="0.1524" layer="91"/>
  8766. <wire x1="38.1" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
  8767. <pinref part="D1" gate="D$1" pin="P$1"/>
  8768. <wire x1="41.656" y1="111.76" x2="43.18" y2="111.76" width="0.1524" layer="91"/>
  8769. <wire x1="43.18" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
  8770. <junction x="40.64" y="111.76"/>
  8771. <wire x1="40.64" y1="111.76" x2="40.64" y2="99.06" width="0.1524" layer="91"/>
  8772. <label x="35.56" y="111.76" size="1.778" layer="95"/>
  8773. </segment>
  8774. <segment>
  8775. <pinref part="R4" gate="G$1" pin="1"/>
  8776. <pinref part="Q5" gate="G$1" pin="S"/>
  8777. <wire x1="88.9" y1="68.58" x2="91.44" y2="68.58" width="0.1524" layer="91"/>
  8778. <wire x1="91.44" y1="68.58" x2="93.98" y2="68.58" width="0.1524" layer="91"/>
  8779. <junction x="91.44" y="68.58"/>
  8780. <pinref part="GND8" gate="1" pin="GND"/>
  8781. <wire x1="124.46" y1="55.88" x2="124.46" y2="63.5" width="0.1524" layer="91"/>
  8782. <wire x1="124.46" y1="63.5" x2="91.44" y2="63.5" width="0.1524" layer="91"/>
  8783. <wire x1="91.44" y1="63.5" x2="91.44" y2="68.58" width="0.1524" layer="91"/>
  8784. <junction x="124.46" y="63.5"/>
  8785. <pinref part="C2" gate="G$1" pin="2"/>
  8786. <wire x1="124.46" y1="76.2" x2="124.46" y2="63.5" width="0.1524" layer="91"/>
  8787. </segment>
  8788. <segment>
  8789. <wire x1="104.14" y1="7.62" x2="104.14" y2="-5.08" width="0.1524" layer="91"/>
  8790. <pinref part="Q1" gate="G$1" pin="S"/>
  8791. <pinref part="R5" gate="G$1" pin="1"/>
  8792. <wire x1="96.52" y1="-2.54" x2="96.52" y2="-5.08" width="0.1524" layer="91"/>
  8793. <wire x1="96.52" y1="-5.08" x2="104.14" y2="-5.08" width="0.1524" layer="91"/>
  8794. <junction x="104.14" y="-5.08"/>
  8795. <wire x1="104.14" y1="-5.08" x2="104.14" y2="-7.62" width="0.1524" layer="91"/>
  8796. <pinref part="GND1" gate="1" pin="GND"/>
  8797. </segment>
  8798. <segment>
  8799. <pinref part="J7" gate="G$1" pin="5"/>
  8800. <label x="-68.58" y="114.3" size="1.778" layer="95" rot="MR0"/>
  8801. <wire x1="-73.66" y1="114.3" x2="-50.8" y2="114.3" width="0.1524" layer="91"/>
  8802. <wire x1="-50.8" y1="114.3" x2="-50.8" y2="116.84" width="0.1524" layer="91"/>
  8803. <wire x1="-50.8" y1="116.84" x2="-53.34" y2="116.84" width="0.1524" layer="91"/>
  8804. <pinref part="C3" gate="G$1" pin="2"/>
  8805. <junction x="-50.8" y="114.3"/>
  8806. <wire x1="-38.1" y1="111.76" x2="-43.18" y2="114.3" width="0.1524" layer="91"/>
  8807. <wire x1="-50.8" y1="114.3" x2="-43.18" y2="114.3" width="0.1524" layer="91"/>
  8808. <label x="-48.26" y="114.3" size="1.778" layer="95"/>
  8809. </segment>
  8810. <segment>
  8811. <pinref part="S1" gate="G$1" pin="1"/>
  8812. <wire x1="-73.66" y1="55.88" x2="-63.5" y2="55.88" width="0.1524" layer="91"/>
  8813. <pinref part="Q2" gate="G$1" pin="S"/>
  8814. <wire x1="-78.74" y1="66.04" x2="-78.74" y2="68.58" width="0.1524" layer="91"/>
  8815. <pinref part="R1" gate="G$1" pin="1"/>
  8816. <wire x1="-76.2" y1="66.04" x2="-78.74" y2="66.04" width="0.1524" layer="91"/>
  8817. <junction x="-78.74" y="66.04"/>
  8818. <wire x1="-78.74" y1="60.96" x2="-78.74" y2="66.04" width="0.1524" layer="91"/>
  8819. <wire x1="-63.5" y1="60.96" x2="-78.74" y2="60.96" width="0.1524" layer="91"/>
  8820. <wire x1="-63.5" y1="60.96" x2="-63.5" y2="55.88" width="0.1524" layer="91"/>
  8821. <junction x="-63.5" y="55.88"/>
  8822. <pinref part="D8" gate="D$1" pin="P$1"/>
  8823. <wire x1="-58.42" y1="50.8" x2="-67.056" y2="50.8" width="0.1524" layer="91"/>
  8824. <pinref part="D7" gate="D$1" pin="P$2"/>
  8825. <wire x1="-58.42" y1="59.436" x2="-58.42" y2="55.88" width="0.1524" layer="91"/>
  8826. <wire x1="-58.42" y1="55.88" x2="-58.42" y2="50.8" width="0.1524" layer="91"/>
  8827. <wire x1="-58.42" y1="55.88" x2="-63.5" y2="55.88" width="0.1524" layer="91"/>
  8828. <junction x="-58.42" y="55.88"/>
  8829. <wire x1="-58.42" y1="55.88" x2="-53.34" y2="55.88" width="0.1524" layer="91"/>
  8830. <label x="-53.34" y="55.88" size="1.778" layer="95" xref="yes"/>
  8831. </segment>
  8832. <segment>
  8833. <wire x1="-38.1" y1="50.8" x2="-33.02" y2="48.26" width="0.1524" layer="91"/>
  8834. <wire x1="-33.02" y1="48.26" x2="-22.86" y2="48.26" width="0.1524" layer="91"/>
  8835. <label x="-30.48" y="48.26" size="1.778" layer="95"/>
  8836. <wire x1="-5.08" y1="48.26" x2="-17.78" y2="48.26" width="0.1524" layer="91"/>
  8837. <label x="-10.16" y="48.26" size="1.778" layer="95"/>
  8838. <wire x1="-17.78" y1="48.26" x2="-22.86" y2="48.26" width="0.1524" layer="91"/>
  8839. <wire x1="-22.86" y1="48.26" x2="-22.86" y2="38.1" width="0.1524" layer="91"/>
  8840. <pinref part="GND2" gate="1" pin="GND"/>
  8841. <pinref part="U1" gate="G$1" pin="GND"/>
  8842. <junction x="-22.86" y="48.26"/>
  8843. </segment>
  8844. <segment>
  8845. <wire x1="58.42" y1="38.1" x2="63.5" y2="35.56" width="0.1524" layer="91"/>
  8846. <label x="66.04" y="35.56" size="1.778" layer="95"/>
  8847. <pinref part="J4" gate="G$1" pin="2"/>
  8848. <wire x1="63.5" y1="35.56" x2="76.2" y2="35.56" width="0.1524" layer="91"/>
  8849. <label x="104.14" y="35.56" size="1.778" layer="95"/>
  8850. <wire x1="76.2" y1="35.56" x2="109.22" y2="35.56" width="0.1524" layer="91"/>
  8851. <wire x1="76.2" y1="35.56" x2="76.2" y2="-7.62" width="0.1524" layer="91"/>
  8852. <junction x="76.2" y="35.56"/>
  8853. <pinref part="GND9" gate="1" pin="GND"/>
  8854. </segment>
  8855. </net>
  8856. <net name="VIN" class="0">
  8857. <segment>
  8858. <pinref part="Q4" gate="G$1" pin="D"/>
  8859. <wire x1="-101.6" y1="86.36" x2="-101.6" y2="88.9" width="0.1524" layer="91"/>
  8860. <wire x1="-101.6" y1="88.9" x2="-53.34" y2="88.9" width="0.1524" layer="91"/>
  8861. <label x="-96.52" y="86.36" size="1.778" layer="95" rot="MR0"/>
  8862. <label x="-53.34" y="88.9" size="1.778" layer="95" xref="yes"/>
  8863. </segment>
  8864. <segment>
  8865. <pinref part="U1" gate="G$1" pin="VIN"/>
  8866. <wire x1="-5.08" y1="45.72" x2="-7.62" y2="45.72" width="0.1524" layer="91"/>
  8867. <label x="-7.62" y="45.72" size="1.778" layer="95" rot="R180" xref="yes"/>
  8868. </segment>
  8869. </net>
  8870. <net name="DIN" class="0">
  8871. <segment>
  8872. <wire x1="58.42" y1="73.66" x2="53.34" y2="76.2" width="0.1524" layer="91"/>
  8873. <label x="48.26" y="76.2" size="1.778" layer="95"/>
  8874. <label x="25.4" y="76.2" size="1.778" layer="95"/>
  8875. <pinref part="U1" gate="G$1" pin="D10"/>
  8876. <wire x1="25.4" y1="76.2" x2="53.34" y2="76.2" width="0.1524" layer="91"/>
  8877. </segment>
  8878. <segment>
  8879. <wire x1="58.42" y1="40.64" x2="63.5" y2="38.1" width="0.1524" layer="91"/>
  8880. <label x="66.04" y="38.1" size="1.778" layer="95"/>
  8881. <pinref part="J4" gate="G$1" pin="3"/>
  8882. <wire x1="63.5" y1="38.1" x2="109.22" y2="38.1" width="0.1524" layer="91"/>
  8883. <label x="104.14" y="38.1" size="1.778" layer="95"/>
  8884. </segment>
  8885. </net>
  8886. <net name="CS" class="0">
  8887. <segment>
  8888. <wire x1="58.42" y1="76.2" x2="53.34" y2="78.74" width="0.1524" layer="91"/>
  8889. <label x="48.26" y="78.74" size="1.778" layer="95"/>
  8890. <label x="25.4" y="78.74" size="1.778" layer="95"/>
  8891. <pinref part="U1" gate="G$1" pin="D11"/>
  8892. <wire x1="53.34" y1="78.74" x2="25.4" y2="78.74" width="0.1524" layer="91"/>
  8893. </segment>
  8894. <segment>
  8895. <wire x1="58.42" y1="43.18" x2="63.5" y2="40.64" width="0.1524" layer="91"/>
  8896. <label x="66.04" y="40.64" size="1.778" layer="95"/>
  8897. <pinref part="J4" gate="G$1" pin="4"/>
  8898. <wire x1="63.5" y1="40.64" x2="109.22" y2="40.64" width="0.1524" layer="91"/>
  8899. <label x="104.14" y="40.64" size="1.778" layer="95"/>
  8900. </segment>
  8901. </net>
  8902. <net name="CLK" class="0">
  8903. <segment>
  8904. <wire x1="58.42" y1="78.74" x2="53.34" y2="81.28" width="0.1524" layer="91"/>
  8905. <label x="48.26" y="81.28" size="1.778" layer="95"/>
  8906. <label x="25.4" y="81.28" size="1.778" layer="95"/>
  8907. <pinref part="U1" gate="G$1" pin="D12"/>
  8908. <wire x1="25.4" y1="81.28" x2="53.34" y2="81.28" width="0.1524" layer="91"/>
  8909. </segment>
  8910. <segment>
  8911. <wire x1="58.42" y1="45.72" x2="63.5" y2="43.18" width="0.1524" layer="91"/>
  8912. <label x="66.04" y="43.18" size="1.778" layer="95"/>
  8913. <wire x1="63.5" y1="43.18" x2="109.22" y2="43.18" width="0.1524" layer="91"/>
  8914. <pinref part="J4" gate="G$1" pin="5"/>
  8915. <label x="104.14" y="43.18" size="1.778" layer="95"/>
  8916. </segment>
  8917. </net>
  8918. <net name="5V" class="0">
  8919. <segment>
  8920. <pinref part="J6" gate="G$1" pin="1"/>
  8921. <wire x1="109.22" y1="22.86" x2="93.98" y2="22.86" width="0.1524" layer="91"/>
  8922. <label x="93.98" y="22.86" size="1.778" layer="95" rot="R180" xref="yes"/>
  8923. </segment>
  8924. <segment>
  8925. <pinref part="J4" gate="G$1" pin="1"/>
  8926. <wire x1="109.22" y1="33.02" x2="93.98" y2="33.02" width="0.1524" layer="91"/>
  8927. <label x="93.98" y="33.02" size="1.778" layer="95" rot="R180" xref="yes"/>
  8928. </segment>
  8929. <segment>
  8930. <wire x1="-5.08" y1="53.34" x2="-7.62" y2="53.34" width="0.1524" layer="91"/>
  8931. <pinref part="U1" gate="G$1" pin="5V"/>
  8932. <label x="-7.62" y="53.34" size="1.778" layer="95" rot="R180" xref="yes"/>
  8933. </segment>
  8934. <segment>
  8935. <pinref part="J5" gate="J$1" pin="2"/>
  8936. <wire x1="-2.54" y1="111.76" x2="10.16" y2="111.76" width="0.1524" layer="91"/>
  8937. <label x="-2.54" y="111.76" size="1.778" layer="95"/>
  8938. <label x="10.16" y="111.76" size="1.778" layer="95" xref="yes"/>
  8939. </segment>
  8940. <segment>
  8941. <pinref part="J7" gate="G$1" pin="2"/>
  8942. <wire x1="-73.66" y1="106.68" x2="-68.58" y2="106.68" width="0.1524" layer="91"/>
  8943. <label x="-71.12" y="106.68" size="1.778" layer="95" rot="MR0"/>
  8944. <wire x1="-68.58" y1="106.68" x2="-55.88" y2="106.68" width="0.1524" layer="91"/>
  8945. <label x="-53.34" y="106.68" size="1.778" layer="95" xref="yes"/>
  8946. <pinref part="D6" gate="D$1" pin="P$1"/>
  8947. <wire x1="-55.88" y1="106.68" x2="-53.34" y2="106.68" width="0.1524" layer="91"/>
  8948. <wire x1="-55.88" y1="104.14" x2="-59.436" y2="104.14" width="0.1524" layer="91"/>
  8949. <wire x1="-55.88" y1="104.14" x2="-55.88" y2="106.68" width="0.1524" layer="91"/>
  8950. <junction x="-55.88" y="106.68"/>
  8951. </segment>
  8952. </net>
  8953. <net name="THIN" class="0">
  8954. <segment>
  8955. <pinref part="J5" gate="J$1" pin="1"/>
  8956. <label x="-2.54" y="114.3" size="1.778" layer="95"/>
  8957. <pinref part="C1" gate="G$1" pin="2"/>
  8958. <pinref part="D4" gate="D$1" pin="P$2"/>
  8959. <wire x1="-25.4" y1="119.38" x2="-25.4" y2="114.3" width="0.1524" layer="91"/>
  8960. <wire x1="-2.54" y1="114.3" x2="5.08" y2="114.3" width="0.1524" layer="91"/>
  8961. <wire x1="5.08" y1="114.3" x2="5.08" y2="119.38" width="0.1524" layer="91"/>
  8962. <wire x1="-17.78" y1="119.38" x2="-17.78" y2="115.824" width="0.1524" layer="91"/>
  8963. <label x="10.16" y="119.38" size="1.778" layer="95" xref="yes"/>
  8964. <wire x1="-25.4" y1="119.38" x2="-17.78" y2="119.38" width="0.1524" layer="91"/>
  8965. <junction x="-17.78" y="119.38"/>
  8966. <wire x1="-17.78" y1="119.38" x2="5.08" y2="119.38" width="0.1524" layer="91"/>
  8967. <wire x1="5.08" y1="119.38" x2="10.16" y2="119.38" width="0.1524" layer="91"/>
  8968. <junction x="5.08" y="119.38"/>
  8969. </segment>
  8970. <segment>
  8971. <pinref part="U1" gate="G$1" pin="A0"/>
  8972. <wire x1="-7.62" y1="73.66" x2="-5.08" y2="73.66" width="0.1524" layer="91"/>
  8973. <label x="-7.62" y="73.66" size="1.778" layer="95" rot="R180" xref="yes"/>
  8974. </segment>
  8975. </net>
  8976. <net name="SDA" class="0">
  8977. <segment>
  8978. <pinref part="J7" gate="G$1" pin="3"/>
  8979. <label x="-68.58" y="109.22" size="1.778" layer="95" rot="MR0"/>
  8980. <wire x1="-73.66" y1="109.22" x2="-43.18" y2="109.22" width="0.1524" layer="91"/>
  8981. <wire x1="-38.1" y1="106.68" x2="-43.18" y2="109.22" width="0.1524" layer="91"/>
  8982. <label x="-48.26" y="109.22" size="1.778" layer="95"/>
  8983. </segment>
  8984. <segment>
  8985. <pinref part="U1" gate="G$1" pin="A4"/>
  8986. <wire x1="-12.7" y1="63.5" x2="-5.08" y2="63.5" width="0.1524" layer="91"/>
  8987. <label x="-10.16" y="63.5" size="1.778" layer="95"/>
  8988. <wire x1="-38.1" y1="66.04" x2="-33.02" y2="63.5" width="0.1524" layer="91"/>
  8989. <wire x1="-33.02" y1="63.5" x2="-22.86" y2="63.5" width="0.1524" layer="91"/>
  8990. <label x="-30.48" y="63.5" size="1.778" layer="95"/>
  8991. <wire x1="-25.4" y1="63.5" x2="-22.86" y2="63.5" width="0.1524" layer="91"/>
  8992. <wire x1="-25.4" y1="63.5" x2="-12.7" y2="63.5" width="0.1524" layer="91"/>
  8993. </segment>
  8994. </net>
  8995. <net name="SCL" class="0">
  8996. <segment>
  8997. <pinref part="J7" gate="G$1" pin="4"/>
  8998. <wire x1="-73.66" y1="111.76" x2="-43.18" y2="111.76" width="0.1524" layer="91"/>
  8999. <label x="-68.58" y="111.76" size="1.778" layer="95" rot="MR0"/>
  9000. <wire x1="-38.1" y1="109.22" x2="-43.18" y2="111.76" width="0.1524" layer="91"/>
  9001. <label x="-48.26" y="111.76" size="1.778" layer="95"/>
  9002. </segment>
  9003. <segment>
  9004. <wire x1="-38.1" y1="63.5" x2="-33.02" y2="60.96" width="0.1524" layer="91"/>
  9005. <wire x1="-33.02" y1="60.96" x2="-22.86" y2="60.96" width="0.1524" layer="91"/>
  9006. <label x="-30.48" y="60.96" size="1.778" layer="95"/>
  9007. <wire x1="-12.7" y1="60.96" x2="-5.08" y2="60.96" width="0.1524" layer="91"/>
  9008. <label x="-10.16" y="60.96" size="1.778" layer="95"/>
  9009. <pinref part="U1" gate="G$1" pin="A5"/>
  9010. <wire x1="-12.7" y1="60.96" x2="-22.86" y2="60.96" width="0.1524" layer="91"/>
  9011. </segment>
  9012. </net>
  9013. <net name="SP" class="0">
  9014. <segment>
  9015. <wire x1="25.4" y1="58.42" x2="27.94" y2="58.42" width="0.1524" layer="91"/>
  9016. <pinref part="U1" gate="G$1" pin="D3"/>
  9017. <label x="27.94" y="58.42" size="1.778" layer="95" xref="yes"/>
  9018. </segment>
  9019. <segment>
  9020. <pinref part="Q5" gate="G$1" pin="D"/>
  9021. <wire x1="78.74" y1="68.58" x2="76.2" y2="68.58" width="0.1524" layer="91"/>
  9022. <label x="76.2" y="68.58" size="1.778" layer="95" rot="R180" xref="yes"/>
  9023. </segment>
  9024. </net>
  9025. <net name="STCTL" class="0">
  9026. <segment>
  9027. <pinref part="J2" gate="G$1" pin="4"/>
  9028. <label x="86.36" y="83.82" size="1.778" layer="95" rot="R180" xref="yes"/>
  9029. <wire x1="86.36" y1="83.82" x2="109.22" y2="83.82" width="0.1524" layer="91"/>
  9030. </segment>
  9031. <segment>
  9032. <pinref part="J1" gate="G$1" pin="2"/>
  9033. <wire x1="35.56" y1="114.3" x2="53.34" y2="114.3" width="0.1524" layer="91"/>
  9034. <pinref part="R3" gate="G$1" pin="2"/>
  9035. <label x="35.56" y="114.3" size="1.778" layer="95"/>
  9036. <wire x1="53.34" y1="114.3" x2="55.88" y2="114.3" width="0.1524" layer="91"/>
  9037. <pinref part="D1" gate="D$1" pin="P$2"/>
  9038. <wire x1="49.784" y1="111.76" x2="53.34" y2="111.76" width="0.1524" layer="91"/>
  9039. <wire x1="53.34" y1="111.76" x2="53.34" y2="114.3" width="0.1524" layer="91"/>
  9040. <junction x="53.34" y="114.3"/>
  9041. </segment>
  9042. </net>
  9043. <net name="BTN" class="0">
  9044. <segment>
  9045. <pinref part="D3" gate="G$1" pin="A"/>
  9046. <wire x1="-53.34" y1="43.18" x2="-66.04" y2="43.18" width="0.1524" layer="91"/>
  9047. <label x="-53.34" y="43.18" size="1.778" layer="95" xref="yes"/>
  9048. </segment>
  9049. <segment>
  9050. <wire x1="25.4" y1="68.58" x2="38.1" y2="68.58" width="0.1524" layer="91"/>
  9051. <pinref part="U1" gate="G$1" pin="D7"/>
  9052. <label x="38.1" y="68.58" size="1.778" layer="95" xref="yes"/>
  9053. </segment>
  9054. </net>
  9055. <net name="BAT" class="0">
  9056. <segment>
  9057. <wire x1="-5.08" y1="68.58" x2="-7.62" y2="68.58" width="0.1524" layer="91"/>
  9058. <pinref part="U1" gate="G$1" pin="A2"/>
  9059. <label x="-7.62" y="68.58" size="1.778" layer="95" rot="R180" xref="yes"/>
  9060. </segment>
  9061. <segment>
  9062. <pinref part="J2" gate="G$1" pin="2"/>
  9063. <wire x1="109.22" y1="88.9" x2="93.98" y2="88.9" width="0.1524" layer="91"/>
  9064. <pinref part="C2" gate="G$1" pin="1"/>
  9065. <wire x1="93.98" y1="88.9" x2="93.98" y2="99.06" width="0.1524" layer="91"/>
  9066. <wire x1="93.98" y1="99.06" x2="124.46" y2="99.06" width="0.1524" layer="91"/>
  9067. <wire x1="124.46" y1="99.06" x2="124.46" y2="83.82" width="0.1524" layer="91"/>
  9068. <label x="86.36" y="88.9" size="1.778" layer="95" rot="R180" xref="yes"/>
  9069. <wire x1="86.36" y1="88.9" x2="93.98" y2="88.9" width="0.1524" layer="91"/>
  9070. <junction x="93.98" y="88.9"/>
  9071. </segment>
  9072. </net>
  9073. <net name="SPEED" class="0">
  9074. <segment>
  9075. <pinref part="J2" gate="G$1" pin="6"/>
  9076. <pinref part="Q5" gate="G$1" pin="G"/>
  9077. <wire x1="86.36" y1="73.66" x2="86.36" y2="78.74" width="0.1524" layer="91"/>
  9078. <wire x1="104.14" y1="68.58" x2="106.68" y2="68.58" width="0.1524" layer="91"/>
  9079. <pinref part="R4" gate="G$1" pin="2"/>
  9080. <wire x1="86.36" y1="78.74" x2="106.68" y2="78.74" width="0.1524" layer="91"/>
  9081. <wire x1="106.68" y1="78.74" x2="109.22" y2="78.74" width="0.1524" layer="91"/>
  9082. <wire x1="106.68" y1="68.58" x2="106.68" y2="78.74" width="0.1524" layer="91"/>
  9083. <junction x="106.68" y="78.74"/>
  9084. </segment>
  9085. </net>
  9086. <net name="LEDCTL" class="0">
  9087. <segment>
  9088. <wire x1="25.4" y1="73.66" x2="38.1" y2="73.66" width="0.1524" layer="91"/>
  9089. <pinref part="U1" gate="G$1" pin="D9"/>
  9090. <label x="38.1" y="73.66" size="1.778" layer="95" xref="yes"/>
  9091. </segment>
  9092. <segment>
  9093. <pinref part="Q1" gate="G$1" pin="G"/>
  9094. <pinref part="R5" gate="G$1" pin="2"/>
  9095. <wire x1="99.06" y1="10.16" x2="96.52" y2="10.16" width="0.1524" layer="91"/>
  9096. <wire x1="96.52" y1="10.16" x2="93.98" y2="10.16" width="0.1524" layer="91"/>
  9097. <wire x1="96.52" y1="7.62" x2="96.52" y2="10.16" width="0.1524" layer="91"/>
  9098. <junction x="96.52" y="10.16"/>
  9099. <label x="93.98" y="10.16" size="1.778" layer="95" rot="R180" xref="yes"/>
  9100. </segment>
  9101. </net>
  9102. <net name="STLEDCTL" class="0">
  9103. <segment>
  9104. <wire x1="25.4" y1="60.96" x2="38.1" y2="60.96" width="0.1524" layer="91"/>
  9105. <pinref part="U1" gate="G$1" pin="D4"/>
  9106. <label x="38.1" y="60.96" size="1.778" layer="95" xref="yes"/>
  9107. </segment>
  9108. <segment>
  9109. <pinref part="J2" gate="G$1" pin="5"/>
  9110. <wire x1="76.2" y1="81.28" x2="109.22" y2="81.28" width="0.1524" layer="91"/>
  9111. <label x="76.2" y="81.28" size="1.778" layer="95" rot="R180" xref="yes"/>
  9112. </segment>
  9113. </net>
  9114. <net name="N$1" class="0">
  9115. <segment>
  9116. <pinref part="J6" gate="G$1" pin="2"/>
  9117. <wire x1="109.22" y1="20.32" x2="104.14" y2="20.32" width="0.1524" layer="91"/>
  9118. <wire x1="104.14" y1="20.32" x2="104.14" y2="17.78" width="0.1524" layer="91"/>
  9119. <pinref part="Q1" gate="G$1" pin="D"/>
  9120. </segment>
  9121. </net>
  9122. <net name="PWON" class="0">
  9123. <segment>
  9124. <pinref part="Q2" gate="G$1" pin="G"/>
  9125. <pinref part="R1" gate="G$1" pin="2"/>
  9126. <wire x1="-73.66" y1="71.12" x2="-63.5" y2="71.12" width="0.1524" layer="91"/>
  9127. <wire x1="-58.42" y1="67.564" x2="-58.42" y2="71.12" width="0.1524" layer="91"/>
  9128. <wire x1="-58.42" y1="71.12" x2="-53.34" y2="71.12" width="0.1524" layer="91"/>
  9129. <wire x1="-63.5" y1="71.12" x2="-63.5" y2="66.04" width="0.1524" layer="91"/>
  9130. <junction x="-63.5" y="71.12"/>
  9131. <wire x1="-63.5" y1="66.04" x2="-66.04" y2="66.04" width="0.1524" layer="91"/>
  9132. <pinref part="D7" gate="D$1" pin="P$1"/>
  9133. <wire x1="-58.42" y1="71.12" x2="-63.5" y2="71.12" width="0.1524" layer="91"/>
  9134. <junction x="-58.42" y="71.12"/>
  9135. <label x="-53.34" y="71.12" size="1.778" layer="95" xref="yes"/>
  9136. </segment>
  9137. <segment>
  9138. <pinref part="U1" gate="G$1" pin="D8"/>
  9139. <label x="27.94" y="71.12" size="1.778" layer="95" xref="yes"/>
  9140. <wire x1="25.4" y1="71.12" x2="27.94" y2="71.12" width="0.1524" layer="91"/>
  9141. </segment>
  9142. <segment>
  9143. <pinref part="J2" gate="G$1" pin="3"/>
  9144. <label x="76.2" y="86.36" size="1.778" layer="95" rot="R180" xref="yes"/>
  9145. <wire x1="109.22" y1="86.36" x2="76.2" y2="86.36" width="0.1524" layer="91"/>
  9146. </segment>
  9147. </net>
  9148. <net name="12V" class="0">
  9149. <segment>
  9150. <pinref part="R2" gate="G$1" pin="2"/>
  9151. <pinref part="Q4" gate="G$1" pin="S"/>
  9152. <wire x1="-101.6" y1="76.2" x2="-101.6" y2="73.66" width="0.1524" layer="91"/>
  9153. <wire x1="-101.6" y1="73.66" x2="-99.06" y2="73.66" width="0.1524" layer="91"/>
  9154. <pinref part="J3" gate="G$1" pin="1"/>
  9155. <wire x1="-111.76" y1="73.66" x2="-101.6" y2="73.66" width="0.1524" layer="91"/>
  9156. <junction x="-101.6" y="73.66"/>
  9157. <label x="-106.68" y="73.66" size="1.778" layer="95" rot="MR0"/>
  9158. </segment>
  9159. </net>
  9160. <net name="N$2" class="0">
  9161. <segment>
  9162. <pinref part="Q4" gate="G$1" pin="G"/>
  9163. <pinref part="R2" gate="G$1" pin="1"/>
  9164. <pinref part="Q2" gate="G$1" pin="D"/>
  9165. <wire x1="-86.36" y1="78.74" x2="-78.74" y2="78.74" width="0.1524" layer="91"/>
  9166. <junction x="-86.36" y="78.74"/>
  9167. <wire x1="-96.52" y1="78.74" x2="-86.36" y2="78.74" width="0.1524" layer="91"/>
  9168. <pinref part="D2" gate="G$1" pin="A"/>
  9169. <wire x1="-86.36" y1="68.58" x2="-86.36" y2="73.66" width="0.1524" layer="91"/>
  9170. <junction x="-86.36" y="78.74"/>
  9171. <wire x1="-86.36" y1="73.66" x2="-86.36" y2="78.74" width="0.1524" layer="91"/>
  9172. <wire x1="-88.9" y1="73.66" x2="-86.36" y2="73.66" width="0.1524" layer="91"/>
  9173. <junction x="-86.36" y="73.66"/>
  9174. </segment>
  9175. </net>
  9176. <net name="N$5" class="0">
  9177. <segment>
  9178. <pinref part="D3" gate="G$1" pin="C"/>
  9179. <pinref part="D2" gate="G$1" pin="C"/>
  9180. <wire x1="-76.2" y1="43.18" x2="-86.36" y2="43.18" width="0.1524" layer="91"/>
  9181. <wire x1="-86.36" y1="55.88" x2="-86.36" y2="58.42" width="0.1524" layer="91"/>
  9182. <wire x1="-86.36" y1="50.8" x2="-86.36" y2="43.18" width="0.1524" layer="91"/>
  9183. <wire x1="-86.36" y1="50.8" x2="-75.184" y2="50.8" width="0.1524" layer="91"/>
  9184. <junction x="-86.36" y="50.8"/>
  9185. <pinref part="D8" gate="D$1" pin="P$2"/>
  9186. <wire x1="-86.36" y1="55.88" x2="-83.82" y2="55.88" width="0.1524" layer="91"/>
  9187. <wire x1="-86.36" y1="55.88" x2="-86.36" y2="50.8" width="0.1524" layer="91"/>
  9188. <junction x="-86.36" y="55.88"/>
  9189. <pinref part="S1" gate="G$1" pin="2"/>
  9190. </segment>
  9191. </net>
  9192. <net name="THCTL" class="0">
  9193. <segment>
  9194. <pinref part="J7" gate="G$1" pin="6"/>
  9195. <pinref part="C3" gate="G$1" pin="1"/>
  9196. <wire x1="-63.5" y1="119.38" x2="-63.5" y2="116.84" width="0.1524" layer="91"/>
  9197. <wire x1="-63.5" y1="116.84" x2="-73.66" y2="116.84" width="0.1524" layer="91"/>
  9198. <label x="-73.66" y="116.84" size="1.778" layer="95"/>
  9199. <wire x1="-63.5" y1="119.38" x2="-53.34" y2="119.38" width="0.1524" layer="91"/>
  9200. <wire x1="-60.96" y1="116.84" x2="-63.5" y2="116.84" width="0.1524" layer="91"/>
  9201. <junction x="-63.5" y="116.84"/>
  9202. <label x="-53.34" y="119.38" size="1.778" layer="95" xref="yes"/>
  9203. </segment>
  9204. <segment>
  9205. <pinref part="J2" gate="G$1" pin="1"/>
  9206. <wire x1="109.22" y1="91.44" x2="76.2" y2="91.44" width="0.1524" layer="91"/>
  9207. <label x="76.2" y="91.44" size="1.778" layer="95" rot="R180" xref="yes"/>
  9208. </segment>
  9209. </net>
  9210. <net name="SPK" class="0">
  9211. <segment>
  9212. <wire x1="-5.08" y1="58.42" x2="-7.62" y2="58.42" width="0.1524" layer="91"/>
  9213. <pinref part="U1" gate="G$1" pin="A6"/>
  9214. <label x="-7.62" y="58.42" size="1.778" layer="95" rot="R180" xref="yes"/>
  9215. </segment>
  9216. <segment>
  9217. <wire x1="50.8" y1="7.62" x2="50.8" y2="10.16" width="0.1524" layer="91"/>
  9218. <pinref part="SG1" gate="G$1" pin="2"/>
  9219. <wire x1="50.8" y1="10.16" x2="43.18" y2="10.16" width="0.1524" layer="91"/>
  9220. <label x="43.18" y="10.16" size="1.778" layer="95" rot="R180" xref="yes"/>
  9221. </segment>
  9222. </net>
  9223. <net name="ST" class="0">
  9224. <segment>
  9225. <pinref part="U1" gate="G$1" pin="D2"/>
  9226. <wire x1="25.4" y1="55.88" x2="38.1" y2="55.88" width="0.1524" layer="91"/>
  9227. <label x="38.1" y="55.88" size="1.778" layer="95" xref="yes"/>
  9228. </segment>
  9229. <segment>
  9230. <pinref part="R3" gate="G$1" pin="1"/>
  9231. <wire x1="71.12" y1="114.3" x2="66.04" y2="114.3" width="0.1524" layer="91"/>
  9232. <label x="71.12" y="114.3" size="1.778" layer="95" xref="yes"/>
  9233. </segment>
  9234. </net>
  9235. </nets>
  9236. </sheet>
  9237. </sheets>
  9238. </schematic>
  9239. </drawing>
  9240. <compatibility>
  9241. <note version="8.2" severity="warning">
  9242. Since Version 8.2, EAGLE supports online libraries. The ids
  9243. of those online libraries will not be understood (or retained)
  9244. with this version.
  9245. </note>
  9246. <note version="8.3" severity="warning">
  9247. Since Version 8.3, EAGLE supports URNs for individual library
  9248. assets (packages, symbols, and devices). The URNs of those assets
  9249. will not be understood (or retained) with this version.
  9250. </note>
  9251. <note version="8.3" severity="warning">
  9252. Since Version 8.3, EAGLE supports the association of 3D packages
  9253. with devices in libraries, schematics, and board files. Those 3D
  9254. packages will not be understood (or retained) with this version.
  9255. </note>
  9256. <note version="8.4" severity="warning">
  9257. Since Version 8.4, EAGLE supports properties for SPICE simulation.
  9258. Probes in schematics and SPICE mapping objects found in parts and library devices
  9259. will not be understood with this version. Update EAGLE to the latest version
  9260. for full support of SPICE simulation.
  9261. </note>
  9262. </compatibility>
  9263. </eagle>