regulator.s#4 347 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="9.6.2">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  13. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  14. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  15. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  16. <layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/>
  17. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  18. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  19. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  20. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  21. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  22. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  23. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  24. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  25. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  26. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  27. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  28. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  29. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  30. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  31. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  32. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  33. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  34. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  35. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  36. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  37. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  38. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  39. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  40. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  41. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  42. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  43. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  44. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  45. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  46. <layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
  47. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
  50. <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
  51. <layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
  52. <layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
  53. <layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
  54. <layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/>
  56. <layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/>
  57. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  58. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  59. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  60. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  61. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  62. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  63. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  64. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  65. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  66. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  67. <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
  68. <layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
  69. <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
  71. <layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
  72. <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
  76. <layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
  77. <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
  78. <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
  79. <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
  80. <layer number="113" name="IDFDebug" color="4" fill="1" visible="yes" active="yes"/>
  81. <layer number="114" name="Badge_Outline" color="7" fill="1" visible="yes" active="yes"/>
  82. <layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/>
  83. <layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
  84. <layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
  85. <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
  86. <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
  87. <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
  88. <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
  89. <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
  90. <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
  91. <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
  92. <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
  93. <layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
  94. <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
  95. <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
  96. <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
  97. <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
  98. <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
  99. <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
  100. <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
  101. <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
  102. <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
  103. <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
  104. <layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
  105. <layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
  106. <layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
  107. <layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
  108. <layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
  109. <layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
  110. <layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
  111. <layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
  112. <layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
  113. <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
  114. <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
  115. <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
  116. <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
  117. <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
  118. <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
  119. <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
  120. <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
  121. <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
  122. <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
  123. <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
  124. <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
  125. <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
  126. <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
  127. <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
  128. <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
  129. <layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
  130. <layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
  131. <layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
  132. <layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
  133. <layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
  134. <layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
  135. <layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
  136. <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="yes" active="yes"/>
  137. <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="yes" active="yes"/>
  138. <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
  139. <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
  140. <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
  141. <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
  142. <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
  143. <layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
  144. </layers>
  145. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  146. <libraries>
  147. <library name="Capacitor" urn="urn:adsk.eagle:library:16290819">
  148. <description>&lt;B&gt;Capacitors - Fixed, Variable, Trimmers</description>
  149. <packages>
  150. <package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/2" library_version="4">
  151. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  152. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  153. <wire x1="0.55" y1="0.6286" x2="-0.55" y2="0.6286" width="0.127" layer="21"/>
  154. <wire x1="0.55" y1="-0.6286" x2="-0.55" y2="-0.6286" width="0.127" layer="21"/>
  155. <wire x1="0.55" y1="-0.3" x2="-0.55" y2="-0.3" width="0.12" layer="51"/>
  156. <wire x1="-0.55" y1="-0.3" x2="-0.55" y2="0.3" width="0.12" layer="51"/>
  157. <wire x1="-0.55" y1="0.3" x2="0.55" y2="0.3" width="0.12" layer="51"/>
  158. <wire x1="0.55" y1="0.3" x2="0.55" y2="-0.3" width="0.12" layer="51"/>
  159. <smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  160. <smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  161. <text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  162. <text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  163. </package>
  164. <package name="CAPC1110X102" urn="urn:adsk.eagle:footprint:16290845/2" library_version="4">
  165. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  166. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  167. <wire x1="0.66" y1="0.9552" x2="-0.66" y2="0.9552" width="0.127" layer="21"/>
  168. <wire x1="0.66" y1="-0.9552" x2="-0.66" y2="-0.9552" width="0.127" layer="21"/>
  169. <wire x1="0.66" y1="-0.635" x2="-0.66" y2="-0.635" width="0.12" layer="51"/>
  170. <wire x1="-0.66" y1="-0.635" x2="-0.66" y2="0.635" width="0.12" layer="51"/>
  171. <wire x1="-0.66" y1="0.635" x2="0.66" y2="0.635" width="0.12" layer="51"/>
  172. <wire x1="0.66" y1="0.635" x2="0.66" y2="-0.635" width="0.12" layer="51"/>
  173. <smd name="1" x="-0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  174. <smd name="2" x="0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  175. <text x="0" y="1.5902" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  176. <text x="0" y="-1.5902" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  177. </package>
  178. <package name="CAPC1608X85" urn="urn:adsk.eagle:footprint:16290847/2" library_version="4">
  179. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  180. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  181. <wire x1="0.875" y1="0.7991" x2="-0.875" y2="0.7991" width="0.127" layer="21"/>
  182. <wire x1="0.875" y1="-0.7991" x2="-0.875" y2="-0.7991" width="0.127" layer="21"/>
  183. <wire x1="0.875" y1="-0.475" x2="-0.875" y2="-0.475" width="0.12" layer="51"/>
  184. <wire x1="-0.875" y1="-0.475" x2="-0.875" y2="0.475" width="0.12" layer="51"/>
  185. <wire x1="-0.875" y1="0.475" x2="0.875" y2="0.475" width="0.12" layer="51"/>
  186. <wire x1="0.875" y1="0.475" x2="0.875" y2="-0.475" width="0.12" layer="51"/>
  187. <smd name="1" x="-0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  188. <smd name="2" x="0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  189. <text x="0" y="1.4341" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  190. <text x="0" y="-1.4341" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  191. </package>
  192. <package name="CAPC2012X110" urn="urn:adsk.eagle:footprint:16290848/2" library_version="4">
  193. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  194. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  195. <wire x1="1.1" y1="1.0467" x2="-1.1" y2="1.0467" width="0.127" layer="21"/>
  196. <wire x1="1.1" y1="-1.0467" x2="-1.1" y2="-1.0467" width="0.127" layer="21"/>
  197. <wire x1="1.1" y1="-0.725" x2="-1.1" y2="-0.725" width="0.12" layer="51"/>
  198. <wire x1="-1.1" y1="-0.725" x2="-1.1" y2="0.725" width="0.12" layer="51"/>
  199. <wire x1="-1.1" y1="0.725" x2="1.1" y2="0.725" width="0.12" layer="51"/>
  200. <wire x1="1.1" y1="0.725" x2="1.1" y2="-0.725" width="0.12" layer="51"/>
  201. <smd name="1" x="-0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  202. <smd name="2" x="0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  203. <text x="0" y="1.6817" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  204. <text x="0" y="-1.6817" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  205. </package>
  206. <package name="CAPC3216X135" urn="urn:adsk.eagle:footprint:16290836/2" library_version="4">
  207. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  208. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  209. <wire x1="1.7" y1="1.2217" x2="-1.7" y2="1.2217" width="0.127" layer="21"/>
  210. <wire x1="1.7" y1="-1.2217" x2="-1.7" y2="-1.2217" width="0.127" layer="21"/>
  211. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  212. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  213. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  214. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  215. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  216. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  217. <text x="0" y="1.8567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  218. <text x="0" y="-1.8567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  219. </package>
  220. <package name="CAPC3225X135" urn="urn:adsk.eagle:footprint:16290843/2" library_version="4">
  221. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  222. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  223. <wire x1="1.7" y1="1.6717" x2="-1.7" y2="1.6717" width="0.127" layer="21"/>
  224. <wire x1="1.7" y1="-1.6717" x2="-1.7" y2="-1.6717" width="0.12" layer="21"/>
  225. <wire x1="1.7" y1="-1.35" x2="-1.7" y2="-1.35" width="0.12" layer="51"/>
  226. <wire x1="-1.7" y1="-1.35" x2="-1.7" y2="1.35" width="0.12" layer="51"/>
  227. <wire x1="-1.7" y1="1.35" x2="1.7" y2="1.35" width="0.12" layer="51"/>
  228. <wire x1="1.7" y1="1.35" x2="1.7" y2="-1.35" width="0.12" layer="51"/>
  229. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  230. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  231. <text x="0" y="2.3067" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  232. <text x="0" y="-2.3067" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  233. </package>
  234. <package name="CAPC4532X135" urn="urn:adsk.eagle:footprint:16290841/2" library_version="4">
  235. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  236. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  237. <wire x1="2.4" y1="2.0217" x2="-2.4" y2="2.0217" width="0.127" layer="21"/>
  238. <wire x1="2.4" y1="-2.0217" x2="-2.4" y2="-2.0217" width="0.127" layer="21"/>
  239. <wire x1="2.4" y1="-1.7" x2="-2.4" y2="-1.7" width="0.12" layer="51"/>
  240. <wire x1="-2.4" y1="-1.7" x2="-2.4" y2="1.7" width="0.12" layer="51"/>
  241. <wire x1="-2.4" y1="1.7" x2="2.4" y2="1.7" width="0.12" layer="51"/>
  242. <wire x1="2.4" y1="1.7" x2="2.4" y2="-1.7" width="0.12" layer="51"/>
  243. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  244. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  245. <text x="0" y="2.6567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  246. <text x="0" y="-2.6567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  247. </package>
  248. <package name="CAPM3216X180" urn="urn:adsk.eagle:footprint:16290835/2" library_version="4">
  249. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  250. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  251. <wire x1="-1.7" y1="0.9084" x2="1.7" y2="0.9084" width="0.127" layer="21"/>
  252. <wire x1="-1.7" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.127" layer="21"/>
  253. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  254. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  255. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  256. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  257. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  258. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  259. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  260. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  261. </package>
  262. <package name="CAPM3528X210" urn="urn:adsk.eagle:footprint:16290844/2" library_version="4">
  263. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  264. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  265. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.127" layer="21"/>
  266. <wire x1="-1.85" y1="-1.5" x2="1.85" y2="-1.5" width="0.127" layer="21"/>
  267. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  268. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  269. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  270. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  271. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  272. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  273. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  274. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  275. </package>
  276. <package name="CAPM6032X280" urn="urn:adsk.eagle:footprint:16290839/2" library_version="4">
  277. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  278. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  279. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.127" layer="21"/>
  280. <wire x1="-3.15" y1="-1.75" x2="3.15" y2="-1.75" width="0.127" layer="21"/>
  281. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  282. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  283. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  284. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  285. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  286. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  287. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  288. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  289. </package>
  290. <package name="CAPM7343X310" urn="urn:adsk.eagle:footprint:16290840/2" library_version="4">
  291. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  292. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  293. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.127" layer="21"/>
  294. <wire x1="-3.8" y1="-2.3" x2="3.8" y2="-2.3" width="0.127" layer="21"/>
  295. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  296. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  297. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  298. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  299. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  300. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  301. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  302. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  303. </package>
  304. <package name="CAPC4564X110" urn="urn:adsk.eagle:footprint:16290837/2" library_version="4">
  305. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  306. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  307. <wire x1="2.4" y1="3.7179" x2="-2.4" y2="3.7179" width="0.127" layer="21"/>
  308. <wire x1="2.4" y1="-3.7179" x2="-2.4" y2="-3.7179" width="0.127" layer="21"/>
  309. <wire x1="2.4" y1="-3.4" x2="-2.4" y2="-3.4" width="0.12" layer="51"/>
  310. <wire x1="-2.4" y1="-3.4" x2="-2.4" y2="3.4" width="0.12" layer="51"/>
  311. <wire x1="-2.4" y1="3.4" x2="2.4" y2="3.4" width="0.12" layer="51"/>
  312. <wire x1="2.4" y1="3.4" x2="2.4" y2="-3.4" width="0.12" layer="51"/>
  313. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  314. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  315. <text x="0" y="4.3529" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  316. <text x="0" y="-4.3529" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  317. </package>
  318. <package name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:footprint:16290829/2" library_version="4">
  319. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  320. &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>
  321. <circle x="0" y="0" radius="5.25" width="0.127" layer="21"/>
  322. <circle x="0" y="0" radius="5.25" width="0.12" layer="51"/>
  323. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  324. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  325. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  326. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  327. </package>
  328. <package name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:footprint:16290850/2" library_version="4">
  329. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  330. &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>
  331. <circle x="0" y="0" radius="25.79" width="0.127" layer="21"/>
  332. <circle x="0" y="0" radius="25.79" width="0.12" layer="51"/>
  333. <pad name="1" x="-11.305" y="0" drill="2.6" diameter="3.9"/>
  334. <pad name="2" x="11.305" y="0" drill="2.6" diameter="3.9"/>
  335. <text x="0" y="26.425" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  336. <text x="0" y="-26.425" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  337. </package>
  338. <package name="CAPMP3216X180N" urn="urn:adsk.eagle:footprint:16290838/1" library_version="4">
  339. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  340. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  341. <wire x1="1.7" y1="0.9084" x2="-2.5217" y2="0.9084" width="0.12" layer="21"/>
  342. <wire x1="-2.5217" y1="0.9084" x2="-2.5217" y2="-0.9084" width="0.12" layer="21"/>
  343. <wire x1="-2.5217" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.12" layer="21"/>
  344. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  345. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  346. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  347. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  348. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  349. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  350. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  351. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  352. </package>
  353. <package name="CAPMP3528X210N" urn="urn:adsk.eagle:footprint:16290842/1" library_version="4">
  354. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  355. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  356. <wire x1="1.85" y1="1.5" x2="-2.6717" y2="1.5" width="0.12" layer="21"/>
  357. <wire x1="-2.6717" y1="1.5" x2="-2.6717" y2="-1.5" width="0.12" layer="21"/>
  358. <wire x1="-2.6717" y1="-1.5" x2="1.85" y2="-1.5" width="0.12" layer="21"/>
  359. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  360. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  361. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  362. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  363. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  364. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  365. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  366. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  367. </package>
  368. <package name="CAPMP6032X280N" urn="urn:adsk.eagle:footprint:16290825/1" library_version="4">
  369. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  370. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  371. <wire x1="3.15" y1="1.75" x2="-3.9692" y2="1.75" width="0.12" layer="21"/>
  372. <wire x1="-3.9692" y1="1.75" x2="-3.9692" y2="-1.75" width="0.12" layer="21"/>
  373. <wire x1="-3.9692" y1="-1.75" x2="3.15" y2="-1.75" width="0.12" layer="21"/>
  374. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  375. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  376. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  377. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  378. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  379. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  380. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  381. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  382. </package>
  383. <package name="CAPMP7343X310N" urn="urn:adsk.eagle:footprint:16290846/1" library_version="4">
  384. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  385. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  386. <wire x1="3.8" y1="2.3" x2="-4.6192" y2="2.3" width="0.12" layer="21"/>
  387. <wire x1="-4.6192" y1="2.3" x2="-4.6192" y2="-2.3" width="0.12" layer="21"/>
  388. <wire x1="-4.6192" y1="-2.3" x2="3.8" y2="-2.3" width="0.12" layer="21"/>
  389. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  390. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  391. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  392. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  393. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  394. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  395. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  396. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  397. </package>
  398. <package name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:footprint:16290830/1" library_version="4">
  399. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  400. &lt;p&gt;Radial Polarized Capacitor package with 5.08 mm pitch (lead spacing), 0.65 mm lead diameter, 10.00 mm body diameter and 11.00 mm body height&lt;/p&gt;</description>
  401. <circle x="0" y="0" radius="5" width="0.12" layer="21"/>
  402. <circle x="0" y="0" radius="5" width="0.12" layer="51"/>
  403. <wire x1="-4.1325" y1="4.1326" x2="-3.3825" y2="4.1326" width="0.12" layer="21"/>
  404. <wire x1="-3.7575" y1="4.5076" x2="-3.7575" y2="3.7576" width="0.12" layer="21"/>
  405. <pad name="1" x="-2.54" y="0" drill="0.85" diameter="1.45"/>
  406. <pad name="2" x="2.54" y="0" drill="0.85" diameter="1.45"/>
  407. <text x="0" y="5.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  408. <text x="0" y="-5.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  409. </package>
  410. <package name="CAPAE1030X1050N" urn="urn:adsk.eagle:footprint:16290833/1" library_version="4">
  411. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  412. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  413. <wire x1="-5.25" y1="1.3117" x2="-5.25" y2="3.1538" width="0.12" layer="21"/>
  414. <wire x1="-5.25" y1="3.1538" x2="-3.1538" y2="5.25" width="0.12" layer="21"/>
  415. <wire x1="-3.1538" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="21"/>
  416. <wire x1="5.25" y1="5.25" x2="5.25" y2="1.3117" width="0.12" layer="21"/>
  417. <wire x1="-5.25" y1="-1.3117" x2="-5.25" y2="-3.1538" width="0.12" layer="21"/>
  418. <wire x1="-5.25" y1="-3.1538" x2="-3.1538" y2="-5.25" width="0.12" layer="21"/>
  419. <wire x1="-3.1538" y1="-5.25" x2="5.25" y2="-5.25" width="0.12" layer="21"/>
  420. <wire x1="5.25" y1="-5.25" x2="5.25" y2="-1.3117" width="0.12" layer="21"/>
  421. <wire x1="5.25" y1="-5.25" x2="-5.25" y2="-5.25" width="0.12" layer="51"/>
  422. <wire x1="-5.25" y1="-5.25" x2="-5.25" y2="5.25" width="0.12" layer="51"/>
  423. <wire x1="-5.25" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="51"/>
  424. <wire x1="5.25" y1="5.25" x2="5.25" y2="-5.25" width="0.12" layer="51"/>
  425. <smd name="1" x="-4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  426. <smd name="2" x="4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  427. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  428. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  429. </package>
  430. <package name="CAPAE830X1050N" urn="urn:adsk.eagle:footprint:16290826/1" library_version="4">
  431. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  432. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  433. <wire x1="-4.25" y1="1.3117" x2="-4.25" y2="2.6538" width="0.12" layer="21"/>
  434. <wire x1="-4.25" y1="2.6538" x2="-2.6538" y2="4.25" width="0.12" layer="21"/>
  435. <wire x1="-2.6538" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="21"/>
  436. <wire x1="4.25" y1="4.25" x2="4.25" y2="1.3117" width="0.12" layer="21"/>
  437. <wire x1="-4.25" y1="-1.3117" x2="-4.25" y2="-2.6538" width="0.12" layer="21"/>
  438. <wire x1="-4.25" y1="-2.6538" x2="-2.6538" y2="-4.25" width="0.12" layer="21"/>
  439. <wire x1="-2.6538" y1="-4.25" x2="4.25" y2="-4.25" width="0.12" layer="21"/>
  440. <wire x1="4.25" y1="-4.25" x2="4.25" y2="-1.3117" width="0.12" layer="21"/>
  441. <wire x1="4.25" y1="-4.25" x2="-4.25" y2="-4.25" width="0.12" layer="51"/>
  442. <wire x1="-4.25" y1="-4.25" x2="-4.25" y2="4.25" width="0.12" layer="51"/>
  443. <wire x1="-4.25" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="51"/>
  444. <wire x1="4.25" y1="4.25" x2="4.25" y2="-4.25" width="0.12" layer="51"/>
  445. <smd name="1" x="-3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  446. <smd name="2" x="3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  447. <text x="0" y="4.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  448. <text x="0" y="-4.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  449. </package>
  450. <package name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:footprint:16290828/1" library_version="4">
  451. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  452. &lt;p&gt;Radial Polarized Capacitor package with 10.00 mm pitch (lead spacing), 1.00 mm lead diameter, 22.75 mm body diameter and 32.00 mm body height&lt;/p&gt;</description>
  453. <circle x="0" y="0" radius="11.75" width="0.12" layer="21"/>
  454. <circle x="0" y="0" radius="11.75" width="0.12" layer="51"/>
  455. <wire x1="-8.9055" y1="8.9056" x2="-8.1555" y2="8.9056" width="0.12" layer="21"/>
  456. <wire x1="-8.5305" y1="9.2806" x2="-8.5305" y2="8.5306" width="0.12" layer="21"/>
  457. <pad name="1" x="-5" y="0" drill="1.2" diameter="1.8"/>
  458. <pad name="2" x="5" y="0" drill="1.2" diameter="1.8"/>
  459. <text x="0" y="12.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  460. <text x="0" y="-12.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  461. </package>
  462. <package name="CAPAE1905X1660N" urn="urn:adsk.eagle:footprint:16290827/1" library_version="4">
  463. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  464. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  465. <wire x1="-9.6" y1="1.4617" x2="-9.6" y2="5.4038" width="0.12" layer="21"/>
  466. <wire x1="-9.6" y1="5.4038" x2="-5.4038" y2="9.6" width="0.12" layer="21"/>
  467. <wire x1="-5.4038" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="21"/>
  468. <wire x1="9.6" y1="9.6" x2="9.6" y2="1.4617" width="0.12" layer="21"/>
  469. <wire x1="-9.6" y1="-1.4617" x2="-9.6" y2="-5.4038" width="0.12" layer="21"/>
  470. <wire x1="-9.6" y1="-5.4038" x2="-5.4038" y2="-9.6" width="0.12" layer="21"/>
  471. <wire x1="-5.4038" y1="-9.6" x2="9.6" y2="-9.6" width="0.12" layer="21"/>
  472. <wire x1="9.6" y1="-9.6" x2="9.6" y2="-1.4617" width="0.12" layer="21"/>
  473. <wire x1="9.6" y1="-9.6" x2="-9.6" y2="-9.6" width="0.12" layer="51"/>
  474. <wire x1="-9.6" y1="-9.6" x2="-9.6" y2="9.6" width="0.12" layer="51"/>
  475. <wire x1="-9.6" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="51"/>
  476. <wire x1="9.6" y1="9.6" x2="9.6" y2="-9.6" width="0.12" layer="51"/>
  477. <smd name="1" x="-6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  478. <smd name="2" x="6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  479. <text x="0" y="10.235" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  480. <text x="0" y="-10.235" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  481. </package>
  482. <package name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:footprint:16290834/1" library_version="4">
  483. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  484. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 1.10 mm lead diameter, 12.50 mm body diameter and 25.00 mm body height&lt;/p&gt;</description>
  485. <circle x="0" y="0" radius="6.25" width="0.12" layer="21"/>
  486. <circle x="0" y="0" radius="6.25" width="0.12" layer="51"/>
  487. <wire x1="-5.0164" y1="5.0165" x2="-4.2664" y2="5.0165" width="0.12" layer="21"/>
  488. <wire x1="-4.6414" y1="5.3915" x2="-4.6414" y2="4.6415" width="0.12" layer="21"/>
  489. <pad name="1" x="-2.75" y="0" drill="1.3" diameter="1.95"/>
  490. <pad name="2" x="2.75" y="0" drill="1.3" diameter="1.95"/>
  491. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  492. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  493. </package>
  494. <package name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:footprint:16290832/1" library_version="4">
  495. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  496. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 12.00 mm body diameter and 20.00 mm body height&lt;/p&gt;</description>
  497. <circle x="0" y="0" radius="6" width="0.12" layer="21"/>
  498. <circle x="0" y="0" radius="6" width="0.12" layer="51"/>
  499. <wire x1="-4.8397" y1="4.8397" x2="-4.0897" y2="4.8397" width="0.12" layer="21"/>
  500. <wire x1="-4.4647" y1="5.2147" x2="-4.4647" y2="4.4647" width="0.12" layer="21"/>
  501. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  502. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  503. <text x="0" y="6.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  504. <text x="0" y="-6.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  505. </package>
  506. <package name="CAPMP7443X430N" urn="urn:adsk.eagle:footprint:16290831/1" library_version="4">
  507. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  508. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  509. <wire x1="3.825" y1="2.25" x2="-4.6458" y2="2.25" width="0.12" layer="21"/>
  510. <wire x1="-4.6458" y1="2.25" x2="-4.6458" y2="-2.25" width="0.12" layer="21"/>
  511. <wire x1="-4.6458" y1="-2.25" x2="3.825" y2="-2.25" width="0.12" layer="21"/>
  512. <wire x1="3.825" y1="-2.25" x2="-3.825" y2="-2.25" width="0.12" layer="51"/>
  513. <wire x1="-3.825" y1="-2.25" x2="-3.825" y2="2.25" width="0.12" layer="51"/>
  514. <wire x1="-3.825" y1="2.25" x2="3.825" y2="2.25" width="0.12" layer="51"/>
  515. <wire x1="3.825" y1="2.25" x2="3.825" y2="-2.25" width="0.12" layer="51"/>
  516. <smd name="1" x="-3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  517. <smd name="2" x="3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  518. <text x="0" y="2.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  519. <text x="0" y="-2.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  520. </package>
  521. <package name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:footprint:16290824/1" library_version="4">
  522. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  523. &lt;p&gt;Axial Polarized Capacitor package with 34.10 mm pitch (lead spacing), 0.80 mm lead diameter, 30.25 mm body length and 18.25 mm body diameter&lt;/p&gt;</description>
  524. <wire x1="-15.25" y1="9.25" x2="-15.25" y2="-9.25" width="0.12" layer="21"/>
  525. <wire x1="-15.25" y1="-9.25" x2="15.25" y2="-9.25" width="0.12" layer="21"/>
  526. <wire x1="15.25" y1="-9.25" x2="15.25" y2="9.25" width="0.12" layer="21"/>
  527. <wire x1="15.25" y1="9.25" x2="-15.25" y2="9.25" width="0.12" layer="21"/>
  528. <wire x1="-11.4375" y1="9.25" x2="-11.4375" y2="-9.25" width="0.12" layer="21"/>
  529. <wire x1="-15.25" y1="0" x2="-15.996" y2="0" width="0.12" layer="21"/>
  530. <wire x1="15.25" y1="0" x2="15.996" y2="0" width="0.12" layer="21"/>
  531. <wire x1="15.25" y1="-9.25" x2="-15.25" y2="-9.25" width="0.12" layer="51"/>
  532. <wire x1="-15.25" y1="-9.25" x2="-15.25" y2="9.25" width="0.12" layer="51"/>
  533. <wire x1="-15.25" y1="9.25" x2="15.25" y2="9.25" width="0.12" layer="51"/>
  534. <wire x1="15.25" y1="9.25" x2="15.25" y2="-9.25" width="0.12" layer="51"/>
  535. <pad name="1" x="-17.05" y="0" drill="1" diameter="1.6"/>
  536. <pad name="2" x="17.05" y="0" drill="1" diameter="1.6"/>
  537. <text x="0" y="9.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  538. <text x="0" y="-9.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  539. </package>
  540. </packages>
  541. <packages3d>
  542. <package3d name="CAPC1005X60" urn="urn:adsk.eagle:package:16290895/2" type="model" library_version="4">
  543. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  544. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  545. <packageinstances>
  546. <packageinstance name="CAPC1005X60"/>
  547. </packageinstances>
  548. </package3d>
  549. <package3d name="CAPC1110X102" urn="urn:adsk.eagle:package:16290904/2" type="model" library_version="4">
  550. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  551. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  552. <packageinstances>
  553. <packageinstance name="CAPC1110X102"/>
  554. </packageinstances>
  555. </package3d>
  556. <package3d name="CAPC1608X85" urn="urn:adsk.eagle:package:16290898/2" type="model" library_version="4">
  557. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  558. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  559. <packageinstances>
  560. <packageinstance name="CAPC1608X85"/>
  561. </packageinstances>
  562. </package3d>
  563. <package3d name="CAPC2012X110" urn="urn:adsk.eagle:package:16290897/2" type="model" library_version="4">
  564. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  565. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  566. <packageinstances>
  567. <packageinstance name="CAPC2012X110"/>
  568. </packageinstances>
  569. </package3d>
  570. <package3d name="CAPC3216X135" urn="urn:adsk.eagle:package:16290893/2" type="model" library_version="4">
  571. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  572. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  573. <packageinstances>
  574. <packageinstance name="CAPC3216X135"/>
  575. </packageinstances>
  576. </package3d>
  577. <package3d name="CAPC3225X135" urn="urn:adsk.eagle:package:16290903/2" type="model" library_version="4">
  578. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  579. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  580. <packageinstances>
  581. <packageinstance name="CAPC3225X135"/>
  582. </packageinstances>
  583. </package3d>
  584. <package3d name="CAPC4532X135" urn="urn:adsk.eagle:package:16290900/2" type="model" library_version="4">
  585. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  586. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  587. <packageinstances>
  588. <packageinstance name="CAPC4532X135"/>
  589. </packageinstances>
  590. </package3d>
  591. <package3d name="CAPM3216X180" urn="urn:adsk.eagle:package:16290894/2" type="model" library_version="4">
  592. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  593. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  594. <packageinstances>
  595. <packageinstance name="CAPM3216X180"/>
  596. </packageinstances>
  597. </package3d>
  598. <package3d name="CAPM3528X210" urn="urn:adsk.eagle:package:16290902/2" type="model" library_version="4">
  599. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  600. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  601. <packageinstances>
  602. <packageinstance name="CAPM3528X210"/>
  603. </packageinstances>
  604. </package3d>
  605. <package3d name="CAPM6032X280" urn="urn:adsk.eagle:package:16290896/2" type="model" library_version="4">
  606. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  607. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  608. <packageinstances>
  609. <packageinstance name="CAPM6032X280"/>
  610. </packageinstances>
  611. </package3d>
  612. <package3d name="CAPM7343X310" urn="urn:adsk.eagle:package:16290891/2" type="model" library_version="4">
  613. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  614. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  615. <packageinstances>
  616. <packageinstance name="CAPM7343X310"/>
  617. </packageinstances>
  618. </package3d>
  619. <package3d name="CAPC4564X110L" urn="urn:adsk.eagle:package:16290887/3" type="model" library_version="4">
  620. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  621. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  622. <packageinstances>
  623. <packageinstance name="CAPC4564X110"/>
  624. </packageinstances>
  625. </package3d>
  626. <package3d name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:package:16290858/2" type="model" library_version="4">
  627. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  628. &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>
  629. <packageinstances>
  630. <packageinstance name="CAPRD550W60D1025H1250B"/>
  631. </packageinstances>
  632. </package3d>
  633. <package3d name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:package:16290864/2" type="model" library_version="4">
  634. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  635. &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>
  636. <packageinstances>
  637. <packageinstance name="CAPRD2261W240D5080H5555B"/>
  638. </packageinstances>
  639. </package3d>
  640. <package3d name="CAPMP3216X180N" urn="urn:adsk.eagle:package:16290884/1" type="model" library_version="4">
  641. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  642. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  643. <packageinstances>
  644. <packageinstance name="CAPMP3216X180N"/>
  645. </packageinstances>
  646. </package3d>
  647. <package3d name="CAPMP3528X210N" urn="urn:adsk.eagle:package:16290901/1" type="model" library_version="4">
  648. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  649. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  650. <packageinstances>
  651. <packageinstance name="CAPMP3528X210N"/>
  652. </packageinstances>
  653. </package3d>
  654. <package3d name="CAPMP6032X280N" urn="urn:adsk.eagle:package:16290892/1" type="model" library_version="4">
  655. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  656. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  657. <packageinstances>
  658. <packageinstance name="CAPMP6032X280N"/>
  659. </packageinstances>
  660. </package3d>
  661. <package3d name="CAPMP7343X310N" urn="urn:adsk.eagle:package:16290885/1" type="model" library_version="4">
  662. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  663. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  664. <packageinstances>
  665. <packageinstance name="CAPMP7343X310N"/>
  666. </packageinstances>
  667. </package3d>
  668. <package3d name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:package:16290899/1" type="model" library_version="4">
  669. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  670. &lt;p&gt;Radial Polarized Capacitor package with 5.08 mm pitch (lead spacing), 0.65 mm lead diameter, 10.00 mm body diameter and 11.00 mm body height&lt;/p&gt;</description>
  671. <packageinstances>
  672. <packageinstance name="CAPPRD508W65D1000H1100B"/>
  673. </packageinstances>
  674. </package3d>
  675. <package3d name="CAPAE1030X1050N" urn="urn:adsk.eagle:package:16290882/1" type="model" library_version="4">
  676. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  677. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  678. <packageinstances>
  679. <packageinstance name="CAPAE1030X1050N"/>
  680. </packageinstances>
  681. </package3d>
  682. <package3d name="CAPAE830X1050N" urn="urn:adsk.eagle:package:16290889/1" type="model" library_version="4">
  683. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  684. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  685. <packageinstances>
  686. <packageinstance name="CAPAE830X1050N"/>
  687. </packageinstances>
  688. </package3d>
  689. <package3d name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:package:16290888/1" type="model" library_version="4">
  690. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  691. &lt;p&gt;Radial Polarized Capacitor package with 10.00 mm pitch (lead spacing), 1.00 mm lead diameter, 22.75 mm body diameter and 32.00 mm body height&lt;/p&gt;</description>
  692. <packageinstances>
  693. <packageinstance name="CAPPRD1000W100D2275H3200B"/>
  694. </packageinstances>
  695. </package3d>
  696. <package3d name="CAPAE1905X1660N" urn="urn:adsk.eagle:package:16290872/1" type="model" library_version="4">
  697. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  698. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  699. <packageinstances>
  700. <packageinstance name="CAPAE1905X1660N"/>
  701. </packageinstances>
  702. </package3d>
  703. <package3d name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:package:16290890/1" type="model" library_version="4">
  704. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  705. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 1.10 mm lead diameter, 12.50 mm body diameter and 25.00 mm body height&lt;/p&gt;</description>
  706. <packageinstances>
  707. <packageinstance name="CAPPRD550W110D1250H2500B"/>
  708. </packageinstances>
  709. </package3d>
  710. <package3d name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:package:16290874/1" type="model" library_version="4">
  711. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  712. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 12.00 mm body diameter and 20.00 mm body height&lt;/p&gt;</description>
  713. <packageinstances>
  714. <packageinstance name="CAPPRD550W60D1200H2000B"/>
  715. </packageinstances>
  716. </package3d>
  717. <package3d name="CAPMP7443X430N" urn="urn:adsk.eagle:package:16290866/1" type="model" library_version="4">
  718. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  719. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  720. <packageinstances>
  721. <packageinstance name="CAPMP7443X430N"/>
  722. </packageinstances>
  723. </package3d>
  724. <package3d name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:package:16290868/1" type="model" library_version="4">
  725. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  726. &lt;p&gt;Axial Polarized Capacitor package with 34.10 mm pitch (lead spacing), 0.80 mm lead diameter, 30.25 mm body length and 18.25 mm body diameter&lt;/p&gt;</description>
  727. <packageinstances>
  728. <packageinstance name="CAPPAD3410W80L3025D1825B"/>
  729. </packageinstances>
  730. </package3d>
  731. </packages3d>
  732. <symbols>
  733. <symbol name="C" urn="urn:adsk.eagle:symbol:16290820/1" library_version="4">
  734. <description>Capacitor</description>
  735. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  736. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  737. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  738. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  739. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  740. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  741. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  742. <text x="2.54" y="-2.54" size="1.778" layer="97">&gt;SPICEMODEL</text>
  743. <text x="2.54" y="0" size="1.778" layer="96">&gt;VALUE</text>
  744. <text x="2.54" y="-5.08" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  745. </symbol>
  746. <symbol name="CPOL" urn="urn:adsk.eagle:symbol:16290823/1" library_version="4">
  747. <wire x1="-1.524" y1="-0.889" x2="1.524" y2="-0.889" width="0.254" layer="94"/>
  748. <wire x1="1.524" y1="-0.889" x2="1.524" y2="0" width="0.254" layer="94"/>
  749. <wire x1="-1.524" y1="0" x2="-1.524" y2="-0.889" width="0.254" layer="94"/>
  750. <wire x1="-1.524" y1="0" x2="1.524" y2="0" width="0.254" layer="94"/>
  751. <text x="1.143" y="0.4826" size="1.778" layer="95">&gt;NAME</text>
  752. <text x="-0.5842" y="0.4064" size="1.27" layer="94" rot="R90">+</text>
  753. <text x="1.143" y="-4.5974" size="1.778" layer="96">&gt;VALUE</text>
  754. <rectangle x1="-1.651" y1="-2.54" x2="1.651" y2="-1.651" layer="94"/>
  755. <pin name="-" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  756. <pin name="+" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
  757. </symbol>
  758. </symbols>
  759. <devicesets>
  760. <deviceset name="C" urn="urn:adsk.eagle:component:16290909/4" prefix="C" uservalue="yes" library_version="4">
  761. <description>&lt;B&gt;Capacitor - Generic</description>
  762. <gates>
  763. <gate name="G$1" symbol="C" x="0" y="0"/>
  764. </gates>
  765. <devices>
  766. <device name="CHIP-0402(1005-METRIC)" package="CAPC1005X60">
  767. <connects>
  768. <connect gate="G$1" pin="1" pad="1"/>
  769. <connect gate="G$1" pin="2" pad="2"/>
  770. </connects>
  771. <package3dinstances>
  772. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290895/2"/>
  773. </package3dinstances>
  774. <technologies>
  775. <technology name="_">
  776. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  777. <attribute name="MANUFACTURER" value="" constant="no"/>
  778. <attribute name="MPN" value="" constant="no"/>
  779. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  780. <attribute name="PART_STATUS" value="" constant="no"/>
  781. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  782. <attribute name="SERIES" value="" constant="no"/>
  783. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  784. <attribute name="THERMALLOSS" value="" constant="no"/>
  785. <attribute name="TYPE" value="" constant="no"/>
  786. <attribute name="VALUE" value="" constant="no"/>
  787. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  788. </technology>
  789. </technologies>
  790. </device>
  791. <device name="CHIP-0504(1310-METRIC)" package="CAPC1110X102">
  792. <connects>
  793. <connect gate="G$1" pin="1" pad="1"/>
  794. <connect gate="G$1" pin="2" pad="2"/>
  795. </connects>
  796. <package3dinstances>
  797. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290904/2"/>
  798. </package3dinstances>
  799. <technologies>
  800. <technology name="_">
  801. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  802. <attribute name="MANUFACTURER" value="" constant="no"/>
  803. <attribute name="MPN" value="" constant="no"/>
  804. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  805. <attribute name="PART_STATUS" value="" constant="no"/>
  806. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  807. <attribute name="SERIES" value="" constant="no"/>
  808. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  809. <attribute name="THERMALLOSS" value="" constant="no"/>
  810. <attribute name="TYPE" value="" constant="no"/>
  811. <attribute name="VALUE" value="" constant="no"/>
  812. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  813. </technology>
  814. </technologies>
  815. </device>
  816. <device name="CHIP-0603(1608-METRIC)" package="CAPC1608X85">
  817. <connects>
  818. <connect gate="G$1" pin="1" pad="1"/>
  819. <connect gate="G$1" pin="2" pad="2"/>
  820. </connects>
  821. <package3dinstances>
  822. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290898/2"/>
  823. </package3dinstances>
  824. <technologies>
  825. <technology name="_">
  826. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  827. <attribute name="MANUFACTURER" value="" constant="no"/>
  828. <attribute name="MPN" value="" constant="no"/>
  829. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  830. <attribute name="PART_STATUS" value="" constant="no"/>
  831. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  832. <attribute name="SERIES" value="" constant="no"/>
  833. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  834. <attribute name="THERMALLOSS" value="" constant="no"/>
  835. <attribute name="TYPE" value="" constant="no"/>
  836. <attribute name="VALUE" value="" constant="no"/>
  837. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  838. </technology>
  839. </technologies>
  840. </device>
  841. <device name="CHIP-0805(2012-METRIC)" package="CAPC2012X110">
  842. <connects>
  843. <connect gate="G$1" pin="1" pad="1"/>
  844. <connect gate="G$1" pin="2" pad="2"/>
  845. </connects>
  846. <package3dinstances>
  847. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290897/2"/>
  848. </package3dinstances>
  849. <technologies>
  850. <technology name="_">
  851. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  852. <attribute name="MANUFACTURER" value="" constant="no"/>
  853. <attribute name="MPN" value="" constant="no"/>
  854. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  855. <attribute name="PART_STATUS" value="" constant="no"/>
  856. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  857. <attribute name="SERIES" value="" constant="no"/>
  858. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  859. <attribute name="THERMALLOSS" value="" constant="no"/>
  860. <attribute name="TYPE" value="" constant="no"/>
  861. <attribute name="VALUE" value="" constant="no"/>
  862. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  863. </technology>
  864. </technologies>
  865. </device>
  866. <device name="CHIP-1206(3216-METRIC)" package="CAPC3216X135">
  867. <connects>
  868. <connect gate="G$1" pin="1" pad="1"/>
  869. <connect gate="G$1" pin="2" pad="2"/>
  870. </connects>
  871. <package3dinstances>
  872. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290893/2"/>
  873. </package3dinstances>
  874. <technologies>
  875. <technology name="_">
  876. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  877. <attribute name="MANUFACTURER" value="" constant="no"/>
  878. <attribute name="MPN" value="" constant="no"/>
  879. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  880. <attribute name="PART_STATUS" value="" constant="no"/>
  881. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  882. <attribute name="SERIES" value="" constant="no"/>
  883. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  884. <attribute name="THERMALLOSS" value="" constant="no"/>
  885. <attribute name="TYPE" value="" constant="no"/>
  886. <attribute name="VALUE" value="" constant="no"/>
  887. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  888. </technology>
  889. </technologies>
  890. </device>
  891. <device name="CHIP-1210(3225-METRIC)" package="CAPC3225X135">
  892. <connects>
  893. <connect gate="G$1" pin="1" pad="1"/>
  894. <connect gate="G$1" pin="2" pad="2"/>
  895. </connects>
  896. <package3dinstances>
  897. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290903/2"/>
  898. </package3dinstances>
  899. <technologies>
  900. <technology name="_">
  901. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  902. <attribute name="MANUFACTURER" value="" constant="no"/>
  903. <attribute name="MPN" value="" constant="no"/>
  904. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  905. <attribute name="PART_STATUS" value="" constant="no"/>
  906. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  907. <attribute name="SERIES" value="" constant="no"/>
  908. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  909. <attribute name="THERMALLOSS" value="" constant="no"/>
  910. <attribute name="TYPE" value="" constant="no"/>
  911. <attribute name="VALUE" value="" constant="no"/>
  912. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  913. </technology>
  914. </technologies>
  915. </device>
  916. <device name="CHIP-1812(4532-METRIC)" package="CAPC4532X135">
  917. <connects>
  918. <connect gate="G$1" pin="1" pad="1"/>
  919. <connect gate="G$1" pin="2" pad="2"/>
  920. </connects>
  921. <package3dinstances>
  922. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290900/2"/>
  923. </package3dinstances>
  924. <technologies>
  925. <technology name="_">
  926. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  927. <attribute name="MANUFACTURER" value="" constant="no"/>
  928. <attribute name="MPN" value="" constant="no"/>
  929. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  930. <attribute name="PART_STATUS" value="" constant="no"/>
  931. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  932. <attribute name="SERIES" value="" constant="no"/>
  933. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  934. <attribute name="THERMALLOSS" value="" constant="no"/>
  935. <attribute name="TYPE" value="" constant="no"/>
  936. <attribute name="VALUE" value="" constant="no"/>
  937. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  938. </technology>
  939. </technologies>
  940. </device>
  941. <device name="TANTALUM-1206(3216-METRIC)" package="CAPM3216X180">
  942. <connects>
  943. <connect gate="G$1" pin="1" pad="1"/>
  944. <connect gate="G$1" pin="2" pad="2"/>
  945. </connects>
  946. <package3dinstances>
  947. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290894/2"/>
  948. </package3dinstances>
  949. <technologies>
  950. <technology name="_">
  951. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  952. <attribute name="MANUFACTURER" value="" constant="no"/>
  953. <attribute name="MPN" value="" constant="no"/>
  954. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  955. <attribute name="PART_STATUS" value="" constant="no"/>
  956. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  957. <attribute name="SERIES" value="" constant="no"/>
  958. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  959. <attribute name="THERMALLOSS" value="" constant="no"/>
  960. <attribute name="TYPE" value="" constant="no"/>
  961. <attribute name="VALUE" value="" constant="no"/>
  962. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  963. </technology>
  964. </technologies>
  965. </device>
  966. <device name="TANTALUM-1411(3528-METRIC)" package="CAPM3528X210">
  967. <connects>
  968. <connect gate="G$1" pin="1" pad="1"/>
  969. <connect gate="G$1" pin="2" pad="2"/>
  970. </connects>
  971. <package3dinstances>
  972. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290902/2"/>
  973. </package3dinstances>
  974. <technologies>
  975. <technology name="_">
  976. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  977. <attribute name="MANUFACTURER" value="" constant="no"/>
  978. <attribute name="MPN" value="" constant="no"/>
  979. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  980. <attribute name="PART_STATUS" value="" constant="no"/>
  981. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  982. <attribute name="SERIES" value="" constant="no"/>
  983. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  984. <attribute name="THERMALLOSS" value="" constant="no"/>
  985. <attribute name="TYPE" value="" constant="no"/>
  986. <attribute name="VALUE" value="" constant="no"/>
  987. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  988. </technology>
  989. </technologies>
  990. </device>
  991. <device name="TANTALUM-2412(6032-METRIC)" package="CAPM6032X280">
  992. <connects>
  993. <connect gate="G$1" pin="1" pad="1"/>
  994. <connect gate="G$1" pin="2" pad="2"/>
  995. </connects>
  996. <package3dinstances>
  997. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290896/2"/>
  998. </package3dinstances>
  999. <technologies>
  1000. <technology name="_">
  1001. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1002. <attribute name="MANUFACTURER" value="" constant="no"/>
  1003. <attribute name="MPN" value="" constant="no"/>
  1004. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1005. <attribute name="PART_STATUS" value="" constant="no"/>
  1006. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1007. <attribute name="SERIES" value="" constant="no"/>
  1008. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1009. <attribute name="THERMALLOSS" value="" constant="no"/>
  1010. <attribute name="TYPE" value="" constant="no"/>
  1011. <attribute name="VALUE" value="" constant="no"/>
  1012. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1013. </technology>
  1014. </technologies>
  1015. </device>
  1016. <device name="TANTALUM-2917(7343-METRIC)" package="CAPM7343X310">
  1017. <connects>
  1018. <connect gate="G$1" pin="1" pad="1"/>
  1019. <connect gate="G$1" pin="2" pad="2"/>
  1020. </connects>
  1021. <package3dinstances>
  1022. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290891/2"/>
  1023. </package3dinstances>
  1024. <technologies>
  1025. <technology name="_">
  1026. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1027. <attribute name="MANUFACTURER" value="" constant="no"/>
  1028. <attribute name="MPN" value="" constant="no"/>
  1029. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1030. <attribute name="PART_STATUS" value="" constant="no"/>
  1031. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1032. <attribute name="SERIES" value="" constant="no"/>
  1033. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1034. <attribute name="THERMALLOSS" value="" constant="no"/>
  1035. <attribute name="TYPE" value="" constant="no"/>
  1036. <attribute name="VALUE" value="" constant="no"/>
  1037. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1038. </technology>
  1039. </technologies>
  1040. </device>
  1041. <device name="CHIP-1825(4564-METRIC)" package="CAPC4564X110">
  1042. <connects>
  1043. <connect gate="G$1" pin="1" pad="1"/>
  1044. <connect gate="G$1" pin="2" pad="2"/>
  1045. </connects>
  1046. <package3dinstances>
  1047. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290887/3"/>
  1048. </package3dinstances>
  1049. <technologies>
  1050. <technology name="_">
  1051. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1052. <attribute name="MANUFACTURER" value="" constant="no"/>
  1053. <attribute name="MPN" value="" constant="no"/>
  1054. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1055. <attribute name="PART_STATUS" value="" constant="no"/>
  1056. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1057. <attribute name="SERIES" value="" constant="no"/>
  1058. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1059. <attribute name="THERMALLOSS" value="" constant="no"/>
  1060. <attribute name="TYPE" value="" constant="no"/>
  1061. <attribute name="VALUE" value="" constant="no"/>
  1062. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1063. </technology>
  1064. </technologies>
  1065. </device>
  1066. <device name="RADIAL-12.5MM-DIA" package="CAPRD550W60D1025H1250B">
  1067. <connects>
  1068. <connect gate="G$1" pin="1" pad="1"/>
  1069. <connect gate="G$1" pin="2" pad="2"/>
  1070. </connects>
  1071. <package3dinstances>
  1072. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290858/2"/>
  1073. </package3dinstances>
  1074. <technologies>
  1075. <technology name="_">
  1076. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1077. <attribute name="MANUFACTURER" value="" constant="no"/>
  1078. <attribute name="MPN" value="" constant="no"/>
  1079. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1080. <attribute name="PART_STATUS" value="" constant="no"/>
  1081. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1082. <attribute name="SERIES" value="" constant="no"/>
  1083. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1084. <attribute name="THERMALLOSS" value="" constant="no"/>
  1085. <attribute name="TYPE" value="" constant="no"/>
  1086. <attribute name="VALUE" value="" constant="no"/>
  1087. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1088. </technology>
  1089. </technologies>
  1090. </device>
  1091. <device name="RADIAL-55.5MM-DIA" package="CAPRD2261W240D5080H5555B">
  1092. <connects>
  1093. <connect gate="G$1" pin="1" pad="1"/>
  1094. <connect gate="G$1" pin="2" pad="2"/>
  1095. </connects>
  1096. <package3dinstances>
  1097. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290864/2"/>
  1098. </package3dinstances>
  1099. <technologies>
  1100. <technology name="_">
  1101. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1102. <attribute name="MANUFACTURER" value="" constant="no"/>
  1103. <attribute name="MPN" value="" constant="no"/>
  1104. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1105. <attribute name="PART_STATUS" value="" constant="no"/>
  1106. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1107. <attribute name="SERIES" value="" constant="no"/>
  1108. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1109. <attribute name="THERMALLOSS" value="" constant="no"/>
  1110. <attribute name="TYPE" value="" constant="no"/>
  1111. <attribute name="VALUE" value="" constant="no"/>
  1112. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1113. </technology>
  1114. </technologies>
  1115. </device>
  1116. </devices>
  1117. <spice>
  1118. <pinmapping spiceprefix="C">
  1119. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1120. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1121. </pinmapping>
  1122. </spice>
  1123. </deviceset>
  1124. <deviceset name="C-POL" urn="urn:adsk.eagle:component:16290908/4" prefix="C" uservalue="yes" library_version="4">
  1125. <description>&lt;B&gt;Capacitor Polarised - Generic</description>
  1126. <gates>
  1127. <gate name="G$1" symbol="CPOL" x="0" y="0"/>
  1128. </gates>
  1129. <devices>
  1130. <device name="TANTALUM-1206(3216-METRIC)" package="CAPMP3216X180N">
  1131. <connects>
  1132. <connect gate="G$1" pin="+" pad="1"/>
  1133. <connect gate="G$1" pin="-" pad="2"/>
  1134. </connects>
  1135. <package3dinstances>
  1136. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290884/1"/>
  1137. </package3dinstances>
  1138. <technologies>
  1139. <technology name="_">
  1140. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1141. <attribute name="MANUFACTURER" value="" constant="no"/>
  1142. <attribute name="MPN" value="" constant="no"/>
  1143. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1144. <attribute name="PART_STATUS" value="" constant="no"/>
  1145. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1146. <attribute name="SERIES" value="" constant="no"/>
  1147. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1148. <attribute name="THERMALLOSS" value="" constant="no"/>
  1149. <attribute name="TYPE" value="" constant="no"/>
  1150. <attribute name="VALUE" value="" constant="no"/>
  1151. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1152. </technology>
  1153. </technologies>
  1154. </device>
  1155. <device name="TANTALUM-1411(3528-METRIC)" package="CAPMP3528X210N">
  1156. <connects>
  1157. <connect gate="G$1" pin="+" pad="1"/>
  1158. <connect gate="G$1" pin="-" pad="2"/>
  1159. </connects>
  1160. <package3dinstances>
  1161. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290901/1"/>
  1162. </package3dinstances>
  1163. <technologies>
  1164. <technology name="_">
  1165. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1166. <attribute name="MANUFACTURER" value="" constant="no"/>
  1167. <attribute name="MPN" value="" constant="no"/>
  1168. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1169. <attribute name="PART_STATUS" value="" constant="no"/>
  1170. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1171. <attribute name="SERIES" value="" constant="no"/>
  1172. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1173. <attribute name="THERMALLOSS" value="" constant="no"/>
  1174. <attribute name="TYPE" value="" constant="no"/>
  1175. <attribute name="VALUE" value="" constant="no"/>
  1176. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1177. </technology>
  1178. </technologies>
  1179. </device>
  1180. <device name="TANTALUM-2412(6032-METRIC)" package="CAPMP6032X280N">
  1181. <connects>
  1182. <connect gate="G$1" pin="+" pad="1"/>
  1183. <connect gate="G$1" pin="-" pad="2"/>
  1184. </connects>
  1185. <package3dinstances>
  1186. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290892/1"/>
  1187. </package3dinstances>
  1188. <technologies>
  1189. <technology name="_">
  1190. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1191. <attribute name="MANUFACTURER" value="" constant="no"/>
  1192. <attribute name="MPN" value="" constant="no"/>
  1193. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1194. <attribute name="PART_STATUS" value="" constant="no"/>
  1195. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1196. <attribute name="SERIES" value="" constant="no"/>
  1197. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1198. <attribute name="THERMALLOSS" value="" constant="no"/>
  1199. <attribute name="TYPE" value="" constant="no"/>
  1200. <attribute name="VALUE" value="" constant="no"/>
  1201. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1202. </technology>
  1203. </technologies>
  1204. </device>
  1205. <device name="TANTALUM-2917(7343-METRIC)" package="CAPMP7343X310N">
  1206. <connects>
  1207. <connect gate="G$1" pin="+" pad="1"/>
  1208. <connect gate="G$1" pin="-" pad="2"/>
  1209. </connects>
  1210. <package3dinstances>
  1211. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290885/1"/>
  1212. </package3dinstances>
  1213. <technologies>
  1214. <technology name="_">
  1215. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1216. <attribute name="MANUFACTURER" value="" constant="no"/>
  1217. <attribute name="MPN" value="" constant="no"/>
  1218. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1219. <attribute name="PART_STATUS" value="" constant="no"/>
  1220. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1221. <attribute name="SERIES" value="" constant="no"/>
  1222. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1223. <attribute name="THERMALLOSS" value="" constant="no"/>
  1224. <attribute name="TYPE" value="" constant="no"/>
  1225. <attribute name="VALUE" value="" constant="no"/>
  1226. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1227. </technology>
  1228. </technologies>
  1229. </device>
  1230. <device name="RADIAL-11MM-DIA" package="CAPPRD508W65D1000H1100B">
  1231. <connects>
  1232. <connect gate="G$1" pin="+" pad="1"/>
  1233. <connect gate="G$1" pin="-" pad="2"/>
  1234. </connects>
  1235. <package3dinstances>
  1236. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290899/1"/>
  1237. </package3dinstances>
  1238. <technologies>
  1239. <technology name="_">
  1240. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1241. <attribute name="MANUFACTURER" value="" constant="no"/>
  1242. <attribute name="MPN" value="" constant="no"/>
  1243. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1244. <attribute name="PART_STATUS" value="" constant="no"/>
  1245. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1246. <attribute name="SERIES" value="" constant="no"/>
  1247. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1248. <attribute name="THERMALLOSS" value="" constant="no"/>
  1249. <attribute name="TYPE" value="" constant="no"/>
  1250. <attribute name="VALUE" value="" constant="no"/>
  1251. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1252. </technology>
  1253. </technologies>
  1254. </device>
  1255. <device name="ECAP-10.5MM" package="CAPAE1030X1050N">
  1256. <connects>
  1257. <connect gate="G$1" pin="+" pad="1"/>
  1258. <connect gate="G$1" pin="-" pad="2"/>
  1259. </connects>
  1260. <package3dinstances>
  1261. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290882/1"/>
  1262. </package3dinstances>
  1263. <technologies>
  1264. <technology name="_">
  1265. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1266. <attribute name="MANUFACTURER" value="" constant="no"/>
  1267. <attribute name="MPN" value="" constant="no"/>
  1268. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1269. <attribute name="PART_STATUS" value="" constant="no"/>
  1270. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1271. <attribute name="SERIES" value="" constant="no"/>
  1272. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1273. <attribute name="THERMALLOSS" value="" constant="no"/>
  1274. <attribute name="TYPE" value="" constant="no"/>
  1275. <attribute name="VALUE" value="" constant="no"/>
  1276. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1277. </technology>
  1278. </technologies>
  1279. </device>
  1280. <device name="ECAP-8.5MM" package="CAPAE830X1050N">
  1281. <connects>
  1282. <connect gate="G$1" pin="+" pad="1"/>
  1283. <connect gate="G$1" pin="-" pad="2"/>
  1284. </connects>
  1285. <package3dinstances>
  1286. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290889/1"/>
  1287. </package3dinstances>
  1288. <technologies>
  1289. <technology name="_">
  1290. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1291. <attribute name="MANUFACTURER" value="" constant="no"/>
  1292. <attribute name="MPN" value="" constant="no"/>
  1293. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1294. <attribute name="PART_STATUS" value="" constant="no"/>
  1295. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1296. <attribute name="SERIES" value="" constant="no"/>
  1297. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1298. <attribute name="THERMALLOSS" value="" constant="no"/>
  1299. <attribute name="TYPE" value="" constant="no"/>
  1300. <attribute name="VALUE" value="" constant="no"/>
  1301. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1302. </technology>
  1303. </technologies>
  1304. </device>
  1305. <device name="RADIAL-32MM-DIA" package="CAPPRD1000W100D2275H3200B">
  1306. <connects>
  1307. <connect gate="G$1" pin="+" pad="1"/>
  1308. <connect gate="G$1" pin="-" pad="2"/>
  1309. </connects>
  1310. <package3dinstances>
  1311. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290888/1"/>
  1312. </package3dinstances>
  1313. <technologies>
  1314. <technology name="_">
  1315. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1316. <attribute name="MANUFACTURER" value="" constant="no"/>
  1317. <attribute name="MPN" value="" constant="no"/>
  1318. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1319. <attribute name="PART_STATUS" value="" constant="no"/>
  1320. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1321. <attribute name="SERIES" value="" constant="no"/>
  1322. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1323. <attribute name="THERMALLOSS" value="" constant="no"/>
  1324. <attribute name="TYPE" value="" constant="no"/>
  1325. <attribute name="VALUE" value="" constant="no"/>
  1326. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1327. </technology>
  1328. </technologies>
  1329. </device>
  1330. <device name="ECAP-19.2MM" package="CAPAE1905X1660N">
  1331. <connects>
  1332. <connect gate="G$1" pin="+" pad="1"/>
  1333. <connect gate="G$1" pin="-" pad="2"/>
  1334. </connects>
  1335. <package3dinstances>
  1336. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290872/1"/>
  1337. </package3dinstances>
  1338. <technologies>
  1339. <technology name="_">
  1340. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1341. <attribute name="MANUFACTURER" value="" constant="no"/>
  1342. <attribute name="MPN" value="" constant="no"/>
  1343. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1344. <attribute name="PART_STATUS" value="" constant="no"/>
  1345. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1346. <attribute name="SERIES" value="" constant="no"/>
  1347. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1348. <attribute name="THERMALLOSS" value="" constant="no"/>
  1349. <attribute name="TYPE" value="" constant="no"/>
  1350. <attribute name="VALUE" value="" constant="no"/>
  1351. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1352. </technology>
  1353. </technologies>
  1354. </device>
  1355. <device name="RADIAL-25MM-DIA" package="CAPPRD550W110D1250H2500B">
  1356. <connects>
  1357. <connect gate="G$1" pin="+" pad="1"/>
  1358. <connect gate="G$1" pin="-" pad="2"/>
  1359. </connects>
  1360. <package3dinstances>
  1361. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290890/1"/>
  1362. </package3dinstances>
  1363. <technologies>
  1364. <technology name="_">
  1365. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1366. <attribute name="MANUFACTURER" value="" constant="no"/>
  1367. <attribute name="MPN" value="" constant="no"/>
  1368. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1369. <attribute name="PART_STATUS" value="" constant="no"/>
  1370. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1371. <attribute name="SERIES" value="" constant="no"/>
  1372. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1373. <attribute name="THERMALLOSS" value="" constant="no"/>
  1374. <attribute name="TYPE" value="" constant="no"/>
  1375. <attribute name="VALUE" value="" constant="no"/>
  1376. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1377. </technology>
  1378. </technologies>
  1379. </device>
  1380. <device name="RADIAL-20MM-DIA" package="CAPPRD550W60D1200H2000B">
  1381. <connects>
  1382. <connect gate="G$1" pin="+" pad="1"/>
  1383. <connect gate="G$1" pin="-" pad="2"/>
  1384. </connects>
  1385. <package3dinstances>
  1386. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290874/1"/>
  1387. </package3dinstances>
  1388. <technologies>
  1389. <technology name="_">
  1390. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1391. <attribute name="MANUFACTURER" value="" constant="no"/>
  1392. <attribute name="MPN" value="" constant="no"/>
  1393. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1394. <attribute name="PART_STATUS" value="" constant="no"/>
  1395. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1396. <attribute name="SERIES" value="" constant="no"/>
  1397. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1398. <attribute name="THERMALLOSS" value="" constant="no"/>
  1399. <attribute name="TYPE" value="" constant="no"/>
  1400. <attribute name="VALUE" value="" constant="no"/>
  1401. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1402. </technology>
  1403. </technologies>
  1404. </device>
  1405. <device name="TANTALUM-2920(7443-METRIC)" package="CAPMP7443X430N">
  1406. <connects>
  1407. <connect gate="G$1" pin="+" pad="1"/>
  1408. <connect gate="G$1" pin="-" pad="2"/>
  1409. </connects>
  1410. <package3dinstances>
  1411. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290866/1"/>
  1412. </package3dinstances>
  1413. <technologies>
  1414. <technology name="_">
  1415. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1416. <attribute name="MANUFACTURER" value="" constant="no"/>
  1417. <attribute name="MPN" value="" constant="no"/>
  1418. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1419. <attribute name="PART_STATUS" value="" constant="no"/>
  1420. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1421. <attribute name="SERIES" value="" constant="no"/>
  1422. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1423. <attribute name="THERMALLOSS" value="" constant="no"/>
  1424. <attribute name="TYPE" value="" constant="no"/>
  1425. <attribute name="VALUE" value="" constant="no"/>
  1426. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1427. </technology>
  1428. </technologies>
  1429. </device>
  1430. <device name="AXIAL-34.1MM-PITCH" package="CAPPAD3410W80L3025D1825B">
  1431. <connects>
  1432. <connect gate="G$1" pin="+" pad="1"/>
  1433. <connect gate="G$1" pin="-" pad="2"/>
  1434. </connects>
  1435. <package3dinstances>
  1436. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290868/1"/>
  1437. </package3dinstances>
  1438. <technologies>
  1439. <technology name="_">
  1440. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1441. <attribute name="MANUFACTURER" value="" constant="no"/>
  1442. <attribute name="MPN" value="" constant="no"/>
  1443. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1444. <attribute name="PART_STATUS" value="" constant="no"/>
  1445. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1446. <attribute name="SERIES" value="" constant="no"/>
  1447. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1448. <attribute name="THERMALLOSS" value="" constant="no"/>
  1449. <attribute name="TYPE" value="" constant="no"/>
  1450. <attribute name="VALUE" value="" constant="no"/>
  1451. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1452. </technology>
  1453. </technologies>
  1454. </device>
  1455. </devices>
  1456. </deviceset>
  1457. </devicesets>
  1458. </library>
  1459. <library name="Diodes" urn="urn:adsk.eagle:library:11396254">
  1460. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Diodes&lt;/i&gt;&lt;/h3&gt;
  1461. Visit us at &lt;a href="http://www.PCBLayout.com"&gt;PCBLayout.com&lt;/a&gt; for quick and hassle-free PCB Layout/Manufacturing ordering experience.
  1462. &lt;BR&gt;
  1463. &lt;BR&gt;
  1464. This library has been generated by our experienced pcb layout engineers using current IPC and/or industry standards. We &lt;b&gt;believe&lt;/b&gt; the content to be accurate, complete and current. But, this content is provided as a courtesy and &lt;u&gt;user assumes all risk and responsiblity of it's usage&lt;/u&gt;.
  1465. &lt;BR&gt;
  1466. &lt;BR&gt;
  1467. Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@PCBLayout.com&lt;/a&gt; if you have any questions/concerns regarding any of our content or services.</description>
  1468. <packages>
  1469. <package name="DO201AD" urn="urn:adsk.eagle:footprint:10898376/1" library_version="1">
  1470. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1471. <wire x1="-4.2" y1="0" x2="-4.2" y2="-2.525" width="0.127" layer="51"/>
  1472. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="51"/>
  1473. <wire x1="4.2" y1="-2.525" x2="4.2" y2="0" width="0.127" layer="51"/>
  1474. <wire x1="4.2" y1="0" x2="4.2" y2="2.525" width="0.127" layer="51"/>
  1475. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="51"/>
  1476. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="-2.525" width="0.127" layer="21"/>
  1477. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="21"/>
  1478. <wire x1="4.2" y1="-2.525" x2="4.2" y2="2.525" width="0.127" layer="21"/>
  1479. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="21"/>
  1480. <wire x1="-6.2" y1="0" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1481. <wire x1="4.2" y1="0" x2="6.2" y2="0" width="0.127" layer="51"/>
  1482. <wire x1="-5" y1="0" x2="-4.25" y2="0" width="0.127" layer="21"/>
  1483. <wire x1="4.25" y1="0" x2="5" y2="0" width="0.127" layer="21"/>
  1484. <wire x1="-7.45" y1="2.775" x2="-7.45" y2="-2.775" width="0.05" layer="39"/>
  1485. <wire x1="-7.45" y1="-2.775" x2="7.4" y2="-2.775" width="0.05" layer="39"/>
  1486. <wire x1="7.4" y1="-2.775" x2="7.4" y2="2.775" width="0.05" layer="39"/>
  1487. <wire x1="7.4" y1="2.775" x2="-7.45" y2="2.775" width="0.05" layer="39"/>
  1488. <pad name="C" x="-6.2" y="0" drill="1.25" shape="square"/>
  1489. <pad name="A" x="6.2" y="0" drill="1.25"/>
  1490. <rectangle x1="-3.5" y1="-2.525" x2="-2.25" y2="2.525" layer="21"/>
  1491. <text x="-7.75" y="3" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1492. <text x="-7.5" y="-4.25" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1493. </package>
  1494. </packages>
  1495. <packages3d>
  1496. <package3d name="DO201AD" urn="urn:adsk.eagle:package:10898389/2" type="model" library_version="1">
  1497. <packageinstances>
  1498. <packageinstance name="DO201AD"/>
  1499. </packageinstances>
  1500. </package3d>
  1501. </packages3d>
  1502. <symbols>
  1503. <symbol name="SCHOTTKY" urn="urn:adsk.eagle:symbol:10898387/1" library_version="1">
  1504. <wire x1="-1.27" y1="-1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1505. <wire x1="1.27" y1="0" x2="-1.27" y2="1.27" width="0.254" layer="94"/>
  1506. <wire x1="1.905" y1="1.27" x2="1.27" y2="1.27" width="0.254" layer="94"/>
  1507. <wire x1="1.27" y1="1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1508. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.254" layer="94"/>
  1509. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.254" layer="94"/>
  1510. <wire x1="1.27" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94"/>
  1511. <wire x1="1.905" y1="1.27" x2="1.905" y2="1.016" width="0.254" layer="94"/>
  1512. <wire x1="1.27" y1="-1.27" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1513. <wire x1="0.635" y1="-1.016" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1514. <wire x1="-1.27" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  1515. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  1516. <text x="-2.286" y="1.905" size="1.778" layer="95">&gt;NAME</text>
  1517. <text x="-2.286" y="-3.429" size="1.778" layer="96">&gt;VALUE</text>
  1518. <pin name="A" x="-2.54" y="0" visible="off" length="point" direction="pas"/>
  1519. <pin name="C" x="2.54" y="0" visible="off" length="point" direction="pas" rot="R180"/>
  1520. </symbol>
  1521. </symbols>
  1522. <devicesets>
  1523. <deviceset name="MBR360G" urn="urn:adsk.eagle:component:10898397/9" prefix="D" library_version="1">
  1524. <description>&lt;h3&gt; DIODE SCHOTTKY 60V 3A DO201AD&lt;/h3&gt;
  1525. &lt;BR&gt;
  1526. &lt;a href="https://www.onsemi.com/pub/Collateral/MBR350-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  1527. <gates>
  1528. <gate name="G$1" symbol="SCHOTTKY" x="0" y="0"/>
  1529. </gates>
  1530. <devices>
  1531. <device name="" package="DO201AD">
  1532. <connects>
  1533. <connect gate="G$1" pin="A" pad="A"/>
  1534. <connect gate="G$1" pin="C" pad="C"/>
  1535. </connects>
  1536. <package3dinstances>
  1537. <package3dinstance package3d_urn="urn:adsk.eagle:package:10898389/2"/>
  1538. </package3dinstances>
  1539. <technologies>
  1540. <technology name="">
  1541. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  1542. <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" constant="no"/>
  1543. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  1544. <attribute name="MPN" value="MBR360G" constant="no"/>
  1545. <attribute name="PACKAGE" value="DO-201AD" constant="no"/>
  1546. </technology>
  1547. </technologies>
  1548. </device>
  1549. </devices>
  1550. </deviceset>
  1551. </devicesets>
  1552. </library>
  1553. <library name="inductors" urn="urn:adsk.eagle:library:243">
  1554. <description>&lt;b&gt;Inductors and Filters&lt;/b&gt;&lt;p&gt;
  1555. Based on the previous library ind-a.lbr&lt;p&gt;
  1556. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  1557. <packages>
  1558. <package name="DR127" urn="urn:adsk.eagle:footprint:15034/1" library_version="4">
  1559. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1560. Source: coiltronics_dr_series.pdf</description>
  1561. <wire x1="-6.5" y1="6.5" x2="6.525" y2="6.5" width="0.2032" layer="21"/>
  1562. <wire x1="6.525" y1="6.5" x2="6.525" y2="-6.5" width="0.2032" layer="21"/>
  1563. <wire x1="6.525" y1="-6.5" x2="-6.5" y2="-6.5" width="0.2032" layer="21"/>
  1564. <wire x1="-6.5" y1="-6.5" x2="-6.5" y2="6.5" width="0.2032" layer="21"/>
  1565. <wire x1="-4.5254" y1="3.783" x2="-3.8006" y2="4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1566. <wire x1="-3.783" y1="-4.5254" x2="-4.5431" y2="-3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1567. <wire x1="4.5254" y1="-3.783" x2="3.8006" y2="-4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1568. <wire x1="3.783" y1="4.5254" x2="4.5431" y2="3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1569. <wire x1="0" y1="5.9" x2="4.9" y2="3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1570. <wire x1="0" y1="5.9" x2="-4.95" y2="3.225" width="0.2032" layer="21" curve="56.95663"/>
  1571. <wire x1="0" y1="-5.9" x2="-4.9" y2="-3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1572. <wire x1="0" y1="-5.9" x2="4.95" y2="-3.225" width="0.2032" layer="21" curve="56.95663"/>
  1573. <circle x="0" y="0" radius="5.9" width="0.2032" layer="51"/>
  1574. <smd name="1" x="-4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1575. <smd name="2" x="4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1576. <text x="-2.5" y="3" size="1.27" layer="25">&gt;NAME</text>
  1577. <text x="-3" y="-4.5" size="1.27" layer="27">&gt;VALUE</text>
  1578. </package>
  1579. </packages>
  1580. <packages3d>
  1581. <package3d name="DR127" urn="urn:adsk.eagle:package:15117/1" type="box" library_version="4">
  1582. <description>High Power Density, High Efficiency, Shielded Inductors
  1583. Source: coiltronics_dr_series.pdf</description>
  1584. <packageinstances>
  1585. <packageinstance name="DR127"/>
  1586. </packageinstances>
  1587. </package3d>
  1588. </packages3d>
  1589. <symbols>
  1590. <symbol name="DRK" urn="urn:adsk.eagle:symbol:28107/2" library_version="4">
  1591. <wire x1="-3.81" y1="1.651" x2="3.81" y2="1.651" width="0.254" layer="94"/>
  1592. <text x="-3.81" y="2.286" size="1.778" layer="95">&gt;NAME</text>
  1593. <text x="-3.937" y="-3.048" size="1.778" layer="96">&gt;VALUE</text>
  1594. <rectangle x1="-3.81" y1="-0.889" x2="3.81" y2="0.889" layer="94"/>
  1595. <pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  1596. <pin name="1" x="-7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1"/>
  1597. </symbol>
  1598. </symbols>
  1599. <devicesets>
  1600. <deviceset name="DR127" urn="urn:adsk.eagle:component:15196/4" prefix="L" library_version="4">
  1601. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1602. Source: coiltronics_dr_series.pdf</description>
  1603. <gates>
  1604. <gate name="G$1" symbol="DRK" x="0" y="0"/>
  1605. </gates>
  1606. <devices>
  1607. <device name="" package="DR127">
  1608. <connects>
  1609. <connect gate="G$1" pin="1" pad="1"/>
  1610. <connect gate="G$1" pin="2" pad="2"/>
  1611. </connects>
  1612. <package3dinstances>
  1613. <package3dinstance package3d_urn="urn:adsk.eagle:package:15117/1"/>
  1614. </package3dinstances>
  1615. <technologies>
  1616. <technology name="">
  1617. <attribute name="POPULARITY" value="2" constant="no"/>
  1618. <attribute name="SPICEPREFIX" value="L" constant="no"/>
  1619. </technology>
  1620. </technologies>
  1621. </device>
  1622. </devices>
  1623. <spice>
  1624. <pinmapping spiceprefix="L">
  1625. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1626. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1627. </pinmapping>
  1628. </spice>
  1629. </deviceset>
  1630. </devicesets>
  1631. </library>
  1632. <library name="eagle-ltspice" urn="urn:adsk.eagle:library:217">
  1633. <description>Default symbols for import LTspice schematics&lt;p&gt;
  1634. 2012-10-29 alf@cadsoft.de&lt;br&gt;</description>
  1635. <packages>
  1636. <package name="0204/7" urn="urn:adsk.eagle:footprint:13215/1" library_version="1">
  1637. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1638. type 0204, grid 7.5 mm</description>
  1639. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  1640. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  1641. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  1642. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  1643. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  1644. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  1645. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  1646. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1647. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1648. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1649. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1650. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1651. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  1652. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1653. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  1654. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1655. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1656. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  1657. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  1658. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  1659. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  1660. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  1661. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  1662. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  1663. </package>
  1664. <package name="0207/10" urn="urn:adsk.eagle:footprint:13216/1" library_version="1">
  1665. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1666. type 0207, grid 10 mm</description>
  1667. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  1668. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  1669. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  1670. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  1671. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  1672. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  1673. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  1674. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1675. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1676. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1677. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1678. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1679. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  1680. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1681. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  1682. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1683. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1684. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  1685. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  1686. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  1687. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  1688. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  1689. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1690. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1691. </package>
  1692. <package name="R0201" urn="urn:adsk.eagle:footprint:13233/1" library_version="1">
  1693. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  1694. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1695. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  1696. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  1697. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  1698. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1699. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1700. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1701. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1702. </package>
  1703. <package name="R0402" urn="urn:adsk.eagle:footprint:13234/1" library_version="1">
  1704. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1705. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1706. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1707. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1708. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1709. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1710. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1711. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1712. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1713. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1714. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1715. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1716. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1717. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1718. </package>
  1719. <package name="R0603" urn="urn:adsk.eagle:footprint:13235/1" library_version="1">
  1720. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1721. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1722. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1723. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1724. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1725. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1726. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1727. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1728. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1729. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1730. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1731. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1732. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1733. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1734. </package>
  1735. <package name="R0805" urn="urn:adsk.eagle:footprint:13236/1" library_version="1">
  1736. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1737. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1738. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1739. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1740. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1741. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1742. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1743. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1744. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1745. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1746. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1747. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1748. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1749. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1750. </package>
  1751. <package name="R1005" urn="urn:adsk.eagle:footprint:13237/1" library_version="1">
  1752. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1753. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1754. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1755. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1756. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1757. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1758. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1759. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1760. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1761. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  1762. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1763. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1764. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1765. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1766. </package>
  1767. <package name="R1206" urn="urn:adsk.eagle:footprint:13238/1" library_version="1">
  1768. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1769. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1770. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1771. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1772. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1773. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1774. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1775. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1776. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1777. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1778. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1779. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1780. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1781. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1782. </package>
  1783. <package name="R1210" urn="urn:adsk.eagle:footprint:13239/1" library_version="1">
  1784. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1785. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1786. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1787. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1788. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1789. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1790. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1791. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1792. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1793. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1794. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1795. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1796. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1797. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1798. </package>
  1799. <package name="R1218" urn="urn:adsk.eagle:footprint:13240/1" library_version="1">
  1800. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  1801. Source: http://www.vishay.com .. dcrcw.pdf</description>
  1802. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  1803. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  1804. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  1805. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  1806. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1807. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1808. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  1809. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  1810. </package>
  1811. <package name="R2010" urn="urn:adsk.eagle:footprint:13241/1" library_version="1">
  1812. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1813. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1814. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1815. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1816. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1817. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1818. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1819. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1820. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1821. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1822. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1823. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1824. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1825. </package>
  1826. <package name="R2012" urn="urn:adsk.eagle:footprint:13242/1" library_version="1">
  1827. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1828. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1829. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1830. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1831. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1832. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1833. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1834. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1835. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1836. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1837. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1838. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1839. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1840. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1841. </package>
  1842. <package name="R2512" urn="urn:adsk.eagle:footprint:13243/1" library_version="1">
  1843. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1844. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1845. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1846. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1847. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1848. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1849. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1850. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1851. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1852. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1853. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1854. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1855. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1856. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1857. </package>
  1858. <package name="R3216" urn="urn:adsk.eagle:footprint:13244/1" library_version="1">
  1859. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1860. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1861. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1862. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1863. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1864. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1865. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1866. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1867. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1868. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1869. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1870. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1871. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1872. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1873. </package>
  1874. <package name="R3225" urn="urn:adsk.eagle:footprint:13245/1" library_version="1">
  1875. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1876. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1877. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1878. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1879. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1880. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1881. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1882. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1883. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1884. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1885. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1886. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1887. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1888. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1889. </package>
  1890. <package name="R4527" urn="urn:adsk.eagle:footprint:13246/1" library_version="1">
  1891. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  1892. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  1893. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  1894. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  1895. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  1896. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  1897. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  1898. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  1899. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  1900. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  1901. </package>
  1902. <package name="R5025" urn="urn:adsk.eagle:footprint:13247/1" library_version="1">
  1903. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1904. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1905. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1906. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1907. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1908. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1909. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1910. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1911. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1912. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1913. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1914. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1915. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1916. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1917. </package>
  1918. <package name="R6332" urn="urn:adsk.eagle:footprint:13248/1" library_version="1">
  1919. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1920. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1921. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1922. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1923. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1924. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1925. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1926. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1927. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1928. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1929. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1930. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1931. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1932. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1933. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1934. </package>
  1935. </packages>
  1936. <packages3d>
  1937. <package3d name="0204/7" urn="urn:adsk.eagle:package:13274/1" type="box" library_version="1">
  1938. <description>RESISTOR
  1939. type 0204, grid 7.5 mm</description>
  1940. <packageinstances>
  1941. <packageinstance name="0204/7"/>
  1942. </packageinstances>
  1943. </package3d>
  1944. <package3d name="0207/10" urn="urn:adsk.eagle:package:13275/1" type="box" library_version="1">
  1945. <description>RESISTOR
  1946. type 0207, grid 10 mm</description>
  1947. <packageinstances>
  1948. <packageinstance name="0207/10"/>
  1949. </packageinstances>
  1950. </package3d>
  1951. <package3d name="R0201" urn="urn:adsk.eagle:package:13294/1" type="box" library_version="1">
  1952. <description>RESISTOR chip
  1953. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1954. <packageinstances>
  1955. <packageinstance name="R0201"/>
  1956. </packageinstances>
  1957. </package3d>
  1958. <package3d name="R0402" urn="urn:adsk.eagle:package:13296/1" type="box" library_version="1">
  1959. <description>RESISTOR</description>
  1960. <packageinstances>
  1961. <packageinstance name="R0402"/>
  1962. </packageinstances>
  1963. </package3d>
  1964. <package3d name="R0603" urn="urn:adsk.eagle:package:13302/1" type="box" library_version="1">
  1965. <description>RESISTOR</description>
  1966. <packageinstances>
  1967. <packageinstance name="R0603"/>
  1968. </packageinstances>
  1969. </package3d>
  1970. <package3d name="R0805" urn="urn:adsk.eagle:package:13300/1" type="box" library_version="1">
  1971. <description>RESISTOR</description>
  1972. <packageinstances>
  1973. <packageinstance name="R0805"/>
  1974. </packageinstances>
  1975. </package3d>
  1976. <package3d name="R1005" urn="urn:adsk.eagle:package:13297/1" type="box" library_version="1">
  1977. <description>RESISTOR</description>
  1978. <packageinstances>
  1979. <packageinstance name="R1005"/>
  1980. </packageinstances>
  1981. </package3d>
  1982. <package3d name="R1206" urn="urn:adsk.eagle:package:13301/1" type="box" library_version="1">
  1983. <description>RESISTOR</description>
  1984. <packageinstances>
  1985. <packageinstance name="R1206"/>
  1986. </packageinstances>
  1987. </package3d>
  1988. <package3d name="R1210" urn="urn:adsk.eagle:package:13299/1" type="box" library_version="1">
  1989. <description>RESISTOR</description>
  1990. <packageinstances>
  1991. <packageinstance name="R1210"/>
  1992. </packageinstances>
  1993. </package3d>
  1994. <package3d name="R1218" urn="urn:adsk.eagle:package:13303/1" type="box" library_version="1">
  1995. <description>CRCW1218 Thick Film, Rectangular Chip Resistors
  1996. Source: http://www.vishay.com .. dcrcw.pdf</description>
  1997. <packageinstances>
  1998. <packageinstance name="R1218"/>
  1999. </packageinstances>
  2000. </package3d>
  2001. <package3d name="R2010" urn="urn:adsk.eagle:package:13309/1" type="box" library_version="1">
  2002. <description>RESISTOR</description>
  2003. <packageinstances>
  2004. <packageinstance name="R2010"/>
  2005. </packageinstances>
  2006. </package3d>
  2007. <package3d name="R2012" urn="urn:adsk.eagle:package:13306/1" type="box" library_version="1">
  2008. <description>RESISTOR</description>
  2009. <packageinstances>
  2010. <packageinstance name="R2012"/>
  2011. </packageinstances>
  2012. </package3d>
  2013. <package3d name="R2512" urn="urn:adsk.eagle:package:13304/1" type="box" library_version="1">
  2014. <description>RESISTOR</description>
  2015. <packageinstances>
  2016. <packageinstance name="R2512"/>
  2017. </packageinstances>
  2018. </package3d>
  2019. <package3d name="R3216" urn="urn:adsk.eagle:package:13305/1" type="box" library_version="1">
  2020. <description>RESISTOR</description>
  2021. <packageinstances>
  2022. <packageinstance name="R3216"/>
  2023. </packageinstances>
  2024. </package3d>
  2025. <package3d name="R3225" urn="urn:adsk.eagle:package:13311/1" type="box" library_version="1">
  2026. <description>RESISTOR</description>
  2027. <packageinstances>
  2028. <packageinstance name="R3225"/>
  2029. </packageinstances>
  2030. </package3d>
  2031. <package3d name="R4527" urn="urn:adsk.eagle:package:13310/1" type="box" library_version="1">
  2032. <description>Package 4527
  2033. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2034. <packageinstances>
  2035. <packageinstance name="R4527"/>
  2036. </packageinstances>
  2037. </package3d>
  2038. <package3d name="R5025" urn="urn:adsk.eagle:package:13308/1" type="box" library_version="1">
  2039. <description>RESISTOR</description>
  2040. <packageinstances>
  2041. <packageinstance name="R5025"/>
  2042. </packageinstances>
  2043. </package3d>
  2044. <package3d name="R6332" urn="urn:adsk.eagle:package:13307/1" type="box" library_version="1">
  2045. <description>RESISTOR
  2046. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2047. <packageinstances>
  2048. <packageinstance name="R6332"/>
  2049. </packageinstances>
  2050. </package3d>
  2051. </packages3d>
  2052. <symbols>
  2053. <symbol name="R" urn="urn:adsk.eagle:symbol:13232/1" library_version="1">
  2054. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  2055. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2056. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  2057. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2058. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  2059. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  2060. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  2061. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  2062. <text x="-5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 1</text>
  2063. <text x="5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 2</text>
  2064. </symbol>
  2065. </symbols>
  2066. <devicesets>
  2067. <deviceset name="R" urn="urn:adsk.eagle:component:13322/1" prefix="R" uservalue="yes" library_version="1">
  2068. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  2069. <gates>
  2070. <gate name="G$1" symbol="R" x="0" y="0"/>
  2071. </gates>
  2072. <devices>
  2073. <device name="0204/7" package="0204/7">
  2074. <connects>
  2075. <connect gate="G$1" pin="1" pad="1"/>
  2076. <connect gate="G$1" pin="2" pad="2"/>
  2077. </connects>
  2078. <package3dinstances>
  2079. <package3dinstance package3d_urn="urn:adsk.eagle:package:13274/1"/>
  2080. </package3dinstances>
  2081. <technologies>
  2082. <technology name="">
  2083. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2084. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2085. </technology>
  2086. </technologies>
  2087. </device>
  2088. <device name="0207/10" package="0207/10">
  2089. <connects>
  2090. <connect gate="G$1" pin="1" pad="1"/>
  2091. <connect gate="G$1" pin="2" pad="2"/>
  2092. </connects>
  2093. <package3dinstances>
  2094. <package3dinstance package3d_urn="urn:adsk.eagle:package:13275/1"/>
  2095. </package3dinstances>
  2096. <technologies>
  2097. <technology name="">
  2098. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2099. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2100. </technology>
  2101. </technologies>
  2102. </device>
  2103. <device name="R0201" package="R0201">
  2104. <connects>
  2105. <connect gate="G$1" pin="1" pad="1"/>
  2106. <connect gate="G$1" pin="2" pad="2"/>
  2107. </connects>
  2108. <package3dinstances>
  2109. <package3dinstance package3d_urn="urn:adsk.eagle:package:13294/1"/>
  2110. </package3dinstances>
  2111. <technologies>
  2112. <technology name="">
  2113. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2114. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2115. </technology>
  2116. </technologies>
  2117. </device>
  2118. <device name="R0402" package="R0402">
  2119. <connects>
  2120. <connect gate="G$1" pin="1" pad="1"/>
  2121. <connect gate="G$1" pin="2" pad="2"/>
  2122. </connects>
  2123. <package3dinstances>
  2124. <package3dinstance package3d_urn="urn:adsk.eagle:package:13296/1"/>
  2125. </package3dinstances>
  2126. <technologies>
  2127. <technology name="">
  2128. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2129. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2130. </technology>
  2131. </technologies>
  2132. </device>
  2133. <device name="R0603" package="R0603">
  2134. <connects>
  2135. <connect gate="G$1" pin="1" pad="1"/>
  2136. <connect gate="G$1" pin="2" pad="2"/>
  2137. </connects>
  2138. <package3dinstances>
  2139. <package3dinstance package3d_urn="urn:adsk.eagle:package:13302/1"/>
  2140. </package3dinstances>
  2141. <technologies>
  2142. <technology name="">
  2143. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2144. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2145. </technology>
  2146. </technologies>
  2147. </device>
  2148. <device name="" package="R0805">
  2149. <connects>
  2150. <connect gate="G$1" pin="1" pad="1"/>
  2151. <connect gate="G$1" pin="2" pad="2"/>
  2152. </connects>
  2153. <package3dinstances>
  2154. <package3dinstance package3d_urn="urn:adsk.eagle:package:13300/1"/>
  2155. </package3dinstances>
  2156. <technologies>
  2157. <technology name="">
  2158. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2159. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2160. </technology>
  2161. </technologies>
  2162. </device>
  2163. <device name="R1005" package="R1005">
  2164. <connects>
  2165. <connect gate="G$1" pin="1" pad="1"/>
  2166. <connect gate="G$1" pin="2" pad="2"/>
  2167. </connects>
  2168. <package3dinstances>
  2169. <package3dinstance package3d_urn="urn:adsk.eagle:package:13297/1"/>
  2170. </package3dinstances>
  2171. <technologies>
  2172. <technology name="">
  2173. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2174. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2175. </technology>
  2176. </technologies>
  2177. </device>
  2178. <device name="R1206" package="R1206">
  2179. <connects>
  2180. <connect gate="G$1" pin="1" pad="1"/>
  2181. <connect gate="G$1" pin="2" pad="2"/>
  2182. </connects>
  2183. <package3dinstances>
  2184. <package3dinstance package3d_urn="urn:adsk.eagle:package:13301/1"/>
  2185. </package3dinstances>
  2186. <technologies>
  2187. <technology name="">
  2188. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2189. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2190. </technology>
  2191. </technologies>
  2192. </device>
  2193. <device name="R1210" package="R1210">
  2194. <connects>
  2195. <connect gate="G$1" pin="1" pad="1"/>
  2196. <connect gate="G$1" pin="2" pad="2"/>
  2197. </connects>
  2198. <package3dinstances>
  2199. <package3dinstance package3d_urn="urn:adsk.eagle:package:13299/1"/>
  2200. </package3dinstances>
  2201. <technologies>
  2202. <technology name="">
  2203. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2204. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2205. </technology>
  2206. </technologies>
  2207. </device>
  2208. <device name="R1218" package="R1218">
  2209. <connects>
  2210. <connect gate="G$1" pin="1" pad="1"/>
  2211. <connect gate="G$1" pin="2" pad="2"/>
  2212. </connects>
  2213. <package3dinstances>
  2214. <package3dinstance package3d_urn="urn:adsk.eagle:package:13303/1"/>
  2215. </package3dinstances>
  2216. <technologies>
  2217. <technology name="">
  2218. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2219. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2220. </technology>
  2221. </technologies>
  2222. </device>
  2223. <device name="R2010" package="R2010">
  2224. <connects>
  2225. <connect gate="G$1" pin="1" pad="1"/>
  2226. <connect gate="G$1" pin="2" pad="2"/>
  2227. </connects>
  2228. <package3dinstances>
  2229. <package3dinstance package3d_urn="urn:adsk.eagle:package:13309/1"/>
  2230. </package3dinstances>
  2231. <technologies>
  2232. <technology name="">
  2233. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2234. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2235. </technology>
  2236. </technologies>
  2237. </device>
  2238. <device name="R2012" package="R2012">
  2239. <connects>
  2240. <connect gate="G$1" pin="1" pad="1"/>
  2241. <connect gate="G$1" pin="2" pad="2"/>
  2242. </connects>
  2243. <package3dinstances>
  2244. <package3dinstance package3d_urn="urn:adsk.eagle:package:13306/1"/>
  2245. </package3dinstances>
  2246. <technologies>
  2247. <technology name="">
  2248. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2249. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2250. </technology>
  2251. </technologies>
  2252. </device>
  2253. <device name="R2512" package="R2512">
  2254. <connects>
  2255. <connect gate="G$1" pin="1" pad="1"/>
  2256. <connect gate="G$1" pin="2" pad="2"/>
  2257. </connects>
  2258. <package3dinstances>
  2259. <package3dinstance package3d_urn="urn:adsk.eagle:package:13304/1"/>
  2260. </package3dinstances>
  2261. <technologies>
  2262. <technology name="">
  2263. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2264. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2265. </technology>
  2266. </technologies>
  2267. </device>
  2268. <device name="R3216" package="R3216">
  2269. <connects>
  2270. <connect gate="G$1" pin="1" pad="1"/>
  2271. <connect gate="G$1" pin="2" pad="2"/>
  2272. </connects>
  2273. <package3dinstances>
  2274. <package3dinstance package3d_urn="urn:adsk.eagle:package:13305/1"/>
  2275. </package3dinstances>
  2276. <technologies>
  2277. <technology name="">
  2278. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2279. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2280. </technology>
  2281. </technologies>
  2282. </device>
  2283. <device name="R3225" package="R3225">
  2284. <connects>
  2285. <connect gate="G$1" pin="1" pad="1"/>
  2286. <connect gate="G$1" pin="2" pad="2"/>
  2287. </connects>
  2288. <package3dinstances>
  2289. <package3dinstance package3d_urn="urn:adsk.eagle:package:13311/1"/>
  2290. </package3dinstances>
  2291. <technologies>
  2292. <technology name="">
  2293. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2294. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2295. </technology>
  2296. </technologies>
  2297. </device>
  2298. <device name="R4527" package="R4527">
  2299. <connects>
  2300. <connect gate="G$1" pin="1" pad="1"/>
  2301. <connect gate="G$1" pin="2" pad="2"/>
  2302. </connects>
  2303. <package3dinstances>
  2304. <package3dinstance package3d_urn="urn:adsk.eagle:package:13310/1"/>
  2305. </package3dinstances>
  2306. <technologies>
  2307. <technology name="">
  2308. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2309. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2310. </technology>
  2311. </technologies>
  2312. </device>
  2313. <device name="R5025" package="R5025">
  2314. <connects>
  2315. <connect gate="G$1" pin="1" pad="1"/>
  2316. <connect gate="G$1" pin="2" pad="2"/>
  2317. </connects>
  2318. <package3dinstances>
  2319. <package3dinstance package3d_urn="urn:adsk.eagle:package:13308/1"/>
  2320. </package3dinstances>
  2321. <technologies>
  2322. <technology name="">
  2323. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2324. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2325. </technology>
  2326. </technologies>
  2327. </device>
  2328. <device name="R6332" package="R6332">
  2329. <connects>
  2330. <connect gate="G$1" pin="1" pad="1"/>
  2331. <connect gate="G$1" pin="2" pad="2"/>
  2332. </connects>
  2333. <package3dinstances>
  2334. <package3dinstance package3d_urn="urn:adsk.eagle:package:13307/1"/>
  2335. </package3dinstances>
  2336. <technologies>
  2337. <technology name="">
  2338. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2339. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2340. </technology>
  2341. </technologies>
  2342. </device>
  2343. </devices>
  2344. </deviceset>
  2345. </devicesets>
  2346. </library>
  2347. <library name="supply1" urn="urn:adsk.eagle:library:371">
  2348. <description>&lt;b&gt;Supply Symbols&lt;/b&gt;&lt;p&gt;
  2349. GND, VCC, 0V, +5V, -5V, etc.&lt;p&gt;
  2350. Please keep in mind, that these devices are necessary for the
  2351. automatic wiring of the supply signals.&lt;p&gt;
  2352. The pin name defined in the symbol is identical to the net which is to be wired automatically.&lt;p&gt;
  2353. 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;
  2354. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  2355. <packages>
  2356. </packages>
  2357. <symbols>
  2358. <symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1" library_version="1">
  2359. <wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
  2360. <text x="-2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  2361. <pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
  2362. </symbol>
  2363. </symbols>
  2364. <devicesets>
  2365. <deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND" library_version="1">
  2366. <description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>
  2367. <gates>
  2368. <gate name="1" symbol="GND" x="0" y="0"/>
  2369. </gates>
  2370. <devices>
  2371. <device name="">
  2372. <technologies>
  2373. <technology name=""/>
  2374. </technologies>
  2375. </device>
  2376. </devices>
  2377. </deviceset>
  2378. </devicesets>
  2379. </library>
  2380. <library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513">
  2381. <description>&lt;h3&gt;SparkFun Connectors&lt;/h3&gt;
  2382. This library contains electrically-functional connectors.
  2383. &lt;br&gt;
  2384. &lt;br&gt;
  2385. 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.
  2386. &lt;br&gt;
  2387. &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;.
  2388. &lt;br&gt;
  2389. &lt;br&gt;
  2390. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  2391. &lt;br&gt;
  2392. &lt;br&gt;
  2393. 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>
  2394. <packages>
  2395. <package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1">
  2396. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2397. &lt;p&gt;Specifications:
  2398. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2399. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2400. &lt;/ul&gt;&lt;/p&gt;
  2401. &lt;p&gt;Example device(s):
  2402. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2403. &lt;/ul&gt;&lt;/p&gt;</description>
  2404. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2405. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2406. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2407. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2408. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2409. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2410. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2411. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2412. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2413. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2414. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2415. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2416. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2417. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2418. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2419. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2420. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2421. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2422. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2423. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2424. </package>
  2425. <package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1">
  2426. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole&lt;/h3&gt;
  2427. &lt;p&gt;Specifications:
  2428. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2429. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2430. &lt;/ul&gt;&lt;/p&gt;
  2431. &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;
  2432. &lt;p&gt;Example device(s):
  2433. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2434. &lt;/ul&gt;&lt;/p&gt;</description>
  2435. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2436. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2437. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2438. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2439. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2440. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2441. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2442. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2443. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2444. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2445. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  2446. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2447. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2448. </package>
  2449. <package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1">
  2450. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH&lt;/h3&gt;
  2451. &lt;p&gt;Specifications:
  2452. &lt;ul&gt;&lt;li&gt;Pin count: 2&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_02&lt;/li&gt;
  2458. &lt;/ul&gt;&lt;/p&gt;</description>
  2459. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2460. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2461. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2462. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2463. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2464. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2465. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2466. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2467. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2468. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2469. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2470. <wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/>
  2471. <wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/>
  2472. <wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2473. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2474. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2475. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2476. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2477. </package>
  2478. <package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1">
  2479. <description>&lt;h3&gt;JST-Right Angle Male Header SMT&lt;/h3&gt;
  2480. &lt;p&gt;Specifications:
  2481. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2482. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2483. &lt;/ul&gt;&lt;/p&gt;
  2484. &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;
  2485. &lt;p&gt;Example device(s):
  2486. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2487. &lt;li&gt;JST_2MM_MALE&lt;/li&gt;
  2488. &lt;/ul&gt;&lt;/p&gt;</description>
  2489. <wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/>
  2490. <wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/>
  2491. <wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/>
  2492. <wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/>
  2493. <wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/>
  2494. <wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/>
  2495. <wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/>
  2496. <wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/>
  2497. <wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/>
  2498. <smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2499. <smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2500. <smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2501. <smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2502. <text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2503. <text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2504. </package>
  2505. <package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1">
  2506. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2507. &lt;p&gt;Specifications:
  2508. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2509. &lt;li&gt;Pin pitch:0.15"&lt;/li&gt;
  2510. &lt;/ul&gt;&lt;/p&gt;
  2511. &lt;p&gt;Example device(s):
  2512. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2513. &lt;/ul&gt;&lt;/p&gt;</description>
  2514. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/>
  2515. <wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  2516. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/>
  2517. <wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/>
  2518. <pad name="P$1" x="0" y="0" drill="1.0668"/>
  2519. <pad name="P$2" x="3.81" y="0" drill="1.0668"/>
  2520. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2521. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2522. </package>
  2523. <package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1">
  2524. <description>&lt;h3&gt;JST-Vertical Male Header SMT &lt;/h3&gt;
  2525. &lt;p&gt;Specifications:
  2526. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2527. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2528. &lt;/ul&gt;&lt;/p&gt;
  2529. &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;
  2530. &lt;p&gt;Example device(s):
  2531. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2532. &lt;/ul&gt;&lt;/p&gt;</description>
  2533. <wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/>
  2534. <wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/>
  2535. <wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/>
  2536. <wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/>
  2537. <wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/>
  2538. <wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/>
  2539. <wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/>
  2540. <wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/>
  2541. <wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/>
  2542. <wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/>
  2543. <wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/>
  2544. <smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2545. <smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2546. <smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/>
  2547. <smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/>
  2548. <text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2549. <text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2550. </package>
  2551. <package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1">
  2552. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -2 Pin PTH&lt;/h3&gt;
  2553. &lt;p&gt;Specifications:
  2554. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2555. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  2556. &lt;/ul&gt;&lt;/p&gt;
  2557. &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;
  2558. &lt;p&gt;Example device(s):
  2559. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2560. &lt;/ul&gt;&lt;/p&gt;</description>
  2561. <wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/>
  2562. <wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/>
  2563. <wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/>
  2564. <wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  2565. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2566. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  2567. <wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2568. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  2569. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  2570. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  2571. <wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/>
  2572. <wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/>
  2573. <wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/>
  2574. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  2575. <pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/>
  2576. <pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/>
  2577. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2578. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2579. </package>
  2580. <package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1">
  2581. <description>&lt;h3&gt;Plated Through Hole - Locking Footprint&lt;/h3&gt;
  2582. Holes are staggered by 0.005" from center to hold pins while soldering.
  2583. &lt;p&gt;Specifications:
  2584. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2585. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2586. &lt;/ul&gt;&lt;/p&gt;
  2587. &lt;p&gt;Example device(s):
  2588. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2589. &lt;/ul&gt;&lt;/p&gt;</description>
  2590. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2591. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2592. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2593. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2594. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2595. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2596. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2597. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2598. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2599. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2600. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2601. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2602. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2603. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2604. <pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2605. <pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2606. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2607. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2608. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2609. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2610. </package>
  2611. <package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1">
  2612. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  2613. Holes are offset from center by 0.005" to hold pins in place during soldering.
  2614. &lt;p&gt;Specifications:
  2615. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2616. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2617. &lt;/ul&gt;&lt;/p&gt;
  2618. &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;
  2619. &lt;p&gt;Example device(s):
  2620. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2621. &lt;/ul&gt;&lt;/p&gt;</description>
  2622. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2623. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2624. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2625. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2626. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2627. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2628. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2629. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2630. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2631. <pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2632. <pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/>
  2633. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2634. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2635. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2636. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2637. </package>
  2638. <package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1">
  2639. <description>&lt;h3&gt;Plated Through Hole - Long Pads with Locking Footprint&lt;/h3&gt;
  2640. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  2641. &lt;p&gt;Specifications:
  2642. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2643. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2644. &lt;/ul&gt;&lt;/p&gt;
  2645. &lt;p&gt;Example device(s):
  2646. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2647. &lt;/ul&gt;&lt;/p&gt;</description>
  2648. <wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/>
  2649. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  2650. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  2651. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  2652. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  2653. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  2654. <wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  2655. <wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/>
  2656. <wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/>
  2657. <wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/>
  2658. <wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/>
  2659. <pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/>
  2660. <pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/>
  2661. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2662. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2663. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2664. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2665. </package>
  2666. <package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1">
  2667. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking&lt;/h3&gt;
  2668. Holes are offset from center 0.005" to hold pins in place during soldering.
  2669. &lt;p&gt;Specifications:
  2670. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2671. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2672. &lt;/ul&gt;&lt;/p&gt;
  2673. &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;
  2674. &lt;p&gt;Example device(s):
  2675. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2676. &lt;/ul&gt;&lt;/p&gt;</description>
  2677. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2678. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2679. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2680. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2681. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2682. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2683. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2684. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2685. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2686. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2687. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2688. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2689. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2690. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2691. <circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2692. <circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2693. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2694. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  2695. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2696. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2697. </package>
  2698. <package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1">
  2699. <description>&lt;h3&gt;Plated Through Hole - Long Pads without Silk Outline&lt;/h3&gt;
  2700. &lt;p&gt;Specifications:
  2701. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2702. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2703. &lt;/ul&gt;&lt;/p&gt;
  2704. &lt;p&gt;Example device(s):
  2705. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2706. &lt;/ul&gt;&lt;/p&gt;</description>
  2707. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2708. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2709. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2710. <text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2711. </package>
  2712. <package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1">
  2713. <description>&lt;h3&gt;Plated Through Hole - No Silk Outline&lt;/h3&gt;
  2714. &lt;p&gt;Specifications:
  2715. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2716. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2717. &lt;/ul&gt;&lt;/p&gt;
  2718. &lt;p&gt;Example device(s):
  2719. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2720. &lt;/ul&gt;&lt;/p&gt;</description>
  2721. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2722. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2723. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2724. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2725. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2726. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2727. </package>
  2728. <package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1">
  2729. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  2730. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2731. &lt;p&gt;Specifications:
  2732. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2733. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2734. &lt;/ul&gt;&lt;/p&gt;
  2735. &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;
  2736. &lt;p&gt;Example device(s):
  2737. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2738. &lt;/ul&gt;&lt;/p&gt;</description>
  2739. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2740. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2741. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2742. <text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2743. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2744. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2745. <wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/>
  2746. <wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/>
  2747. <wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/>
  2748. <wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/>
  2749. <wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/>
  2750. <wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/>
  2751. <wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/>
  2752. </package>
  2753. <package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1">
  2754. <description>&lt;h3&gt;Plated Through Hole - 0.1" holes&lt;/h3&gt;
  2755. &lt;p&gt;Specifications:
  2756. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2757. &lt;li&gt;Pin pitch:0.2"&lt;/li&gt;
  2758. &lt;/ul&gt;&lt;/p&gt;
  2759. &lt;p&gt;Example device(s):
  2760. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2761. &lt;/ul&gt;&lt;/p&gt;</description>
  2762. <wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/>
  2763. <wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2764. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/>
  2765. <wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/>
  2766. <pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/>
  2767. <pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/>
  2768. <text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2769. <text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2770. </package>
  2771. <package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1">
  2772. <description>&lt;h3&gt;Pogo Pins Connector - No Silk Outline&lt;/h3&gt;
  2773. &lt;p&gt;Specifications:
  2774. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2775. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2776. &lt;/ul&gt;&lt;/p&gt;
  2777. &lt;p&gt;Example device(s):
  2778. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2779. &lt;/ul&gt;&lt;/p&gt;</description>
  2780. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  2781. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  2782. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2783. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2784. <hole x="0" y="0" drill="1.4732"/>
  2785. <hole x="2.54" y="0" drill="1.4732"/>
  2786. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2787. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2788. </package>
  2789. <package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1">
  2790. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline&lt;/h3&gt;
  2791. &lt;p&gt;Specifications:
  2792. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2793. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2794. &lt;/ul&gt;&lt;/p&gt;
  2795. &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;
  2796. &lt;p&gt;Example device(s):
  2797. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2798. &lt;/ul&gt;&lt;/p&gt;</description>
  2799. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/>
  2800. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/>
  2801. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/>
  2802. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  2803. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2804. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  2805. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2806. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2807. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2808. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2809. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2810. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2811. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2812. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2813. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2814. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2815. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2816. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2817. </package>
  2818. <package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1">
  2819. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole- No Silk&lt;/h3&gt;
  2820. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2821. &lt;br&gt; No silk outline of connector.
  2822. &lt;p&gt;Specifications:
  2823. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2824. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2825. &lt;/ul&gt;&lt;/p&gt;
  2826. &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;
  2827. &lt;p&gt;Example device(s):
  2828. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2829. &lt;/ul&gt;&lt;/p&gt;</description>
  2830. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  2831. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  2832. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  2833. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  2834. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  2835. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  2836. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  2837. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2838. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2839. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2840. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2841. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2842. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2843. </package>
  2844. <package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1">
  2845. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole - KIT&lt;/h3&gt;
  2846. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2847. &lt;br&gt; This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  2848. &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.
  2849. &lt;p&gt;Specifications:
  2850. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2851. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2852. &lt;/ul&gt;&lt;/p&gt;
  2853. &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;
  2854. &lt;p&gt;Example device(s):
  2855. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2856. &lt;/ul&gt;&lt;/p&gt;</description>
  2857. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  2858. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  2859. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  2860. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  2861. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  2862. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  2863. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  2864. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  2865. <pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  2866. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2867. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2868. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2869. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2870. <polygon width="0.127" layer="30">
  2871. <vertex x="-0.9975" y="-0.6604" curve="-90.025935"/>
  2872. <vertex x="-1.6604" y="0" curve="-90.017354"/>
  2873. <vertex x="-1" y="0.6604" curve="-90"/>
  2874. <vertex x="-0.3396" y="0" curve="-90.078137"/>
  2875. </polygon>
  2876. <polygon width="0.127" layer="29">
  2877. <vertex x="-1" y="-0.2865" curve="-90.08005"/>
  2878. <vertex x="-1.2865" y="0" curve="-90.040011"/>
  2879. <vertex x="-1" y="0.2865" curve="-90"/>
  2880. <vertex x="-0.7135" y="0" curve="-90"/>
  2881. </polygon>
  2882. <polygon width="0.127" layer="30">
  2883. <vertex x="1.0025" y="-0.6604" curve="-90.025935"/>
  2884. <vertex x="0.3396" y="0" curve="-90.017354"/>
  2885. <vertex x="1" y="0.6604" curve="-90"/>
  2886. <vertex x="1.6604" y="0" curve="-90.078137"/>
  2887. </polygon>
  2888. <polygon width="0.127" layer="29">
  2889. <vertex x="1" y="-0.2865" curve="-90.08005"/>
  2890. <vertex x="0.7135" y="0" curve="-90.040011"/>
  2891. <vertex x="1" y="0.2865" curve="-90"/>
  2892. <vertex x="1.2865" y="0" curve="-90"/>
  2893. </polygon>
  2894. </package>
  2895. <package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1">
  2896. <description>&lt;h3&gt;Spring Terminal- PCB Mount 2 Pin PTH&lt;/h3&gt;
  2897. tDocu marks the spring arms
  2898. &lt;p&gt;Specifications:
  2899. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  2900. &lt;li&gt;Pin pitch: 0.1"&lt;/li&gt;
  2901. &lt;/ul&gt;&lt;/p&gt;
  2902. &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;
  2903. &lt;p&gt;Example device(s):
  2904. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2905. &lt;/ul&gt;&lt;/p&gt;</description>
  2906. <wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/>
  2907. <wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/>
  2908. <wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/>
  2909. <wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/>
  2910. <wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/>
  2911. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/>
  2912. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/>
  2913. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/>
  2914. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/>
  2915. <wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  2916. <wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/>
  2917. <wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/>
  2918. <wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  2919. <pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/>
  2920. <pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/>
  2921. <pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/>
  2922. <pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/>
  2923. </package>
  2924. <package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1">
  2925. <description>&lt;h3&gt;2 Pin Screw Terminal - 2.54mm&lt;/h3&gt;
  2926. &lt;p&gt;Specifications:
  2927. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2928. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2929. &lt;/ul&gt;&lt;/p&gt;
  2930. &lt;p&gt;Example device(s):
  2931. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2932. &lt;/ul&gt;&lt;/p&gt;</description>
  2933. <pad name="P2" x="0" y="0" drill="1.016" shape="square"/>
  2934. <pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/>
  2935. <wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/>
  2936. <wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/>
  2937. <wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/>
  2938. <wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/>
  2939. <wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/>
  2940. <wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/>
  2941. <wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
  2942. <text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2943. <text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2944. </package>
  2945. <package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1">
  2946. <description>2 pin poke-home connector
  2947. part number 2062-2P from STA</description>
  2948. <wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/>
  2949. <wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/>
  2950. <wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/>
  2951. <wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/>
  2952. <wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/>
  2953. <smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/>
  2954. <smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/>
  2955. <smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/>
  2956. <smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/>
  2957. <text x="0.635" y="-3.175" size="0.4064" layer="25">&gt;NAME</text>
  2958. <text x="0.635" y="-1.905" size="0.4064" layer="27">&gt;VALUE</text>
  2959. </package>
  2960. <package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1">
  2961. <wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/>
  2962. <wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  2963. <wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/>
  2964. <wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  2965. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2966. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2967. <pad name="2" x="-1.27" y="-5.85" drill="0.8"/>
  2968. <pad name="1" x="1.27" y="-5.85" drill="0.8"/>
  2969. </package>
  2970. <package name="1X08" urn="urn:adsk.eagle:footprint:37760/1" library_version="1">
  2971. <description>&lt;h3&gt;Plated Through Hole -8 Pin&lt;/h3&gt;
  2972. &lt;p&gt;Specifications:
  2973. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  2974. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2975. &lt;/ul&gt;&lt;/p&gt;
  2976. &lt;p&gt;Example device(s):
  2977. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  2978. &lt;/ul&gt;&lt;/p&gt;</description>
  2979. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  2980. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  2981. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  2982. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  2983. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  2984. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  2985. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  2986. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  2987. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  2988. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  2989. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  2990. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  2991. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  2992. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  2993. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  2994. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  2995. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  2996. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  2997. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  2998. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  2999. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3000. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3001. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3002. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3003. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3004. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3005. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3006. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3007. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3008. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3009. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3010. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3011. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3012. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3013. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3014. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3015. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3016. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3017. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3018. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3019. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3020. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3021. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3022. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3023. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3024. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3025. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3026. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3027. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3028. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3029. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3030. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3031. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3032. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3033. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3034. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3035. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3036. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3037. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3038. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3039. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3040. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3041. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3042. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3043. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3044. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3045. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3046. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3047. </package>
  3048. <package name="1X08_LOCK" urn="urn:adsk.eagle:footprint:37761/1" library_version="1">
  3049. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint&lt;/h3&gt;
  3050. Holes are offset 0.005", to hold pins in place during soldering.
  3051. &lt;p&gt;Specifications:
  3052. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3053. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3054. &lt;/ul&gt;&lt;/p&gt;
  3055. &lt;p&gt;Example device(s):
  3056. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3057. &lt;/ul&gt;&lt;/p&gt;</description>
  3058. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3059. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3060. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3061. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3062. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3063. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3064. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3065. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3066. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3067. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3068. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3069. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3070. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3071. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3072. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3073. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3074. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3075. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3076. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3077. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3078. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3079. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3080. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3081. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3082. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3083. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3084. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3085. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3086. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3087. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3088. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3089. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3090. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3091. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3092. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3093. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3094. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3095. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3096. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3097. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3098. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3099. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3100. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3101. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3102. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3103. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3104. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3105. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3106. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3107. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3108. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3109. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3110. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3111. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3112. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3113. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3114. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3115. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3116. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3117. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3118. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3119. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3120. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3121. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3122. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3123. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3124. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3125. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3126. </package>
  3127. <package name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37762/1" library_version="1">
  3128. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint with Long Pads&lt;/h3&gt;
  3129. Holes are offset 0.005", to hold pins in place during soldering.
  3130. &lt;p&gt;Specifications:
  3131. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3132. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3133. &lt;/ul&gt;&lt;/p&gt;
  3134. &lt;p&gt;Example device(s):
  3135. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3136. &lt;/ul&gt;&lt;/p&gt;</description>
  3137. <wire x1="1.524" y1="0" x2="1.016" y2="0" width="0.2032" layer="21"/>
  3138. <wire x1="4.064" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  3139. <wire x1="6.604" y1="0" x2="6.096" y2="0" width="0.2032" layer="21"/>
  3140. <wire x1="9.144" y1="0" x2="8.636" y2="0" width="0.2032" layer="21"/>
  3141. <wire x1="11.684" y1="0" x2="11.176" y2="0" width="0.2032" layer="21"/>
  3142. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  3143. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  3144. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  3145. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  3146. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  3147. <wire x1="14.224" y1="0" x2="13.716" y2="0" width="0.2032" layer="21"/>
  3148. <wire x1="16.764" y1="0" x2="16.256" y2="0" width="0.2032" layer="21"/>
  3149. <wire x1="19.05" y1="0" x2="19.05" y2="-0.9906" width="0.2032" layer="21"/>
  3150. <wire x1="19.05" y1="-0.9906" x2="18.7706" y2="-1.27" width="0.2032" layer="21"/>
  3151. <wire x1="19.05" y1="0" x2="19.05" y2="0.9906" width="0.2032" layer="21"/>
  3152. <wire x1="19.05" y1="0.9906" x2="18.7706" y2="1.27" width="0.2032" layer="21"/>
  3153. <wire x1="19.05" y1="0" x2="18.796" y2="0" width="0.2032" layer="21"/>
  3154. <pad name="1" x="0" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3155. <pad name="2" x="2.54" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3156. <pad name="3" x="5.08" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3157. <pad name="4" x="7.62" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3158. <pad name="5" x="10.16" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3159. <pad name="6" x="12.7" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3160. <pad name="7" x="15.24" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3161. <pad name="8" x="17.78" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3162. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  3163. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  3164. <rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="51"/>
  3165. <rectangle x1="7.3279" y1="-0.2921" x2="7.9121" y2="0.2921" layer="51" rot="R90"/>
  3166. <rectangle x1="9.8679" y1="-0.2921" x2="10.4521" y2="0.2921" layer="51"/>
  3167. <rectangle x1="12.4079" y1="-0.2921" x2="12.9921" y2="0.2921" layer="51"/>
  3168. <rectangle x1="14.9479" y1="-0.2921" x2="15.5321" y2="0.2921" layer="51"/>
  3169. <rectangle x1="17.4879" y1="-0.2921" x2="18.0721" y2="0.2921" layer="51"/>
  3170. <text x="-0.889" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3171. <text x="-1.143" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3172. </package>
  3173. <package name="1X08_LONGPADS" urn="urn:adsk.eagle:footprint:37763/1" library_version="1">
  3174. <description>&lt;h3&gt;Plated Through Hole -8 Pin Long Pads&lt;/h3&gt;
  3175. &lt;p&gt;Specifications:
  3176. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3177. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3178. &lt;/ul&gt;&lt;/p&gt;
  3179. &lt;p&gt;Example device(s):
  3180. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3181. &lt;/ul&gt;&lt;/p&gt;</description>
  3182. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3183. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3184. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3185. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3186. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3187. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3188. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3189. <pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3190. <pad name="7" x="15.24" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3191. <pad name="8" x="17.78" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3192. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3193. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3194. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3195. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3196. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3197. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3198. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3199. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3200. <text x="-1.143" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3201. <text x="-1.016" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3202. </package>
  3203. <package name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:footprint:37764/1" library_version="1">
  3204. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -8 Pin PTH&lt;/h3&gt;
  3205. &lt;p&gt;Specifications:
  3206. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3207. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3208. &lt;/ul&gt;&lt;/p&gt;
  3209. &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;
  3210. &lt;p&gt;Example device(s):
  3211. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3212. &lt;/ul&gt;&lt;/p&gt;</description>
  3213. <wire x1="-1.75" y1="3.4" x2="26.25" y2="3.4" width="0.2032" layer="21"/>
  3214. <wire x1="26.25" y1="3.4" x2="26.25" y2="-2.8" width="0.2032" layer="21"/>
  3215. <wire x1="26.25" y1="-2.8" x2="26.25" y2="-3.6" width="0.2032" layer="21"/>
  3216. <wire x1="26.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3217. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3218. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3219. <wire x1="26.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3220. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3221. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3222. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3223. <wire x1="26.25" y1="3.15" x2="26.75" y2="3.15" width="0.2032" layer="51"/>
  3224. <wire x1="26.75" y1="3.15" x2="26.75" y2="2.15" width="0.2032" layer="51"/>
  3225. <wire x1="26.75" y1="2.15" x2="26.25" y2="2.15" width="0.2032" layer="51"/>
  3226. <wire x1="1.016" y1="-1.524" x2="-0.889" y2="-1.524" width="0.2032" layer="21"/>
  3227. <wire x1="-0.889" y1="-1.524" x2="1.016" y2="-1.524" width="0.2032" layer="22"/>
  3228. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032"/>
  3229. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3230. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3231. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3232. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  3233. <pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/>
  3234. <pad name="7" x="21" y="0" drill="1.2" diameter="2.032"/>
  3235. <pad name="8" x="24.5" y="0" drill="1.2" diameter="2.032"/>
  3236. <text x="11.049" y="2.286" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3237. <text x="10.795" y="1.397" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3238. </package>
  3239. <package name="1X08_SMD" urn="urn:adsk.eagle:footprint:37765/1" library_version="1">
  3240. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3241. &lt;p&gt;Specifications:
  3242. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3243. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3244. &lt;/ul&gt;&lt;/p&gt;
  3245. &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;
  3246. &lt;p&gt;Example device(s):
  3247. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3248. &lt;/ul&gt;&lt;/p&gt;</description>
  3249. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3250. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3251. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3252. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3253. <wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3254. <wire x1="-19.15" y1="-1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3255. <wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3256. <wire x1="-19.15" y1="1.25" x2="-15.963" y2="1.25" width="0.127" layer="21"/>
  3257. <wire x1="-18.63" y1="-1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3258. <wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/>
  3259. <wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/>
  3260. <wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/>
  3261. <wire x1="-14.537" y1="1.25" x2="-10.863" y2="1.25" width="0.127" layer="21"/>
  3262. <wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/>
  3263. <wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/>
  3264. <wire x1="-13.489" y1="-1.25" x2="-16.991" y2="-1.25" width="0.127" layer="21"/>
  3265. <smd name="7" x="-15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3266. <smd name="5" x="-10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3267. <smd name="3" x="-5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3268. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3269. <smd name="8" x="-17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3270. <smd name="6" x="-12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3271. <smd name="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3272. <smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3273. <text x="-18.542" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3274. <text x="-18.542" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3275. </package>
  3276. <package name="1X08_SMD_ALT" urn="urn:adsk.eagle:footprint:37766/1" library_version="1">
  3277. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3278. Alternate pin configuration
  3279. &lt;p&gt;Specifications:
  3280. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3281. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3282. &lt;/ul&gt;&lt;/p&gt;
  3283. &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;
  3284. &lt;p&gt;Example device(s):
  3285. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3286. &lt;/ul&gt;&lt;/p&gt;</description>
  3287. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3288. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3289. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3290. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3291. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3292. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3293. <wire x1="-18.63" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3294. <wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/>
  3295. <wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3296. <wire x1="-19.15" y1="-1.25" x2="-15.963" y2="-1.25" width="0.127" layer="21"/>
  3297. <wire x1="-13.403" y1="1.25" x2="-17.077" y2="1.25" width="0.127" layer="21"/>
  3298. <wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/>
  3299. <wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/>
  3300. <wire x1="-14.451" y1="-1.25" x2="-10.949" y2="-1.25" width="0.127" layer="21"/>
  3301. <wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/>
  3302. <wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/>
  3303. <smd name="7" x="-15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3304. <smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3305. <smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3306. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3307. <smd name="8" x="-17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3308. <smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3309. <smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3310. <smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3311. <text x="-18.796" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3312. <text x="-18.923" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3313. </package>
  3314. <package name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:footprint:37767/1" library_version="1">
  3315. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3316. Combined footprint configuration
  3317. &lt;p&gt;Specifications:
  3318. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3319. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3320. &lt;/ul&gt;&lt;/p&gt;
  3321. &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;
  3322. &lt;p&gt;Example device(s):
  3323. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3324. &lt;/ul&gt;&lt;/p&gt;</description>
  3325. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.127" layer="21"/>
  3326. <wire x1="19.15" y1="1.25" x2="19.15" y2="-1.25" width="0.127" layer="21"/>
  3327. <wire x1="-0.85" y1="-1.25" x2="-1.37" y2="-1.25" width="0.127" layer="21"/>
  3328. <wire x1="19.15" y1="-1.25" x2="18.503" y2="-1.25" width="0.127" layer="21"/>
  3329. <wire x1="18.63" y1="1.25" x2="19.15" y2="1.25" width="0.127" layer="21"/>
  3330. <wire x1="-1.37" y1="1.25" x2="-0.723" y2="1.25" width="0.127" layer="21"/>
  3331. <wire x1="14.537" y1="-1.25" x2="13.403" y2="-1.25" width="0.127" layer="21"/>
  3332. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.127" layer="21"/>
  3333. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.127" layer="21"/>
  3334. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.127" layer="21"/>
  3335. <wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.127" layer="21"/>
  3336. <wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.127" layer="21"/>
  3337. <wire x1="13.489" y1="1.25" x2="14.451" y2="1.25" width="0.127" layer="21"/>
  3338. <wire x1="16.029" y1="1.25" x2="16.991" y2="1.25" width="0.127" layer="21"/>
  3339. <wire x1="17.077" y1="-1.25" x2="15.943" y2="-1.25" width="0.127" layer="21"/>
  3340. <wire x1="11.997" y1="-1.25" x2="10.863" y2="-1.25" width="0.127" layer="21"/>
  3341. <wire x1="9.457" y1="-1.25" x2="8.323" y2="-1.25" width="0.127" layer="21"/>
  3342. <wire x1="6.917" y1="-1.25" x2="5.783" y2="-1.25" width="0.127" layer="21"/>
  3343. <wire x1="4.377" y1="-1.25" x2="3.243" y2="-1.25" width="0.127" layer="21"/>
  3344. <wire x1="1.837" y1="-1.25" x2="0.703" y2="-1.25" width="0.127" layer="21"/>
  3345. <wire x1="17.78" y1="1.27" x2="17.78" y2="-1.27" width="0.4064" layer="1"/>
  3346. <wire x1="15.24" y1="1.27" x2="15.24" y2="-1.27" width="0.4064" layer="1"/>
  3347. <wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/>
  3348. <wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/>
  3349. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  3350. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  3351. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  3352. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  3353. <smd name="7@2" x="15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3354. <smd name="5@2" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3355. <smd name="3@2" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3356. <smd name="8@2" x="17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3357. <smd name="6@2" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3358. <smd name="4@2" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3359. <smd name="2@2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3360. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3361. <smd name="2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3362. <smd name="3" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3363. <smd name="4" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3364. <smd name="5" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3365. <smd name="6" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3366. <smd name="7" x="15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3367. <smd name="8" x="17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3368. <smd name="1@2" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3369. <text x="-0.381" y="3.048" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3370. <text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3371. </package>
  3372. <package name="BM08B-SRSS-TB" urn="urn:adsk.eagle:footprint:37768/1" library_version="1">
  3373. <description>&lt;h3&gt;JST Vertical Crimp Connect&lt;/h3&gt;
  3374. &lt;p&gt;Specifications:
  3375. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3376. &lt;li&gt;Pin pitch:1mm&lt;/li&gt;
  3377. &lt;/ul&gt;&lt;/p&gt;
  3378. &lt;p&gt;&lt;a href=”http://www.jst-mfg.com/product/pdf/eng/eSR.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  3379. &lt;p&gt;Example device(s):
  3380. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3381. &lt;/ul&gt;&lt;/p&gt;</description>
  3382. <wire x1="-5" y1="3.3" x2="5" y2="3.3" width="0.127" layer="51"/>
  3383. <wire x1="-5" y1="0.4" x2="-5" y2="3.3" width="0.127" layer="51"/>
  3384. <wire x1="5" y1="0.4" x2="5" y2="3.3" width="0.127" layer="51"/>
  3385. <wire x1="-5" y1="0.4" x2="5" y2="0.4" width="0.127" layer="51"/>
  3386. <wire x1="-4.1" y1="0.35" x2="-5.05" y2="0.35" width="0.2032" layer="21"/>
  3387. <wire x1="-5.05" y1="0.35" x2="-5.05" y2="1.35" width="0.2032" layer="21"/>
  3388. <wire x1="5.05" y1="0.35" x2="4.15" y2="0.35" width="0.2032" layer="21"/>
  3389. <wire x1="5.05" y1="0.35" x2="5.05" y2="1.35" width="0.2032" layer="21"/>
  3390. <wire x1="-3.9" y1="3.4" x2="3.9" y2="3.4" width="0.2032" layer="21"/>
  3391. <circle x="-4.4" y="-0.35" radius="0.1118" width="0.4064" layer="21"/>
  3392. <smd name="1" x="-3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3393. <smd name="2" x="-2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3394. <smd name="3" x="-1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3395. <smd name="4" x="-0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3396. <smd name="5" x="0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3397. <smd name="6" x="1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3398. <smd name="7" x="2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3399. <smd name="8" x="3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3400. <smd name="P$9" x="4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3401. <smd name="P$10" x="-4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3402. <text x="-1.397" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3403. <text x="-1.651" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3404. </package>
  3405. <package name="1X08_SMD_MALE" urn="urn:adsk.eagle:footprint:37769/1" library_version="1">
  3406. <description>&lt;h3&gt;SMD -8 Pin Vertical Male&lt;/h3&gt;
  3407. &lt;p&gt;Specifications:
  3408. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3409. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3410. &lt;/ul&gt;&lt;/p&gt;
  3411. &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;
  3412. &lt;p&gt;Example device(s):
  3413. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3414. &lt;/ul&gt;&lt;/p&gt;</description>
  3415. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3416. <wire x1="-1.27" y1="-1.25" x2="19.05" y2="-1.25" width="0.127" layer="51"/>
  3417. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.127" layer="51"/>
  3418. <wire x1="19.05" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/>
  3419. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/>
  3420. <wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/>
  3421. <wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/>
  3422. <wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/>
  3423. <wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/>
  3424. <wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/>
  3425. <wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/>
  3426. <wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/>
  3427. <wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/>
  3428. <wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/>
  3429. <wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/>
  3430. <wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/>
  3431. <wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/>
  3432. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.1778" layer="21"/>
  3433. <wire x1="16.002" y1="1.25" x2="17.018" y2="1.25" width="0.1778" layer="21"/>
  3434. <wire x1="17.018" y1="-1.25" x2="16.002" y2="-1.25" width="0.1778" layer="21"/>
  3435. <wire x1="19.05" y1="-1.25" x2="18.415" y2="-1.25" width="0.1778" layer="21"/>
  3436. <wire x1="19.05" y1="1.25" x2="18.415" y2="1.25" width="0.1778" layer="21"/>
  3437. <wire x1="13.462" y1="1.25" x2="14.478" y2="1.25" width="0.1778" layer="21"/>
  3438. <wire x1="14.478" y1="-1.25" x2="13.462" y2="-1.25" width="0.1778" layer="21"/>
  3439. <circle x="0" y="0" radius="0.64" width="0.127" layer="51"/>
  3440. <circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/>
  3441. <circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/>
  3442. <circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/>
  3443. <circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/>
  3444. <circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/>
  3445. <circle x="15.24" y="0" radius="0.64" width="0.127" layer="51"/>
  3446. <circle x="17.78" y="0" radius="0.64" width="0.127" layer="51"/>
  3447. <rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/>
  3448. <rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/>
  3449. <rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/>
  3450. <rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/>
  3451. <rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/>
  3452. <rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/>
  3453. <rectangle x1="14.92" y1="0" x2="15.56" y2="2.75" layer="51"/>
  3454. <rectangle x1="17.46" y1="-2.75" x2="18.1" y2="0" layer="51" rot="R180"/>
  3455. <smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/>
  3456. <smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/>
  3457. <smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/>
  3458. <smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/>
  3459. <smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/>
  3460. <smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/>
  3461. <smd name="7" x="15.24" y="0" dx="1.02" dy="6" layer="1"/>
  3462. <smd name="8" x="17.78" y="0" dx="1.02" dy="6" layer="1"/>
  3463. <text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3464. <text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3465. </package>
  3466. <package name="1X08_NO_SILK" urn="urn:adsk.eagle:footprint:37770/1" library_version="1">
  3467. <description>&lt;h3&gt;Plated Through Hole -8 Pin No Silk&lt;/h3&gt;
  3468. &lt;p&gt;Specifications:
  3469. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3470. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3471. &lt;/ul&gt;&lt;/p&gt;
  3472. &lt;p&gt;Example device(s):
  3473. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3474. &lt;/ul&gt;&lt;/p&gt;</description>
  3475. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3476. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3477. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3478. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3479. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3480. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3481. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3482. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3483. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3484. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3485. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3486. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3487. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3488. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3489. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3490. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3491. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3492. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3493. </package>
  3494. <package name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:footprint:37771/1" library_version="1">
  3495. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint No Silk&lt;/h3&gt;
  3496. Holes are offset 0.005", to hold pins in place during soldering.
  3497. &lt;p&gt;Specifications:
  3498. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3499. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3500. &lt;/ul&gt;&lt;/p&gt;
  3501. &lt;p&gt;Example device(s):
  3502. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3503. &lt;/ul&gt;&lt;/p&gt;</description>
  3504. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3505. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3506. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3507. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3508. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3509. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3510. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3511. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3512. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3513. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3514. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3515. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3516. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3517. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3518. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3519. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3520. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3521. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3522. </package>
  3523. <package name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:footprint:37772/1" library_version="1">
  3524. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Female Headers&lt;/h3&gt;
  3525. Holes are offset 0.005" to hold pins in place during soldering.
  3526. &lt;p&gt;Specifications:
  3527. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3528. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3529. &lt;/ul&gt;&lt;/p&gt;
  3530. &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;
  3531. &lt;p&gt;Example device(s):
  3532. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3533. &lt;/ul&gt;&lt;/p&gt;</description>
  3534. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3535. <wire x1="-1.27" y1="1.27" x2="19.05" y2="1.27" width="0.2032" layer="21"/>
  3536. <wire x1="19.05" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3537. <wire x1="19.05" y1="1.27" x2="19.05" y2="-1.27" width="0.2032" layer="21"/>
  3538. <pad name="1" x="0" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3539. <pad name="2" x="2.54" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3540. <pad name="3" x="5.08" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3541. <pad name="4" x="7.62" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3542. <pad name="5" x="10.16" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3543. <pad name="6" x="12.7" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3544. <pad name="7" x="15.24" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3545. <pad name="8" x="17.78" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3546. <rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/>
  3547. <rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/>
  3548. <rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/>
  3549. <rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/>
  3550. <rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/>
  3551. <rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/>
  3552. <rectangle x1="14.9225" y1="-0.1905" x2="15.5575" y2="0.1905" layer="51"/>
  3553. <rectangle x1="17.4625" y1="-0.1905" x2="18.0975" y2="0.1905" layer="51"/>
  3554. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3555. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3556. </package>
  3557. <package name="1X04" urn="urn:adsk.eagle:footprint:37702/1" library_version="1">
  3558. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3559. &lt;p&gt;Specifications:
  3560. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3561. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3562. &lt;/ul&gt;&lt;/p&gt;
  3563. &lt;p&gt;Example device(s):
  3564. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3565. &lt;/ul&gt;&lt;/p&gt;</description>
  3566. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3567. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3568. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3569. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3570. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3571. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3572. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3573. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3574. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3575. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3576. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3577. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3578. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3579. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3580. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3581. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3582. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3583. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3584. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3585. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3586. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3587. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3588. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3589. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3590. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3591. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3592. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3593. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3594. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3595. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3596. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3597. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3598. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3599. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3600. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3601. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3602. </package>
  3603. <package name="MOLEX-1X4" urn="urn:adsk.eagle:footprint:37703/1" library_version="1">
  3604. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole&lt;/h3&gt;
  3605. &lt;p&gt;Specifications:
  3606. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3607. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3608. &lt;/ul&gt;&lt;/p&gt;
  3609. &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;
  3610. &lt;p&gt;Example device(s):
  3611. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3612. &lt;/ul&gt;&lt;/p&gt;</description>
  3613. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3614. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3615. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3616. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3617. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3618. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3619. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3620. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3621. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3622. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  3623. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3624. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3625. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3626. <text x="2.286" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3627. <text x="2.286" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3628. </package>
  3629. <package name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:footprint:37704/1" library_version="1">
  3630. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH&lt;/h3&gt;
  3631. &lt;p&gt;Specifications:
  3632. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3633. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3634. &lt;/ul&gt;&lt;/p&gt;
  3635. &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;
  3636. &lt;p&gt;Example device(s):
  3637. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3638. &lt;/ul&gt;&lt;/p&gt;</description>
  3639. <wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/>
  3640. <wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/>
  3641. <wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/>
  3642. <wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3643. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3644. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3645. <wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3646. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3647. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3648. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3649. <wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="51"/>
  3650. <wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="51"/>
  3651. <wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="51"/>
  3652. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3653. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3654. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3655. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3656. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3657. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3658. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3659. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3660. <text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3661. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3662. </package>
  3663. <package name="1X04_1.27MM" urn="urn:adsk.eagle:footprint:37705/1" library_version="1">
  3664. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3665. &lt;p&gt;Specifications:
  3666. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3667. &lt;li&gt;Pin pitch: 1.27mm&lt;/li&gt;
  3668. &lt;/ul&gt;&lt;/p&gt;
  3669. &lt;p&gt;Example device(s):
  3670. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3671. &lt;/ul&gt;&lt;/p&gt;</description>
  3672. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  3673. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  3674. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  3675. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  3676. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  3677. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  3678. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  3679. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  3680. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  3681. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3682. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  3683. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  3684. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  3685. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  3686. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  3687. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  3688. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  3689. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  3690. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  3691. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  3692. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  3693. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  3694. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  3695. <wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/>
  3696. <wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/>
  3697. <wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3698. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  3699. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  3700. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  3701. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  3702. <text x="-0.508" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3703. <text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3704. </package>
  3705. <package name="1X04_LOCK" urn="urn:adsk.eagle:footprint:37706/1" library_version="1">
  3706. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Locking Footprint&lt;/h3&gt;
  3707. Pins are offset 0.005" from center to lock pins in place during soldering.
  3708. &lt;p&gt;Specifications:
  3709. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3710. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3711. &lt;/ul&gt;&lt;/p&gt;
  3712. &lt;p&gt;Example device(s):
  3713. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3714. &lt;/ul&gt;&lt;/p&gt;</description>
  3715. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3716. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3717. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3718. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3719. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3720. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3721. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3722. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3723. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3724. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3725. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3726. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3727. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3728. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3729. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3730. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3731. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3732. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3733. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3734. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3735. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3736. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3737. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3738. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3739. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3740. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3741. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3742. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3743. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3744. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3745. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3746. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3747. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3748. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3749. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3750. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3751. </package>
  3752. <package name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37707/1" library_version="1">
  3753. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint&lt;/h3&gt;
  3754. Holes are offset 0.005" from center to lock pins in place during soldering.
  3755. &lt;p&gt;Specifications:
  3756. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3757. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3758. &lt;/ul&gt;&lt;/p&gt;
  3759. &lt;p&gt;Example device(s):
  3760. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3761. &lt;/ul&gt;&lt;/p&gt;</description>
  3762. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  3763. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  3764. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  3765. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  3766. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  3767. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  3768. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  3769. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  3770. <wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  3771. <wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/>
  3772. <wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/>
  3773. <wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/>
  3774. <wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/>
  3775. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  3776. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3777. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  3778. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3779. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3780. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3781. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3782. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  3783. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3784. <text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3785. </package>
  3786. <package name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:footprint:37708/1" library_version="1">
  3787. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole Locking&lt;/h3&gt;
  3788. Holes are offset 0.005" from center to hold pins in place during soldering.
  3789. &lt;p&gt;Specifications:
  3790. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3791. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3792. &lt;/ul&gt;&lt;/p&gt;
  3793. &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;
  3794. &lt;p&gt;Example device(s):
  3795. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3796. &lt;/ul&gt;&lt;/p&gt;</description>
  3797. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3798. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3799. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3800. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3801. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3802. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3803. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3804. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3805. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3806. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
  3807. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  3808. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  3809. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  3810. <text x="2.667" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3811. <text x="2.032" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3812. </package>
  3813. <package name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37709/1" library_version="1">
  3814. <description>&lt;h3&gt;SMD - 4 Pin Right Angle Male Header&lt;/h3&gt;
  3815. tDocu layer shows pin locations.
  3816. &lt;p&gt;Specifications:
  3817. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3818. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3819. &lt;/ul&gt;&lt;/p&gt;
  3820. &lt;p&gt;Example device(s):
  3821. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3822. &lt;/ul&gt;&lt;/p&gt;</description>
  3823. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  3824. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  3825. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  3826. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3827. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  3828. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  3829. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  3830. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  3831. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  3832. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  3833. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  3834. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  3835. <smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3836. <smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3837. <smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3838. <smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3839. <hole x="-2.54" y="0" drill="1.4"/>
  3840. <hole x="2.54" y="0" drill="1.4"/>
  3841. <text x="-4.318" y="6.731" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3842. <text x="-4.318" y="2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3843. </package>
  3844. <package name="1X04_LONGPADS" urn="urn:adsk.eagle:footprint:37710/1" library_version="1">
  3845. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads&lt;/h3&gt;
  3846. &lt;p&gt;Specifications:
  3847. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3848. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3849. &lt;/ul&gt;&lt;/p&gt;
  3850. &lt;p&gt;Example device(s):
  3851. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3852. &lt;/ul&gt;&lt;/p&gt;</description>
  3853. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3854. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3855. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3856. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3857. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3858. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3859. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3860. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3861. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3862. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3863. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3864. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3865. </package>
  3866. <package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1">
  3867. <description>&lt;h3&gt;Plated Through Hole - 4 Pin No Silk Outline&lt;/h3&gt;
  3868. &lt;p&gt;Specifications:
  3869. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3870. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3871. &lt;/ul&gt;&lt;/p&gt;
  3872. &lt;p&gt;Example device(s):
  3873. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3874. &lt;/ul&gt;&lt;/p&gt;</description>
  3875. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3876. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3877. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3878. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3879. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3880. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3881. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3882. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3883. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3884. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3885. </package>
  3886. <package name="JST-4-PTH" urn="urn:adsk.eagle:footprint:37712/1" library_version="1">
  3887. <description>&lt;h3&gt;JST Right Angle 4 Pin Plated Through Hole&lt;/h3&gt;
  3888. &lt;p&gt;Specifications:
  3889. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3890. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  3891. &lt;/ul&gt;&lt;/p&gt;
  3892. &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;
  3893. &lt;p&gt;Example device(s):
  3894. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3895. &lt;/ul&gt;&lt;/p&gt;</description>
  3896. <pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/>
  3897. <pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/>
  3898. <pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/>
  3899. <pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/>
  3900. <text x="-3.4" y="0.7" size="1.27" layer="51">+</text>
  3901. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3902. <text x="0.7" y="0.9" size="0.8" layer="51">S</text>
  3903. <text x="2.7" y="0.9" size="0.8" layer="51">S</text>
  3904. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3905. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3906. <wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/>
  3907. <wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/>
  3908. <wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/>
  3909. <wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/>
  3910. <wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/>
  3911. <wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/>
  3912. <wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/>
  3913. </package>
  3914. <package name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:footprint:37713/1" library_version="1">
  3915. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH Locking&lt;/h3&gt;
  3916. Holes are offset 0.005" from center to hold pins in place during soldering.
  3917. &lt;p&gt;Specifications:
  3918. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3919. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3920. &lt;/ul&gt;&lt;/p&gt;
  3921. &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;
  3922. &lt;p&gt;Example device(s):
  3923. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3924. &lt;/ul&gt;&lt;/p&gt;</description>
  3925. <wire x1="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/>
  3926. <wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/>
  3927. <wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/>
  3928. <wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/>
  3929. <wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  3930. <wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/>
  3931. <wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  3932. <wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="51"/>
  3933. <wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="51"/>
  3934. <wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="51"/>
  3935. <wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="51"/>
  3936. <wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="51"/>
  3937. <wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="51"/>
  3938. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3939. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3940. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3941. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3942. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3943. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  3944. <pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/>
  3945. <pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/>
  3946. <text x="3.81" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3947. <text x="3.81" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3948. </package>
  3949. <package name="1X04_1MM_RA" urn="urn:adsk.eagle:footprint:37714/1" library_version="1">
  3950. <description>&lt;h3&gt;SMD- 4 Pin Right Angle &lt;/h3&gt;
  3951. &lt;p&gt;Specifications:
  3952. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3953. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3954. &lt;/ul&gt;&lt;/p&gt;
  3955. &lt;p&gt;Example device(s):
  3956. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3957. &lt;/ul&gt;&lt;/p&gt;</description>
  3958. <wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/>
  3959. <wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/>
  3960. <wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/>
  3961. <wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/>
  3962. <wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/>
  3963. <circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  3964. <smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  3965. <smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  3966. <smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3967. <smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3968. <smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3969. <smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3970. <text x="-1.397" y="-2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3971. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3972. </package>
  3973. <package name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:footprint:37715/1" library_version="1">
  3974. <description>&lt;h3&gt;SMD - 4 Pin Vertical Connector&lt;/h3&gt;
  3975. &lt;p&gt;Specifications:
  3976. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3977. &lt;li&gt;SMD Pad count:8&lt;/li&gt;
  3978. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3979. &lt;/ul&gt;&lt;/p&gt;
  3980. &lt;p&gt;Example device(s):
  3981. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3982. &lt;/ul&gt;&lt;/p&gt;</description>
  3983. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  3984. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  3985. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  3986. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  3987. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  3988. <wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/>
  3989. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  3990. <wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/>
  3991. <wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/>
  3992. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  3993. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  3994. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  3995. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  3996. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  3997. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  3998. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  3999. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4000. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4001. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4002. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4003. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4004. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4005. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4006. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4007. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4008. <text x="-0.508" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4009. </package>
  4010. <package name="1X04_SMD_LONG" urn="urn:adsk.eagle:footprint:37716/1" library_version="1">
  4011. <description>&lt;h3&gt;SMD - 4 Pin w/ Long Solder Pads&lt;/h3&gt;
  4012. No silk, but tDocu layer shows pin position.
  4013. &lt;p&gt;Specifications:
  4014. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4015. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4016. &lt;/ul&gt;&lt;/p&gt;
  4017. &lt;p&gt;Example device(s):
  4018. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4019. &lt;/ul&gt;&lt;/p&gt;</description>
  4020. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  4021. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  4022. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  4023. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4024. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  4025. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  4026. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  4027. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  4028. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  4029. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  4030. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  4031. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  4032. <smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4033. <smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4034. <smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4035. <smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4036. <hole x="-2.54" y="0" drill="1.4"/>
  4037. <hole x="2.54" y="0" drill="1.4"/>
  4038. </package>
  4039. <package name="JST-4-PTH-VERT" urn="urn:adsk.eagle:footprint:37717/1" library_version="1">
  4040. <description>&lt;h3&gt;JST Vertical 4 Pin Plated Through Hole&lt;/h3&gt;
  4041. &lt;p&gt;Specifications:
  4042. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4043. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  4044. &lt;/ul&gt;&lt;/p&gt;
  4045. &lt;p&gt;&lt;a href="http://www.jst-mfg.com/product/pdf/eng/ePH.pdf"&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  4046. &lt;p&gt;Example device(s):
  4047. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4048. &lt;/ul&gt;&lt;/p&gt;</description>
  4049. <wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/>
  4050. <wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/>
  4051. <wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4052. <wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/>
  4053. <wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
  4054. <wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4055. <wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
  4056. <wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/>
  4057. <pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/>
  4058. <pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/>
  4059. <pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/>
  4060. <pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/>
  4061. <text x="-1.4" y="0.75" size="1.27" layer="51">+</text>
  4062. <text x="0.6" y="0.75" size="1.27" layer="51">-</text>
  4063. <text x="2.7" y="0.95" size="0.8" layer="51">Y</text>
  4064. <text x="-3.3" y="0.95" size="0.8" layer="51">B</text>
  4065. <text x="-1.143" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4066. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4067. </package>
  4068. <package name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37718/1" library_version="1">
  4069. <description>&lt;h3&gt;SMD - 4 Pin Right-Angle Female Header&lt;/h3&gt;
  4070. Silk outline shows header location.
  4071. &lt;p&gt;Specifications:
  4072. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4073. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4074. &lt;/ul&gt;&lt;/p&gt;
  4075. &lt;p&gt;Example device(s):
  4076. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4077. &lt;/ul&gt;&lt;/p&gt;</description>
  4078. <wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/>
  4079. <wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/>
  4080. <wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/>
  4081. <wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/>
  4082. <rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="51"/>
  4083. <rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="51"/>
  4084. <rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="51"/>
  4085. <rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="51"/>
  4086. <smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4087. <smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4088. <smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4089. <smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4090. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4091. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4092. </package>
  4093. </packages>
  4094. <packages3d>
  4095. <package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1">
  4096. <description>Plated Through Hole
  4097. Specifications:
  4098. Pin count:2
  4099. Pin pitch:0.1"
  4100. Example device(s):
  4101. CONN_02
  4102. </description>
  4103. <packageinstances>
  4104. <packageinstance name="1X02"/>
  4105. </packageinstances>
  4106. </package3d>
  4107. <package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1">
  4108. <description>Molex 2-Pin Plated Through-Hole
  4109. Specifications:
  4110. Pin count:2
  4111. Pin pitch:0.1"
  4112. Datasheet referenced for footprint
  4113. Example device(s):
  4114. CONN_02
  4115. </description>
  4116. <packageinstances>
  4117. <packageinstance name="MOLEX-1X2"/>
  4118. </packageinstances>
  4119. </package3d>
  4120. <package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1">
  4121. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH
  4122. Specifications:
  4123. Pin count: 2
  4124. Pin pitch: 3.5mm/138mil
  4125. Datasheet referenced for footprint
  4126. Example device(s):
  4127. CONN_02
  4128. </description>
  4129. <packageinstances>
  4130. <packageinstance name="SCREWTERMINAL-3.5MM-2"/>
  4131. </packageinstances>
  4132. </package3d>
  4133. <package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1">
  4134. <description>JST-Right Angle Male Header SMT
  4135. Specifications:
  4136. Pin count: 2
  4137. Pin pitch: 2mm
  4138. Datasheet referenced for footprint
  4139. Example device(s):
  4140. CONN_02
  4141. JST_2MM_MALE
  4142. </description>
  4143. <packageinstances>
  4144. <packageinstance name="JST-2-SMD"/>
  4145. </packageinstances>
  4146. </package3d>
  4147. <package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1">
  4148. <description>Plated Through Hole
  4149. Specifications:
  4150. Pin count:2
  4151. Pin pitch:0.15"
  4152. Example device(s):
  4153. CONN_02
  4154. </description>
  4155. <packageinstances>
  4156. <packageinstance name="1X02_BIG"/>
  4157. </packageinstances>
  4158. </package3d>
  4159. <package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1">
  4160. <description>JST-Vertical Male Header SMT
  4161. Specifications:
  4162. Pin count: 2
  4163. Pin pitch: 2mm
  4164. Datasheet referenced for footprint
  4165. Example device(s):
  4166. CONN_02
  4167. </description>
  4168. <packageinstances>
  4169. <packageinstance name="JST-2-SMD-VERT"/>
  4170. </packageinstances>
  4171. </package3d>
  4172. <package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1">
  4173. <description>Screw Terminal 5mm Pitch -2 Pin PTH
  4174. Specifications:
  4175. Pin count: 2
  4176. Pin pitch: 5mm/197mil
  4177. Datasheet referenced for footprint
  4178. Example device(s):
  4179. CONN_02
  4180. </description>
  4181. <packageinstances>
  4182. <packageinstance name="SCREWTERMINAL-5MM-2"/>
  4183. </packageinstances>
  4184. </package3d>
  4185. <package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1">
  4186. <description>Plated Through Hole - Locking Footprint
  4187. Holes are staggered by 0.005" from center to hold pins while soldering.
  4188. Specifications:
  4189. Pin count:2
  4190. Pin pitch:0.1"
  4191. Example device(s):
  4192. CONN_02
  4193. </description>
  4194. <packageinstances>
  4195. <packageinstance name="1X02_LOCK"/>
  4196. </packageinstances>
  4197. </package3d>
  4198. <package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1">
  4199. <description>Molex 2-Pin Plated Through-Hole Locking Footprint
  4200. Holes are offset from center by 0.005" to hold pins in place during soldering.
  4201. Specifications:
  4202. Pin count:2
  4203. Pin pitch:0.1"
  4204. Datasheet referenced for footprint
  4205. Example device(s):
  4206. CONN_02
  4207. </description>
  4208. <packageinstances>
  4209. <packageinstance name="MOLEX-1X2_LOCK"/>
  4210. </packageinstances>
  4211. </package3d>
  4212. <package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1">
  4213. <description>Plated Through Hole - Long Pads with Locking Footprint
  4214. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  4215. Specifications:
  4216. Pin count:2
  4217. Pin pitch:0.1"
  4218. Example device(s):
  4219. CONN_02
  4220. </description>
  4221. <packageinstances>
  4222. <packageinstance name="1X02_LOCK_LONGPADS"/>
  4223. </packageinstances>
  4224. </package3d>
  4225. <package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1">
  4226. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking
  4227. Holes are offset from center 0.005" to hold pins in place during soldering.
  4228. Specifications:
  4229. Pin count: 2
  4230. Pin pitch: 3.5mm/138mil
  4231. Datasheet referenced for footprint
  4232. Example device(s):
  4233. CONN_02
  4234. </description>
  4235. <packageinstances>
  4236. <packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/>
  4237. </packageinstances>
  4238. </package3d>
  4239. <package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1">
  4240. <description>Plated Through Hole - Long Pads without Silk Outline
  4241. Specifications:
  4242. Pin count:2
  4243. Pin pitch:0.1"
  4244. Example device(s):
  4245. CONN_02
  4246. </description>
  4247. <packageinstances>
  4248. <packageinstance name="1X02_LONGPADS"/>
  4249. </packageinstances>
  4250. </package3d>
  4251. <package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1">
  4252. <description>Plated Through Hole - No Silk Outline
  4253. Specifications:
  4254. Pin count:2
  4255. Pin pitch:0.1"
  4256. Example device(s):
  4257. CONN_02
  4258. </description>
  4259. <packageinstances>
  4260. <packageinstance name="1X02_NO_SILK"/>
  4261. </packageinstances>
  4262. </package3d>
  4263. <package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1">
  4264. <description>JST 2 Pin Right Angle Plated Through Hole
  4265. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4266. Specifications:
  4267. Pin count: 2
  4268. Pin pitch:2mm
  4269. Datasheet referenced for footprint
  4270. Example device(s):
  4271. CONN_02
  4272. </description>
  4273. <packageinstances>
  4274. <packageinstance name="JST-2-PTH"/>
  4275. </packageinstances>
  4276. </package3d>
  4277. <package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1">
  4278. <description>Plated Through Hole - 0.1" holes
  4279. Specifications:
  4280. Pin count:2
  4281. Pin pitch:0.2"
  4282. Example device(s):
  4283. CONN_02
  4284. </description>
  4285. <packageinstances>
  4286. <packageinstance name="1X02_XTRA_BIG"/>
  4287. </packageinstances>
  4288. </package3d>
  4289. <package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1">
  4290. <description>Pogo Pins Connector - No Silk Outline
  4291. Specifications:
  4292. Pin count:2
  4293. Pin pitch:0.1"
  4294. Example device(s):
  4295. CONN_02
  4296. </description>
  4297. <packageinstances>
  4298. <packageinstance name="1X02_PP_HOLES_ONLY"/>
  4299. </packageinstances>
  4300. </package3d>
  4301. <package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1">
  4302. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline
  4303. Specifications:
  4304. Pin count: 2
  4305. Pin pitch: 3.5mm/138mil
  4306. Datasheet referenced for footprint
  4307. Example device(s):
  4308. CONN_02
  4309. </description>
  4310. <packageinstances>
  4311. <packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/>
  4312. </packageinstances>
  4313. </package3d>
  4314. <package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1">
  4315. <description>JST 2 Pin Right Angle Plated Through Hole- No Silk
  4316. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4317. No silk outline of connector.
  4318. Specifications:
  4319. Pin count: 2
  4320. Pin pitch:2mm
  4321. Datasheet referenced for footprint
  4322. Example device(s):
  4323. CONN_02
  4324. </description>
  4325. <packageinstances>
  4326. <packageinstance name="JST-2-PTH-NS"/>
  4327. </packageinstances>
  4328. </package3d>
  4329. <package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1">
  4330. <description>JST 2 Pin Right Angle Plated Through Hole - KIT
  4331. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4332. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  4333. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  4334. Specifications:
  4335. Pin count: 2
  4336. Pin pitch:2mm
  4337. Datasheet referenced for footprint
  4338. Example device(s):
  4339. CONN_02
  4340. </description>
  4341. <packageinstances>
  4342. <packageinstance name="JST-2-PTH-KIT"/>
  4343. </packageinstances>
  4344. </package3d>
  4345. <package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1">
  4346. <description>Spring Terminal- PCB Mount 2 Pin PTH
  4347. tDocu marks the spring arms
  4348. Specifications:
  4349. Pin count: 4
  4350. Pin pitch: 0.1"
  4351. Datasheet referenced for footprint
  4352. Example device(s):
  4353. CONN_02
  4354. </description>
  4355. <packageinstances>
  4356. <packageinstance name="SPRINGTERMINAL-2.54MM-2"/>
  4357. </packageinstances>
  4358. </package3d>
  4359. <package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1">
  4360. <description>2 Pin Screw Terminal - 2.54mm
  4361. Specifications:
  4362. Pin count:2
  4363. Pin pitch:0.1"
  4364. Example device(s):
  4365. CONN_02
  4366. </description>
  4367. <packageinstances>
  4368. <packageinstance name="1X02_2.54_SCREWTERM"/>
  4369. </packageinstances>
  4370. </package3d>
  4371. <package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1">
  4372. <description>2 pin poke-home connector
  4373. part number 2062-2P from STA</description>
  4374. <packageinstances>
  4375. <packageinstance name="1X02_POKEHOME"/>
  4376. </packageinstances>
  4377. </package3d>
  4378. <package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1">
  4379. <packageinstances>
  4380. <packageinstance name="1X02_RA_PTH_FEMALE"/>
  4381. </packageinstances>
  4382. </package3d>
  4383. <package3d name="1X08" urn="urn:adsk.eagle:package:38138/1" type="box" library_version="1">
  4384. <description>Plated Through Hole -8 Pin
  4385. Specifications:
  4386. Pin count:8
  4387. Pin pitch:0.1"
  4388. Example device(s):
  4389. CONN_08
  4390. </description>
  4391. <packageinstances>
  4392. <packageinstance name="1X08"/>
  4393. </packageinstances>
  4394. </package3d>
  4395. <package3d name="1X08_LOCK" urn="urn:adsk.eagle:package:38137/1" type="box" library_version="1">
  4396. <description>Plated Through Hole -8 Pin Locking Footprint
  4397. Holes are offset 0.005", to hold pins in place during soldering.
  4398. Specifications:
  4399. Pin count:8
  4400. Pin pitch:0.1"
  4401. Example device(s):
  4402. CONN_08
  4403. </description>
  4404. <packageinstances>
  4405. <packageinstance name="1X08_LOCK"/>
  4406. </packageinstances>
  4407. </package3d>
  4408. <package3d name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38140/1" type="box" library_version="1">
  4409. <description>Plated Through Hole -8 Pin Locking Footprint with Long Pads
  4410. Holes are offset 0.005", to hold pins in place during soldering.
  4411. Specifications:
  4412. Pin count:8
  4413. Pin pitch:0.1"
  4414. Example device(s):
  4415. CONN_08
  4416. </description>
  4417. <packageinstances>
  4418. <packageinstance name="1X08_LOCK_LONGPADS"/>
  4419. </packageinstances>
  4420. </package3d>
  4421. <package3d name="1X08_LONGPADS" urn="urn:adsk.eagle:package:38142/1" type="box" library_version="1">
  4422. <description>Plated Through Hole -8 Pin Long Pads
  4423. Specifications:
  4424. Pin count:8
  4425. Pin pitch:0.1"
  4426. Example device(s):
  4427. CONN_08
  4428. </description>
  4429. <packageinstances>
  4430. <packageinstance name="1X08_LONGPADS"/>
  4431. </packageinstances>
  4432. </package3d>
  4433. <package3d name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:package:38143/1" type="box" library_version="1">
  4434. <description>Screw Terminal 3.5mm Pitch -8 Pin PTH
  4435. Specifications:
  4436. Pin count: 8
  4437. Pin pitch: 3.5mm/138mil
  4438. Datasheet referenced for footprint
  4439. Example device(s):
  4440. CONN_08
  4441. </description>
  4442. <packageinstances>
  4443. <packageinstance name="SCREWTERMINAL-3.5MM-8"/>
  4444. </packageinstances>
  4445. </package3d>
  4446. <package3d name="1X08_SMD" urn="urn:adsk.eagle:package:38144/1" type="box" library_version="1">
  4447. <description>SMD -8 Pin Vertical Female
  4448. Specifications:
  4449. Pin count:8
  4450. Pin pitch:0.1"
  4451. Datasheet referenced for footprint
  4452. Example device(s):
  4453. CONN_08
  4454. </description>
  4455. <packageinstances>
  4456. <packageinstance name="1X08_SMD"/>
  4457. </packageinstances>
  4458. </package3d>
  4459. <package3d name="1X08_SMD_ALT" urn="urn:adsk.eagle:package:38148/1" type="box" library_version="1">
  4460. <description>SMD -8 Pin Vertical Female
  4461. Alternate pin configuration
  4462. Specifications:
  4463. Pin count:8
  4464. Pin pitch:0.1"
  4465. Datasheet referenced for footprint
  4466. Example device(s):
  4467. CONN_08
  4468. </description>
  4469. <packageinstances>
  4470. <packageinstance name="1X08_SMD_ALT"/>
  4471. </packageinstances>
  4472. </package3d>
  4473. <package3d name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:package:38146/1" type="box" library_version="1">
  4474. <description>SMD -8 Pin Vertical Female
  4475. Combined footprint configuration
  4476. Specifications:
  4477. Pin count:8
  4478. Pin pitch:0.1"
  4479. Datasheet referenced for footprint
  4480. Example device(s):
  4481. CONN_08
  4482. </description>
  4483. <packageinstances>
  4484. <packageinstance name="1X08_SMD_COMBINED"/>
  4485. </packageinstances>
  4486. </package3d>
  4487. <package3d name="BM08B-SRSS-TB" urn="urn:adsk.eagle:package:38145/1" type="box" library_version="1">
  4488. <description>JST Vertical Crimp Connect
  4489. Specifications:
  4490. Pin count: 8
  4491. Pin pitch:1mm
  4492. Datasheet referenced for footprint
  4493. Example device(s):
  4494. CONN_08
  4495. </description>
  4496. <packageinstances>
  4497. <packageinstance name="BM08B-SRSS-TB"/>
  4498. </packageinstances>
  4499. </package3d>
  4500. <package3d name="1X08_SMD_MALE" urn="urn:adsk.eagle:package:38150/1" type="box" library_version="1">
  4501. <description>SMD -8 Pin Vertical Male
  4502. Specifications:
  4503. Pin count:8
  4504. Pin pitch:0.1"
  4505. Datasheet referenced for footprint
  4506. Example device(s):
  4507. CONN_08
  4508. </description>
  4509. <packageinstances>
  4510. <packageinstance name="1X08_SMD_MALE"/>
  4511. </packageinstances>
  4512. </package3d>
  4513. <package3d name="1X08_NO_SILK" urn="urn:adsk.eagle:package:38149/1" type="box" library_version="1">
  4514. <description>Plated Through Hole -8 Pin No Silk
  4515. Specifications:
  4516. Pin count:8
  4517. Pin pitch:0.1"
  4518. Example device(s):
  4519. CONN_08
  4520. </description>
  4521. <packageinstances>
  4522. <packageinstance name="1X08_NO_SILK"/>
  4523. </packageinstances>
  4524. </package3d>
  4525. <package3d name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:package:38147/1" type="box" library_version="1">
  4526. <description>Plated Through Hole -8 Pin Locking Footprint No Silk
  4527. Holes are offset 0.005", to hold pins in place during soldering.
  4528. Specifications:
  4529. Pin count:8
  4530. Pin pitch:0.1"
  4531. Example device(s):
  4532. CONN_08
  4533. </description>
  4534. <packageinstances>
  4535. <packageinstance name="1X08_LOCK_NO_SILK"/>
  4536. </packageinstances>
  4537. </package3d>
  4538. <package3d name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:package:38151/1" type="box" library_version="1">
  4539. <description>Plated Through Hole -8 Pin Locking Female Headers
  4540. Holes are offset 0.005" to hold pins in place during soldering.
  4541. Specifications:
  4542. Pin count:8
  4543. Pin pitch:0.1"
  4544. Datasheet referenced for footprint
  4545. Example device(s):
  4546. CONN_08
  4547. </description>
  4548. <packageinstances>
  4549. <packageinstance name="1X08_FEMALE_LOCK"/>
  4550. </packageinstances>
  4551. </package3d>
  4552. <package3d name="1X04" urn="urn:adsk.eagle:package:38085/1" type="box" library_version="1">
  4553. <description>Plated Through Hole - 4 Pin
  4554. Specifications:
  4555. Pin count:4
  4556. Pin pitch:0.1"
  4557. Example device(s):
  4558. CONN_04
  4559. </description>
  4560. <packageinstances>
  4561. <packageinstance name="1X04"/>
  4562. </packageinstances>
  4563. </package3d>
  4564. <package3d name="MOLEX-1X4" urn="urn:adsk.eagle:package:38087/1" type="box" library_version="1">
  4565. <description>Molex 4-Pin Plated Through-Hole
  4566. Specifications:
  4567. Pin count:4
  4568. Pin pitch:0.1"
  4569. Datasheet referenced for footprint
  4570. Example device(s):
  4571. CONN_04
  4572. </description>
  4573. <packageinstances>
  4574. <packageinstance name="MOLEX-1X4"/>
  4575. </packageinstances>
  4576. </package3d>
  4577. <package3d name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:package:38090/1" type="box" library_version="1">
  4578. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH
  4579. Specifications:
  4580. Pin count: 4
  4581. Pin pitch: 3.5mm/138mil
  4582. Datasheet referenced for footprint
  4583. Example device(s):
  4584. CONN_04
  4585. </description>
  4586. <packageinstances>
  4587. <packageinstance name="SCREWTERMINAL-3.5MM-4"/>
  4588. </packageinstances>
  4589. </package3d>
  4590. <package3d name="1X04_1.27MM" urn="urn:adsk.eagle:package:38086/1" type="box" library_version="1">
  4591. <description>Plated Through Hole - 4 Pin
  4592. Specifications:
  4593. Pin count:4
  4594. Pin pitch: 1.27mm
  4595. Example device(s):
  4596. CONN_04
  4597. </description>
  4598. <packageinstances>
  4599. <packageinstance name="1X04_1.27MM"/>
  4600. </packageinstances>
  4601. </package3d>
  4602. <package3d name="1X04_LOCK" urn="urn:adsk.eagle:package:38089/1" type="box" library_version="1">
  4603. <description>Plated Through Hole - 4 Pin Locking Footprint
  4604. Pins are offset 0.005" from center to lock pins in place during soldering.
  4605. Specifications:
  4606. Pin count:4
  4607. Pin pitch:0.1"
  4608. Example device(s):
  4609. CONN_04
  4610. </description>
  4611. <packageinstances>
  4612. <packageinstance name="1X04_LOCK"/>
  4613. </packageinstances>
  4614. </package3d>
  4615. <package3d name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38091/1" type="box" library_version="1">
  4616. <description>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint
  4617. Holes are offset 0.005" from center to lock pins in place during soldering.
  4618. Specifications:
  4619. Pin count:4
  4620. Pin pitch:0.1"
  4621. Example device(s):
  4622. CONN_04
  4623. </description>
  4624. <packageinstances>
  4625. <packageinstance name="1X04_LOCK_LONGPADS"/>
  4626. </packageinstances>
  4627. </package3d>
  4628. <package3d name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:package:38092/1" type="box" library_version="1">
  4629. <description>Molex 4-Pin Plated Through-Hole Locking
  4630. Holes are offset 0.005" from center to hold pins in place during soldering.
  4631. Specifications:
  4632. Pin count:4
  4633. Pin pitch:0.1"
  4634. Datasheet referenced for footprint
  4635. Example device(s):
  4636. CONN_04
  4637. </description>
  4638. <packageinstances>
  4639. <packageinstance name="MOLEX-1X4_LOCK"/>
  4640. </packageinstances>
  4641. </package3d>
  4642. <package3d name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:package:38093/1" type="box" library_version="1">
  4643. <description>SMD - 4 Pin Right Angle Male Header
  4644. tDocu layer shows pin locations.
  4645. Specifications:
  4646. Pin count:4
  4647. Pin pitch:0.1"
  4648. Example device(s):
  4649. CONN_04
  4650. </description>
  4651. <packageinstances>
  4652. <packageinstance name="1X04_SMD_RA_MALE"/>
  4653. </packageinstances>
  4654. </package3d>
  4655. <package3d name="1X04_LONGPADS" urn="urn:adsk.eagle:package:38098/1" type="box" library_version="1">
  4656. <description>Plated Through Hole - 4 Pin Long Pads
  4657. Specifications:
  4658. Pin count:4
  4659. Pin pitch:0.1"
  4660. Example device(s):
  4661. CONN_04
  4662. </description>
  4663. <packageinstances>
  4664. <packageinstance name="1X04_LONGPADS"/>
  4665. </packageinstances>
  4666. </package3d>
  4667. <package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1">
  4668. <description>Plated Through Hole - 4 Pin No Silk Outline
  4669. Specifications:
  4670. Pin count:4
  4671. Pin pitch:0.1"
  4672. Example device(s):
  4673. CONN_04
  4674. </description>
  4675. <packageinstances>
  4676. <packageinstance name="1X04_NO_SILK"/>
  4677. </packageinstances>
  4678. </package3d>
  4679. <package3d name="JST-4-PTH" urn="urn:adsk.eagle:package:38101/1" type="box" library_version="1">
  4680. <description>JST Right Angle 4 Pin Plated Through Hole
  4681. Specifications:
  4682. Pin count: 4
  4683. Pin pitch: 2mm
  4684. Datasheet referenced for footprint
  4685. Example device(s):
  4686. CONN_04
  4687. </description>
  4688. <packageinstances>
  4689. <packageinstance name="JST-4-PTH"/>
  4690. </packageinstances>
  4691. </package3d>
  4692. <package3d name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:package:38095/1" type="box" library_version="1">
  4693. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking
  4694. Holes are offset 0.005" from center to hold pins in place during soldering.
  4695. Specifications:
  4696. Pin count: 4
  4697. Pin pitch: 3.5mm/138mil
  4698. Datasheet referenced for footprint
  4699. Example device(s):
  4700. CONN_04
  4701. </description>
  4702. <packageinstances>
  4703. <packageinstance name="SCREWTERMINAL-3.5MM-4_LOCK"/>
  4704. </packageinstances>
  4705. </package3d>
  4706. <package3d name="1X04_1MM_RA" urn="urn:adsk.eagle:package:38096/1" type="box" library_version="1">
  4707. <description>SMD- 4 Pin Right Angle
  4708. Specifications:
  4709. Pin count:4
  4710. Pin pitch:0.1"
  4711. Example device(s):
  4712. CONN_04
  4713. </description>
  4714. <packageinstances>
  4715. <packageinstance name="1X04_1MM_RA"/>
  4716. </packageinstances>
  4717. </package3d>
  4718. <package3d name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:package:38097/1" type="box" library_version="1">
  4719. <description>SMD - 4 Pin Vertical Connector
  4720. Specifications:
  4721. Pin count:4
  4722. SMD Pad count:8
  4723. Pin pitch:0.1"
  4724. Example device(s):
  4725. CONN_04
  4726. </description>
  4727. <packageinstances>
  4728. <packageinstance name="1X04_SMD_VERTICAL_COMBO"/>
  4729. </packageinstances>
  4730. </package3d>
  4731. <package3d name="1X04_SMD_LONG" urn="urn:adsk.eagle:package:38099/1" type="box" library_version="1">
  4732. <description>SMD - 4 Pin w/ Long Solder Pads
  4733. No silk, but tDocu layer shows pin position.
  4734. Specifications:
  4735. Pin count:4
  4736. Pin pitch:0.1"
  4737. Example device(s):
  4738. CONN_04
  4739. </description>
  4740. <packageinstances>
  4741. <packageinstance name="1X04_SMD_LONG"/>
  4742. </packageinstances>
  4743. </package3d>
  4744. <package3d name="JST-4-PTH-VERT" urn="urn:adsk.eagle:package:38102/1" type="box" library_version="1">
  4745. <description>JST Vertical 4 Pin Plated Through Hole
  4746. Specifications:
  4747. Pin count: 4
  4748. Pin pitch: 2mm
  4749. Datasheet referenced for footprint
  4750. Example device(s):
  4751. CONN_04
  4752. </description>
  4753. <packageinstances>
  4754. <packageinstance name="JST-4-PTH-VERT"/>
  4755. </packageinstances>
  4756. </package3d>
  4757. <package3d name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38100/1" type="box" library_version="1">
  4758. <description>SMD - 4 Pin Right-Angle Female Header
  4759. Silk outline shows header location.
  4760. Specifications:
  4761. Pin count:4
  4762. Pin pitch:0.1"
  4763. Example device(s):
  4764. CONN_04
  4765. </description>
  4766. <packageinstances>
  4767. <packageinstance name="1X04_SMD_RA_FEMALE"/>
  4768. </packageinstances>
  4769. </package3d>
  4770. </packages3d>
  4771. <symbols>
  4772. <symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1">
  4773. <description>&lt;h3&gt;2 Pin Connection&lt;/h3&gt;</description>
  4774. <wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  4775. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  4776. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  4777. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  4778. <wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  4779. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  4780. <text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4781. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4782. <pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4783. <pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4784. </symbol>
  4785. <symbol name="CONN_08" urn="urn:adsk.eagle:symbol:37759/1" library_version="1">
  4786. <description>&lt;h3&gt; 8 Pin Connection&lt;/h3&gt;</description>
  4787. <wire x1="1.27" y1="-10.16" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  4788. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  4789. <wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/>
  4790. <wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.6096" layer="94"/>
  4791. <wire x1="-5.08" y1="12.7" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  4792. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  4793. <wire x1="-5.08" y1="12.7" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  4794. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  4795. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  4796. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  4797. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/>
  4798. <wire x1="-1.27" y1="10.16" x2="0" y2="10.16" width="0.6096" layer="94"/>
  4799. <text x="-5.08" y="-12.446" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4800. <text x="-5.08" y="13.208" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4801. <pin name="1" x="5.08" y="-7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4802. <pin name="2" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4803. <pin name="3" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4804. <pin name="4" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4805. <pin name="5" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4806. <pin name="6" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4807. <pin name="7" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4808. <pin name="8" x="5.08" y="10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4809. </symbol>
  4810. <symbol name="CONN_04" urn="urn:adsk.eagle:symbol:37701/1" library_version="1">
  4811. <description>&lt;h3&gt;4 Pin Connection&lt;/h3&gt;</description>
  4812. <wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  4813. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  4814. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  4815. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  4816. <wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  4817. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  4818. <wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  4819. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  4820. <text x="-5.08" y="-7.366" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4821. <text x="-5.08" y="8.128" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4822. <pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4823. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4824. <pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4825. <pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4826. </symbol>
  4827. </symbols>
  4828. <devicesets>
  4829. <deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1">
  4830. <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;
  4831. &lt;p&gt;&lt;/p&gt;
  4832. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  4833. &lt;ul&gt;
  4834. &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;
  4835. &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;
  4836. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  4837. &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;
  4838. &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;
  4839. &lt;/ul&gt;
  4840. &lt;p&gt;&lt;/p&gt;
  4841. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  4842. &lt;ul&gt;
  4843. &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;
  4844. &lt;/ul&gt;
  4845. &lt;p&gt;&lt;/p&gt;
  4846. &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;
  4847. &lt;ul&gt;
  4848. &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;
  4849. &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;
  4850. &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;
  4851. &lt;p&gt;&lt;/p&gt;
  4852. &lt;/ul&gt;
  4853. &lt;p&gt;&lt;/p&gt;
  4854. &lt;b&gt;Special notes:&lt;/b&gt;
  4855. Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.&lt;br&gt;&lt;br&gt;
  4856. 2.54_SCREWTERM for use with PRT-10571.&lt;br&gt;&lt;br&gt;
  4857. 3.5mm Screw Terminal footprints for PRT-08084&lt;br&gt;&lt;br&gt;
  4858. 5mm Screw Terminal footprints for use with PRT-08432</description>
  4859. <gates>
  4860. <gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/>
  4861. </gates>
  4862. <devices>
  4863. <device name="" package="1X02">
  4864. <connects>
  4865. <connect gate="G$1" pin="1" pad="1"/>
  4866. <connect gate="G$1" pin="2" pad="2"/>
  4867. </connects>
  4868. <package3dinstances>
  4869. <package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/>
  4870. </package3dinstances>
  4871. <technologies>
  4872. <technology name=""/>
  4873. </technologies>
  4874. </device>
  4875. <device name="POLAR" package="MOLEX-1X2">
  4876. <connects>
  4877. <connect gate="G$1" pin="1" pad="1"/>
  4878. <connect gate="G$1" pin="2" pad="2"/>
  4879. </connects>
  4880. <package3dinstances>
  4881. <package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/>
  4882. </package3dinstances>
  4883. <technologies>
  4884. <technology name="">
  4885. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  4886. </technology>
  4887. </technologies>
  4888. </device>
  4889. <device name="3.5MM" package="SCREWTERMINAL-3.5MM-2">
  4890. <connects>
  4891. <connect gate="G$1" pin="1" pad="1"/>
  4892. <connect gate="G$1" pin="2" pad="2"/>
  4893. </connects>
  4894. <package3dinstances>
  4895. <package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/>
  4896. </package3dinstances>
  4897. <technologies>
  4898. <technology name="">
  4899. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  4900. </technology>
  4901. </technologies>
  4902. </device>
  4903. <device name="-JST-2MM-SMT" package="JST-2-SMD">
  4904. <connects>
  4905. <connect gate="G$1" pin="1" pad="2"/>
  4906. <connect gate="G$1" pin="2" pad="1"/>
  4907. </connects>
  4908. <package3dinstances>
  4909. <package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/>
  4910. </package3dinstances>
  4911. <technologies>
  4912. <technology name="">
  4913. <attribute name="PROD_ID" value="CONN-11443"/>
  4914. </technology>
  4915. </technologies>
  4916. </device>
  4917. <device name="PTH2" package="1X02_BIG">
  4918. <connects>
  4919. <connect gate="G$1" pin="1" pad="P$1"/>
  4920. <connect gate="G$1" pin="2" pad="P$2"/>
  4921. </connects>
  4922. <package3dinstances>
  4923. <package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/>
  4924. </package3dinstances>
  4925. <technologies>
  4926. <technology name=""/>
  4927. </technologies>
  4928. </device>
  4929. <device name="4UCON-15767" package="JST-2-SMD-VERT">
  4930. <connects>
  4931. <connect gate="G$1" pin="1" pad="GND"/>
  4932. <connect gate="G$1" pin="2" pad="VCC"/>
  4933. </connects>
  4934. <package3dinstances>
  4935. <package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/>
  4936. </package3dinstances>
  4937. <technologies>
  4938. <technology name=""/>
  4939. </technologies>
  4940. </device>
  4941. <device name="5MM" package="SCREWTERMINAL-5MM-2">
  4942. <connects>
  4943. <connect gate="G$1" pin="1" pad="1"/>
  4944. <connect gate="G$1" pin="2" pad="2"/>
  4945. </connects>
  4946. <package3dinstances>
  4947. <package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/>
  4948. </package3dinstances>
  4949. <technologies>
  4950. <technology name="">
  4951. <attribute name="SF_SKU" value="PRT-08432" constant="no"/>
  4952. </technology>
  4953. </technologies>
  4954. </device>
  4955. <device name="LOCK" package="1X02_LOCK">
  4956. <connects>
  4957. <connect gate="G$1" pin="1" pad="1"/>
  4958. <connect gate="G$1" pin="2" pad="2"/>
  4959. </connects>
  4960. <package3dinstances>
  4961. <package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/>
  4962. </package3dinstances>
  4963. <technologies>
  4964. <technology name=""/>
  4965. </technologies>
  4966. </device>
  4967. <device name="POLAR_LOCK" package="MOLEX-1X2_LOCK">
  4968. <connects>
  4969. <connect gate="G$1" pin="1" pad="1"/>
  4970. <connect gate="G$1" pin="2" pad="2"/>
  4971. </connects>
  4972. <package3dinstances>
  4973. <package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/>
  4974. </package3dinstances>
  4975. <technologies>
  4976. <technology name="">
  4977. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  4978. </technology>
  4979. </technologies>
  4980. </device>
  4981. <device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS">
  4982. <connects>
  4983. <connect gate="G$1" pin="1" pad="1"/>
  4984. <connect gate="G$1" pin="2" pad="2"/>
  4985. </connects>
  4986. <package3dinstances>
  4987. <package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/>
  4988. </package3dinstances>
  4989. <technologies>
  4990. <technology name=""/>
  4991. </technologies>
  4992. </device>
  4993. <device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK">
  4994. <connects>
  4995. <connect gate="G$1" pin="1" pad="1"/>
  4996. <connect gate="G$1" pin="2" pad="2"/>
  4997. </connects>
  4998. <package3dinstances>
  4999. <package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/>
  5000. </package3dinstances>
  5001. <technologies>
  5002. <technology name="">
  5003. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5004. </technology>
  5005. </technologies>
  5006. </device>
  5007. <device name="PTH3" package="1X02_LONGPADS">
  5008. <connects>
  5009. <connect gate="G$1" pin="1" pad="1"/>
  5010. <connect gate="G$1" pin="2" pad="2"/>
  5011. </connects>
  5012. <package3dinstances>
  5013. <package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/>
  5014. </package3dinstances>
  5015. <technologies>
  5016. <technology name=""/>
  5017. </technologies>
  5018. </device>
  5019. <device name="1X02_NO_SILK" package="1X02_NO_SILK">
  5020. <connects>
  5021. <connect gate="G$1" pin="1" pad="1"/>
  5022. <connect gate="G$1" pin="2" pad="2"/>
  5023. </connects>
  5024. <package3dinstances>
  5025. <package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/>
  5026. </package3dinstances>
  5027. <technologies>
  5028. <technology name=""/>
  5029. </technologies>
  5030. </device>
  5031. <device name="JST-PTH-2" package="JST-2-PTH">
  5032. <connects>
  5033. <connect gate="G$1" pin="1" pad="1"/>
  5034. <connect gate="G$1" pin="2" pad="2"/>
  5035. </connects>
  5036. <package3dinstances>
  5037. <package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/>
  5038. </package3dinstances>
  5039. <technologies>
  5040. <technology name="">
  5041. <attribute name="PROD_ID" value="CONN-09863" constant="no"/>
  5042. <attribute name="SKU" value="PRT-09914" constant="no"/>
  5043. </technology>
  5044. </technologies>
  5045. </device>
  5046. <device name="PTH4" package="1X02_XTRA_BIG">
  5047. <connects>
  5048. <connect gate="G$1" pin="1" pad="1"/>
  5049. <connect gate="G$1" pin="2" pad="2"/>
  5050. </connects>
  5051. <package3dinstances>
  5052. <package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/>
  5053. </package3dinstances>
  5054. <technologies>
  5055. <technology name=""/>
  5056. </technologies>
  5057. </device>
  5058. <device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY">
  5059. <connects>
  5060. <connect gate="G$1" pin="1" pad="1"/>
  5061. <connect gate="G$1" pin="2" pad="2"/>
  5062. </connects>
  5063. <package3dinstances>
  5064. <package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/>
  5065. </package3dinstances>
  5066. <technologies>
  5067. <technology name=""/>
  5068. </technologies>
  5069. </device>
  5070. <device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS">
  5071. <connects>
  5072. <connect gate="G$1" pin="1" pad="1"/>
  5073. <connect gate="G$1" pin="2" pad="2"/>
  5074. </connects>
  5075. <package3dinstances>
  5076. <package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/>
  5077. </package3dinstances>
  5078. <technologies>
  5079. <technology name="">
  5080. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5081. </technology>
  5082. </technologies>
  5083. </device>
  5084. <device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS">
  5085. <connects>
  5086. <connect gate="G$1" pin="1" pad="1"/>
  5087. <connect gate="G$1" pin="2" pad="2"/>
  5088. </connects>
  5089. <package3dinstances>
  5090. <package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/>
  5091. </package3dinstances>
  5092. <technologies>
  5093. <technology name=""/>
  5094. </technologies>
  5095. </device>
  5096. <device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT">
  5097. <connects>
  5098. <connect gate="G$1" pin="1" pad="1"/>
  5099. <connect gate="G$1" pin="2" pad="2"/>
  5100. </connects>
  5101. <package3dinstances>
  5102. <package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/>
  5103. </package3dinstances>
  5104. <technologies>
  5105. <technology name=""/>
  5106. </technologies>
  5107. </device>
  5108. <device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2">
  5109. <connects>
  5110. <connect gate="G$1" pin="1" pad="1"/>
  5111. <connect gate="G$1" pin="2" pad="2"/>
  5112. </connects>
  5113. <package3dinstances>
  5114. <package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/>
  5115. </package3dinstances>
  5116. <technologies>
  5117. <technology name=""/>
  5118. </technologies>
  5119. </device>
  5120. <device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM">
  5121. <connects>
  5122. <connect gate="G$1" pin="1" pad="P1"/>
  5123. <connect gate="G$1" pin="2" pad="P2"/>
  5124. </connects>
  5125. <package3dinstances>
  5126. <package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/>
  5127. </package3dinstances>
  5128. <technologies>
  5129. <technology name=""/>
  5130. </technologies>
  5131. </device>
  5132. <device name="SMALL_POKEHOME" package="1X02_POKEHOME">
  5133. <connects>
  5134. <connect gate="G$1" pin="1" pad="P1 P3"/>
  5135. <connect gate="G$1" pin="2" pad="P2 P4"/>
  5136. </connects>
  5137. <package3dinstances>
  5138. <package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/>
  5139. </package3dinstances>
  5140. <technologies>
  5141. <technology name="">
  5142. <attribute name="PROD_ID" value="CONN-13512"/>
  5143. </technology>
  5144. </technologies>
  5145. </device>
  5146. <device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE">
  5147. <connects>
  5148. <connect gate="G$1" pin="1" pad="1"/>
  5149. <connect gate="G$1" pin="2" pad="2"/>
  5150. </connects>
  5151. <package3dinstances>
  5152. <package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/>
  5153. </package3dinstances>
  5154. <technologies>
  5155. <technology name="">
  5156. <attribute name="PROD_ID" value="CONN-13700"/>
  5157. </technology>
  5158. </technologies>
  5159. </device>
  5160. </devices>
  5161. </deviceset>
  5162. <deviceset name="CONN_08" urn="urn:adsk.eagle:component:38333/1" prefix="J" uservalue="yes" library_version="1">
  5163. <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;
  5164. &lt;p&gt;&lt;/p&gt;
  5165. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5166. &lt;ul&gt;
  5167. &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;
  5168. &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;
  5169. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5170. &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;
  5171. &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;
  5172. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/9279"&gt; Arduino Stackable Header - 8 Pin&lt;/a&gt; (PRT-09279)&lt;/li&gt;
  5173. &lt;/ul&gt;
  5174. &lt;p&gt;&lt;/p&gt;
  5175. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5176. &lt;ul&gt;
  5177. &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;
  5178. &lt;/ul&gt;
  5179. &lt;p&gt;&lt;/p&gt;
  5180. &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;
  5181. &lt;ul&gt;
  5182. &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;
  5183. &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;
  5184. &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;
  5185. &lt;p&gt;&lt;/p&gt;
  5186. &lt;/ul&gt;
  5187. &lt;p&gt;&lt;/p&gt;
  5188. &lt;b&gt;Special notes:&lt;/b&gt;
  5189. &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
  5190. &lt;p&gt;&lt;/p&gt;
  5191. NOTES ON THE VARIANTS LOCK and LOCK_LONGPADS...
  5192. This footprint was designed to help hold the alignment of a through-hole component (i.e. 6-pin header) while soldering it into place. You may notice that each hole has been shifted either up or down by 0.005 of an inch from it's more standard position (which is a perfectly straight line). This slight alteration caused the pins (the squares in the middle) to touch the edges of the holes. Because they are alternating, it causes a "brace" to hold the component in place. 0.005 has proven to be the perfect amount of "off-center" position when using our standard breakaway headers. Although looks a little odd when you look at the bare footprint, once you have a header in there, the alteration is very hard to notice. Also,if you push a header all the way into place, it is covered up entirely on the bottom side.</description>
  5193. <gates>
  5194. <gate name="G$1" symbol="CONN_08" x="-2.54" y="0"/>
  5195. </gates>
  5196. <devices>
  5197. <device name="&quot;" package="1X08">
  5198. <connects>
  5199. <connect gate="G$1" pin="1" pad="1"/>
  5200. <connect gate="G$1" pin="2" pad="2"/>
  5201. <connect gate="G$1" pin="3" pad="3"/>
  5202. <connect gate="G$1" pin="4" pad="4"/>
  5203. <connect gate="G$1" pin="5" pad="5"/>
  5204. <connect gate="G$1" pin="6" pad="6"/>
  5205. <connect gate="G$1" pin="7" pad="7"/>
  5206. <connect gate="G$1" pin="8" pad="8"/>
  5207. </connects>
  5208. <package3dinstances>
  5209. <package3dinstance package3d_urn="urn:adsk.eagle:package:38138/1"/>
  5210. </package3dinstances>
  5211. <technologies>
  5212. <technology name="">
  5213. <attribute name="PROD_ID" value="CONN-08438"/>
  5214. </technology>
  5215. </technologies>
  5216. </device>
  5217. <device name="LOCK" package="1X08_LOCK">
  5218. <connects>
  5219. <connect gate="G$1" pin="1" pad="1"/>
  5220. <connect gate="G$1" pin="2" pad="2"/>
  5221. <connect gate="G$1" pin="3" pad="3"/>
  5222. <connect gate="G$1" pin="4" pad="4"/>
  5223. <connect gate="G$1" pin="5" pad="5"/>
  5224. <connect gate="G$1" pin="6" pad="6"/>
  5225. <connect gate="G$1" pin="7" pad="7"/>
  5226. <connect gate="G$1" pin="8" pad="8"/>
  5227. </connects>
  5228. <package3dinstances>
  5229. <package3dinstance package3d_urn="urn:adsk.eagle:package:38137/1"/>
  5230. </package3dinstances>
  5231. <technologies>
  5232. <technology name=""/>
  5233. </technologies>
  5234. </device>
  5235. <device name="LOCK_LONGPADS" package="1X08_LOCK_LONGPADS">
  5236. <connects>
  5237. <connect gate="G$1" pin="1" pad="1"/>
  5238. <connect gate="G$1" pin="2" pad="2"/>
  5239. <connect gate="G$1" pin="3" pad="3"/>
  5240. <connect gate="G$1" pin="4" pad="4"/>
  5241. <connect gate="G$1" pin="5" pad="5"/>
  5242. <connect gate="G$1" pin="6" pad="6"/>
  5243. <connect gate="G$1" pin="7" pad="7"/>
  5244. <connect gate="G$1" pin="8" pad="8"/>
  5245. </connects>
  5246. <package3dinstances>
  5247. <package3dinstance package3d_urn="urn:adsk.eagle:package:38140/1"/>
  5248. </package3dinstances>
  5249. <technologies>
  5250. <technology name=""/>
  5251. </technologies>
  5252. </device>
  5253. <device name="LONGPADS" package="1X08_LONGPADS">
  5254. <connects>
  5255. <connect gate="G$1" pin="1" pad="1"/>
  5256. <connect gate="G$1" pin="2" pad="2"/>
  5257. <connect gate="G$1" pin="3" pad="3"/>
  5258. <connect gate="G$1" pin="4" pad="4"/>
  5259. <connect gate="G$1" pin="5" pad="5"/>
  5260. <connect gate="G$1" pin="6" pad="6"/>
  5261. <connect gate="G$1" pin="7" pad="7"/>
  5262. <connect gate="G$1" pin="8" pad="8"/>
  5263. </connects>
  5264. <package3dinstances>
  5265. <package3dinstance package3d_urn="urn:adsk.eagle:package:38142/1"/>
  5266. </package3dinstances>
  5267. <technologies>
  5268. <technology name=""/>
  5269. </technologies>
  5270. </device>
  5271. <device name="3.5MM-8" package="SCREWTERMINAL-3.5MM-8">
  5272. <connects>
  5273. <connect gate="G$1" pin="1" pad="1"/>
  5274. <connect gate="G$1" pin="2" pad="2"/>
  5275. <connect gate="G$1" pin="3" pad="3"/>
  5276. <connect gate="G$1" pin="4" pad="4"/>
  5277. <connect gate="G$1" pin="5" pad="5"/>
  5278. <connect gate="G$1" pin="6" pad="6"/>
  5279. <connect gate="G$1" pin="7" pad="7"/>
  5280. <connect gate="G$1" pin="8" pad="8"/>
  5281. </connects>
  5282. <package3dinstances>
  5283. <package3dinstance package3d_urn="urn:adsk.eagle:package:38143/1"/>
  5284. </package3dinstances>
  5285. <technologies>
  5286. <technology name=""/>
  5287. </technologies>
  5288. </device>
  5289. <device name="SMD-STRAIGHT-FEMALE" package="1X08_SMD">
  5290. <connects>
  5291. <connect gate="G$1" pin="1" pad="1"/>
  5292. <connect gate="G$1" pin="2" pad="2"/>
  5293. <connect gate="G$1" pin="3" pad="3"/>
  5294. <connect gate="G$1" pin="4" pad="4"/>
  5295. <connect gate="G$1" pin="5" pad="5"/>
  5296. <connect gate="G$1" pin="6" pad="6"/>
  5297. <connect gate="G$1" pin="7" pad="7"/>
  5298. <connect gate="G$1" pin="8" pad="8"/>
  5299. </connects>
  5300. <package3dinstances>
  5301. <package3dinstance package3d_urn="urn:adsk.eagle:package:38144/1"/>
  5302. </package3dinstances>
  5303. <technologies>
  5304. <technology name="">
  5305. <attribute name="PROD_ID" value="CONN-10204"/>
  5306. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5307. </technology>
  5308. </technologies>
  5309. </device>
  5310. <device name="SMD-STRAIGHT-ALT-FEMALE" package="1X08_SMD_ALT">
  5311. <connects>
  5312. <connect gate="G$1" pin="1" pad="1"/>
  5313. <connect gate="G$1" pin="2" pad="2"/>
  5314. <connect gate="G$1" pin="3" pad="3"/>
  5315. <connect gate="G$1" pin="4" pad="4"/>
  5316. <connect gate="G$1" pin="5" pad="5"/>
  5317. <connect gate="G$1" pin="6" pad="6"/>
  5318. <connect gate="G$1" pin="7" pad="7"/>
  5319. <connect gate="G$1" pin="8" pad="8"/>
  5320. </connects>
  5321. <package3dinstances>
  5322. <package3dinstance package3d_urn="urn:adsk.eagle:package:38148/1"/>
  5323. </package3dinstances>
  5324. <technologies>
  5325. <technology name="">
  5326. <attribute name="PROD_ID" value="CONN-10204"/>
  5327. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5328. </technology>
  5329. </technologies>
  5330. </device>
  5331. <device name="SMD-COMBO-FEMALE" package="1X08_SMD_COMBINED">
  5332. <connects>
  5333. <connect gate="G$1" pin="1" pad="1"/>
  5334. <connect gate="G$1" pin="2" pad="2"/>
  5335. <connect gate="G$1" pin="3" pad="3"/>
  5336. <connect gate="G$1" pin="4" pad="4"/>
  5337. <connect gate="G$1" pin="5" pad="5"/>
  5338. <connect gate="G$1" pin="6" pad="6"/>
  5339. <connect gate="G$1" pin="7" pad="7"/>
  5340. <connect gate="G$1" pin="8" pad="8"/>
  5341. </connects>
  5342. <package3dinstances>
  5343. <package3dinstance package3d_urn="urn:adsk.eagle:package:38146/1"/>
  5344. </package3dinstances>
  5345. <technologies>
  5346. <technology name="">
  5347. <attribute name="PROD_ID" value="CONN-10204"/>
  5348. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5349. </technology>
  5350. </technologies>
  5351. </device>
  5352. <device name="BM08B-SRSS-TB" package="BM08B-SRSS-TB">
  5353. <connects>
  5354. <connect gate="G$1" pin="1" pad="1"/>
  5355. <connect gate="G$1" pin="2" pad="2"/>
  5356. <connect gate="G$1" pin="3" pad="3"/>
  5357. <connect gate="G$1" pin="4" pad="4"/>
  5358. <connect gate="G$1" pin="5" pad="5"/>
  5359. <connect gate="G$1" pin="6" pad="6"/>
  5360. <connect gate="G$1" pin="7" pad="7"/>
  5361. <connect gate="G$1" pin="8" pad="8"/>
  5362. </connects>
  5363. <package3dinstances>
  5364. <package3dinstance package3d_urn="urn:adsk.eagle:package:38145/1"/>
  5365. </package3dinstances>
  5366. <technologies>
  5367. <technology name="">
  5368. <attribute name="PROD_ID" value="CONN-10556" constant="no"/>
  5369. </technology>
  5370. </technologies>
  5371. </device>
  5372. <device name="SMD-MALE" package="1X08_SMD_MALE">
  5373. <connects>
  5374. <connect gate="G$1" pin="1" pad="1"/>
  5375. <connect gate="G$1" pin="2" pad="2"/>
  5376. <connect gate="G$1" pin="3" pad="3"/>
  5377. <connect gate="G$1" pin="4" pad="4"/>
  5378. <connect gate="G$1" pin="5" pad="5"/>
  5379. <connect gate="G$1" pin="6" pad="6"/>
  5380. <connect gate="G$1" pin="7" pad="7"/>
  5381. <connect gate="G$1" pin="8" pad="8"/>
  5382. </connects>
  5383. <package3dinstances>
  5384. <package3dinstance package3d_urn="urn:adsk.eagle:package:38150/1"/>
  5385. </package3dinstances>
  5386. <technologies>
  5387. <technology name="">
  5388. <attribute name="PROD_ID" value="CONN-11292"/>
  5389. <attribute name="SF_ID" value="PRT-11541" constant="no"/>
  5390. </technology>
  5391. </technologies>
  5392. </device>
  5393. <device name="NO_SILK_FEMALE_PTH" package="1X08_NO_SILK">
  5394. <connects>
  5395. <connect gate="G$1" pin="1" pad="1"/>
  5396. <connect gate="G$1" pin="2" pad="2"/>
  5397. <connect gate="G$1" pin="3" pad="3"/>
  5398. <connect gate="G$1" pin="4" pad="4"/>
  5399. <connect gate="G$1" pin="5" pad="5"/>
  5400. <connect gate="G$1" pin="6" pad="6"/>
  5401. <connect gate="G$1" pin="7" pad="7"/>
  5402. <connect gate="G$1" pin="8" pad="8"/>
  5403. </connects>
  5404. <package3dinstances>
  5405. <package3dinstance package3d_urn="urn:adsk.eagle:package:38149/1"/>
  5406. </package3dinstances>
  5407. <technologies>
  5408. <technology name="">
  5409. <attribute name="PROD_ID" value="CONN-08438"/>
  5410. </technology>
  5411. </technologies>
  5412. </device>
  5413. <device name="LOCK_NO_SILK" package="1X08_LOCK_NO_SILK">
  5414. <connects>
  5415. <connect gate="G$1" pin="1" pad="1"/>
  5416. <connect gate="G$1" pin="2" pad="2"/>
  5417. <connect gate="G$1" pin="3" pad="3"/>
  5418. <connect gate="G$1" pin="4" pad="4"/>
  5419. <connect gate="G$1" pin="5" pad="5"/>
  5420. <connect gate="G$1" pin="6" pad="6"/>
  5421. <connect gate="G$1" pin="7" pad="7"/>
  5422. <connect gate="G$1" pin="8" pad="8"/>
  5423. </connects>
  5424. <package3dinstances>
  5425. <package3dinstance package3d_urn="urn:adsk.eagle:package:38147/1"/>
  5426. </package3dinstances>
  5427. <technologies>
  5428. <technology name=""/>
  5429. </technologies>
  5430. </device>
  5431. <device name="FEMALE_LOCK" package="1X08_FEMALE_LOCK">
  5432. <connects>
  5433. <connect gate="G$1" pin="1" pad="1"/>
  5434. <connect gate="G$1" pin="2" pad="2"/>
  5435. <connect gate="G$1" pin="3" pad="3"/>
  5436. <connect gate="G$1" pin="4" pad="4"/>
  5437. <connect gate="G$1" pin="5" pad="5"/>
  5438. <connect gate="G$1" pin="6" pad="6"/>
  5439. <connect gate="G$1" pin="7" pad="7"/>
  5440. <connect gate="G$1" pin="8" pad="8"/>
  5441. </connects>
  5442. <package3dinstances>
  5443. <package3dinstance package3d_urn="urn:adsk.eagle:package:38151/1"/>
  5444. </package3dinstances>
  5445. <technologies>
  5446. <technology name="">
  5447. <attribute name="PROD_ID" value="CONN-09233" constant="no"/>
  5448. <attribute name="SF_ID" value="PRT-09279" constant="no"/>
  5449. </technology>
  5450. </technologies>
  5451. </device>
  5452. </devices>
  5453. </deviceset>
  5454. <deviceset name="CONN_04" urn="urn:adsk.eagle:component:38327/1" prefix="J" uservalue="yes" library_version="1">
  5455. <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;
  5456. &lt;p&gt;&lt;/p&gt;
  5457. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5458. &lt;ul&gt;
  5459. &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;
  5460. &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;
  5461. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5462. &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;
  5463. &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;
  5464. &lt;/ul&gt;
  5465. &lt;p&gt;&lt;/p&gt;
  5466. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5467. &lt;ul&gt;
  5468. &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;
  5469. &lt;/ul&gt;
  5470. &lt;p&gt;&lt;/p&gt;
  5471. &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;
  5472. &lt;ul&gt;
  5473. &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;
  5474. &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;
  5475. &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;
  5476. &lt;p&gt;&lt;/p&gt;
  5477. &lt;/ul&gt;
  5478. &lt;p&gt;&lt;/p&gt;
  5479. &lt;b&gt;Special notes:&lt;/b&gt;
  5480. &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>
  5481. <gates>
  5482. <gate name="G$1" symbol="CONN_04" x="-2.54" y="0"/>
  5483. </gates>
  5484. <devices>
  5485. <device name="" package="1X04">
  5486. <connects>
  5487. <connect gate="G$1" pin="1" pad="1"/>
  5488. <connect gate="G$1" pin="2" pad="2"/>
  5489. <connect gate="G$1" pin="3" pad="3"/>
  5490. <connect gate="G$1" pin="4" pad="4"/>
  5491. </connects>
  5492. <package3dinstances>
  5493. <package3dinstance package3d_urn="urn:adsk.eagle:package:38085/1"/>
  5494. </package3dinstances>
  5495. <technologies>
  5496. <technology name="">
  5497. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5498. </technology>
  5499. </technologies>
  5500. </device>
  5501. <device name="POLAR" package="MOLEX-1X4">
  5502. <connects>
  5503. <connect gate="G$1" pin="1" pad="1"/>
  5504. <connect gate="G$1" pin="2" pad="2"/>
  5505. <connect gate="G$1" pin="3" pad="3"/>
  5506. <connect gate="G$1" pin="4" pad="4"/>
  5507. </connects>
  5508. <package3dinstances>
  5509. <package3dinstance package3d_urn="urn:adsk.eagle:package:38087/1"/>
  5510. </package3dinstances>
  5511. <technologies>
  5512. <technology name="">
  5513. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5514. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5515. </technology>
  5516. </technologies>
  5517. </device>
  5518. <device name="SCREW" package="SCREWTERMINAL-3.5MM-4">
  5519. <connects>
  5520. <connect gate="G$1" pin="1" pad="1"/>
  5521. <connect gate="G$1" pin="2" pad="2"/>
  5522. <connect gate="G$1" pin="3" pad="3"/>
  5523. <connect gate="G$1" pin="4" pad="4"/>
  5524. </connects>
  5525. <package3dinstances>
  5526. <package3dinstance package3d_urn="urn:adsk.eagle:package:38090/1"/>
  5527. </package3dinstances>
  5528. <technologies>
  5529. <technology name="">
  5530. <attribute name="PROD_ID" value="2xCONN-08399" constant="no"/>
  5531. <attribute name="SF_ID" value="2xPRT-08084" constant="no"/>
  5532. </technology>
  5533. </technologies>
  5534. </device>
  5535. <device name="1.27MM" package="1X04_1.27MM">
  5536. <connects>
  5537. <connect gate="G$1" pin="1" pad="1"/>
  5538. <connect gate="G$1" pin="2" pad="2"/>
  5539. <connect gate="G$1" pin="3" pad="3"/>
  5540. <connect gate="G$1" pin="4" pad="4"/>
  5541. </connects>
  5542. <package3dinstances>
  5543. <package3dinstance package3d_urn="urn:adsk.eagle:package:38086/1"/>
  5544. </package3dinstances>
  5545. <technologies>
  5546. <technology name=""/>
  5547. </technologies>
  5548. </device>
  5549. <device name="LOCK" package="1X04_LOCK">
  5550. <connects>
  5551. <connect gate="G$1" pin="1" pad="1"/>
  5552. <connect gate="G$1" pin="2" pad="2"/>
  5553. <connect gate="G$1" pin="3" pad="3"/>
  5554. <connect gate="G$1" pin="4" pad="4"/>
  5555. </connects>
  5556. <package3dinstances>
  5557. <package3dinstance package3d_urn="urn:adsk.eagle:package:38089/1"/>
  5558. </package3dinstances>
  5559. <technologies>
  5560. <technology name="">
  5561. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5562. </technology>
  5563. </technologies>
  5564. </device>
  5565. <device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS">
  5566. <connects>
  5567. <connect gate="G$1" pin="1" pad="1"/>
  5568. <connect gate="G$1" pin="2" pad="2"/>
  5569. <connect gate="G$1" pin="3" pad="3"/>
  5570. <connect gate="G$1" pin="4" pad="4"/>
  5571. </connects>
  5572. <package3dinstances>
  5573. <package3dinstance package3d_urn="urn:adsk.eagle:package:38091/1"/>
  5574. </package3dinstances>
  5575. <technologies>
  5576. <technology name="">
  5577. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5578. </technology>
  5579. </technologies>
  5580. </device>
  5581. <device name="POLAR_LOCK" package="MOLEX-1X4_LOCK">
  5582. <connects>
  5583. <connect gate="G$1" pin="1" pad="1"/>
  5584. <connect gate="G$1" pin="2" pad="2"/>
  5585. <connect gate="G$1" pin="3" pad="3"/>
  5586. <connect gate="G$1" pin="4" pad="4"/>
  5587. </connects>
  5588. <package3dinstances>
  5589. <package3dinstance package3d_urn="urn:adsk.eagle:package:38092/1"/>
  5590. </package3dinstances>
  5591. <technologies>
  5592. <technology name="">
  5593. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5594. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5595. </technology>
  5596. </technologies>
  5597. </device>
  5598. <device name="SMD" package="1X04_SMD_RA_MALE">
  5599. <connects>
  5600. <connect gate="G$1" pin="1" pad="1"/>
  5601. <connect gate="G$1" pin="2" pad="2"/>
  5602. <connect gate="G$1" pin="3" pad="3"/>
  5603. <connect gate="G$1" pin="4" pad="4"/>
  5604. </connects>
  5605. <package3dinstances>
  5606. <package3dinstance package3d_urn="urn:adsk.eagle:package:38093/1"/>
  5607. </package3dinstances>
  5608. <technologies>
  5609. <technology name="">
  5610. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5611. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5612. </technology>
  5613. </technologies>
  5614. </device>
  5615. <device name="LONGPADS" package="1X04_LONGPADS">
  5616. <connects>
  5617. <connect gate="G$1" pin="1" pad="1"/>
  5618. <connect gate="G$1" pin="2" pad="2"/>
  5619. <connect gate="G$1" pin="3" pad="3"/>
  5620. <connect gate="G$1" pin="4" pad="4"/>
  5621. </connects>
  5622. <package3dinstances>
  5623. <package3dinstance package3d_urn="urn:adsk.eagle:package:38098/1"/>
  5624. </package3dinstances>
  5625. <technologies>
  5626. <technology name="">
  5627. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5628. </technology>
  5629. </technologies>
  5630. </device>
  5631. <device name="1X04_NO_SILK" package="1X04_NO_SILK">
  5632. <connects>
  5633. <connect gate="G$1" pin="1" pad="1"/>
  5634. <connect gate="G$1" pin="2" pad="2"/>
  5635. <connect gate="G$1" pin="3" pad="3"/>
  5636. <connect gate="G$1" pin="4" pad="4"/>
  5637. </connects>
  5638. <package3dinstances>
  5639. <package3dinstance package3d_urn="urn:adsk.eagle:package:38094/1"/>
  5640. </package3dinstances>
  5641. <technologies>
  5642. <technology name="">
  5643. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5644. </technology>
  5645. </technologies>
  5646. </device>
  5647. <device name="JST-PTH" package="JST-4-PTH">
  5648. <connects>
  5649. <connect gate="G$1" pin="1" pad="1"/>
  5650. <connect gate="G$1" pin="2" pad="2"/>
  5651. <connect gate="G$1" pin="3" pad="3"/>
  5652. <connect gate="G$1" pin="4" pad="4"/>
  5653. </connects>
  5654. <package3dinstances>
  5655. <package3dinstance package3d_urn="urn:adsk.eagle:package:38101/1"/>
  5656. </package3dinstances>
  5657. <technologies>
  5658. <technology name="">
  5659. <attribute name="PROD_ID" value="WIRE-13531" constant="no"/>
  5660. <attribute name="SF_ID" value="PRT-09916" constant="no"/>
  5661. </technology>
  5662. </technologies>
  5663. </device>
  5664. <device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK">
  5665. <connects>
  5666. <connect gate="G$1" pin="1" pad="1"/>
  5667. <connect gate="G$1" pin="2" pad="2"/>
  5668. <connect gate="G$1" pin="3" pad="3"/>
  5669. <connect gate="G$1" pin="4" pad="4"/>
  5670. </connects>
  5671. <package3dinstances>
  5672. <package3dinstance package3d_urn="urn:adsk.eagle:package:38095/1"/>
  5673. </package3dinstances>
  5674. <technologies>
  5675. <technology name=""/>
  5676. </technologies>
  5677. </device>
  5678. <device name="SMD2" package="1X04_1MM_RA">
  5679. <connects>
  5680. <connect gate="G$1" pin="1" pad="1"/>
  5681. <connect gate="G$1" pin="2" pad="2"/>
  5682. <connect gate="G$1" pin="3" pad="3"/>
  5683. <connect gate="G$1" pin="4" pad="4"/>
  5684. </connects>
  5685. <package3dinstances>
  5686. <package3dinstance package3d_urn="urn:adsk.eagle:package:38096/1"/>
  5687. </package3dinstances>
  5688. <technologies>
  5689. <technology name="">
  5690. <attribute name="PROD_ID" value="CONN-10310" constant="no"/>
  5691. <attribute name="SF_ID" value="PRT-10208" constant="no"/>
  5692. </technology>
  5693. </technologies>
  5694. </device>
  5695. <device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_VERTICAL_COMBO">
  5696. <connects>
  5697. <connect gate="G$1" pin="1" pad="1"/>
  5698. <connect gate="G$1" pin="2" pad="2"/>
  5699. <connect gate="G$1" pin="3" pad="3"/>
  5700. <connect gate="G$1" pin="4" pad="4"/>
  5701. </connects>
  5702. <package3dinstances>
  5703. <package3dinstance package3d_urn="urn:adsk.eagle:package:38097/1"/>
  5704. </package3dinstances>
  5705. <technologies>
  5706. <technology name="">
  5707. <attribute name="PROD_ID" value="CONN-08511"/>
  5708. <attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/>
  5709. </technology>
  5710. </technologies>
  5711. </device>
  5712. <device name="SMD_LONG" package="1X04_SMD_LONG">
  5713. <connects>
  5714. <connect gate="G$1" pin="1" pad="1"/>
  5715. <connect gate="G$1" pin="2" pad="2"/>
  5716. <connect gate="G$1" pin="3" pad="3"/>
  5717. <connect gate="G$1" pin="4" pad="4"/>
  5718. </connects>
  5719. <package3dinstances>
  5720. <package3dinstance package3d_urn="urn:adsk.eagle:package:38099/1"/>
  5721. </package3dinstances>
  5722. <technologies>
  5723. <technology name="">
  5724. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5725. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5726. </technology>
  5727. </technologies>
  5728. </device>
  5729. <device name="JST-PTH-VERT" package="JST-4-PTH-VERT">
  5730. <connects>
  5731. <connect gate="G$1" pin="1" pad="1"/>
  5732. <connect gate="G$1" pin="2" pad="2"/>
  5733. <connect gate="G$1" pin="3" pad="3"/>
  5734. <connect gate="G$1" pin="4" pad="4"/>
  5735. </connects>
  5736. <package3dinstances>
  5737. <package3dinstance package3d_urn="urn:adsk.eagle:package:38102/1"/>
  5738. </package3dinstances>
  5739. <technologies>
  5740. <technology name="">
  5741. <attribute name="PROD_ID" value="CONN-13251"/>
  5742. </technology>
  5743. </technologies>
  5744. </device>
  5745. <device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE">
  5746. <connects>
  5747. <connect gate="G$1" pin="1" pad="1"/>
  5748. <connect gate="G$1" pin="2" pad="2"/>
  5749. <connect gate="G$1" pin="3" pad="3"/>
  5750. <connect gate="G$1" pin="4" pad="4"/>
  5751. </connects>
  5752. <package3dinstances>
  5753. <package3dinstance package3d_urn="urn:adsk.eagle:package:38100/1"/>
  5754. </package3dinstances>
  5755. <technologies>
  5756. <technology name="">
  5757. <attribute name="PROD_ID" value="CONN-12382" constant="no"/>
  5758. </technology>
  5759. </technologies>
  5760. </device>
  5761. </devices>
  5762. </deviceset>
  5763. </devicesets>
  5764. </library>
  5765. <library name="Transistor" urn="urn:adsk.eagle:library:16378713">
  5766. <description>&lt;B&gt;BJT, JFET, MOSFET, UJT, Darlington</description>
  5767. <packages>
  5768. <package name="SOT23" urn="urn:adsk.eagle:footprint:28669/1" library_version="4">
  5769. <description>&lt;b&gt;SOT-23&lt;/b&gt;</description>
  5770. <wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  5771. <wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  5772. <wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/>
  5773. <wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/>
  5774. <smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/>
  5775. <smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  5776. <smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  5777. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  5778. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  5779. <rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/>
  5780. <rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/>
  5781. <rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/>
  5782. </package>
  5783. <package name="TO92" urn="urn:adsk.eagle:footprint:28459/1" library_version="4">
  5784. <description>&lt;b&gt;TO 92&lt;/b&gt;</description>
  5785. <wire x1="-2.0946" y1="-1.651" x2="-2.6549" y2="-0.254" width="0.127" layer="21" curve="-32.781"/>
  5786. <wire x1="-2.6549" y1="-0.254" x2="-0.7863" y2="2.5485" width="0.127" layer="21" curve="-78.3185"/>
  5787. <wire x1="0.7863" y1="2.5484" x2="2.0945" y2="-1.651" width="0.127" layer="21" curve="-111.1"/>
  5788. <wire x1="-2.0945" y1="-1.651" x2="2.0945" y2="-1.651" width="0.127" layer="21"/>
  5789. <wire x1="-2.2537" y1="-0.254" x2="-0.2863" y2="-0.254" width="0.127" layer="51"/>
  5790. <wire x1="-2.6549" y1="-0.254" x2="-2.2537" y2="-0.254" width="0.127" layer="21"/>
  5791. <wire x1="-0.2863" y1="-0.254" x2="0.2863" y2="-0.254" width="0.127" layer="21"/>
  5792. <wire x1="2.2537" y1="-0.254" x2="2.6549" y2="-0.254" width="0.127" layer="21"/>
  5793. <wire x1="0.2863" y1="-0.254" x2="2.2537" y2="-0.254" width="0.127" layer="51"/>
  5794. <wire x1="-0.7863" y1="2.5485" x2="0.7863" y2="2.5485" width="0.127" layer="51" curve="-34.2936"/>
  5795. <pad name="1" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5796. <pad name="2" x="0" y="1.905" drill="0.8128" shape="octagon"/>
  5797. <pad name="3" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5798. <text x="3.175" y="0.635" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5799. <text x="3.175" y="-1.27" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5800. <text x="-0.635" y="0.635" size="1.27" layer="51" ratio="10">2</text>
  5801. <text x="-2.159" y="0" size="1.27" layer="51" ratio="10">3</text>
  5802. <text x="1.143" y="0" size="1.27" layer="51" ratio="10">1</text>
  5803. </package>
  5804. <package name="TO220BV" urn="urn:adsk.eagle:footprint:29371/1" library_version="4">
  5805. <description>&lt;b&gt;Molded Package&lt;/b&gt;&lt;p&gt;
  5806. grid 2.54 mm</description>
  5807. <wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  5808. <wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  5809. <wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  5810. <wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  5811. <wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/>
  5812. <circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/>
  5813. <pad name="G" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5814. <pad name="D" x="0" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5815. <pad name="S" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5816. <text x="-5.08" y="-6.0452" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5817. <text x="-5.08" y="-7.62" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5818. <rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/>
  5819. <rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/>
  5820. <rectangle x1="-1.651" y1="-1.27" x2="-0.889" y2="-0.762" layer="21"/>
  5821. <rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/>
  5822. <rectangle x1="0.889" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/>
  5823. <rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/>
  5824. <rectangle x1="-0.889" y1="-1.27" x2="0.889" y2="-0.762" layer="51"/>
  5825. <rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/>
  5826. </package>
  5827. </packages>
  5828. <packages3d>
  5829. <package3d name="SOT23" urn="urn:adsk.eagle:package:28738/2" type="model" library_version="4">
  5830. <description>SOT-23</description>
  5831. <packageinstances>
  5832. <packageinstance name="SOT23"/>
  5833. </packageinstances>
  5834. </package3d>
  5835. <package3d name="TO92" urn="urn:adsk.eagle:package:16378726/2" type="model" library_version="4">
  5836. <description>TO 92</description>
  5837. <packageinstances>
  5838. <packageinstance name="TO92"/>
  5839. </packageinstances>
  5840. </package3d>
  5841. <package3d name="TO220BV" urn="urn:adsk.eagle:package:29484/3" type="model" library_version="4">
  5842. <description>Molded Package
  5843. grid 2.54 mm</description>
  5844. <packageinstances>
  5845. <packageinstance name="TO220BV"/>
  5846. </packageinstances>
  5847. </package3d>
  5848. </packages3d>
  5849. <symbols>
  5850. <symbol name="MFNS" urn="urn:adsk.eagle:symbol:16378716/2" library_version="4">
  5851. <wire x1="-1.1176" y1="2.413" x2="-1.1176" y2="-2.54" width="0.254" layer="94"/>
  5852. <wire x1="-1.1176" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  5853. <wire x1="2.54" y1="1.905" x2="0.5334" y2="1.905" width="0.1524" layer="94"/>
  5854. <wire x1="2.54" y1="0" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  5855. <wire x1="0.508" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  5856. <wire x1="2.54" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  5857. <wire x1="2.54" y1="1.905" x2="5.08" y2="1.905" width="0.1524" layer="94"/>
  5858. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  5859. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  5860. <wire x1="5.08" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  5861. <wire x1="2.54" y1="-1.905" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  5862. <wire x1="5.08" y1="0.762" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  5863. <wire x1="4.445" y1="-0.635" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  5864. <wire x1="5.715" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  5865. <wire x1="4.445" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  5866. <wire x1="5.08" y1="0.762" x2="5.715" y2="0.762" width="0.1524" layer="94"/>
  5867. <wire x1="5.715" y1="0.762" x2="5.969" y2="1.016" width="0.1524" layer="94"/>
  5868. <wire x1="4.445" y1="0.762" x2="4.191" y2="0.508" width="0.1524" layer="94"/>
  5869. <wire x1="0.508" y1="0" x2="1.778" y2="-0.508" width="0.1524" layer="94"/>
  5870. <wire x1="1.778" y1="-0.508" x2="1.778" y2="0.508" width="0.1524" layer="94"/>
  5871. <wire x1="1.778" y1="0.508" x2="0.508" y2="0" width="0.1524" layer="94"/>
  5872. <wire x1="1.651" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  5873. <wire x1="1.651" y1="0.254" x2="0.762" y2="0" width="0.3048" layer="94"/>
  5874. <wire x1="0.762" y1="0" x2="1.651" y2="-0.254" width="0.3048" layer="94"/>
  5875. <wire x1="1.651" y1="-0.254" x2="1.651" y2="0" width="0.3048" layer="94"/>
  5876. <wire x1="1.651" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  5877. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  5878. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  5879. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  5880. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  5881. <text x="1.27" y="2.54" size="0.8128" layer="93">D</text>
  5882. <text x="1.27" y="-3.175" size="0.8128" layer="93">S</text>
  5883. <text x="-2.54" y="-1.27" size="0.8128" layer="93">G</text>
  5884. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  5885. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  5886. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  5887. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  5888. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  5889. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  5890. </symbol>
  5891. </symbols>
  5892. <devicesets>
  5893. <deviceset name="NMOSFET" urn="urn:adsk.eagle:component:16378730/3" prefix="Q" library_version="4">
  5894. <description>&lt;b&gt; N-Channel MOSFET - Generic</description>
  5895. <gates>
  5896. <gate name="G$1" symbol="MFNS" x="-2.54" y="0"/>
  5897. </gates>
  5898. <devices>
  5899. <device name="SOT23" package="SOT23">
  5900. <connects>
  5901. <connect gate="G$1" pin="D" pad="3"/>
  5902. <connect gate="G$1" pin="G" pad="1"/>
  5903. <connect gate="G$1" pin="S" pad="2"/>
  5904. </connects>
  5905. <package3dinstances>
  5906. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  5907. </package3dinstances>
  5908. <technologies>
  5909. <technology name="">
  5910. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  5911. <attribute name="DESCRIPTION" value="" constant="no"/>
  5912. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  5913. <attribute name="MANUFACTURER" value="" constant="no"/>
  5914. <attribute name="MPN" value="" constant="no"/>
  5915. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5916. <attribute name="PART_STATUS" value="" constant="no"/>
  5917. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5918. <attribute name="SERIES" value="" constant="no"/>
  5919. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  5920. <attribute name="THERMALLOSS" value="" constant="no"/>
  5921. <attribute name="TYPE" value="N-Channel" constant="no"/>
  5922. </technology>
  5923. <technology name="_">
  5924. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  5925. <attribute name="DESCRIPTION" value="" constant="no"/>
  5926. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  5927. <attribute name="MANUFACTURER" value="" constant="no"/>
  5928. <attribute name="MPN" value="" constant="no"/>
  5929. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5930. <attribute name="PART_STATUS" value="" constant="no"/>
  5931. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5932. <attribute name="SERIES" value="" constant="no"/>
  5933. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  5934. <attribute name="THERMALLOSS" value="" constant="no"/>
  5935. <attribute name="TYPE" value="N-Channel" constant="no"/>
  5936. </technology>
  5937. </technologies>
  5938. </device>
  5939. <device name="TO92" package="TO92">
  5940. <connects>
  5941. <connect gate="G$1" pin="D" pad="1"/>
  5942. <connect gate="G$1" pin="G" pad="2"/>
  5943. <connect gate="G$1" pin="S" pad="3"/>
  5944. </connects>
  5945. <package3dinstances>
  5946. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  5947. </package3dinstances>
  5948. <technologies>
  5949. <technology name="_">
  5950. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  5951. <attribute name="DESCRIPTION" value="" constant="no"/>
  5952. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  5953. <attribute name="MANUFACTURER" value="" constant="no"/>
  5954. <attribute name="MPN" value="" constant="no"/>
  5955. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5956. <attribute name="PART_STATUS" value="" constant="no"/>
  5957. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5958. <attribute name="SERIES" value="" constant="no"/>
  5959. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  5960. <attribute name="THERMALLOSS" value="" constant="no"/>
  5961. <attribute name="TYPE" value="N-Channel" constant="no"/>
  5962. </technology>
  5963. </technologies>
  5964. </device>
  5965. <device name="TO220" package="TO220BV">
  5966. <connects>
  5967. <connect gate="G$1" pin="D" pad="D"/>
  5968. <connect gate="G$1" pin="G" pad="G"/>
  5969. <connect gate="G$1" pin="S" pad="S"/>
  5970. </connects>
  5971. <package3dinstances>
  5972. <package3dinstance package3d_urn="urn:adsk.eagle:package:29484/3"/>
  5973. </package3dinstances>
  5974. <technologies>
  5975. <technology name="_">
  5976. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  5977. <attribute name="DESCRIPTION" value="" constant="no"/>
  5978. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  5979. <attribute name="MANUFACTURER" value="" constant="no"/>
  5980. <attribute name="MPN" value="" constant="no"/>
  5981. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5982. <attribute name="PART_STATUS" value="" constant="no"/>
  5983. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5984. <attribute name="SERIES" value="" constant="no"/>
  5985. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  5986. <attribute name="THERMALLOSS" value="" constant="no"/>
  5987. <attribute name="TYPE" value="N-Channel" constant="no"/>
  5988. </technology>
  5989. </technologies>
  5990. </device>
  5991. </devices>
  5992. </deviceset>
  5993. </devicesets>
  5994. </library>
  5995. <library name="eScooter">
  5996. <packages>
  5997. <package name="DIOM5027X220N" urn="urn:adsk.eagle:footprint:21928331/1">
  5998. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  5999. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6000. <wire x1="2.5" y1="1.35" x2="-3.3699" y2="1.35" width="0.12" layer="21"/>
  6001. <wire x1="-3.3699" y1="1.35" x2="-3.3699" y2="-1.35" width="0.12" layer="21"/>
  6002. <wire x1="-3.3699" y1="-1.35" x2="2.5" y2="-1.35" width="0.12" layer="21"/>
  6003. <wire x1="2.5" y1="-1.35" x2="-2.5" y2="-1.35" width="0.12" layer="51"/>
  6004. <wire x1="-2.5" y1="-1.35" x2="-2.5" y2="1.35" width="0.12" layer="51"/>
  6005. <wire x1="-2.5" y1="1.35" x2="2.5" y2="1.35" width="0.12" layer="51"/>
  6006. <wire x1="2.5" y1="1.35" x2="2.5" y2="-1.35" width="0.12" layer="51"/>
  6007. <smd name="1" x="-2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6008. <smd name="2" x="2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6009. <text x="0" y="1.985" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6010. <text x="0" y="-1.985" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6011. </package>
  6012. <package name="CAPAE1230X1250N" urn="urn:adsk.eagle:footprint:21812987/1">
  6013. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6014. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6015. <wire x1="-6.25" y1="1.3186" x2="-6.25" y2="3.6573" width="0.12" layer="21"/>
  6016. <wire x1="-6.25" y1="3.6573" x2="-3.6573" y2="6.25" width="0.12" layer="21"/>
  6017. <wire x1="-3.6573" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="21"/>
  6018. <wire x1="6.25" y1="6.25" x2="6.25" y2="1.3186" width="0.12" layer="21"/>
  6019. <wire x1="-6.25" y1="-1.3186" x2="-6.25" y2="-3.6573" width="0.12" layer="21"/>
  6020. <wire x1="-6.25" y1="-3.6573" x2="-3.6573" y2="-6.25" width="0.12" layer="21"/>
  6021. <wire x1="-3.6573" y1="-6.25" x2="6.25" y2="-6.25" width="0.12" layer="21"/>
  6022. <wire x1="6.25" y1="-6.25" x2="6.25" y2="-1.3186" width="0.12" layer="21"/>
  6023. <wire x1="6.25" y1="-6.25" x2="-6.25" y2="-6.25" width="0.12" layer="51"/>
  6024. <wire x1="-6.25" y1="-6.25" x2="-6.25" y2="6.25" width="0.12" layer="51"/>
  6025. <wire x1="-6.25" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="51"/>
  6026. <wire x1="6.25" y1="6.25" x2="6.25" y2="-6.25" width="0.12" layer="51"/>
  6027. <smd name="1" x="-4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6028. <smd name="2" x="4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6029. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6030. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6031. </package>
  6032. <package name="DIP8" urn="urn:adsk.eagle:footprint:4470/1">
  6033. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; Gull Wing Surface Mount Optioon 300&lt;p&gt;
  6034. Source: http://www.avagotech.com/docs/AV02-0410EN</description>
  6035. <wire x1="-4.81" y1="-3.075" x2="4.81" y2="-3.075" width="0.2032" layer="51"/>
  6036. <wire x1="4.81" y1="-3.075" x2="4.81" y2="3.075" width="0.2032" layer="21"/>
  6037. <wire x1="4.81" y1="3.075" x2="-4.81" y2="3.075" width="0.2032" layer="51"/>
  6038. <wire x1="-4.81" y1="3.075" x2="-4.81" y2="-3.075" width="0.2032" layer="21"/>
  6039. <circle x="-3.81" y="-2.159" radius="0.3667" width="0" layer="21"/>
  6040. <smd name="1" x="-3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  6041. <smd name="2" x="-1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  6042. <smd name="3" x="1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  6043. <smd name="4" x="3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  6044. <smd name="5" x="3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  6045. <smd name="6" x="1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  6046. <smd name="7" x="-1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  6047. <smd name="8" x="-3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  6048. <text x="-5.635" y="-3.1351" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6049. <text x="6.905" y="-4.4051" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6050. <rectangle x1="-4.0899" y1="-4.825" x2="-3.5301" y2="-3.81" layer="51"/>
  6051. <rectangle x1="-1.5499" y1="-4.825" x2="-0.9901" y2="-3.81" layer="51"/>
  6052. <rectangle x1="0.9901" y1="-4.825" x2="1.5499" y2="-3.81" layer="51"/>
  6053. <rectangle x1="3.5301" y1="-4.825" x2="4.0899" y2="-3.81" layer="51"/>
  6054. <rectangle x1="3.5301" y1="3.81" x2="4.0899" y2="4.825" layer="51"/>
  6055. <rectangle x1="0.9901" y1="3.81" x2="1.5499" y2="4.825" layer="51"/>
  6056. <rectangle x1="-1.5499" y1="3.81" x2="-0.9901" y2="4.825" layer="51"/>
  6057. <rectangle x1="-4.0899" y1="3.81" x2="-3.5301" y2="4.825" layer="51"/>
  6058. <rectangle x1="-2.15" y1="3.1" x2="-0.4" y2="3.81" layer="51" rot="R180"/>
  6059. <rectangle x1="-4.1" y1="3.1" x2="-2.94" y2="3.81" layer="51" rot="R180"/>
  6060. <rectangle x1="0.39" y1="3.1" x2="2.14" y2="3.81" layer="51" rot="R180"/>
  6061. <rectangle x1="2.93" y1="3.1" x2="4.1" y2="3.81" layer="51" rot="R180"/>
  6062. <rectangle x1="-4.075" y1="-3.81" x2="-2.93" y2="-3.1" layer="51"/>
  6063. <rectangle x1="-2.14" y1="-3.81" x2="-0.39" y2="-3.1" layer="51"/>
  6064. <rectangle x1="0.4" y1="-3.81" x2="2.15" y2="-3.1" layer="51"/>
  6065. <rectangle x1="2.94" y1="-3.81" x2="4.1" y2="-3.1" layer="51"/>
  6066. </package>
  6067. <package name="DIP826W56P254L937H458Q8B" urn="urn:adsk.eagle:footprint:22059849/1">
  6068. <description>8-DIP, 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span, 9.38 X 6.99 X 4.58 mm body
  6069. &lt;p&gt;8-pin DIP package with 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span with body size 9.38 X 6.99 X 4.58 mm&lt;/p&gt;</description>
  6070. <circle x="-5.3669" y="3.81" radius="0.25" width="0" layer="21"/>
  6071. <wire x1="-3.935" y1="4.7969" x2="-3.935" y2="4.955" width="0.12" layer="21"/>
  6072. <wire x1="-3.935" y1="4.955" x2="3.935" y2="4.955" width="0.12" layer="21"/>
  6073. <wire x1="3.935" y1="4.955" x2="3.935" y2="4.7969" width="0.12" layer="21"/>
  6074. <wire x1="-3.935" y1="-4.7969" x2="-3.935" y2="-4.955" width="0.12" layer="21"/>
  6075. <wire x1="-3.935" y1="-4.955" x2="3.935" y2="-4.955" width="0.12" layer="21"/>
  6076. <wire x1="3.935" y1="-4.955" x2="3.935" y2="-4.7969" width="0.12" layer="21"/>
  6077. <wire x1="3.935" y1="-4.955" x2="-3.935" y2="-4.955" width="0.12" layer="51"/>
  6078. <wire x1="-3.935" y1="-4.955" x2="-3.935" y2="4.955" width="0.12" layer="51"/>
  6079. <wire x1="-3.935" y1="4.955" x2="3.935" y2="4.955" width="0.12" layer="51"/>
  6080. <wire x1="3.935" y1="4.955" x2="3.935" y2="-4.955" width="0.12" layer="51"/>
  6081. <pad name="1" x="-4.13" y="3.81" drill="0.8657" diameter="1.4657"/>
  6082. <pad name="2" x="-4.13" y="1.27" drill="0.8657" diameter="1.4657"/>
  6083. <pad name="3" x="-4.13" y="-1.27" drill="0.8657" diameter="1.4657"/>
  6084. <pad name="4" x="-4.13" y="-3.81" drill="0.8657" diameter="1.4657"/>
  6085. <pad name="5" x="4.13" y="-3.81" drill="0.8657" diameter="1.4657"/>
  6086. <pad name="6" x="4.13" y="-1.27" drill="0.8657" diameter="1.4657"/>
  6087. <pad name="7" x="4.13" y="1.27" drill="0.8657" diameter="1.4657"/>
  6088. <pad name="8" x="4.13" y="3.81" drill="0.8657" diameter="1.4657"/>
  6089. <text x="0" y="5.59" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6090. <text x="0" y="-5.59" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6091. </package>
  6092. <package name="XT60">
  6093. <pad name="GND" x="-3.6" y="0" drill="2.6" diameter="4" shape="square"/>
  6094. <pad name="VCC" x="3.6" y="0" drill="2.6" diameter="4"/>
  6095. <text x="-2.9" y="3.5" size="1.27" layer="25">&gt;NAME</text>
  6096. <text x="-3.1" y="-4.1" size="1.27" layer="27">&gt;VALUE</text>
  6097. </package>
  6098. </packages>
  6099. <packages3d>
  6100. <package3d name="DIOM5027X220N" urn="urn:adsk.eagle:package:21928182/1" type="model">
  6101. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6102. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6103. <packageinstances>
  6104. <packageinstance name="DIOM5027X220N"/>
  6105. </packageinstances>
  6106. </package3d>
  6107. <package3d name="CAPAE1230X1250N" urn="urn:adsk.eagle:package:21812541/1" type="model">
  6108. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6109. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6110. <packageinstances>
  6111. <packageinstance name="CAPAE1230X1250N"/>
  6112. </packageinstances>
  6113. </package3d>
  6114. <package3d name="DIP8" urn="urn:adsk.eagle:package:8089856/1" locally_modified="yes" type="box">
  6115. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; &lt;p&gt;
  6116. dual in line package'</description>
  6117. <packageinstances>
  6118. <packageinstance name="DIP8"/>
  6119. </packageinstances>
  6120. </package3d>
  6121. <package3d name="DIP826W56P254L937H458Q8B" urn="urn:adsk.eagle:package:22059831/1" type="model">
  6122. <description>8-DIP, 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span, 9.38 X 6.99 X 4.58 mm body
  6123. &lt;p&gt;8-pin DIP package with 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span with body size 9.38 X 6.99 X 4.58 mm&lt;/p&gt;</description>
  6124. <packageinstances>
  6125. <packageinstance name="DIP826W56P254L937H458Q8B"/>
  6126. </packageinstances>
  6127. </package3d>
  6128. </packages3d>
  6129. <symbols>
  6130. <symbol name="TVS_DIODE">
  6131. <wire x1="0" y1="0" x2="-2.54" y2="2.54" width="0.254" layer="94"/>
  6132. <wire x1="2.54" y1="2.54" x2="0" y2="0" width="0.254" layer="94"/>
  6133. <wire x1="-5.08" y1="-2.54" x2="-2.54" y2="0" width="0.254" layer="94"/>
  6134. <wire x1="-2.54" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  6135. <wire x1="2.54" y1="0" x2="5.08" y2="2.54" width="0.254" layer="94"/>
  6136. <wire x1="0" y1="0" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  6137. <wire x1="2.54" y1="-2.54" x2="0" y2="0" width="0.254" layer="94"/>
  6138. <wire x1="-2.54" y1="2.54" x2="2.54" y2="2.54" width="0.254" layer="94"/>
  6139. <wire x1="-2.54" y1="-2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  6140. <pin name="P$1" x="0" y="7.62" visible="off" length="middle" rot="R270"/>
  6141. <pin name="P$2" x="0" y="-7.62" visible="off" length="middle" rot="R90"/>
  6142. <text x="2.54" y="5.08" size="1.778" layer="95">&gt;NAME</text>
  6143. <text x="2.54" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6144. </symbol>
  6145. <symbol name="C">
  6146. <wire x1="-2.54" y1="1.27" x2="2.54" y2="1.27" width="0.254" layer="94"/>
  6147. <wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.254" layer="94" curve="-90"/>
  6148. <pin name="P$1" x="0" y="6.35" visible="off" length="middle" direction="pwr" rot="R270"/>
  6149. <pin name="P$2" x="0" y="-5.08" visible="off" length="middle" direction="pwr" rot="R90"/>
  6150. <text x="-3.81" y="1.27" size="1.778" layer="94">+</text>
  6151. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  6152. <text x="2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6153. </symbol>
  6154. <symbol name="MX5035">
  6155. <description>The MAX5035 easy-to-use, high-efficiency, high-volt-age, step-down DC-DC converter operates from aninput voltage up to 76V and consumes only 270μA qui-escent current at no load.</description>
  6156. <wire x1="-10.16" y1="12.7" x2="10.16" y2="12.7" width="0.254" layer="94"/>
  6157. <wire x1="10.16" y1="12.7" x2="10.16" y2="-12.7" width="0.254" layer="94"/>
  6158. <wire x1="10.16" y1="-12.7" x2="-10.16" y2="-12.7" width="0.254" layer="94"/>
  6159. <wire x1="-10.16" y1="-12.7" x2="-10.16" y2="12.7" width="0.254" layer="94"/>
  6160. <pin name="BST" x="-15.24" y="7.62" length="middle" direction="in"/>
  6161. <pin name="VD" x="-15.24" y="2.54" length="middle" direction="in"/>
  6162. <pin name="SGND" x="-15.24" y="-2.54" length="middle" direction="in"/>
  6163. <pin name="FB" x="-15.24" y="-7.62" length="middle" direction="in"/>
  6164. <pin name="ON/OFF" x="15.24" y="-7.62" length="middle" direction="in" rot="R180"/>
  6165. <pin name="GND" x="15.24" y="-2.54" length="middle" direction="pwr" rot="R180"/>
  6166. <pin name="VIN" x="15.24" y="2.54" length="middle" direction="pwr" rot="R180"/>
  6167. <pin name="LX" x="15.24" y="7.62" length="middle" direction="pwr" rot="R180"/>
  6168. <text x="-10.16" y="15.24" size="1.778" layer="95">&gt;NAME</text>
  6169. <text x="-10.16" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  6170. </symbol>
  6171. <symbol name="XT60">
  6172. <description>XT60 connector</description>
  6173. <pin name="P$1" x="-5.08" y="5.08" visible="off" length="middle" direction="sup"/>
  6174. <pin name="P$2" x="-5.08" y="2.54" visible="off" length="middle" direction="sup"/>
  6175. <wire x1="-2.54" y1="7.62" x2="2.54" y2="7.62" width="0.254" layer="94"/>
  6176. <wire x1="2.54" y1="7.62" x2="2.54" y2="0" width="0.254" layer="94"/>
  6177. <wire x1="2.54" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  6178. <wire x1="-2.54" y1="0" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
  6179. <text x="-5.08" y="10.16" size="1.778" layer="95">&gt;NAME</text>
  6180. <text x="-5.08" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6181. </symbol>
  6182. </symbols>
  6183. <devicesets>
  6184. <deviceset name="TVS_DIODE">
  6185. <description>TVS protective diode</description>
  6186. <gates>
  6187. <gate name="D$1" symbol="TVS_DIODE" x="0" y="0"/>
  6188. </gates>
  6189. <devices>
  6190. <device name="SMA" package="DIOM5027X220N">
  6191. <connects>
  6192. <connect gate="D$1" pin="P$1" pad="1"/>
  6193. <connect gate="D$1" pin="P$2" pad="2"/>
  6194. </connects>
  6195. <package3dinstances>
  6196. <package3dinstance package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  6197. </package3dinstances>
  6198. <technologies>
  6199. <technology name=""/>
  6200. </technologies>
  6201. </device>
  6202. </devices>
  6203. </deviceset>
  6204. <deviceset name="C">
  6205. <gates>
  6206. <gate name="G$1" symbol="C" x="-1.27" y="-1.27"/>
  6207. </gates>
  6208. <devices>
  6209. <device name="PANASONIC_H13" package="CAPAE1230X1250N">
  6210. <connects>
  6211. <connect gate="G$1" pin="P$1" pad="1"/>
  6212. <connect gate="G$1" pin="P$2" pad="2"/>
  6213. </connects>
  6214. <package3dinstances>
  6215. <package3dinstance package3d_urn="urn:adsk.eagle:package:21812541/1"/>
  6216. </package3dinstances>
  6217. <technologies>
  6218. <technology name=""/>
  6219. </technologies>
  6220. </device>
  6221. </devices>
  6222. </deviceset>
  6223. <deviceset name="MAX5035">
  6224. <description>The MAX5035 easy-to-use, high-efficiency, high-volt-age, step-down DC-DC converter operates from aninput voltage up to 76V and consumes only 270μA qui-escent current at no load.</description>
  6225. <gates>
  6226. <gate name="G$1" symbol="MX5035" x="0" y="0"/>
  6227. </gates>
  6228. <devices>
  6229. <device name="DIP8" package="DIP8">
  6230. <connects>
  6231. <connect gate="G$1" pin="BST" pad="1"/>
  6232. <connect gate="G$1" pin="FB" pad="4"/>
  6233. <connect gate="G$1" pin="GND" pad="6"/>
  6234. <connect gate="G$1" pin="LX" pad="8"/>
  6235. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  6236. <connect gate="G$1" pin="SGND" pad="3"/>
  6237. <connect gate="G$1" pin="VD" pad="2"/>
  6238. <connect gate="G$1" pin="VIN" pad="7"/>
  6239. </connects>
  6240. <package3dinstances>
  6241. <package3dinstance package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  6242. </package3dinstances>
  6243. <technologies>
  6244. <technology name=""/>
  6245. </technologies>
  6246. </device>
  6247. <device name="PDIP8" package="DIP826W56P254L937H458Q8B">
  6248. <connects>
  6249. <connect gate="G$1" pin="BST" pad="1"/>
  6250. <connect gate="G$1" pin="FB" pad="4"/>
  6251. <connect gate="G$1" pin="GND" pad="6"/>
  6252. <connect gate="G$1" pin="LX" pad="8"/>
  6253. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  6254. <connect gate="G$1" pin="SGND" pad="3"/>
  6255. <connect gate="G$1" pin="VD" pad="2"/>
  6256. <connect gate="G$1" pin="VIN" pad="7"/>
  6257. </connects>
  6258. <package3dinstances>
  6259. <package3dinstance package3d_urn="urn:adsk.eagle:package:22059831/1"/>
  6260. </package3dinstances>
  6261. <technologies>
  6262. <technology name=""/>
  6263. </technologies>
  6264. </device>
  6265. </devices>
  6266. </deviceset>
  6267. <deviceset name="XT60">
  6268. <gates>
  6269. <gate name="G$1" symbol="XT60" x="0" y="0"/>
  6270. </gates>
  6271. <devices>
  6272. <device name="" package="XT60">
  6273. <connects>
  6274. <connect gate="G$1" pin="P$1" pad="GND"/>
  6275. <connect gate="G$1" pin="P$2" pad="VCC"/>
  6276. </connects>
  6277. <technologies>
  6278. <technology name=""/>
  6279. </technologies>
  6280. </device>
  6281. </devices>
  6282. </deviceset>
  6283. </devicesets>
  6284. </library>
  6285. <library name="Transistor" urn="urn:adsk.eagle:library:14522416">
  6286. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Transistors &lt;/i&gt;&lt;/h3&gt;
  6287. Visit us at &lt;a href="http://www.PCBLayout.com"&gt;PCBLayout.com&lt;/a&gt; for quick and hassle-free PCB Layout/Manufacturing ordering experience.
  6288. &lt;BR&gt;
  6289. &lt;BR&gt;
  6290. This library has been generated by our experienced pcb layout engineers using current IPC and/or industry standards. We &lt;b&gt;believe&lt;/b&gt; the content to be accurate, complete and current. But, this content is provided as a courtesy and &lt;u&gt;user assumes all risk and responsiblity of it's usage&lt;/u&gt;.
  6291. &lt;BR&gt;
  6292. &lt;BR&gt;
  6293. Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@PCBLayout.com&lt;/a&gt; if you have any questions/concerns regarding any of our content or services.</description>
  6294. <packages>
  6295. <package name="DPAK3" urn="urn:adsk.eagle:footprint:10893247/4" library_version="1">
  6296. <description>DPAK, 2.29 mm pitch; 3 pin, 6.095 mm L X 6.54 mm W X 2.39 mm H body&lt;p&gt;&lt;i&gt;PCB Libraries Packages&lt;/i&gt;</description>
  6297. <smd name="1" x="-2.29" y="-4.12" dx="3.08" dy="1.31" layer="1" roundness="37" rot="R270"/>
  6298. <smd name="2" x="2.29" y="-4.12" dx="3.08" dy="1.31" layer="1" roundness="37" rot="R270"/>
  6299. <smd name="3" x="0" y="2.51" dx="6.09" dy="5.63" layer="1" roundness="51"/>
  6300. <wire x1="-2.765" y1="-3.3625" x2="-1.815" y2="-3.3625" width="0.025" layer="51"/>
  6301. <wire x1="-1.815" y1="-3.3625" x2="-1.815" y2="-4.9525" width="0.025" layer="51"/>
  6302. <wire x1="-1.815" y1="-4.9525" x2="-2.765" y2="-4.9525" width="0.025" layer="51"/>
  6303. <wire x1="-2.765" y1="-4.9525" x2="-2.765" y2="-3.3625" width="0.025" layer="51"/>
  6304. <wire x1="1.815" y1="-3.3625" x2="2.765" y2="-3.3625" width="0.025" layer="51"/>
  6305. <wire x1="2.765" y1="-3.3625" x2="2.765" y2="-4.9525" width="0.025" layer="51"/>
  6306. <wire x1="2.765" y1="-4.9525" x2="1.815" y2="-4.9525" width="0.025" layer="51"/>
  6307. <wire x1="1.815" y1="-4.9525" x2="1.815" y2="-3.3625" width="0.025" layer="51"/>
  6308. <wire x1="0" y1="-0.35" x2="0" y2="0.35" width="0.05" layer="39"/>
  6309. <wire x1="-0.35" y1="0" x2="0.35" y2="0" width="0.05" layer="39"/>
  6310. <wire x1="-3.37" y1="4.093" x2="-3.37" y2="-2.128" width="0.127" layer="51"/>
  6311. <wire x1="-3.37" y1="-2.128" x2="3.37" y2="-2.128" width="0.127" layer="51"/>
  6312. <wire x1="3.37" y1="-2.128" x2="3.37" y2="4.093" width="0.127" layer="51"/>
  6313. <wire x1="3.37" y1="4.093" x2="-3.37" y2="4.093" width="0.127" layer="51"/>
  6314. <wire x1="-3.37" y1="4.093" x2="-3.37" y2="-2.128" width="0.127" layer="21"/>
  6315. <wire x1="-3.37" y1="-2.128" x2="3.37" y2="-2.128" width="0.127" layer="21"/>
  6316. <wire x1="3.37" y1="-2.128" x2="3.37" y2="4.093" width="0.127" layer="21"/>
  6317. <wire x1="-3.015" y1="4.3" x2="-3.57" y2="4.3" width="0.05" layer="39"/>
  6318. <wire x1="-3.57" y1="4.3" x2="-3.57" y2="-2.33" width="0.05" layer="39"/>
  6319. <wire x1="-3.57" y1="-2.33" x2="-3.145" y2="-2.33" width="0.05" layer="39"/>
  6320. <wire x1="-3.145" y1="-2.33" x2="-3.145" y2="-5.86" width="0.05" layer="39"/>
  6321. <wire x1="-3.145" y1="-5.86" x2="3.145" y2="-5.86" width="0.05" layer="39"/>
  6322. <wire x1="3.145" y1="-5.86" x2="3.145" y2="-2.33" width="0.05" layer="39"/>
  6323. <wire x1="3.145" y1="-2.33" x2="3.57" y2="-2.33" width="0.05" layer="39"/>
  6324. <wire x1="3.57" y1="-2.33" x2="3.57" y2="4.3" width="0.05" layer="39"/>
  6325. <wire x1="3.57" y1="4.3" x2="3.015" y2="4.3" width="0.05" layer="39"/>
  6326. <wire x1="3.015" y1="4.3" x2="3.015" y2="5.755" width="0.05" layer="39"/>
  6327. <wire x1="3.015" y1="5.755" x2="-3.015" y2="5.755" width="0.05" layer="39"/>
  6328. <wire x1="-3.015" y1="5.755" x2="-3.015" y2="4.3" width="0.05" layer="39"/>
  6329. <circle x="0" y="0" radius="0.25" width="0.05" layer="39"/>
  6330. <circle x="-2.54" y="-6.35" radius="0.1" width="0.2" layer="21"/>
  6331. <text x="-3.81" y="7.3375" size="1.2" layer="25" ratio="10">&gt;NAME</text>
  6332. <text x="-3.81" y="-8.89" size="1.2" layer="27" ratio="10">&gt;VALUE</text>
  6333. </package>
  6334. </packages>
  6335. <packages3d>
  6336. <package3d name="DPAK4" urn="urn:adsk.eagle:package:10893256/5" type="model" library_version="1">
  6337. <description>DPAK, 2.29 mm pitch; 3 pin, 6.095 mm L X 6.54 mm W X 2.39 mm H body&lt;p&gt;&lt;i&gt;PCB Libraries Packages&lt;/i&gt;</description>
  6338. <packageinstances>
  6339. <packageinstance name="DPAK3"/>
  6340. </packageinstances>
  6341. </package3d>
  6342. </packages3d>
  6343. <symbols>
  6344. <symbol name="MOSFET_N" urn="urn:adsk.eagle:symbol:14521946/1" library_version="1">
  6345. <wire x1="-1.016" y1="2.54" x2="-1.016" y2="-2.54" width="0.254" layer="94"/>
  6346. <wire x1="-1.016" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  6347. <wire x1="2.54" y1="2.54" x2="2.54" y2="2.159" width="0.1524" layer="94"/>
  6348. <wire x1="0.508" y1="-2.159" x2="2.54" y2="-2.159" width="0.1524" layer="94"/>
  6349. <wire x1="2.54" y1="-2.159" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  6350. <wire x1="0.381" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6351. <wire x1="3.302" y1="0.508" x2="3.81" y2="0.508" width="0.1524" layer="94"/>
  6352. <wire x1="3.81" y1="0.508" x2="4.318" y2="0.508" width="0.1524" layer="94"/>
  6353. <wire x1="3.81" y1="2.159" x2="2.54" y2="2.159" width="0.1524" layer="94"/>
  6354. <wire x1="2.54" y1="2.159" x2="0.5334" y2="2.159" width="0.1524" layer="94"/>
  6355. <wire x1="3.81" y1="0.508" x2="3.81" y2="2.159" width="0.1524" layer="94"/>
  6356. <wire x1="3.81" y1="-2.159" x2="3.81" y2="-0.127" width="0.1524" layer="94"/>
  6357. <wire x1="3.81" y1="-2.159" x2="2.54" y2="-2.159" width="0.1524" layer="94"/>
  6358. <wire x1="2.54" y1="0" x2="2.54" y2="-2.159" width="0.1524" layer="94"/>
  6359. <circle x="2.54" y="2.159" radius="0.127" width="0.4064" layer="94"/>
  6360. <circle x="2.54" y="-2.159" radius="0.127" width="0.4064" layer="94"/>
  6361. <text x="-8.89" y="5.08" size="1.778" layer="95">&gt;NAME</text>
  6362. <text x="-11.43" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6363. <text x="1.397" y="3.556" size="0.8128" layer="93">D</text>
  6364. <text x="1.397" y="-4.318" size="0.8128" layer="93">S</text>
  6365. <text x="-2.286" y="-1.778" size="0.8128" layer="93">G</text>
  6366. <rectangle x1="-0.254" y1="-2.794" x2="0.508" y2="-1.27" layer="94"/>
  6367. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.794" layer="94"/>
  6368. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6369. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  6370. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6371. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6372. <polygon width="0.1524" layer="94">
  6373. <vertex x="3.81" y="0.508"/>
  6374. <vertex x="3.302" y="-0.254"/>
  6375. <vertex x="4.318" y="-0.254"/>
  6376. </polygon>
  6377. <polygon width="0.1524" layer="94">
  6378. <vertex x="0.635" y="0"/>
  6379. <vertex x="1.905" y="-0.508"/>
  6380. <vertex x="1.905" y="0.508"/>
  6381. </polygon>
  6382. </symbol>
  6383. </symbols>
  6384. <devicesets>
  6385. <deviceset name="FQD13N06LTM" urn="urn:adsk.eagle:component:14521953/3" prefix="Q" library_version="1">
  6386. <description>&lt;h3&gt; MOSFET N-CH 60V 11A DPAK &lt;/h3&gt;
  6387. &lt;BR&gt;
  6388. &lt;a href="https://www.onsemi.com/pub/Collateral/FQU13N06L-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  6389. <gates>
  6390. <gate name="G$1" symbol="MOSFET_N" x="0" y="0"/>
  6391. </gates>
  6392. <devices>
  6393. <device name="" package="DPAK3">
  6394. <connects>
  6395. <connect gate="G$1" pin="D" pad="3"/>
  6396. <connect gate="G$1" pin="G" pad="1"/>
  6397. <connect gate="G$1" pin="S" pad="2"/>
  6398. </connects>
  6399. <package3dinstances>
  6400. <package3dinstance package3d_urn="urn:adsk.eagle:package:10893256/5"/>
  6401. </package3dinstances>
  6402. <technologies>
  6403. <technology name="">
  6404. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  6405. <attribute name="DIGIKEY_PART_NUMBER" value="FQD13N06LTMCT-ND" constant="no"/>
  6406. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  6407. <attribute name="MPN" value="FQD13N06LTM" constant="no"/>
  6408. <attribute name="PACKAGE" value="DPAK-4" constant="no"/>
  6409. </technology>
  6410. </technologies>
  6411. </device>
  6412. </devices>
  6413. </deviceset>
  6414. </devicesets>
  6415. </library>
  6416. </libraries>
  6417. <attributes>
  6418. </attributes>
  6419. <variantdefs>
  6420. </variantdefs>
  6421. <classes>
  6422. <class number="0" name="default" width="0" drill="0">
  6423. </class>
  6424. </classes>
  6425. <parts>
  6426. <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"/>
  6427. <part name="D1" library="Diodes" library_urn="urn:adsk.eagle:library:11396254" deviceset="MBR360G" device="" package3d_urn="urn:adsk.eagle:package:10898389/2" value="SB5100"/>
  6428. <part name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" deviceset="DR127" device="" package3d_urn="urn:adsk.eagle:package:15117/1"/>
  6429. <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"/>
  6430. <part name="C3" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C-POL" device="TANTALUM-2917(7343-METRIC)" package3d_urn="urn:adsk.eagle:package:16290885/1" technology="_" value="15uF"/>
  6431. <part name="R1" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="1M"/>
  6432. <part name="R2" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="100K"/>
  6433. <part name="R3" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="39K"/>
  6434. <part name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="2.54MM_SCREWTERM" package3d_urn="urn:adsk.eagle:package:38059/1" value="ON/OFF"/>
  6435. <part name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6436. <part name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_08" device="LONGPADS" package3d_urn="urn:adsk.eagle:package:38142/1" value="COMM"/>
  6437. <part name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="" package3d_urn="urn:adsk.eagle:package:38039/1" value="STOP_LIGHT"/>
  6438. <part name="J5" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_04" device="" package3d_urn="urn:adsk.eagle:package:38085/1" value="DRIVER"/>
  6439. <part name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="1M"/>
  6440. <part name="R5" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1210" package3d_urn="urn:adsk.eagle:package:13299/1" value="133K"/>
  6441. <part name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6442. <part name="Q3" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6443. <part name="GND2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  6444. <part name="R6" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
  6445. <part name="R7" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
  6446. <part name="D2" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1" value="P4SMAJ12CA"/>
  6447. <part name="R8" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
  6448. <part name="C4" library="eScooter" deviceset="C" device="PANASONIC_H13" package3d_urn="urn:adsk.eagle:package:21812541/1" value="68uF"/>
  6449. <part name="U$1" library="eScooter" deviceset="MAX5035" device="PDIP8" package3d_urn="urn:adsk.eagle:package:22059831/1"/>
  6450. <part name="J4" library="eScooter" deviceset="XT60" device="" value="BATTERY"/>
  6451. <part name="J6" library="eScooter" deviceset="XT60" device="" value="DRIVER POWER"/>
  6452. <part name="Q4" library="Transistor" library_urn="urn:adsk.eagle:library:14522416" deviceset="FQD13N06LTM" device="" package3d_urn="urn:adsk.eagle:package:10893256/5" value="IRFR3607PBF"/>
  6453. </parts>
  6454. <sheets>
  6455. <sheet>
  6456. <plain>
  6457. </plain>
  6458. <instances>
  6459. <instance part="C1" gate="G$1" x="129.54" y="124.46" smashed="yes" rot="R90">
  6460. <attribute name="NAME" x="129.54" y="124.46" size="1.778" layer="95" rot="R90"/>
  6461. <attribute name="VALUE" x="134.62" y="124.46" size="1.778" layer="96" rot="R90"/>
  6462. </instance>
  6463. <instance part="D1" gate="G$1" x="149.86" y="132.08" smashed="yes" rot="R180">
  6464. <attribute name="NAME" x="152.146" y="130.175" size="1.778" layer="95" rot="R180"/>
  6465. <attribute name="VALUE" x="152.146" y="135.509" size="1.778" layer="96" rot="R180"/>
  6466. </instance>
  6467. <instance part="L1" gate="G$1" x="119.38" y="132.08" smashed="yes" rot="R180">
  6468. <attribute name="NAME" x="123.19" y="129.794" size="1.778" layer="95" rot="R180"/>
  6469. <attribute name="VALUE" x="123.317" y="135.128" size="1.778" layer="96" rot="R180"/>
  6470. </instance>
  6471. <instance part="C2" gate="G$1" x="106.68" y="104.14" smashed="yes" rot="R90">
  6472. <attribute name="NAME" x="106.68" y="104.14" size="1.778" layer="95" rot="R90"/>
  6473. <attribute name="VALUE" x="111.76" y="104.14" size="1.778" layer="96" rot="R90"/>
  6474. </instance>
  6475. <instance part="C3" gate="G$1" x="91.44" y="119.38" smashed="yes">
  6476. <attribute name="NAME" x="92.583" y="119.8626" size="1.778" layer="95"/>
  6477. <attribute name="VALUE" x="92.583" y="114.7826" size="1.778" layer="96"/>
  6478. </instance>
  6479. <instance part="R1" gate="G$1" x="182.88" y="101.6" smashed="yes" rot="R270">
  6480. <attribute name="NAME" x="179.2986" y="100.33" size="1.778" layer="95" rot="MR90"/>
  6481. <attribute name="VALUE" x="184.658" y="100.33" size="1.778" layer="96" rot="MR90"/>
  6482. </instance>
  6483. <instance part="R2" gate="G$1" x="182.88" y="86.36" smashed="yes" rot="R270">
  6484. <attribute name="NAME" x="179.2986" y="85.09" size="1.778" layer="95" rot="MR90"/>
  6485. <attribute name="VALUE" x="184.658" y="85.09" size="1.778" layer="96" rot="MR90"/>
  6486. </instance>
  6487. <instance part="R3" gate="G$1" x="182.88" y="73.66" smashed="yes" rot="R90">
  6488. <attribute name="NAME" x="181.3814" y="72.39" size="1.778" layer="95" rot="R90"/>
  6489. <attribute name="VALUE" x="186.182" y="72.39" size="1.778" layer="96" rot="R90"/>
  6490. </instance>
  6491. <instance part="J3" gate="G$1" x="195.58" y="93.98" smashed="yes" rot="R180">
  6492. <attribute name="VALUE" x="198.12" y="98.806" size="1.778" layer="96" font="vector" rot="R180"/>
  6493. <attribute name="NAME" x="198.12" y="88.392" size="1.778" layer="95" font="vector" rot="R180"/>
  6494. </instance>
  6495. <instance part="Q1" gate="G$1" x="17.78" y="111.76" smashed="yes" rot="R180">
  6496. <attribute name="NAME" x="11.43" y="110.49" size="1.778" layer="95" rot="R180"/>
  6497. </instance>
  6498. <instance part="J1" gate="G$1" x="55.88" y="111.76" smashed="yes" rot="R180">
  6499. <attribute name="VALUE" x="60.96" y="124.206" size="1.778" layer="96" font="vector" rot="R180"/>
  6500. <attribute name="NAME" x="60.96" y="98.552" size="1.778" layer="95" font="vector" rot="R180"/>
  6501. </instance>
  6502. <instance part="J2" gate="G$1" x="58.42" y="68.58" smashed="yes" rot="R180">
  6503. <attribute name="VALUE" x="60.96" y="73.406" size="1.778" layer="96" font="vector" rot="R180"/>
  6504. <attribute name="NAME" x="60.96" y="62.992" size="1.778" layer="95" font="vector" rot="R180"/>
  6505. </instance>
  6506. <instance part="J5" gate="G$1" x="55.88" y="86.36" smashed="yes" rot="R180">
  6507. <attribute name="VALUE" x="60.96" y="93.726" size="1.778" layer="96" font="vector" rot="R180"/>
  6508. <attribute name="NAME" x="60.96" y="78.232" size="1.778" layer="95" font="vector" rot="R180"/>
  6509. </instance>
  6510. <instance part="R4" gate="G$1" x="48.26" y="33.02" smashed="yes" rot="R90">
  6511. <attribute name="NAME" x="46.7614" y="29.21" size="1.778" layer="95" rot="R90"/>
  6512. <attribute name="VALUE" x="51.562" y="29.21" size="1.778" layer="96" rot="R90"/>
  6513. </instance>
  6514. <instance part="R5" gate="G$1" x="48.26" y="17.78" smashed="yes" rot="R90">
  6515. <attribute name="NAME" x="46.7614" y="13.97" size="1.778" layer="95" rot="R90"/>
  6516. <attribute name="VALUE" x="51.562" y="13.97" size="1.778" layer="96" rot="R90"/>
  6517. </instance>
  6518. <instance part="Q2" gate="G$1" x="45.72" y="45.72" smashed="yes">
  6519. <attribute name="NAME" x="52.07" y="46.99" size="1.778" layer="95"/>
  6520. </instance>
  6521. <instance part="Q3" gate="G$1" x="30.48" y="91.44" smashed="yes" rot="MR180">
  6522. <attribute name="NAME" x="36.83" y="90.17" size="1.778" layer="95" rot="MR180"/>
  6523. </instance>
  6524. <instance part="GND2" gate="1" x="48.26" y="2.54" smashed="yes">
  6525. <attribute name="VALUE" x="45.72" y="0" size="1.778" layer="96"/>
  6526. </instance>
  6527. <instance part="R6" gate="G$1" x="27.94" y="116.84" smashed="yes" rot="R90">
  6528. <attribute name="NAME" x="26.4414" y="113.03" size="1.778" layer="95" rot="R90"/>
  6529. <attribute name="VALUE" x="31.242" y="113.03" size="1.778" layer="96" rot="R90"/>
  6530. </instance>
  6531. <instance part="R7" gate="G$1" x="25.4" y="86.36" smashed="yes" rot="R90">
  6532. <attribute name="NAME" x="23.9014" y="82.55" size="1.778" layer="95" rot="R90"/>
  6533. <attribute name="VALUE" x="28.702" y="82.55" size="1.778" layer="96" rot="R90"/>
  6534. </instance>
  6535. <instance part="D2" gate="D$1" x="78.74" y="116.84" smashed="yes">
  6536. <attribute name="NAME" x="81.28" y="121.92" size="1.778" layer="95"/>
  6537. </instance>
  6538. <instance part="R8" gate="G$1" x="30.48" y="55.88" smashed="yes" rot="MR0">
  6539. <attribute name="NAME" x="34.29" y="57.3786" size="1.778" layer="95" rot="MR0"/>
  6540. <attribute name="VALUE" x="34.29" y="52.578" size="1.778" layer="96" rot="MR0"/>
  6541. </instance>
  6542. <instance part="C4" gate="G$1" x="160.02" y="106.68" smashed="yes">
  6543. <attribute name="NAME" x="162.56" y="109.22" size="1.778" layer="95"/>
  6544. <attribute name="VALUE" x="162.56" y="104.14" size="1.778" layer="96" rot="MR180"/>
  6545. </instance>
  6546. <instance part="U$1" gate="G$1" x="132.08" y="101.6" smashed="yes">
  6547. <attribute name="NAME" x="121.92" y="116.84" size="1.778" layer="95"/>
  6548. <attribute name="VALUE" x="121.92" y="83.82" size="1.778" layer="96"/>
  6549. </instance>
  6550. <instance part="J4" gate="G$1" x="215.9" y="114.3" smashed="yes">
  6551. <attribute name="NAME" x="213.36" y="121.92" size="1.778" layer="95"/>
  6552. <attribute name="VALUE" x="213.36" y="111.76" size="1.778" layer="96"/>
  6553. </instance>
  6554. <instance part="J6" gate="G$1" x="213.36" y="53.34" smashed="yes" rot="MR180">
  6555. <attribute name="NAME" x="210.82" y="45.72" size="1.778" layer="95" rot="MR180"/>
  6556. <attribute name="VALUE" x="208.28" y="55.88" size="1.778" layer="96" rot="MR180"/>
  6557. </instance>
  6558. <instance part="Q4" gate="G$1" x="185.42" y="38.1" smashed="yes">
  6559. <attribute name="NAME" x="184.15" y="43.18" size="1.778" layer="95"/>
  6560. <attribute name="VALUE" x="184.15" y="30.48" size="1.778" layer="96"/>
  6561. </instance>
  6562. </instances>
  6563. <busses>
  6564. </busses>
  6565. <nets>
  6566. <net name="GND" class="0">
  6567. <segment>
  6568. <pinref part="R5" gate="G$1" pin="1"/>
  6569. <pinref part="GND2" gate="1" pin="GND"/>
  6570. <wire x1="48.26" y1="12.7" x2="48.26" y2="7.62" width="0.1524" layer="91"/>
  6571. <pinref part="J1" gate="G$1" pin="2"/>
  6572. <label x="45.72" y="116.84" size="1.778" layer="95"/>
  6573. <pinref part="Q1" gate="G$1" pin="S"/>
  6574. <wire x1="48.26" y1="7.62" x2="48.26" y2="5.08" width="0.1524" layer="91"/>
  6575. <wire x1="50.8" y1="116.84" x2="35.56" y2="116.84" width="0.1524" layer="91"/>
  6576. <wire x1="35.56" y1="116.84" x2="35.56" y2="124.46" width="0.1524" layer="91"/>
  6577. <wire x1="35.56" y1="124.46" x2="27.94" y2="124.46" width="0.1524" layer="91"/>
  6578. <wire x1="27.94" y1="124.46" x2="15.24" y2="124.46" width="0.1524" layer="91"/>
  6579. <wire x1="15.24" y1="124.46" x2="15.24" y2="116.84" width="0.1524" layer="91"/>
  6580. <wire x1="27.94" y1="121.92" x2="27.94" y2="124.46" width="0.1524" layer="91"/>
  6581. <junction x="27.94" y="124.46"/>
  6582. <wire x1="15.24" y1="124.46" x2="5.08" y2="124.46" width="0.1524" layer="91"/>
  6583. <junction x="15.24" y="124.46"/>
  6584. <wire x1="5.08" y1="124.46" x2="5.08" y2="73.66" width="0.1524" layer="91"/>
  6585. <wire x1="5.08" y1="73.66" x2="5.08" y2="55.88" width="0.1524" layer="91"/>
  6586. <wire x1="5.08" y1="55.88" x2="5.08" y2="7.62" width="0.1524" layer="91"/>
  6587. <wire x1="5.08" y1="7.62" x2="48.26" y2="7.62" width="0.1524" layer="91"/>
  6588. <junction x="48.26" y="7.62"/>
  6589. <wire x1="25.4" y1="81.28" x2="25.4" y2="73.66" width="0.1524" layer="91"/>
  6590. <label x="25.4" y="76.2" size="1.778" layer="95"/>
  6591. <wire x1="25.4" y1="73.66" x2="5.08" y2="73.66" width="0.1524" layer="91"/>
  6592. <junction x="5.08" y="73.66"/>
  6593. <pinref part="R6" gate="G$1" pin="2"/>
  6594. <pinref part="R7" gate="G$1" pin="1"/>
  6595. <pinref part="R3" gate="G$1" pin="1"/>
  6596. <wire x1="182.88" y1="68.58" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
  6597. <wire x1="182.88" y1="66.04" x2="160.02" y2="66.04" width="0.1524" layer="91"/>
  6598. <junction x="182.88" y="66.04"/>
  6599. <pinref part="C3" gate="G$1" pin="-"/>
  6600. <wire x1="187.96" y1="66.04" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
  6601. <wire x1="160.02" y1="66.04" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
  6602. <wire x1="101.6" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
  6603. <wire x1="91.44" y1="66.04" x2="91.44" y2="114.3" width="0.1524" layer="91"/>
  6604. <pinref part="D1" gate="G$1" pin="A"/>
  6605. <wire x1="152.4" y1="132.08" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
  6606. <wire x1="200.66" y1="132.08" x2="223.52" y2="132.08" width="0.1524" layer="91"/>
  6607. <pinref part="J3" gate="G$1" pin="2"/>
  6608. <wire x1="187.96" y1="91.44" x2="187.96" y2="66.04" width="0.1524" layer="91"/>
  6609. <wire x1="160.02" y1="99.06" x2="160.02" y2="101.6" width="0.1524" layer="91"/>
  6610. <wire x1="147.32" y1="99.06" x2="160.02" y2="99.06" width="0.1524" layer="91"/>
  6611. <junction x="160.02" y="99.06"/>
  6612. <label x="147.32" y="99.06" size="1.778" layer="95"/>
  6613. <wire x1="160.02" y1="99.06" x2="160.02" y2="66.04" width="0.1524" layer="91"/>
  6614. <junction x="160.02" y="66.04"/>
  6615. <label x="203.2" y="119.38" size="1.778" layer="95"/>
  6616. <pinref part="D2" gate="D$1" pin="P$2"/>
  6617. <wire x1="78.74" y1="109.22" x2="78.74" y2="66.04" width="0.1524" layer="91"/>
  6618. <wire x1="78.74" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
  6619. <junction x="91.44" y="66.04"/>
  6620. <wire x1="48.26" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
  6621. <wire x1="78.74" y1="7.62" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
  6622. <pinref part="R8" gate="G$1" pin="2"/>
  6623. <wire x1="5.08" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
  6624. <junction x="5.08" y="55.88"/>
  6625. <wire x1="200.66" y1="119.38" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
  6626. <junction x="200.66" y="132.08"/>
  6627. <wire x1="223.52" y1="132.08" x2="223.52" y2="12.7" width="0.1524" layer="91"/>
  6628. <wire x1="223.52" y1="12.7" x2="190.5" y2="12.7" width="0.1524" layer="91"/>
  6629. <wire x1="187.96" y1="12.7" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
  6630. <wire x1="116.84" y1="99.06" x2="101.6" y2="99.06" width="0.1524" layer="91"/>
  6631. <wire x1="101.6" y1="99.06" x2="101.6" y2="104.14" width="0.1524" layer="91"/>
  6632. <wire x1="101.6" y1="104.14" x2="104.14" y2="104.14" width="0.1524" layer="91"/>
  6633. <pinref part="C2" gate="G$1" pin="1"/>
  6634. <wire x1="101.6" y1="99.06" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
  6635. <junction x="101.6" y="99.06"/>
  6636. <junction x="101.6" y="66.04"/>
  6637. <label x="111.76" y="99.06" size="1.778" layer="95"/>
  6638. <wire x1="78.74" y1="66.04" x2="78.74" y2="12.7" width="0.1524" layer="91"/>
  6639. <junction x="78.74" y="66.04"/>
  6640. <junction x="78.74" y="12.7"/>
  6641. <pinref part="C4" gate="G$1" pin="P$2"/>
  6642. <pinref part="U$1" gate="G$1" pin="SGND"/>
  6643. <pinref part="U$1" gate="G$1" pin="GND"/>
  6644. <pinref part="J4" gate="G$1" pin="P$1"/>
  6645. <wire x1="200.66" y1="119.38" x2="210.82" y2="119.38" width="0.1524" layer="91"/>
  6646. <pinref part="Q4" gate="G$1" pin="S"/>
  6647. <wire x1="187.96" y1="33.02" x2="187.96" y2="12.7" width="0.1524" layer="91"/>
  6648. <wire x1="187.96" y1="12.7" x2="190.5" y2="12.7" width="0.1524" layer="91"/>
  6649. </segment>
  6650. </net>
  6651. <net name="VIN" class="0">
  6652. <segment>
  6653. <pinref part="J6" gate="G$1" pin="P$2"/>
  6654. <wire x1="208.28" y1="50.8" x2="203.2" y2="50.8" width="0.1524" layer="91"/>
  6655. <label x="203.2" y="50.8" size="1.778" layer="95"/>
  6656. <pinref part="Q2" gate="G$1" pin="D"/>
  6657. <wire x1="48.26" y1="50.8" x2="48.26" y2="58.42" width="0.1524" layer="91"/>
  6658. <label x="53.34" y="53.34" size="1.778" layer="95"/>
  6659. <wire x1="147.32" y1="104.14" x2="154.94" y2="104.14" width="0.1524" layer="91"/>
  6660. <wire x1="182.88" y1="116.84" x2="182.88" y2="106.68" width="0.1524" layer="91"/>
  6661. <pinref part="R1" gate="G$1" pin="1"/>
  6662. <wire x1="182.88" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6663. <junction x="182.88" y="116.84"/>
  6664. <wire x1="154.94" y1="104.14" x2="154.94" y2="116.84" width="0.1524" layer="91"/>
  6665. <wire x1="154.94" y1="116.84" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
  6666. <wire x1="160.02" y1="116.84" x2="182.88" y2="116.84" width="0.1524" layer="91"/>
  6667. <wire x1="160.02" y1="113.03" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
  6668. <junction x="160.02" y="116.84"/>
  6669. <label x="203.2" y="116.84" size="1.778" layer="95"/>
  6670. <wire x1="48.26" y1="58.42" x2="203.2" y2="58.42" width="0.1524" layer="91"/>
  6671. <wire x1="203.2" y1="58.42" x2="205.74" y2="58.42" width="0.1524" layer="91"/>
  6672. <wire x1="205.74" y1="58.42" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6673. <junction x="205.74" y="116.84"/>
  6674. <pinref part="C4" gate="G$1" pin="P$1"/>
  6675. <label x="147.32" y="104.14" size="1.778" layer="95"/>
  6676. <pinref part="U$1" gate="G$1" pin="VIN"/>
  6677. <pinref part="J4" gate="G$1" pin="P$2"/>
  6678. <wire x1="210.82" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6679. <wire x1="203.2" y1="50.8" x2="203.2" y2="58.42" width="0.1524" layer="91"/>
  6680. <junction x="203.2" y="58.42"/>
  6681. </segment>
  6682. </net>
  6683. <net name="N$1" class="0">
  6684. <segment>
  6685. <wire x1="116.84" y1="109.22" x2="114.3" y2="109.22" width="0.1524" layer="91"/>
  6686. <wire x1="114.3" y1="109.22" x2="114.3" y2="124.46" width="0.1524" layer="91"/>
  6687. <pinref part="C1" gate="G$1" pin="1"/>
  6688. <wire x1="114.3" y1="124.46" x2="127" y2="124.46" width="0.1524" layer="91"/>
  6689. <pinref part="U$1" gate="G$1" pin="BST"/>
  6690. </segment>
  6691. </net>
  6692. <net name="N$2" class="0">
  6693. <segment>
  6694. <pinref part="C1" gate="G$1" pin="2"/>
  6695. <wire x1="134.62" y1="124.46" x2="137.16" y2="124.46" width="0.1524" layer="91"/>
  6696. <wire x1="137.16" y1="124.46" x2="149.86" y2="124.46" width="0.1524" layer="91"/>
  6697. <wire x1="149.86" y1="124.46" x2="149.86" y2="109.22" width="0.1524" layer="91"/>
  6698. <wire x1="149.86" y1="109.22" x2="147.32" y2="109.22" width="0.1524" layer="91"/>
  6699. <wire x1="137.16" y1="132.08" x2="137.16" y2="124.46" width="0.1524" layer="91"/>
  6700. <junction x="137.16" y="124.46"/>
  6701. <pinref part="D1" gate="G$1" pin="C"/>
  6702. <wire x1="147.32" y1="132.08" x2="137.16" y2="132.08" width="0.1524" layer="91"/>
  6703. <wire x1="137.16" y1="132.08" x2="127" y2="132.08" width="0.1524" layer="91"/>
  6704. <junction x="137.16" y="132.08"/>
  6705. <pinref part="L1" gate="G$1" pin="1"/>
  6706. <pinref part="U$1" gate="G$1" pin="LX"/>
  6707. </segment>
  6708. </net>
  6709. <net name="12V" class="0">
  6710. <segment>
  6711. <pinref part="L1" gate="G$1" pin="2"/>
  6712. <wire x1="111.76" y1="132.08" x2="99.06" y2="132.08" width="0.1524" layer="91"/>
  6713. <wire x1="99.06" y1="132.08" x2="99.06" y2="93.98" width="0.1524" layer="91"/>
  6714. <wire x1="99.06" y1="93.98" x2="116.84" y2="93.98" width="0.1524" layer="91"/>
  6715. <wire x1="99.06" y1="132.08" x2="91.44" y2="132.08" width="0.1524" layer="91"/>
  6716. <junction x="99.06" y="132.08"/>
  6717. <wire x1="91.44" y1="132.08" x2="91.44" y2="121.92" width="0.1524" layer="91"/>
  6718. <junction x="91.44" y="132.08"/>
  6719. <pinref part="C3" gate="G$1" pin="+"/>
  6720. <label x="86.36" y="132.08" size="1.778" layer="95"/>
  6721. <pinref part="J1" gate="G$1" pin="1"/>
  6722. <wire x1="50.8" y1="119.38" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
  6723. <label x="45.72" y="119.38" size="1.778" layer="95"/>
  6724. <wire x1="91.44" y1="132.08" x2="78.74" y2="132.08" width="0.1524" layer="91"/>
  6725. <wire x1="78.74" y1="132.08" x2="40.64" y2="132.08" width="0.1524" layer="91"/>
  6726. <wire x1="40.64" y1="132.08" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
  6727. <pinref part="D2" gate="D$1" pin="P$1"/>
  6728. <wire x1="78.74" y1="132.08" x2="78.74" y2="124.46" width="0.1524" layer="91"/>
  6729. <junction x="78.74" y="132.08"/>
  6730. <pinref part="U$1" gate="G$1" pin="FB"/>
  6731. </segment>
  6732. </net>
  6733. <net name="N$4" class="0">
  6734. <segment>
  6735. <pinref part="C2" gate="G$1" pin="2"/>
  6736. <wire x1="111.76" y1="104.14" x2="116.84" y2="104.14" width="0.1524" layer="91"/>
  6737. <pinref part="U$1" gate="G$1" pin="VD"/>
  6738. </segment>
  6739. </net>
  6740. <net name="N$5" class="0">
  6741. <segment>
  6742. <wire x1="147.32" y1="93.98" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
  6743. <pinref part="R1" gate="G$1" pin="2"/>
  6744. <wire x1="182.88" y1="96.52" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
  6745. <wire x1="182.88" y1="93.98" x2="182.88" y2="91.44" width="0.1524" layer="91"/>
  6746. <junction x="182.88" y="93.98"/>
  6747. <pinref part="R2" gate="G$1" pin="1"/>
  6748. <pinref part="J3" gate="G$1" pin="1"/>
  6749. <wire x1="182.88" y1="93.98" x2="187.96" y2="93.98" width="0.1524" layer="91"/>
  6750. <pinref part="U$1" gate="G$1" pin="ON/OFF"/>
  6751. </segment>
  6752. </net>
  6753. <net name="N$7" class="0">
  6754. <segment>
  6755. <pinref part="R2" gate="G$1" pin="2"/>
  6756. <pinref part="R3" gate="G$1" pin="2"/>
  6757. <wire x1="182.88" y1="81.28" x2="182.88" y2="78.74" width="0.1524" layer="91"/>
  6758. </segment>
  6759. </net>
  6760. <net name="SPIN" class="0">
  6761. <segment>
  6762. <pinref part="J5" gate="G$1" pin="1"/>
  6763. <wire x1="50.8" y1="88.9" x2="43.18" y2="88.9" width="0.1524" layer="91"/>
  6764. <pinref part="J1" gate="G$1" pin="8"/>
  6765. <wire x1="43.18" y1="88.9" x2="43.18" y2="101.6" width="0.1524" layer="91"/>
  6766. <wire x1="43.18" y1="101.6" x2="50.8" y2="101.6" width="0.1524" layer="91"/>
  6767. <label x="45.72" y="88.9" size="1.778" layer="95"/>
  6768. </segment>
  6769. </net>
  6770. <net name="SPOUT" class="0">
  6771. <segment>
  6772. <pinref part="J5" gate="G$1" pin="2"/>
  6773. <wire x1="50.8" y1="86.36" x2="40.64" y2="86.36" width="0.1524" layer="91"/>
  6774. <pinref part="J1" gate="G$1" pin="7"/>
  6775. <wire x1="40.64" y1="86.36" x2="40.64" y2="104.14" width="0.1524" layer="91"/>
  6776. <wire x1="40.64" y1="104.14" x2="50.8" y2="104.14" width="0.1524" layer="91"/>
  6777. <label x="43.18" y="86.36" size="1.778" layer="95"/>
  6778. </segment>
  6779. </net>
  6780. <net name="ST" class="0">
  6781. <segment>
  6782. <pinref part="J5" gate="G$1" pin="3"/>
  6783. <wire x1="50.8" y1="83.82" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6784. <label x="48.26" y="83.82" size="1.778" layer="95"/>
  6785. <pinref part="Q3" gate="G$1" pin="S"/>
  6786. <wire x1="33.02" y1="96.52" x2="33.02" y2="99.06" width="0.1524" layer="91"/>
  6787. <wire x1="33.02" y1="99.06" x2="38.1" y2="99.06" width="0.1524" layer="91"/>
  6788. <wire x1="38.1" y1="99.06" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6789. </segment>
  6790. </net>
  6791. <net name="5V" class="0">
  6792. <segment>
  6793. <pinref part="J5" gate="G$1" pin="4"/>
  6794. <wire x1="50.8" y1="81.28" x2="40.64" y2="81.28" width="0.1524" layer="91"/>
  6795. <wire x1="40.64" y1="81.28" x2="40.64" y2="68.58" width="0.1524" layer="91"/>
  6796. <pinref part="J2" gate="G$1" pin="1"/>
  6797. <wire x1="40.64" y1="68.58" x2="50.8" y2="68.58" width="0.1524" layer="91"/>
  6798. <label x="48.26" y="81.28" size="1.778" layer="95"/>
  6799. <pinref part="Q3" gate="G$1" pin="D"/>
  6800. <wire x1="33.02" y1="86.36" x2="33.02" y2="81.28" width="0.1524" layer="91"/>
  6801. <wire x1="33.02" y1="81.28" x2="40.64" y2="81.28" width="0.1524" layer="91"/>
  6802. <junction x="40.64" y="81.28"/>
  6803. </segment>
  6804. </net>
  6805. <net name="N$3" class="0">
  6806. <segment>
  6807. <pinref part="Q1" gate="G$1" pin="D"/>
  6808. <wire x1="15.24" y1="106.68" x2="15.24" y2="66.04" width="0.1524" layer="91"/>
  6809. <pinref part="J2" gate="G$1" pin="2"/>
  6810. <wire x1="15.24" y1="66.04" x2="50.8" y2="66.04" width="0.1524" layer="91"/>
  6811. </segment>
  6812. </net>
  6813. <net name="STLEDCTL" class="0">
  6814. <segment>
  6815. <pinref part="Q1" gate="G$1" pin="G"/>
  6816. <wire x1="20.32" y1="114.3" x2="22.86" y2="114.3" width="0.1524" layer="91"/>
  6817. <wire x1="22.86" y1="114.3" x2="22.86" y2="109.22" width="0.1524" layer="91"/>
  6818. <pinref part="J1" gate="G$1" pin="5"/>
  6819. <wire x1="22.86" y1="109.22" x2="27.94" y2="109.22" width="0.1524" layer="91"/>
  6820. <label x="38.1" y="109.22" size="1.778" layer="95"/>
  6821. <wire x1="27.94" y1="109.22" x2="50.8" y2="109.22" width="0.1524" layer="91"/>
  6822. <wire x1="27.94" y1="111.76" x2="27.94" y2="109.22" width="0.1524" layer="91"/>
  6823. <junction x="27.94" y="109.22"/>
  6824. <pinref part="R6" gate="G$1" pin="1"/>
  6825. </segment>
  6826. </net>
  6827. <net name="PWM" class="0">
  6828. <segment>
  6829. <pinref part="Q2" gate="G$1" pin="G"/>
  6830. <wire x1="43.18" y1="43.18" x2="40.64" y2="43.18" width="0.1524" layer="91"/>
  6831. <label x="30.48" y="43.18" size="1.778" layer="95"/>
  6832. <pinref part="R8" gate="G$1" pin="1"/>
  6833. <wire x1="40.64" y1="43.18" x2="30.48" y2="43.18" width="0.1524" layer="91"/>
  6834. <wire x1="40.64" y1="55.88" x2="35.56" y2="55.88" width="0.1524" layer="91"/>
  6835. <wire x1="40.64" y1="55.88" x2="40.64" y2="43.18" width="0.1524" layer="91"/>
  6836. <junction x="40.64" y="43.18"/>
  6837. </segment>
  6838. <segment>
  6839. <pinref part="J1" gate="G$1" pin="4"/>
  6840. <wire x1="50.8" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
  6841. <label x="45.72" y="111.76" size="1.778" layer="95"/>
  6842. </segment>
  6843. <segment>
  6844. <pinref part="Q4" gate="G$1" pin="G"/>
  6845. <wire x1="182.88" y1="35.56" x2="170.18" y2="35.56" width="0.1524" layer="91"/>
  6846. <label x="170.18" y="35.56" size="1.778" layer="95"/>
  6847. </segment>
  6848. </net>
  6849. <net name="BAT" class="0">
  6850. <segment>
  6851. <wire x1="48.26" y1="25.4" x2="30.48" y2="25.4" width="0.1524" layer="91"/>
  6852. <label x="30.48" y="25.4" size="1.778" layer="95"/>
  6853. <wire x1="48.26" y1="27.94" x2="48.26" y2="25.4" width="0.1524" layer="91"/>
  6854. <wire x1="48.26" y1="25.4" x2="48.26" y2="22.86" width="0.1524" layer="91"/>
  6855. <junction x="48.26" y="25.4"/>
  6856. <pinref part="R4" gate="G$1" pin="1"/>
  6857. <pinref part="R5" gate="G$1" pin="2"/>
  6858. </segment>
  6859. <segment>
  6860. <pinref part="J1" gate="G$1" pin="3"/>
  6861. <wire x1="50.8" y1="114.3" x2="40.64" y2="114.3" width="0.1524" layer="91"/>
  6862. <label x="45.72" y="114.3" size="1.778" layer="95"/>
  6863. </segment>
  6864. </net>
  6865. <net name="N$8" class="0">
  6866. <segment>
  6867. <pinref part="Q2" gate="G$1" pin="S"/>
  6868. <pinref part="R4" gate="G$1" pin="2"/>
  6869. <wire x1="48.26" y1="40.64" x2="48.26" y2="38.1" width="0.1524" layer="91"/>
  6870. </segment>
  6871. </net>
  6872. <net name="STOUT" class="0">
  6873. <segment>
  6874. <pinref part="J1" gate="G$1" pin="6"/>
  6875. <pinref part="Q3" gate="G$1" pin="G"/>
  6876. <wire x1="50.8" y1="106.68" x2="25.4" y2="106.68" width="0.1524" layer="91"/>
  6877. <wire x1="25.4" y1="106.68" x2="25.4" y2="93.98" width="0.1524" layer="91"/>
  6878. <wire x1="25.4" y1="93.98" x2="27.94" y2="93.98" width="0.1524" layer="91"/>
  6879. <label x="43.18" y="106.68" size="1.778" layer="95"/>
  6880. <wire x1="25.4" y1="93.98" x2="25.4" y2="91.44" width="0.1524" layer="91"/>
  6881. <junction x="25.4" y="93.98"/>
  6882. <pinref part="R7" gate="G$1" pin="2"/>
  6883. </segment>
  6884. </net>
  6885. <net name="P$1" class="0">
  6886. <segment>
  6887. <pinref part="J6" gate="G$1" pin="P$1"/>
  6888. <wire x1="208.28" y1="48.26" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
  6889. <pinref part="Q4" gate="G$1" pin="D"/>
  6890. <wire x1="187.96" y1="48.26" x2="187.96" y2="43.18" width="0.1524" layer="91"/>
  6891. </segment>
  6892. </net>
  6893. </nets>
  6894. </sheet>
  6895. </sheets>
  6896. </schematic>
  6897. </drawing>
  6898. <compatibility>
  6899. <note version="8.2" severity="warning">
  6900. Since Version 8.2, EAGLE supports online libraries. The ids
  6901. of those online libraries will not be understood (or retained)
  6902. with this version.
  6903. </note>
  6904. <note version="8.3" severity="warning">
  6905. Since Version 8.3, EAGLE supports URNs for individual library
  6906. assets (packages, symbols, and devices). The URNs of those assets
  6907. will not be understood (or retained) with this version.
  6908. </note>
  6909. <note version="8.3" severity="warning">
  6910. Since Version 8.3, EAGLE supports the association of 3D packages
  6911. with devices in libraries, schematics, and board files. Those 3D
  6912. packages will not be understood (or retained) with this version.
  6913. </note>
  6914. <note version="8.4" severity="warning">
  6915. Since Version 8.4, EAGLE supports properties for SPICE simulation.
  6916. Probes in schematics and SPICE mapping objects found in parts and library devices
  6917. will not be understood with this version. Update EAGLE to the latest version
  6918. for full support of SPICE simulation.
  6919. </note>
  6920. </compatibility>
  6921. </eagle>