regulator.sch 340 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875
  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="Connectors" urn="urn:adsk.eagle:library:14555660">
  148. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Connectors&lt;/i&gt;&lt;/h3&gt;
  149. 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.
  150. &lt;BR&gt;
  151. &lt;BR&gt;
  152. 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;.
  153. &lt;BR&gt;
  154. &lt;BR&gt;
  155. 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>
  156. <packages>
  157. <package name="HDR-02" urn="urn:adsk.eagle:footprint:10989906/1" library_version="1">
  158. <pad name="1" x="-1.98" y="0" drill="1.65" shape="square"/>
  159. <pad name="2" x="1.98" y="0" drill="1.65"/>
  160. <wire x1="-3.93" y1="2" x2="-3.93" y2="-6.5" width="0.254" layer="51"/>
  161. <wire x1="-3.93" y1="-6.5" x2="3.93" y2="-6.5" width="0.254" layer="51"/>
  162. <wire x1="3.93" y1="-6.5" x2="3.93" y2="2" width="0.254" layer="51"/>
  163. <wire x1="3.93" y1="2" x2="-3.93" y2="2" width="0.254" layer="51"/>
  164. <wire x1="-3.93" y1="2" x2="-3.93" y2="-6.5" width="0.254" layer="21"/>
  165. <wire x1="-3.93" y1="-6.5" x2="3.93" y2="-6.5" width="0.254" layer="21"/>
  166. <wire x1="3.93" y1="-6.5" x2="3.93" y2="2" width="0.254" layer="21"/>
  167. <wire x1="3.93" y1="2" x2="-3.93" y2="2" width="0.254" layer="21"/>
  168. <wire x1="-4.18" y1="2.25" x2="4.18" y2="2.25" width="0.05" layer="39"/>
  169. <wire x1="4.18" y1="2.25" x2="4.18" y2="-6.75" width="0.05" layer="39"/>
  170. <wire x1="4.18" y1="-6.75" x2="-4.18" y2="-6.75" width="0.05" layer="39"/>
  171. <wire x1="-4.18" y1="-6.75" x2="-4.18" y2="2.25" width="0.05" layer="39"/>
  172. <circle x="-4.5" y="0.25" radius="0.1" width="0.2" layer="21"/>
  173. <text x="-3.81" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  174. <text x="-3.81" y="-8.89" size="1.27" layer="27">&gt;VALUE</text>
  175. </package>
  176. </packages>
  177. <packages3d>
  178. <package3d name="HDR-02" urn="urn:adsk.eagle:package:10989917/2" type="model" library_version="1">
  179. <packageinstances>
  180. <packageinstance name="HDR-02"/>
  181. </packageinstances>
  182. </package3d>
  183. </packages3d>
  184. <symbols>
  185. <symbol name="B2P-VH(LF)(SN)" urn="urn:adsk.eagle:symbol:10990964/1" library_version="1">
  186. <pin name="1" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" rot="R180"/>
  187. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" rot="R180"/>
  188. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  189. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  190. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  191. <wire x1="-2.54" y1="-2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  192. <wire x1="2.54" y1="-2.54" x2="2.54" y2="5.08" width="0.254" layer="94"/>
  193. <wire x1="2.54" y1="5.08" x2="-2.54" y2="5.08" width="0.254" layer="94"/>
  194. <text x="-2.54" y="5.842" size="1.778" layer="95">&gt;NAME</text>
  195. <text x="-2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  196. </symbol>
  197. </symbols>
  198. <devicesets>
  199. <deviceset name="B2P-VH(LF)(SN)" urn="urn:adsk.eagle:component:10990998/4" prefix="J" library_version="1">
  200. <description>&lt;h3&gt; CONN HEADER VERT 2POS 3.96MM &lt;/h3&gt;
  201. &lt;BR&gt;
  202. &lt;a href="http://www.jst-mfg.com/product/pdf/eng/eVH.pdf"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  203. <gates>
  204. <gate name="G$1" symbol="B2P-VH(LF)(SN)" x="0" y="-2.54"/>
  205. </gates>
  206. <devices>
  207. <device name="" package="HDR-02">
  208. <connects>
  209. <connect gate="G$1" pin="1" pad="1"/>
  210. <connect gate="G$1" pin="2" pad="2"/>
  211. </connects>
  212. <package3dinstances>
  213. <package3dinstance package3d_urn="urn:adsk.eagle:package:10989917/2"/>
  214. </package3dinstances>
  215. <technologies>
  216. <technology name="">
  217. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  218. <attribute name="DIGIKEY_PART_NUMBER" value="455-1639-ND" constant="no"/>
  219. <attribute name="MANUFACTURER" value="JST Sales America Inc." constant="no"/>
  220. <attribute name="MPN" value="B2P-VH(LF)(SN)" constant="no"/>
  221. </technology>
  222. </technologies>
  223. </device>
  224. </devices>
  225. </deviceset>
  226. </devicesets>
  227. </library>
  228. <library name="Capacitor" urn="urn:adsk.eagle:library:16290819">
  229. <description>&lt;B&gt;Capacitors - Fixed, Variable, Trimmers</description>
  230. <packages>
  231. <package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/2" library_version="4">
  232. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  233. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  234. <wire x1="0.55" y1="0.6286" x2="-0.55" y2="0.6286" width="0.127" layer="21"/>
  235. <wire x1="0.55" y1="-0.6286" x2="-0.55" y2="-0.6286" width="0.127" layer="21"/>
  236. <wire x1="0.55" y1="-0.3" x2="-0.55" y2="-0.3" width="0.12" layer="51"/>
  237. <wire x1="-0.55" y1="-0.3" x2="-0.55" y2="0.3" width="0.12" layer="51"/>
  238. <wire x1="-0.55" y1="0.3" x2="0.55" y2="0.3" width="0.12" layer="51"/>
  239. <wire x1="0.55" y1="0.3" x2="0.55" y2="-0.3" width="0.12" layer="51"/>
  240. <smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  241. <smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  242. <text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  243. <text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  244. </package>
  245. <package name="CAPC1110X102" urn="urn:adsk.eagle:footprint:16290845/2" library_version="4">
  246. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  247. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  248. <wire x1="0.66" y1="0.9552" x2="-0.66" y2="0.9552" width="0.127" layer="21"/>
  249. <wire x1="0.66" y1="-0.9552" x2="-0.66" y2="-0.9552" width="0.127" layer="21"/>
  250. <wire x1="0.66" y1="-0.635" x2="-0.66" y2="-0.635" width="0.12" layer="51"/>
  251. <wire x1="-0.66" y1="-0.635" x2="-0.66" y2="0.635" width="0.12" layer="51"/>
  252. <wire x1="-0.66" y1="0.635" x2="0.66" y2="0.635" width="0.12" layer="51"/>
  253. <wire x1="0.66" y1="0.635" x2="0.66" y2="-0.635" width="0.12" layer="51"/>
  254. <smd name="1" x="-0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  255. <smd name="2" x="0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  256. <text x="0" y="1.5902" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  257. <text x="0" y="-1.5902" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  258. </package>
  259. <package name="CAPC1608X85" urn="urn:adsk.eagle:footprint:16290847/2" library_version="4">
  260. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  261. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  262. <wire x1="0.875" y1="0.7991" x2="-0.875" y2="0.7991" width="0.127" layer="21"/>
  263. <wire x1="0.875" y1="-0.7991" x2="-0.875" y2="-0.7991" width="0.127" layer="21"/>
  264. <wire x1="0.875" y1="-0.475" x2="-0.875" y2="-0.475" width="0.12" layer="51"/>
  265. <wire x1="-0.875" y1="-0.475" x2="-0.875" y2="0.475" width="0.12" layer="51"/>
  266. <wire x1="-0.875" y1="0.475" x2="0.875" y2="0.475" width="0.12" layer="51"/>
  267. <wire x1="0.875" y1="0.475" x2="0.875" y2="-0.475" width="0.12" layer="51"/>
  268. <smd name="1" x="-0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  269. <smd name="2" x="0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  270. <text x="0" y="1.4341" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  271. <text x="0" y="-1.4341" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  272. </package>
  273. <package name="CAPC2012X110" urn="urn:adsk.eagle:footprint:16290848/2" library_version="4">
  274. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  275. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  276. <wire x1="1.1" y1="1.0467" x2="-1.1" y2="1.0467" width="0.127" layer="21"/>
  277. <wire x1="1.1" y1="-1.0467" x2="-1.1" y2="-1.0467" width="0.127" layer="21"/>
  278. <wire x1="1.1" y1="-0.725" x2="-1.1" y2="-0.725" width="0.12" layer="51"/>
  279. <wire x1="-1.1" y1="-0.725" x2="-1.1" y2="0.725" width="0.12" layer="51"/>
  280. <wire x1="-1.1" y1="0.725" x2="1.1" y2="0.725" width="0.12" layer="51"/>
  281. <wire x1="1.1" y1="0.725" x2="1.1" y2="-0.725" width="0.12" layer="51"/>
  282. <smd name="1" x="-0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  283. <smd name="2" x="0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  284. <text x="0" y="1.6817" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  285. <text x="0" y="-1.6817" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  286. </package>
  287. <package name="CAPC3216X135" urn="urn:adsk.eagle:footprint:16290836/2" library_version="4">
  288. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  289. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  290. <wire x1="1.7" y1="1.2217" x2="-1.7" y2="1.2217" width="0.127" layer="21"/>
  291. <wire x1="1.7" y1="-1.2217" x2="-1.7" y2="-1.2217" width="0.127" layer="21"/>
  292. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  293. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  294. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  295. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  296. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  297. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  298. <text x="0" y="1.8567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  299. <text x="0" y="-1.8567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  300. </package>
  301. <package name="CAPC3225X135" urn="urn:adsk.eagle:footprint:16290843/2" library_version="4">
  302. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  303. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  304. <wire x1="1.7" y1="1.6717" x2="-1.7" y2="1.6717" width="0.127" layer="21"/>
  305. <wire x1="1.7" y1="-1.6717" x2="-1.7" y2="-1.6717" width="0.12" layer="21"/>
  306. <wire x1="1.7" y1="-1.35" x2="-1.7" y2="-1.35" width="0.12" layer="51"/>
  307. <wire x1="-1.7" y1="-1.35" x2="-1.7" y2="1.35" width="0.12" layer="51"/>
  308. <wire x1="-1.7" y1="1.35" x2="1.7" y2="1.35" width="0.12" layer="51"/>
  309. <wire x1="1.7" y1="1.35" x2="1.7" y2="-1.35" width="0.12" layer="51"/>
  310. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  311. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  312. <text x="0" y="2.3067" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  313. <text x="0" y="-2.3067" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  314. </package>
  315. <package name="CAPC4532X135" urn="urn:adsk.eagle:footprint:16290841/2" library_version="4">
  316. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  317. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  318. <wire x1="2.4" y1="2.0217" x2="-2.4" y2="2.0217" width="0.127" layer="21"/>
  319. <wire x1="2.4" y1="-2.0217" x2="-2.4" y2="-2.0217" width="0.127" layer="21"/>
  320. <wire x1="2.4" y1="-1.7" x2="-2.4" y2="-1.7" width="0.12" layer="51"/>
  321. <wire x1="-2.4" y1="-1.7" x2="-2.4" y2="1.7" width="0.12" layer="51"/>
  322. <wire x1="-2.4" y1="1.7" x2="2.4" y2="1.7" width="0.12" layer="51"/>
  323. <wire x1="2.4" y1="1.7" x2="2.4" y2="-1.7" width="0.12" layer="51"/>
  324. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  325. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  326. <text x="0" y="2.6567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  327. <text x="0" y="-2.6567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  328. </package>
  329. <package name="CAPM3216X180" urn="urn:adsk.eagle:footprint:16290835/2" library_version="4">
  330. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  331. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  332. <wire x1="-1.7" y1="0.9084" x2="1.7" y2="0.9084" width="0.127" layer="21"/>
  333. <wire x1="-1.7" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.127" layer="21"/>
  334. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  335. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  336. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  337. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  338. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  339. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  340. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  341. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  342. </package>
  343. <package name="CAPM3528X210" urn="urn:adsk.eagle:footprint:16290844/2" library_version="4">
  344. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  345. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  346. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.127" layer="21"/>
  347. <wire x1="-1.85" y1="-1.5" x2="1.85" y2="-1.5" width="0.127" layer="21"/>
  348. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  349. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  350. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  351. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  352. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  353. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  354. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  355. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  356. </package>
  357. <package name="CAPM6032X280" urn="urn:adsk.eagle:footprint:16290839/2" library_version="4">
  358. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  359. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  360. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.127" layer="21"/>
  361. <wire x1="-3.15" y1="-1.75" x2="3.15" y2="-1.75" width="0.127" layer="21"/>
  362. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  363. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  364. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  365. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  366. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  367. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  368. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  369. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  370. </package>
  371. <package name="CAPM7343X310" urn="urn:adsk.eagle:footprint:16290840/2" library_version="4">
  372. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  373. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  374. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.127" layer="21"/>
  375. <wire x1="-3.8" y1="-2.3" x2="3.8" y2="-2.3" width="0.127" layer="21"/>
  376. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  377. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  378. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  379. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  380. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  381. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  382. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  383. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  384. </package>
  385. <package name="CAPC4564X110" urn="urn:adsk.eagle:footprint:16290837/2" library_version="4">
  386. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  387. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  388. <wire x1="2.4" y1="3.7179" x2="-2.4" y2="3.7179" width="0.127" layer="21"/>
  389. <wire x1="2.4" y1="-3.7179" x2="-2.4" y2="-3.7179" width="0.127" layer="21"/>
  390. <wire x1="2.4" y1="-3.4" x2="-2.4" y2="-3.4" width="0.12" layer="51"/>
  391. <wire x1="-2.4" y1="-3.4" x2="-2.4" y2="3.4" width="0.12" layer="51"/>
  392. <wire x1="-2.4" y1="3.4" x2="2.4" y2="3.4" width="0.12" layer="51"/>
  393. <wire x1="2.4" y1="3.4" x2="2.4" y2="-3.4" width="0.12" layer="51"/>
  394. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  395. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  396. <text x="0" y="4.3529" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  397. <text x="0" y="-4.3529" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  398. </package>
  399. <package name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:footprint:16290829/2" library_version="4">
  400. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  401. &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>
  402. <circle x="0" y="0" radius="5.25" width="0.127" layer="21"/>
  403. <circle x="0" y="0" radius="5.25" width="0.12" layer="51"/>
  404. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  405. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  406. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  407. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  408. </package>
  409. <package name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:footprint:16290850/2" library_version="4">
  410. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  411. &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>
  412. <circle x="0" y="0" radius="25.79" width="0.127" layer="21"/>
  413. <circle x="0" y="0" radius="25.79" width="0.12" layer="51"/>
  414. <pad name="1" x="-11.305" y="0" drill="2.6" diameter="3.9"/>
  415. <pad name="2" x="11.305" y="0" drill="2.6" diameter="3.9"/>
  416. <text x="0" y="26.425" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  417. <text x="0" y="-26.425" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  418. </package>
  419. <package name="CAPMP3216X180N" urn="urn:adsk.eagle:footprint:16290838/1" library_version="4">
  420. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  421. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  422. <wire x1="1.7" y1="0.9084" x2="-2.5217" y2="0.9084" width="0.12" layer="21"/>
  423. <wire x1="-2.5217" y1="0.9084" x2="-2.5217" y2="-0.9084" width="0.12" layer="21"/>
  424. <wire x1="-2.5217" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.12" layer="21"/>
  425. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  426. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  427. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  428. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  429. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  430. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  431. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  432. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  433. </package>
  434. <package name="CAPMP3528X210N" urn="urn:adsk.eagle:footprint:16290842/1" library_version="4">
  435. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  436. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  437. <wire x1="1.85" y1="1.5" x2="-2.6717" y2="1.5" width="0.12" layer="21"/>
  438. <wire x1="-2.6717" y1="1.5" x2="-2.6717" y2="-1.5" width="0.12" layer="21"/>
  439. <wire x1="-2.6717" y1="-1.5" x2="1.85" y2="-1.5" width="0.12" layer="21"/>
  440. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  441. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  442. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  443. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  444. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  445. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  446. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  447. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  448. </package>
  449. <package name="CAPMP6032X280N" urn="urn:adsk.eagle:footprint:16290825/1" library_version="4">
  450. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  451. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  452. <wire x1="3.15" y1="1.75" x2="-3.9692" y2="1.75" width="0.12" layer="21"/>
  453. <wire x1="-3.9692" y1="1.75" x2="-3.9692" y2="-1.75" width="0.12" layer="21"/>
  454. <wire x1="-3.9692" y1="-1.75" x2="3.15" y2="-1.75" width="0.12" layer="21"/>
  455. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  456. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  457. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  458. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  459. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  460. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  461. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  462. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  463. </package>
  464. <package name="CAPMP7343X310N" urn="urn:adsk.eagle:footprint:16290846/1" library_version="4">
  465. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  466. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  467. <wire x1="3.8" y1="2.3" x2="-4.6192" y2="2.3" width="0.12" layer="21"/>
  468. <wire x1="-4.6192" y1="2.3" x2="-4.6192" y2="-2.3" width="0.12" layer="21"/>
  469. <wire x1="-4.6192" y1="-2.3" x2="3.8" y2="-2.3" width="0.12" layer="21"/>
  470. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  471. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  472. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  473. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  474. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  475. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  476. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  477. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  478. </package>
  479. <package name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:footprint:16290830/1" library_version="4">
  480. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  481. &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>
  482. <circle x="0" y="0" radius="5" width="0.12" layer="21"/>
  483. <circle x="0" y="0" radius="5" width="0.12" layer="51"/>
  484. <wire x1="-4.1325" y1="4.1326" x2="-3.3825" y2="4.1326" width="0.12" layer="21"/>
  485. <wire x1="-3.7575" y1="4.5076" x2="-3.7575" y2="3.7576" width="0.12" layer="21"/>
  486. <pad name="1" x="-2.54" y="0" drill="0.85" diameter="1.45"/>
  487. <pad name="2" x="2.54" y="0" drill="0.85" diameter="1.45"/>
  488. <text x="0" y="5.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  489. <text x="0" y="-5.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  490. </package>
  491. <package name="CAPAE1030X1050N" urn="urn:adsk.eagle:footprint:16290833/1" library_version="4">
  492. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  493. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  494. <wire x1="-5.25" y1="1.3117" x2="-5.25" y2="3.1538" width="0.12" layer="21"/>
  495. <wire x1="-5.25" y1="3.1538" x2="-3.1538" y2="5.25" width="0.12" layer="21"/>
  496. <wire x1="-3.1538" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="21"/>
  497. <wire x1="5.25" y1="5.25" x2="5.25" y2="1.3117" width="0.12" layer="21"/>
  498. <wire x1="-5.25" y1="-1.3117" x2="-5.25" y2="-3.1538" width="0.12" layer="21"/>
  499. <wire x1="-5.25" y1="-3.1538" x2="-3.1538" y2="-5.25" width="0.12" layer="21"/>
  500. <wire x1="-3.1538" y1="-5.25" x2="5.25" y2="-5.25" width="0.12" layer="21"/>
  501. <wire x1="5.25" y1="-5.25" x2="5.25" y2="-1.3117" width="0.12" layer="21"/>
  502. <wire x1="5.25" y1="-5.25" x2="-5.25" y2="-5.25" width="0.12" layer="51"/>
  503. <wire x1="-5.25" y1="-5.25" x2="-5.25" y2="5.25" width="0.12" layer="51"/>
  504. <wire x1="-5.25" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="51"/>
  505. <wire x1="5.25" y1="5.25" x2="5.25" y2="-5.25" width="0.12" layer="51"/>
  506. <smd name="1" x="-4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  507. <smd name="2" x="4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  508. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  509. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  510. </package>
  511. <package name="CAPAE830X1050N" urn="urn:adsk.eagle:footprint:16290826/1" library_version="4">
  512. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  513. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  514. <wire x1="-4.25" y1="1.3117" x2="-4.25" y2="2.6538" width="0.12" layer="21"/>
  515. <wire x1="-4.25" y1="2.6538" x2="-2.6538" y2="4.25" width="0.12" layer="21"/>
  516. <wire x1="-2.6538" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="21"/>
  517. <wire x1="4.25" y1="4.25" x2="4.25" y2="1.3117" width="0.12" layer="21"/>
  518. <wire x1="-4.25" y1="-1.3117" x2="-4.25" y2="-2.6538" width="0.12" layer="21"/>
  519. <wire x1="-4.25" y1="-2.6538" x2="-2.6538" y2="-4.25" width="0.12" layer="21"/>
  520. <wire x1="-2.6538" y1="-4.25" x2="4.25" y2="-4.25" width="0.12" layer="21"/>
  521. <wire x1="4.25" y1="-4.25" x2="4.25" y2="-1.3117" width="0.12" layer="21"/>
  522. <wire x1="4.25" y1="-4.25" x2="-4.25" y2="-4.25" width="0.12" layer="51"/>
  523. <wire x1="-4.25" y1="-4.25" x2="-4.25" y2="4.25" width="0.12" layer="51"/>
  524. <wire x1="-4.25" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="51"/>
  525. <wire x1="4.25" y1="4.25" x2="4.25" y2="-4.25" width="0.12" layer="51"/>
  526. <smd name="1" x="-3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  527. <smd name="2" x="3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  528. <text x="0" y="4.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  529. <text x="0" y="-4.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  530. </package>
  531. <package name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:footprint:16290828/1" library_version="4">
  532. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  533. &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>
  534. <circle x="0" y="0" radius="11.75" width="0.12" layer="21"/>
  535. <circle x="0" y="0" radius="11.75" width="0.12" layer="51"/>
  536. <wire x1="-8.9055" y1="8.9056" x2="-8.1555" y2="8.9056" width="0.12" layer="21"/>
  537. <wire x1="-8.5305" y1="9.2806" x2="-8.5305" y2="8.5306" width="0.12" layer="21"/>
  538. <pad name="1" x="-5" y="0" drill="1.2" diameter="1.8"/>
  539. <pad name="2" x="5" y="0" drill="1.2" diameter="1.8"/>
  540. <text x="0" y="12.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  541. <text x="0" y="-12.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  542. </package>
  543. <package name="CAPAE1905X1660N" urn="urn:adsk.eagle:footprint:16290827/1" library_version="4">
  544. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  545. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  546. <wire x1="-9.6" y1="1.4617" x2="-9.6" y2="5.4038" width="0.12" layer="21"/>
  547. <wire x1="-9.6" y1="5.4038" x2="-5.4038" y2="9.6" width="0.12" layer="21"/>
  548. <wire x1="-5.4038" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="21"/>
  549. <wire x1="9.6" y1="9.6" x2="9.6" y2="1.4617" width="0.12" layer="21"/>
  550. <wire x1="-9.6" y1="-1.4617" x2="-9.6" y2="-5.4038" width="0.12" layer="21"/>
  551. <wire x1="-9.6" y1="-5.4038" x2="-5.4038" y2="-9.6" width="0.12" layer="21"/>
  552. <wire x1="-5.4038" y1="-9.6" x2="9.6" y2="-9.6" width="0.12" layer="21"/>
  553. <wire x1="9.6" y1="-9.6" x2="9.6" y2="-1.4617" width="0.12" layer="21"/>
  554. <wire x1="9.6" y1="-9.6" x2="-9.6" y2="-9.6" width="0.12" layer="51"/>
  555. <wire x1="-9.6" y1="-9.6" x2="-9.6" y2="9.6" width="0.12" layer="51"/>
  556. <wire x1="-9.6" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="51"/>
  557. <wire x1="9.6" y1="9.6" x2="9.6" y2="-9.6" width="0.12" layer="51"/>
  558. <smd name="1" x="-6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  559. <smd name="2" x="6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  560. <text x="0" y="10.235" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  561. <text x="0" y="-10.235" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  562. </package>
  563. <package name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:footprint:16290834/1" library_version="4">
  564. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  565. &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>
  566. <circle x="0" y="0" radius="6.25" width="0.12" layer="21"/>
  567. <circle x="0" y="0" radius="6.25" width="0.12" layer="51"/>
  568. <wire x1="-5.0164" y1="5.0165" x2="-4.2664" y2="5.0165" width="0.12" layer="21"/>
  569. <wire x1="-4.6414" y1="5.3915" x2="-4.6414" y2="4.6415" width="0.12" layer="21"/>
  570. <pad name="1" x="-2.75" y="0" drill="1.3" diameter="1.95"/>
  571. <pad name="2" x="2.75" y="0" drill="1.3" diameter="1.95"/>
  572. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  573. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  574. </package>
  575. <package name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:footprint:16290832/1" library_version="4">
  576. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  577. &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>
  578. <circle x="0" y="0" radius="6" width="0.12" layer="21"/>
  579. <circle x="0" y="0" radius="6" width="0.12" layer="51"/>
  580. <wire x1="-4.8397" y1="4.8397" x2="-4.0897" y2="4.8397" width="0.12" layer="21"/>
  581. <wire x1="-4.4647" y1="5.2147" x2="-4.4647" y2="4.4647" width="0.12" layer="21"/>
  582. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  583. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  584. <text x="0" y="6.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  585. <text x="0" y="-6.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  586. </package>
  587. <package name="CAPMP7443X430N" urn="urn:adsk.eagle:footprint:16290831/1" library_version="4">
  588. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  589. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  590. <wire x1="3.825" y1="2.25" x2="-4.6458" y2="2.25" width="0.12" layer="21"/>
  591. <wire x1="-4.6458" y1="2.25" x2="-4.6458" y2="-2.25" width="0.12" layer="21"/>
  592. <wire x1="-4.6458" y1="-2.25" x2="3.825" y2="-2.25" width="0.12" layer="21"/>
  593. <wire x1="3.825" y1="-2.25" x2="-3.825" y2="-2.25" width="0.12" layer="51"/>
  594. <wire x1="-3.825" y1="-2.25" x2="-3.825" y2="2.25" width="0.12" layer="51"/>
  595. <wire x1="-3.825" y1="2.25" x2="3.825" y2="2.25" width="0.12" layer="51"/>
  596. <wire x1="3.825" y1="2.25" x2="3.825" y2="-2.25" width="0.12" layer="51"/>
  597. <smd name="1" x="-3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  598. <smd name="2" x="3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  599. <text x="0" y="2.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  600. <text x="0" y="-2.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  601. </package>
  602. <package name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:footprint:16290824/1" library_version="4">
  603. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  604. &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>
  605. <wire x1="-15.25" y1="9.25" x2="-15.25" y2="-9.25" width="0.12" layer="21"/>
  606. <wire x1="-15.25" y1="-9.25" x2="15.25" y2="-9.25" width="0.12" layer="21"/>
  607. <wire x1="15.25" y1="-9.25" x2="15.25" y2="9.25" width="0.12" layer="21"/>
  608. <wire x1="15.25" y1="9.25" x2="-15.25" y2="9.25" width="0.12" layer="21"/>
  609. <wire x1="-11.4375" y1="9.25" x2="-11.4375" y2="-9.25" width="0.12" layer="21"/>
  610. <wire x1="-15.25" y1="0" x2="-15.996" y2="0" width="0.12" layer="21"/>
  611. <wire x1="15.25" y1="0" x2="15.996" y2="0" width="0.12" layer="21"/>
  612. <wire x1="15.25" y1="-9.25" x2="-15.25" y2="-9.25" width="0.12" layer="51"/>
  613. <wire x1="-15.25" y1="-9.25" x2="-15.25" y2="9.25" width="0.12" layer="51"/>
  614. <wire x1="-15.25" y1="9.25" x2="15.25" y2="9.25" width="0.12" layer="51"/>
  615. <wire x1="15.25" y1="9.25" x2="15.25" y2="-9.25" width="0.12" layer="51"/>
  616. <pad name="1" x="-17.05" y="0" drill="1" diameter="1.6"/>
  617. <pad name="2" x="17.05" y="0" drill="1" diameter="1.6"/>
  618. <text x="0" y="9.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  619. <text x="0" y="-9.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  620. </package>
  621. </packages>
  622. <packages3d>
  623. <package3d name="CAPC1005X60" urn="urn:adsk.eagle:package:16290895/2" type="model" library_version="4">
  624. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  625. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  626. <packageinstances>
  627. <packageinstance name="CAPC1005X60"/>
  628. </packageinstances>
  629. </package3d>
  630. <package3d name="CAPC1110X102" urn="urn:adsk.eagle:package:16290904/2" type="model" library_version="4">
  631. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  632. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  633. <packageinstances>
  634. <packageinstance name="CAPC1110X102"/>
  635. </packageinstances>
  636. </package3d>
  637. <package3d name="CAPC1608X85" urn="urn:adsk.eagle:package:16290898/2" type="model" library_version="4">
  638. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  639. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  640. <packageinstances>
  641. <packageinstance name="CAPC1608X85"/>
  642. </packageinstances>
  643. </package3d>
  644. <package3d name="CAPC2012X110" urn="urn:adsk.eagle:package:16290897/2" type="model" library_version="4">
  645. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  646. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  647. <packageinstances>
  648. <packageinstance name="CAPC2012X110"/>
  649. </packageinstances>
  650. </package3d>
  651. <package3d name="CAPC3216X135" urn="urn:adsk.eagle:package:16290893/2" type="model" library_version="4">
  652. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  653. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  654. <packageinstances>
  655. <packageinstance name="CAPC3216X135"/>
  656. </packageinstances>
  657. </package3d>
  658. <package3d name="CAPC3225X135" urn="urn:adsk.eagle:package:16290903/2" type="model" library_version="4">
  659. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  660. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  661. <packageinstances>
  662. <packageinstance name="CAPC3225X135"/>
  663. </packageinstances>
  664. </package3d>
  665. <package3d name="CAPC4532X135" urn="urn:adsk.eagle:package:16290900/2" type="model" library_version="4">
  666. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  667. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  668. <packageinstances>
  669. <packageinstance name="CAPC4532X135"/>
  670. </packageinstances>
  671. </package3d>
  672. <package3d name="CAPM3216X180" urn="urn:adsk.eagle:package:16290894/2" type="model" library_version="4">
  673. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  674. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  675. <packageinstances>
  676. <packageinstance name="CAPM3216X180"/>
  677. </packageinstances>
  678. </package3d>
  679. <package3d name="CAPM3528X210" urn="urn:adsk.eagle:package:16290902/2" type="model" library_version="4">
  680. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  681. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  682. <packageinstances>
  683. <packageinstance name="CAPM3528X210"/>
  684. </packageinstances>
  685. </package3d>
  686. <package3d name="CAPM6032X280" urn="urn:adsk.eagle:package:16290896/2" type="model" library_version="4">
  687. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  688. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  689. <packageinstances>
  690. <packageinstance name="CAPM6032X280"/>
  691. </packageinstances>
  692. </package3d>
  693. <package3d name="CAPM7343X310" urn="urn:adsk.eagle:package:16290891/2" type="model" library_version="4">
  694. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  695. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  696. <packageinstances>
  697. <packageinstance name="CAPM7343X310"/>
  698. </packageinstances>
  699. </package3d>
  700. <package3d name="CAPC4564X110L" urn="urn:adsk.eagle:package:16290887/3" type="model" library_version="4">
  701. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  702. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  703. <packageinstances>
  704. <packageinstance name="CAPC4564X110"/>
  705. </packageinstances>
  706. </package3d>
  707. <package3d name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:package:16290858/2" type="model" library_version="4">
  708. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  709. &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>
  710. <packageinstances>
  711. <packageinstance name="CAPRD550W60D1025H1250B"/>
  712. </packageinstances>
  713. </package3d>
  714. <package3d name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:package:16290864/2" type="model" library_version="4">
  715. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  716. &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>
  717. <packageinstances>
  718. <packageinstance name="CAPRD2261W240D5080H5555B"/>
  719. </packageinstances>
  720. </package3d>
  721. <package3d name="CAPMP3216X180N" urn="urn:adsk.eagle:package:16290884/1" type="model" library_version="4">
  722. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  723. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  724. <packageinstances>
  725. <packageinstance name="CAPMP3216X180N"/>
  726. </packageinstances>
  727. </package3d>
  728. <package3d name="CAPMP3528X210N" urn="urn:adsk.eagle:package:16290901/1" type="model" library_version="4">
  729. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  730. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  731. <packageinstances>
  732. <packageinstance name="CAPMP3528X210N"/>
  733. </packageinstances>
  734. </package3d>
  735. <package3d name="CAPMP6032X280N" urn="urn:adsk.eagle:package:16290892/1" type="model" library_version="4">
  736. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  737. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  738. <packageinstances>
  739. <packageinstance name="CAPMP6032X280N"/>
  740. </packageinstances>
  741. </package3d>
  742. <package3d name="CAPMP7343X310N" urn="urn:adsk.eagle:package:16290885/1" type="model" library_version="4">
  743. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  744. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  745. <packageinstances>
  746. <packageinstance name="CAPMP7343X310N"/>
  747. </packageinstances>
  748. </package3d>
  749. <package3d name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:package:16290899/1" type="model" library_version="4">
  750. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  751. &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>
  752. <packageinstances>
  753. <packageinstance name="CAPPRD508W65D1000H1100B"/>
  754. </packageinstances>
  755. </package3d>
  756. <package3d name="CAPAE1030X1050N" urn="urn:adsk.eagle:package:16290882/1" type="model" library_version="4">
  757. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  758. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  759. <packageinstances>
  760. <packageinstance name="CAPAE1030X1050N"/>
  761. </packageinstances>
  762. </package3d>
  763. <package3d name="CAPAE830X1050N" urn="urn:adsk.eagle:package:16290889/1" type="model" library_version="4">
  764. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  765. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  766. <packageinstances>
  767. <packageinstance name="CAPAE830X1050N"/>
  768. </packageinstances>
  769. </package3d>
  770. <package3d name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:package:16290888/1" type="model" library_version="4">
  771. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  772. &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>
  773. <packageinstances>
  774. <packageinstance name="CAPPRD1000W100D2275H3200B"/>
  775. </packageinstances>
  776. </package3d>
  777. <package3d name="CAPAE1905X1660N" urn="urn:adsk.eagle:package:16290872/1" type="model" library_version="4">
  778. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  779. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  780. <packageinstances>
  781. <packageinstance name="CAPAE1905X1660N"/>
  782. </packageinstances>
  783. </package3d>
  784. <package3d name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:package:16290890/1" type="model" library_version="4">
  785. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  786. &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>
  787. <packageinstances>
  788. <packageinstance name="CAPPRD550W110D1250H2500B"/>
  789. </packageinstances>
  790. </package3d>
  791. <package3d name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:package:16290874/1" type="model" library_version="4">
  792. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  793. &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>
  794. <packageinstances>
  795. <packageinstance name="CAPPRD550W60D1200H2000B"/>
  796. </packageinstances>
  797. </package3d>
  798. <package3d name="CAPMP7443X430N" urn="urn:adsk.eagle:package:16290866/1" type="model" library_version="4">
  799. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  800. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  801. <packageinstances>
  802. <packageinstance name="CAPMP7443X430N"/>
  803. </packageinstances>
  804. </package3d>
  805. <package3d name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:package:16290868/1" type="model" library_version="4">
  806. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  807. &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>
  808. <packageinstances>
  809. <packageinstance name="CAPPAD3410W80L3025D1825B"/>
  810. </packageinstances>
  811. </package3d>
  812. </packages3d>
  813. <symbols>
  814. <symbol name="C" urn="urn:adsk.eagle:symbol:16290820/1" library_version="4">
  815. <description>Capacitor</description>
  816. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  817. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  818. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  819. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  820. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  821. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  822. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  823. <text x="2.54" y="-2.54" size="1.778" layer="97">&gt;SPICEMODEL</text>
  824. <text x="2.54" y="0" size="1.778" layer="96">&gt;VALUE</text>
  825. <text x="2.54" y="-5.08" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  826. </symbol>
  827. <symbol name="CPOL" urn="urn:adsk.eagle:symbol:16290823/1" library_version="4">
  828. <wire x1="-1.524" y1="-0.889" x2="1.524" y2="-0.889" width="0.254" layer="94"/>
  829. <wire x1="1.524" y1="-0.889" x2="1.524" y2="0" width="0.254" layer="94"/>
  830. <wire x1="-1.524" y1="0" x2="-1.524" y2="-0.889" width="0.254" layer="94"/>
  831. <wire x1="-1.524" y1="0" x2="1.524" y2="0" width="0.254" layer="94"/>
  832. <text x="1.143" y="0.4826" size="1.778" layer="95">&gt;NAME</text>
  833. <text x="-0.5842" y="0.4064" size="1.27" layer="94" rot="R90">+</text>
  834. <text x="1.143" y="-4.5974" size="1.778" layer="96">&gt;VALUE</text>
  835. <rectangle x1="-1.651" y1="-2.54" x2="1.651" y2="-1.651" layer="94"/>
  836. <pin name="-" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  837. <pin name="+" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
  838. </symbol>
  839. </symbols>
  840. <devicesets>
  841. <deviceset name="C" urn="urn:adsk.eagle:component:16290909/4" prefix="C" uservalue="yes" library_version="4">
  842. <description>&lt;B&gt;Capacitor - Generic</description>
  843. <gates>
  844. <gate name="G$1" symbol="C" x="0" y="0"/>
  845. </gates>
  846. <devices>
  847. <device name="CHIP-0402(1005-METRIC)" package="CAPC1005X60">
  848. <connects>
  849. <connect gate="G$1" pin="1" pad="1"/>
  850. <connect gate="G$1" pin="2" pad="2"/>
  851. </connects>
  852. <package3dinstances>
  853. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290895/2"/>
  854. </package3dinstances>
  855. <technologies>
  856. <technology name="_">
  857. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  858. <attribute name="MANUFACTURER" value="" constant="no"/>
  859. <attribute name="MPN" value="" constant="no"/>
  860. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  861. <attribute name="PART_STATUS" value="" constant="no"/>
  862. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  863. <attribute name="SERIES" value="" constant="no"/>
  864. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  865. <attribute name="THERMALLOSS" value="" constant="no"/>
  866. <attribute name="TYPE" value="" constant="no"/>
  867. <attribute name="VALUE" value="" constant="no"/>
  868. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  869. </technology>
  870. </technologies>
  871. </device>
  872. <device name="CHIP-0504(1310-METRIC)" package="CAPC1110X102">
  873. <connects>
  874. <connect gate="G$1" pin="1" pad="1"/>
  875. <connect gate="G$1" pin="2" pad="2"/>
  876. </connects>
  877. <package3dinstances>
  878. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290904/2"/>
  879. </package3dinstances>
  880. <technologies>
  881. <technology name="_">
  882. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  883. <attribute name="MANUFACTURER" value="" constant="no"/>
  884. <attribute name="MPN" value="" constant="no"/>
  885. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  886. <attribute name="PART_STATUS" value="" constant="no"/>
  887. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  888. <attribute name="SERIES" value="" constant="no"/>
  889. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  890. <attribute name="THERMALLOSS" value="" constant="no"/>
  891. <attribute name="TYPE" value="" constant="no"/>
  892. <attribute name="VALUE" value="" constant="no"/>
  893. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  894. </technology>
  895. </technologies>
  896. </device>
  897. <device name="CHIP-0603(1608-METRIC)" package="CAPC1608X85">
  898. <connects>
  899. <connect gate="G$1" pin="1" pad="1"/>
  900. <connect gate="G$1" pin="2" pad="2"/>
  901. </connects>
  902. <package3dinstances>
  903. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290898/2"/>
  904. </package3dinstances>
  905. <technologies>
  906. <technology name="_">
  907. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  908. <attribute name="MANUFACTURER" value="" constant="no"/>
  909. <attribute name="MPN" value="" constant="no"/>
  910. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  911. <attribute name="PART_STATUS" value="" constant="no"/>
  912. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  913. <attribute name="SERIES" value="" constant="no"/>
  914. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  915. <attribute name="THERMALLOSS" value="" constant="no"/>
  916. <attribute name="TYPE" value="" constant="no"/>
  917. <attribute name="VALUE" value="" constant="no"/>
  918. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  919. </technology>
  920. </technologies>
  921. </device>
  922. <device name="CHIP-0805(2012-METRIC)" package="CAPC2012X110">
  923. <connects>
  924. <connect gate="G$1" pin="1" pad="1"/>
  925. <connect gate="G$1" pin="2" pad="2"/>
  926. </connects>
  927. <package3dinstances>
  928. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290897/2"/>
  929. </package3dinstances>
  930. <technologies>
  931. <technology name="_">
  932. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  933. <attribute name="MANUFACTURER" value="" constant="no"/>
  934. <attribute name="MPN" value="" constant="no"/>
  935. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  936. <attribute name="PART_STATUS" value="" constant="no"/>
  937. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  938. <attribute name="SERIES" value="" constant="no"/>
  939. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  940. <attribute name="THERMALLOSS" value="" constant="no"/>
  941. <attribute name="TYPE" value="" constant="no"/>
  942. <attribute name="VALUE" value="" constant="no"/>
  943. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  944. </technology>
  945. </technologies>
  946. </device>
  947. <device name="CHIP-1206(3216-METRIC)" package="CAPC3216X135">
  948. <connects>
  949. <connect gate="G$1" pin="1" pad="1"/>
  950. <connect gate="G$1" pin="2" pad="2"/>
  951. </connects>
  952. <package3dinstances>
  953. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290893/2"/>
  954. </package3dinstances>
  955. <technologies>
  956. <technology name="_">
  957. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  958. <attribute name="MANUFACTURER" value="" constant="no"/>
  959. <attribute name="MPN" value="" constant="no"/>
  960. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  961. <attribute name="PART_STATUS" value="" constant="no"/>
  962. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  963. <attribute name="SERIES" value="" constant="no"/>
  964. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  965. <attribute name="THERMALLOSS" value="" constant="no"/>
  966. <attribute name="TYPE" value="" constant="no"/>
  967. <attribute name="VALUE" value="" constant="no"/>
  968. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  969. </technology>
  970. </technologies>
  971. </device>
  972. <device name="CHIP-1210(3225-METRIC)" package="CAPC3225X135">
  973. <connects>
  974. <connect gate="G$1" pin="1" pad="1"/>
  975. <connect gate="G$1" pin="2" pad="2"/>
  976. </connects>
  977. <package3dinstances>
  978. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290903/2"/>
  979. </package3dinstances>
  980. <technologies>
  981. <technology name="_">
  982. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  983. <attribute name="MANUFACTURER" value="" constant="no"/>
  984. <attribute name="MPN" value="" constant="no"/>
  985. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  986. <attribute name="PART_STATUS" value="" constant="no"/>
  987. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  988. <attribute name="SERIES" value="" constant="no"/>
  989. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  990. <attribute name="THERMALLOSS" value="" constant="no"/>
  991. <attribute name="TYPE" value="" constant="no"/>
  992. <attribute name="VALUE" value="" constant="no"/>
  993. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  994. </technology>
  995. </technologies>
  996. </device>
  997. <device name="CHIP-1812(4532-METRIC)" package="CAPC4532X135">
  998. <connects>
  999. <connect gate="G$1" pin="1" pad="1"/>
  1000. <connect gate="G$1" pin="2" pad="2"/>
  1001. </connects>
  1002. <package3dinstances>
  1003. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290900/2"/>
  1004. </package3dinstances>
  1005. <technologies>
  1006. <technology name="_">
  1007. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1008. <attribute name="MANUFACTURER" value="" constant="no"/>
  1009. <attribute name="MPN" value="" constant="no"/>
  1010. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1011. <attribute name="PART_STATUS" value="" constant="no"/>
  1012. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1013. <attribute name="SERIES" value="" constant="no"/>
  1014. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1015. <attribute name="THERMALLOSS" value="" constant="no"/>
  1016. <attribute name="TYPE" value="" constant="no"/>
  1017. <attribute name="VALUE" value="" constant="no"/>
  1018. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1019. </technology>
  1020. </technologies>
  1021. </device>
  1022. <device name="TANTALUM-1206(3216-METRIC)" package="CAPM3216X180">
  1023. <connects>
  1024. <connect gate="G$1" pin="1" pad="1"/>
  1025. <connect gate="G$1" pin="2" pad="2"/>
  1026. </connects>
  1027. <package3dinstances>
  1028. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290894/2"/>
  1029. </package3dinstances>
  1030. <technologies>
  1031. <technology name="_">
  1032. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1033. <attribute name="MANUFACTURER" value="" constant="no"/>
  1034. <attribute name="MPN" value="" constant="no"/>
  1035. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1036. <attribute name="PART_STATUS" value="" constant="no"/>
  1037. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1038. <attribute name="SERIES" value="" constant="no"/>
  1039. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1040. <attribute name="THERMALLOSS" value="" constant="no"/>
  1041. <attribute name="TYPE" value="" constant="no"/>
  1042. <attribute name="VALUE" value="" constant="no"/>
  1043. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1044. </technology>
  1045. </technologies>
  1046. </device>
  1047. <device name="TANTALUM-1411(3528-METRIC)" package="CAPM3528X210">
  1048. <connects>
  1049. <connect gate="G$1" pin="1" pad="1"/>
  1050. <connect gate="G$1" pin="2" pad="2"/>
  1051. </connects>
  1052. <package3dinstances>
  1053. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290902/2"/>
  1054. </package3dinstances>
  1055. <technologies>
  1056. <technology name="_">
  1057. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1058. <attribute name="MANUFACTURER" value="" constant="no"/>
  1059. <attribute name="MPN" value="" constant="no"/>
  1060. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1061. <attribute name="PART_STATUS" value="" constant="no"/>
  1062. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1063. <attribute name="SERIES" value="" constant="no"/>
  1064. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1065. <attribute name="THERMALLOSS" value="" constant="no"/>
  1066. <attribute name="TYPE" value="" constant="no"/>
  1067. <attribute name="VALUE" value="" constant="no"/>
  1068. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1069. </technology>
  1070. </technologies>
  1071. </device>
  1072. <device name="TANTALUM-2412(6032-METRIC)" package="CAPM6032X280">
  1073. <connects>
  1074. <connect gate="G$1" pin="1" pad="1"/>
  1075. <connect gate="G$1" pin="2" pad="2"/>
  1076. </connects>
  1077. <package3dinstances>
  1078. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290896/2"/>
  1079. </package3dinstances>
  1080. <technologies>
  1081. <technology name="_">
  1082. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1083. <attribute name="MANUFACTURER" value="" constant="no"/>
  1084. <attribute name="MPN" value="" constant="no"/>
  1085. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1086. <attribute name="PART_STATUS" value="" constant="no"/>
  1087. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1088. <attribute name="SERIES" value="" constant="no"/>
  1089. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1090. <attribute name="THERMALLOSS" value="" constant="no"/>
  1091. <attribute name="TYPE" value="" constant="no"/>
  1092. <attribute name="VALUE" value="" constant="no"/>
  1093. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1094. </technology>
  1095. </technologies>
  1096. </device>
  1097. <device name="TANTALUM-2917(7343-METRIC)" package="CAPM7343X310">
  1098. <connects>
  1099. <connect gate="G$1" pin="1" pad="1"/>
  1100. <connect gate="G$1" pin="2" pad="2"/>
  1101. </connects>
  1102. <package3dinstances>
  1103. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290891/2"/>
  1104. </package3dinstances>
  1105. <technologies>
  1106. <technology name="_">
  1107. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1108. <attribute name="MANUFACTURER" value="" constant="no"/>
  1109. <attribute name="MPN" value="" constant="no"/>
  1110. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1111. <attribute name="PART_STATUS" value="" constant="no"/>
  1112. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1113. <attribute name="SERIES" value="" constant="no"/>
  1114. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1115. <attribute name="THERMALLOSS" value="" constant="no"/>
  1116. <attribute name="TYPE" value="" constant="no"/>
  1117. <attribute name="VALUE" value="" constant="no"/>
  1118. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1119. </technology>
  1120. </technologies>
  1121. </device>
  1122. <device name="CHIP-1825(4564-METRIC)" package="CAPC4564X110">
  1123. <connects>
  1124. <connect gate="G$1" pin="1" pad="1"/>
  1125. <connect gate="G$1" pin="2" pad="2"/>
  1126. </connects>
  1127. <package3dinstances>
  1128. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290887/3"/>
  1129. </package3dinstances>
  1130. <technologies>
  1131. <technology name="_">
  1132. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1133. <attribute name="MANUFACTURER" value="" constant="no"/>
  1134. <attribute name="MPN" value="" constant="no"/>
  1135. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1136. <attribute name="PART_STATUS" value="" constant="no"/>
  1137. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1138. <attribute name="SERIES" value="" constant="no"/>
  1139. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1140. <attribute name="THERMALLOSS" value="" constant="no"/>
  1141. <attribute name="TYPE" value="" constant="no"/>
  1142. <attribute name="VALUE" value="" constant="no"/>
  1143. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1144. </technology>
  1145. </technologies>
  1146. </device>
  1147. <device name="RADIAL-12.5MM-DIA" package="CAPRD550W60D1025H1250B">
  1148. <connects>
  1149. <connect gate="G$1" pin="1" pad="1"/>
  1150. <connect gate="G$1" pin="2" pad="2"/>
  1151. </connects>
  1152. <package3dinstances>
  1153. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290858/2"/>
  1154. </package3dinstances>
  1155. <technologies>
  1156. <technology name="_">
  1157. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1158. <attribute name="MANUFACTURER" value="" constant="no"/>
  1159. <attribute name="MPN" value="" constant="no"/>
  1160. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1161. <attribute name="PART_STATUS" value="" constant="no"/>
  1162. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1163. <attribute name="SERIES" value="" constant="no"/>
  1164. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1165. <attribute name="THERMALLOSS" value="" constant="no"/>
  1166. <attribute name="TYPE" value="" constant="no"/>
  1167. <attribute name="VALUE" value="" constant="no"/>
  1168. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1169. </technology>
  1170. </technologies>
  1171. </device>
  1172. <device name="RADIAL-55.5MM-DIA" package="CAPRD2261W240D5080H5555B">
  1173. <connects>
  1174. <connect gate="G$1" pin="1" pad="1"/>
  1175. <connect gate="G$1" pin="2" pad="2"/>
  1176. </connects>
  1177. <package3dinstances>
  1178. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290864/2"/>
  1179. </package3dinstances>
  1180. <technologies>
  1181. <technology name="_">
  1182. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1183. <attribute name="MANUFACTURER" value="" constant="no"/>
  1184. <attribute name="MPN" value="" constant="no"/>
  1185. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1186. <attribute name="PART_STATUS" value="" constant="no"/>
  1187. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1188. <attribute name="SERIES" value="" constant="no"/>
  1189. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1190. <attribute name="THERMALLOSS" value="" constant="no"/>
  1191. <attribute name="TYPE" value="" constant="no"/>
  1192. <attribute name="VALUE" value="" constant="no"/>
  1193. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1194. </technology>
  1195. </technologies>
  1196. </device>
  1197. </devices>
  1198. <spice>
  1199. <pinmapping spiceprefix="C">
  1200. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1201. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1202. </pinmapping>
  1203. </spice>
  1204. </deviceset>
  1205. <deviceset name="C-POL" urn="urn:adsk.eagle:component:16290908/4" prefix="C" uservalue="yes" library_version="4">
  1206. <description>&lt;B&gt;Capacitor Polarised - Generic</description>
  1207. <gates>
  1208. <gate name="G$1" symbol="CPOL" x="0" y="0"/>
  1209. </gates>
  1210. <devices>
  1211. <device name="TANTALUM-1206(3216-METRIC)" package="CAPMP3216X180N">
  1212. <connects>
  1213. <connect gate="G$1" pin="+" pad="1"/>
  1214. <connect gate="G$1" pin="-" pad="2"/>
  1215. </connects>
  1216. <package3dinstances>
  1217. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290884/1"/>
  1218. </package3dinstances>
  1219. <technologies>
  1220. <technology name="_">
  1221. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1222. <attribute name="MANUFACTURER" value="" constant="no"/>
  1223. <attribute name="MPN" value="" constant="no"/>
  1224. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1225. <attribute name="PART_STATUS" value="" constant="no"/>
  1226. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1227. <attribute name="SERIES" value="" constant="no"/>
  1228. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1229. <attribute name="THERMALLOSS" value="" constant="no"/>
  1230. <attribute name="TYPE" value="" constant="no"/>
  1231. <attribute name="VALUE" value="" constant="no"/>
  1232. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1233. </technology>
  1234. </technologies>
  1235. </device>
  1236. <device name="TANTALUM-1411(3528-METRIC)" package="CAPMP3528X210N">
  1237. <connects>
  1238. <connect gate="G$1" pin="+" pad="1"/>
  1239. <connect gate="G$1" pin="-" pad="2"/>
  1240. </connects>
  1241. <package3dinstances>
  1242. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290901/1"/>
  1243. </package3dinstances>
  1244. <technologies>
  1245. <technology name="_">
  1246. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1247. <attribute name="MANUFACTURER" value="" constant="no"/>
  1248. <attribute name="MPN" value="" constant="no"/>
  1249. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1250. <attribute name="PART_STATUS" value="" constant="no"/>
  1251. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1252. <attribute name="SERIES" value="" constant="no"/>
  1253. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1254. <attribute name="THERMALLOSS" value="" constant="no"/>
  1255. <attribute name="TYPE" value="" constant="no"/>
  1256. <attribute name="VALUE" value="" constant="no"/>
  1257. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1258. </technology>
  1259. </technologies>
  1260. </device>
  1261. <device name="TANTALUM-2412(6032-METRIC)" package="CAPMP6032X280N">
  1262. <connects>
  1263. <connect gate="G$1" pin="+" pad="1"/>
  1264. <connect gate="G$1" pin="-" pad="2"/>
  1265. </connects>
  1266. <package3dinstances>
  1267. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290892/1"/>
  1268. </package3dinstances>
  1269. <technologies>
  1270. <technology name="_">
  1271. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1272. <attribute name="MANUFACTURER" value="" constant="no"/>
  1273. <attribute name="MPN" value="" constant="no"/>
  1274. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1275. <attribute name="PART_STATUS" value="" constant="no"/>
  1276. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1277. <attribute name="SERIES" value="" constant="no"/>
  1278. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1279. <attribute name="THERMALLOSS" value="" constant="no"/>
  1280. <attribute name="TYPE" value="" constant="no"/>
  1281. <attribute name="VALUE" value="" constant="no"/>
  1282. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1283. </technology>
  1284. </technologies>
  1285. </device>
  1286. <device name="TANTALUM-2917(7343-METRIC)" package="CAPMP7343X310N">
  1287. <connects>
  1288. <connect gate="G$1" pin="+" pad="1"/>
  1289. <connect gate="G$1" pin="-" pad="2"/>
  1290. </connects>
  1291. <package3dinstances>
  1292. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290885/1"/>
  1293. </package3dinstances>
  1294. <technologies>
  1295. <technology name="_">
  1296. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1297. <attribute name="MANUFACTURER" value="" constant="no"/>
  1298. <attribute name="MPN" value="" constant="no"/>
  1299. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1300. <attribute name="PART_STATUS" value="" constant="no"/>
  1301. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1302. <attribute name="SERIES" value="" constant="no"/>
  1303. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1304. <attribute name="THERMALLOSS" value="" constant="no"/>
  1305. <attribute name="TYPE" value="" constant="no"/>
  1306. <attribute name="VALUE" value="" constant="no"/>
  1307. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1308. </technology>
  1309. </technologies>
  1310. </device>
  1311. <device name="RADIAL-11MM-DIA" package="CAPPRD508W65D1000H1100B">
  1312. <connects>
  1313. <connect gate="G$1" pin="+" pad="1"/>
  1314. <connect gate="G$1" pin="-" pad="2"/>
  1315. </connects>
  1316. <package3dinstances>
  1317. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290899/1"/>
  1318. </package3dinstances>
  1319. <technologies>
  1320. <technology name="_">
  1321. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1322. <attribute name="MANUFACTURER" value="" constant="no"/>
  1323. <attribute name="MPN" value="" constant="no"/>
  1324. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1325. <attribute name="PART_STATUS" value="" constant="no"/>
  1326. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1327. <attribute name="SERIES" value="" constant="no"/>
  1328. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1329. <attribute name="THERMALLOSS" value="" constant="no"/>
  1330. <attribute name="TYPE" value="" constant="no"/>
  1331. <attribute name="VALUE" value="" constant="no"/>
  1332. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1333. </technology>
  1334. </technologies>
  1335. </device>
  1336. <device name="ECAP-10.5MM" package="CAPAE1030X1050N">
  1337. <connects>
  1338. <connect gate="G$1" pin="+" pad="1"/>
  1339. <connect gate="G$1" pin="-" pad="2"/>
  1340. </connects>
  1341. <package3dinstances>
  1342. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290882/1"/>
  1343. </package3dinstances>
  1344. <technologies>
  1345. <technology name="_">
  1346. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1347. <attribute name="MANUFACTURER" value="" constant="no"/>
  1348. <attribute name="MPN" value="" constant="no"/>
  1349. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1350. <attribute name="PART_STATUS" value="" constant="no"/>
  1351. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1352. <attribute name="SERIES" value="" constant="no"/>
  1353. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1354. <attribute name="THERMALLOSS" value="" constant="no"/>
  1355. <attribute name="TYPE" value="" constant="no"/>
  1356. <attribute name="VALUE" value="" constant="no"/>
  1357. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1358. </technology>
  1359. </technologies>
  1360. </device>
  1361. <device name="ECAP-8.5MM" package="CAPAE830X1050N">
  1362. <connects>
  1363. <connect gate="G$1" pin="+" pad="1"/>
  1364. <connect gate="G$1" pin="-" pad="2"/>
  1365. </connects>
  1366. <package3dinstances>
  1367. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290889/1"/>
  1368. </package3dinstances>
  1369. <technologies>
  1370. <technology name="_">
  1371. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1372. <attribute name="MANUFACTURER" value="" constant="no"/>
  1373. <attribute name="MPN" value="" constant="no"/>
  1374. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1375. <attribute name="PART_STATUS" value="" constant="no"/>
  1376. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1377. <attribute name="SERIES" value="" constant="no"/>
  1378. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1379. <attribute name="THERMALLOSS" value="" constant="no"/>
  1380. <attribute name="TYPE" value="" constant="no"/>
  1381. <attribute name="VALUE" value="" constant="no"/>
  1382. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1383. </technology>
  1384. </technologies>
  1385. </device>
  1386. <device name="RADIAL-32MM-DIA" package="CAPPRD1000W100D2275H3200B">
  1387. <connects>
  1388. <connect gate="G$1" pin="+" pad="1"/>
  1389. <connect gate="G$1" pin="-" pad="2"/>
  1390. </connects>
  1391. <package3dinstances>
  1392. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290888/1"/>
  1393. </package3dinstances>
  1394. <technologies>
  1395. <technology name="_">
  1396. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1397. <attribute name="MANUFACTURER" value="" constant="no"/>
  1398. <attribute name="MPN" value="" constant="no"/>
  1399. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1400. <attribute name="PART_STATUS" value="" constant="no"/>
  1401. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1402. <attribute name="SERIES" value="" constant="no"/>
  1403. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1404. <attribute name="THERMALLOSS" value="" constant="no"/>
  1405. <attribute name="TYPE" value="" constant="no"/>
  1406. <attribute name="VALUE" value="" constant="no"/>
  1407. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1408. </technology>
  1409. </technologies>
  1410. </device>
  1411. <device name="ECAP-19.2MM" package="CAPAE1905X1660N">
  1412. <connects>
  1413. <connect gate="G$1" pin="+" pad="1"/>
  1414. <connect gate="G$1" pin="-" pad="2"/>
  1415. </connects>
  1416. <package3dinstances>
  1417. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290872/1"/>
  1418. </package3dinstances>
  1419. <technologies>
  1420. <technology name="_">
  1421. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1422. <attribute name="MANUFACTURER" value="" constant="no"/>
  1423. <attribute name="MPN" value="" constant="no"/>
  1424. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1425. <attribute name="PART_STATUS" value="" constant="no"/>
  1426. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1427. <attribute name="SERIES" value="" constant="no"/>
  1428. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1429. <attribute name="THERMALLOSS" value="" constant="no"/>
  1430. <attribute name="TYPE" value="" constant="no"/>
  1431. <attribute name="VALUE" value="" constant="no"/>
  1432. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1433. </technology>
  1434. </technologies>
  1435. </device>
  1436. <device name="RADIAL-25MM-DIA" package="CAPPRD550W110D1250H2500B">
  1437. <connects>
  1438. <connect gate="G$1" pin="+" pad="1"/>
  1439. <connect gate="G$1" pin="-" pad="2"/>
  1440. </connects>
  1441. <package3dinstances>
  1442. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290890/1"/>
  1443. </package3dinstances>
  1444. <technologies>
  1445. <technology name="_">
  1446. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1447. <attribute name="MANUFACTURER" value="" constant="no"/>
  1448. <attribute name="MPN" value="" constant="no"/>
  1449. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1450. <attribute name="PART_STATUS" value="" constant="no"/>
  1451. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1452. <attribute name="SERIES" value="" constant="no"/>
  1453. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1454. <attribute name="THERMALLOSS" value="" constant="no"/>
  1455. <attribute name="TYPE" value="" constant="no"/>
  1456. <attribute name="VALUE" value="" constant="no"/>
  1457. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1458. </technology>
  1459. </technologies>
  1460. </device>
  1461. <device name="RADIAL-20MM-DIA" package="CAPPRD550W60D1200H2000B">
  1462. <connects>
  1463. <connect gate="G$1" pin="+" pad="1"/>
  1464. <connect gate="G$1" pin="-" pad="2"/>
  1465. </connects>
  1466. <package3dinstances>
  1467. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290874/1"/>
  1468. </package3dinstances>
  1469. <technologies>
  1470. <technology name="_">
  1471. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1472. <attribute name="MANUFACTURER" value="" constant="no"/>
  1473. <attribute name="MPN" value="" constant="no"/>
  1474. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1475. <attribute name="PART_STATUS" value="" constant="no"/>
  1476. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1477. <attribute name="SERIES" value="" constant="no"/>
  1478. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1479. <attribute name="THERMALLOSS" value="" constant="no"/>
  1480. <attribute name="TYPE" value="" constant="no"/>
  1481. <attribute name="VALUE" value="" constant="no"/>
  1482. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1483. </technology>
  1484. </technologies>
  1485. </device>
  1486. <device name="TANTALUM-2920(7443-METRIC)" package="CAPMP7443X430N">
  1487. <connects>
  1488. <connect gate="G$1" pin="+" pad="1"/>
  1489. <connect gate="G$1" pin="-" pad="2"/>
  1490. </connects>
  1491. <package3dinstances>
  1492. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290866/1"/>
  1493. </package3dinstances>
  1494. <technologies>
  1495. <technology name="_">
  1496. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1497. <attribute name="MANUFACTURER" value="" constant="no"/>
  1498. <attribute name="MPN" value="" constant="no"/>
  1499. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1500. <attribute name="PART_STATUS" value="" constant="no"/>
  1501. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1502. <attribute name="SERIES" value="" constant="no"/>
  1503. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1504. <attribute name="THERMALLOSS" value="" constant="no"/>
  1505. <attribute name="TYPE" value="" constant="no"/>
  1506. <attribute name="VALUE" value="" constant="no"/>
  1507. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1508. </technology>
  1509. </technologies>
  1510. </device>
  1511. <device name="AXIAL-34.1MM-PITCH" package="CAPPAD3410W80L3025D1825B">
  1512. <connects>
  1513. <connect gate="G$1" pin="+" pad="1"/>
  1514. <connect gate="G$1" pin="-" pad="2"/>
  1515. </connects>
  1516. <package3dinstances>
  1517. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290868/1"/>
  1518. </package3dinstances>
  1519. <technologies>
  1520. <technology name="_">
  1521. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1522. <attribute name="MANUFACTURER" value="" constant="no"/>
  1523. <attribute name="MPN" value="" constant="no"/>
  1524. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1525. <attribute name="PART_STATUS" value="" constant="no"/>
  1526. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1527. <attribute name="SERIES" value="" constant="no"/>
  1528. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1529. <attribute name="THERMALLOSS" value="" constant="no"/>
  1530. <attribute name="TYPE" value="" constant="no"/>
  1531. <attribute name="VALUE" value="" constant="no"/>
  1532. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1533. </technology>
  1534. </technologies>
  1535. </device>
  1536. </devices>
  1537. </deviceset>
  1538. </devicesets>
  1539. </library>
  1540. <library name="Diodes" urn="urn:adsk.eagle:library:11396254">
  1541. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Diodes&lt;/i&gt;&lt;/h3&gt;
  1542. 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.
  1543. &lt;BR&gt;
  1544. &lt;BR&gt;
  1545. 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;.
  1546. &lt;BR&gt;
  1547. &lt;BR&gt;
  1548. 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>
  1549. <packages>
  1550. <package name="DO201AD" urn="urn:adsk.eagle:footprint:10898376/1" library_version="1">
  1551. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1552. <wire x1="-4.2" y1="0" x2="-4.2" y2="-2.525" width="0.127" layer="51"/>
  1553. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="51"/>
  1554. <wire x1="4.2" y1="-2.525" x2="4.2" y2="0" width="0.127" layer="51"/>
  1555. <wire x1="4.2" y1="0" x2="4.2" y2="2.525" width="0.127" layer="51"/>
  1556. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="51"/>
  1557. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="-2.525" width="0.127" layer="21"/>
  1558. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="21"/>
  1559. <wire x1="4.2" y1="-2.525" x2="4.2" y2="2.525" width="0.127" layer="21"/>
  1560. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="21"/>
  1561. <wire x1="-6.2" y1="0" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1562. <wire x1="4.2" y1="0" x2="6.2" y2="0" width="0.127" layer="51"/>
  1563. <wire x1="-5" y1="0" x2="-4.25" y2="0" width="0.127" layer="21"/>
  1564. <wire x1="4.25" y1="0" x2="5" y2="0" width="0.127" layer="21"/>
  1565. <wire x1="-7.45" y1="2.775" x2="-7.45" y2="-2.775" width="0.05" layer="39"/>
  1566. <wire x1="-7.45" y1="-2.775" x2="7.4" y2="-2.775" width="0.05" layer="39"/>
  1567. <wire x1="7.4" y1="-2.775" x2="7.4" y2="2.775" width="0.05" layer="39"/>
  1568. <wire x1="7.4" y1="2.775" x2="-7.45" y2="2.775" width="0.05" layer="39"/>
  1569. <pad name="C" x="-6.2" y="0" drill="1.25" shape="square"/>
  1570. <pad name="A" x="6.2" y="0" drill="1.25"/>
  1571. <rectangle x1="-3.5" y1="-2.525" x2="-2.25" y2="2.525" layer="21"/>
  1572. <text x="-7.75" y="3" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1573. <text x="-7.5" y="-4.25" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1574. </package>
  1575. </packages>
  1576. <packages3d>
  1577. <package3d name="DO201AD" urn="urn:adsk.eagle:package:10898389/2" type="model" library_version="1">
  1578. <packageinstances>
  1579. <packageinstance name="DO201AD"/>
  1580. </packageinstances>
  1581. </package3d>
  1582. </packages3d>
  1583. <symbols>
  1584. <symbol name="SCHOTTKY" urn="urn:adsk.eagle:symbol:10898387/1" library_version="1">
  1585. <wire x1="-1.27" y1="-1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1586. <wire x1="1.27" y1="0" x2="-1.27" y2="1.27" width="0.254" layer="94"/>
  1587. <wire x1="1.905" y1="1.27" x2="1.27" y2="1.27" width="0.254" layer="94"/>
  1588. <wire x1="1.27" y1="1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1589. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.254" layer="94"/>
  1590. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.254" layer="94"/>
  1591. <wire x1="1.27" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94"/>
  1592. <wire x1="1.905" y1="1.27" x2="1.905" y2="1.016" width="0.254" layer="94"/>
  1593. <wire x1="1.27" y1="-1.27" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1594. <wire x1="0.635" y1="-1.016" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1595. <wire x1="-1.27" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  1596. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  1597. <text x="-2.286" y="1.905" size="1.778" layer="95">&gt;NAME</text>
  1598. <text x="-2.286" y="-3.429" size="1.778" layer="96">&gt;VALUE</text>
  1599. <pin name="A" x="-2.54" y="0" visible="off" length="point" direction="pas"/>
  1600. <pin name="C" x="2.54" y="0" visible="off" length="point" direction="pas" rot="R180"/>
  1601. </symbol>
  1602. </symbols>
  1603. <devicesets>
  1604. <deviceset name="MBR360G" urn="urn:adsk.eagle:component:10898397/9" prefix="D" library_version="1">
  1605. <description>&lt;h3&gt; DIODE SCHOTTKY 60V 3A DO201AD&lt;/h3&gt;
  1606. &lt;BR&gt;
  1607. &lt;a href="https://www.onsemi.com/pub/Collateral/MBR350-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  1608. <gates>
  1609. <gate name="G$1" symbol="SCHOTTKY" x="0" y="0"/>
  1610. </gates>
  1611. <devices>
  1612. <device name="" package="DO201AD">
  1613. <connects>
  1614. <connect gate="G$1" pin="A" pad="A"/>
  1615. <connect gate="G$1" pin="C" pad="C"/>
  1616. </connects>
  1617. <package3dinstances>
  1618. <package3dinstance package3d_urn="urn:adsk.eagle:package:10898389/2"/>
  1619. </package3dinstances>
  1620. <technologies>
  1621. <technology name="">
  1622. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  1623. <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" constant="no"/>
  1624. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  1625. <attribute name="MPN" value="MBR360G" constant="no"/>
  1626. <attribute name="PACKAGE" value="DO-201AD" constant="no"/>
  1627. </technology>
  1628. </technologies>
  1629. </device>
  1630. </devices>
  1631. </deviceset>
  1632. </devicesets>
  1633. </library>
  1634. <library name="inductors" urn="urn:adsk.eagle:library:243">
  1635. <description>&lt;b&gt;Inductors and Filters&lt;/b&gt;&lt;p&gt;
  1636. Based on the previous library ind-a.lbr&lt;p&gt;
  1637. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  1638. <packages>
  1639. <package name="DR127" urn="urn:adsk.eagle:footprint:15034/1" library_version="4">
  1640. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1641. Source: coiltronics_dr_series.pdf</description>
  1642. <wire x1="-6.5" y1="6.5" x2="6.525" y2="6.5" width="0.2032" layer="21"/>
  1643. <wire x1="6.525" y1="6.5" x2="6.525" y2="-6.5" width="0.2032" layer="21"/>
  1644. <wire x1="6.525" y1="-6.5" x2="-6.5" y2="-6.5" width="0.2032" layer="21"/>
  1645. <wire x1="-6.5" y1="-6.5" x2="-6.5" y2="6.5" width="0.2032" layer="21"/>
  1646. <wire x1="-4.5254" y1="3.783" x2="-3.8006" y2="4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1647. <wire x1="-3.783" y1="-4.5254" x2="-4.5431" y2="-3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1648. <wire x1="4.5254" y1="-3.783" x2="3.8006" y2="-4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1649. <wire x1="3.783" y1="4.5254" x2="4.5431" y2="3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1650. <wire x1="0" y1="5.9" x2="4.9" y2="3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1651. <wire x1="0" y1="5.9" x2="-4.95" y2="3.225" width="0.2032" layer="21" curve="56.95663"/>
  1652. <wire x1="0" y1="-5.9" x2="-4.9" y2="-3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1653. <wire x1="0" y1="-5.9" x2="4.95" y2="-3.225" width="0.2032" layer="21" curve="56.95663"/>
  1654. <circle x="0" y="0" radius="5.9" width="0.2032" layer="51"/>
  1655. <smd name="1" x="-4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1656. <smd name="2" x="4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1657. <text x="-2.5" y="3" size="1.27" layer="25">&gt;NAME</text>
  1658. <text x="-3" y="-4.5" size="1.27" layer="27">&gt;VALUE</text>
  1659. </package>
  1660. </packages>
  1661. <packages3d>
  1662. <package3d name="DR127" urn="urn:adsk.eagle:package:15117/1" type="box" library_version="4">
  1663. <description>High Power Density, High Efficiency, Shielded Inductors
  1664. Source: coiltronics_dr_series.pdf</description>
  1665. <packageinstances>
  1666. <packageinstance name="DR127"/>
  1667. </packageinstances>
  1668. </package3d>
  1669. </packages3d>
  1670. <symbols>
  1671. <symbol name="DRK" urn="urn:adsk.eagle:symbol:28107/2" library_version="4">
  1672. <wire x1="-3.81" y1="1.651" x2="3.81" y2="1.651" width="0.254" layer="94"/>
  1673. <text x="-3.81" y="2.286" size="1.778" layer="95">&gt;NAME</text>
  1674. <text x="-3.937" y="-3.048" size="1.778" layer="96">&gt;VALUE</text>
  1675. <rectangle x1="-3.81" y1="-0.889" x2="3.81" y2="0.889" layer="94"/>
  1676. <pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  1677. <pin name="1" x="-7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1"/>
  1678. </symbol>
  1679. </symbols>
  1680. <devicesets>
  1681. <deviceset name="DR127" urn="urn:adsk.eagle:component:15196/4" prefix="L" library_version="4">
  1682. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1683. Source: coiltronics_dr_series.pdf</description>
  1684. <gates>
  1685. <gate name="G$1" symbol="DRK" x="0" y="0"/>
  1686. </gates>
  1687. <devices>
  1688. <device name="" package="DR127">
  1689. <connects>
  1690. <connect gate="G$1" pin="1" pad="1"/>
  1691. <connect gate="G$1" pin="2" pad="2"/>
  1692. </connects>
  1693. <package3dinstances>
  1694. <package3dinstance package3d_urn="urn:adsk.eagle:package:15117/1"/>
  1695. </package3dinstances>
  1696. <technologies>
  1697. <technology name="">
  1698. <attribute name="POPULARITY" value="2" constant="no"/>
  1699. <attribute name="SPICEPREFIX" value="L" constant="no"/>
  1700. </technology>
  1701. </technologies>
  1702. </device>
  1703. </devices>
  1704. <spice>
  1705. <pinmapping spiceprefix="L">
  1706. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1707. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1708. </pinmapping>
  1709. </spice>
  1710. </deviceset>
  1711. </devicesets>
  1712. </library>
  1713. <library name="eagle-ltspice" urn="urn:adsk.eagle:library:217">
  1714. <description>Default symbols for import LTspice schematics&lt;p&gt;
  1715. 2012-10-29 alf@cadsoft.de&lt;br&gt;</description>
  1716. <packages>
  1717. <package name="0204/7" urn="urn:adsk.eagle:footprint:13215/1" library_version="1">
  1718. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1719. type 0204, grid 7.5 mm</description>
  1720. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  1721. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  1722. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  1723. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  1724. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  1725. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  1726. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  1727. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1728. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1729. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1730. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1731. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1732. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  1733. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1734. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  1735. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1736. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1737. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  1738. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  1739. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  1740. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  1741. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  1742. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  1743. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  1744. </package>
  1745. <package name="0207/10" urn="urn:adsk.eagle:footprint:13216/1" library_version="1">
  1746. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1747. type 0207, grid 10 mm</description>
  1748. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  1749. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  1750. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  1751. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  1752. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  1753. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  1754. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  1755. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1756. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1757. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1758. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1759. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1760. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  1761. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1762. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  1763. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1764. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1765. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  1766. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  1767. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  1768. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  1769. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  1770. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1771. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1772. </package>
  1773. <package name="R0201" urn="urn:adsk.eagle:footprint:13233/1" library_version="1">
  1774. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  1775. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1776. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  1777. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  1778. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  1779. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1780. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1781. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1782. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1783. </package>
  1784. <package name="R0402" urn="urn:adsk.eagle:footprint:13234/1" library_version="1">
  1785. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1786. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1787. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1788. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1789. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1790. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1791. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1792. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1793. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1794. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1795. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1796. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1797. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1798. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1799. </package>
  1800. <package name="R0603" urn="urn:adsk.eagle:footprint:13235/1" library_version="1">
  1801. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1802. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1803. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1804. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1805. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1806. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1807. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1808. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1809. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1810. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1811. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1812. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1813. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1814. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1815. </package>
  1816. <package name="R0805" urn="urn:adsk.eagle:footprint:13236/1" library_version="1">
  1817. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1818. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1819. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1820. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1821. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1822. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1823. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1824. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1825. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1826. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1827. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1828. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1829. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1830. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1831. </package>
  1832. <package name="R1005" urn="urn:adsk.eagle:footprint:13237/1" library_version="1">
  1833. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1834. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1835. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1836. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1837. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1838. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1839. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1840. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1841. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1842. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  1843. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1844. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1845. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1846. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1847. </package>
  1848. <package name="R1206" urn="urn:adsk.eagle:footprint:13238/1" library_version="1">
  1849. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1850. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1851. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1852. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1853. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1854. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1855. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1856. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1857. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1858. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1859. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1860. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1861. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1862. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1863. </package>
  1864. <package name="R1210" urn="urn:adsk.eagle:footprint:13239/1" library_version="1">
  1865. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1866. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1867. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1868. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1869. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1870. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1871. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1872. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1873. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1874. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1875. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1876. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1877. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1878. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1879. </package>
  1880. <package name="R1218" urn="urn:adsk.eagle:footprint:13240/1" library_version="1">
  1881. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  1882. Source: http://www.vishay.com .. dcrcw.pdf</description>
  1883. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  1884. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  1885. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  1886. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  1887. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1888. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1889. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  1890. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  1891. </package>
  1892. <package name="R2010" urn="urn:adsk.eagle:footprint:13241/1" library_version="1">
  1893. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1894. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1895. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1896. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1897. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1898. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1899. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1900. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1901. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1902. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1903. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1904. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1905. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1906. </package>
  1907. <package name="R2012" urn="urn:adsk.eagle:footprint:13242/1" library_version="1">
  1908. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1909. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1910. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1911. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1912. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1913. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1914. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1915. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1916. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1917. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1918. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1919. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1920. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1921. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1922. </package>
  1923. <package name="R2512" urn="urn:adsk.eagle:footprint:13243/1" library_version="1">
  1924. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1925. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1926. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1927. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1928. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1929. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1930. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1931. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1932. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1933. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1934. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1935. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1936. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1937. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1938. </package>
  1939. <package name="R3216" urn="urn:adsk.eagle:footprint:13244/1" library_version="1">
  1940. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1941. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1942. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1943. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1944. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1945. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1946. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1947. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1948. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1949. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1950. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1951. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1952. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1953. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1954. </package>
  1955. <package name="R3225" urn="urn:adsk.eagle:footprint:13245/1" library_version="1">
  1956. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1957. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1958. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1959. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1960. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1961. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1962. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1963. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1964. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1965. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1966. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1967. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1968. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1969. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1970. </package>
  1971. <package name="R4527" urn="urn:adsk.eagle:footprint:13246/1" library_version="1">
  1972. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  1973. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  1974. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  1975. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  1976. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  1977. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  1978. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  1979. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  1980. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  1981. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  1982. </package>
  1983. <package name="R5025" urn="urn:adsk.eagle:footprint:13247/1" library_version="1">
  1984. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1985. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1986. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1987. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1988. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1989. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1990. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1991. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1992. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1993. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1994. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1995. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1996. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1997. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1998. </package>
  1999. <package name="R6332" urn="urn:adsk.eagle:footprint:13248/1" library_version="1">
  2000. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2001. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2002. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2003. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2004. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2005. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2006. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2007. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2008. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2009. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2010. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2011. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2012. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2013. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2014. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2015. </package>
  2016. </packages>
  2017. <packages3d>
  2018. <package3d name="0204/7" urn="urn:adsk.eagle:package:13274/1" type="box" library_version="1">
  2019. <description>RESISTOR
  2020. type 0204, grid 7.5 mm</description>
  2021. <packageinstances>
  2022. <packageinstance name="0204/7"/>
  2023. </packageinstances>
  2024. </package3d>
  2025. <package3d name="0207/10" urn="urn:adsk.eagle:package:13275/1" type="box" library_version="1">
  2026. <description>RESISTOR
  2027. type 0207, grid 10 mm</description>
  2028. <packageinstances>
  2029. <packageinstance name="0207/10"/>
  2030. </packageinstances>
  2031. </package3d>
  2032. <package3d name="R0201" urn="urn:adsk.eagle:package:13294/1" type="box" library_version="1">
  2033. <description>RESISTOR chip
  2034. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2035. <packageinstances>
  2036. <packageinstance name="R0201"/>
  2037. </packageinstances>
  2038. </package3d>
  2039. <package3d name="R0402" urn="urn:adsk.eagle:package:13296/1" type="box" library_version="1">
  2040. <description>RESISTOR</description>
  2041. <packageinstances>
  2042. <packageinstance name="R0402"/>
  2043. </packageinstances>
  2044. </package3d>
  2045. <package3d name="R0603" urn="urn:adsk.eagle:package:13302/1" type="box" library_version="1">
  2046. <description>RESISTOR</description>
  2047. <packageinstances>
  2048. <packageinstance name="R0603"/>
  2049. </packageinstances>
  2050. </package3d>
  2051. <package3d name="R0805" urn="urn:adsk.eagle:package:13300/1" type="box" library_version="1">
  2052. <description>RESISTOR</description>
  2053. <packageinstances>
  2054. <packageinstance name="R0805"/>
  2055. </packageinstances>
  2056. </package3d>
  2057. <package3d name="R1005" urn="urn:adsk.eagle:package:13297/1" type="box" library_version="1">
  2058. <description>RESISTOR</description>
  2059. <packageinstances>
  2060. <packageinstance name="R1005"/>
  2061. </packageinstances>
  2062. </package3d>
  2063. <package3d name="R1206" urn="urn:adsk.eagle:package:13301/1" type="box" library_version="1">
  2064. <description>RESISTOR</description>
  2065. <packageinstances>
  2066. <packageinstance name="R1206"/>
  2067. </packageinstances>
  2068. </package3d>
  2069. <package3d name="R1210" urn="urn:adsk.eagle:package:13299/1" type="box" library_version="1">
  2070. <description>RESISTOR</description>
  2071. <packageinstances>
  2072. <packageinstance name="R1210"/>
  2073. </packageinstances>
  2074. </package3d>
  2075. <package3d name="R1218" urn="urn:adsk.eagle:package:13303/1" type="box" library_version="1">
  2076. <description>CRCW1218 Thick Film, Rectangular Chip Resistors
  2077. Source: http://www.vishay.com .. dcrcw.pdf</description>
  2078. <packageinstances>
  2079. <packageinstance name="R1218"/>
  2080. </packageinstances>
  2081. </package3d>
  2082. <package3d name="R2010" urn="urn:adsk.eagle:package:13309/1" type="box" library_version="1">
  2083. <description>RESISTOR</description>
  2084. <packageinstances>
  2085. <packageinstance name="R2010"/>
  2086. </packageinstances>
  2087. </package3d>
  2088. <package3d name="R2012" urn="urn:adsk.eagle:package:13306/1" type="box" library_version="1">
  2089. <description>RESISTOR</description>
  2090. <packageinstances>
  2091. <packageinstance name="R2012"/>
  2092. </packageinstances>
  2093. </package3d>
  2094. <package3d name="R2512" urn="urn:adsk.eagle:package:13304/1" type="box" library_version="1">
  2095. <description>RESISTOR</description>
  2096. <packageinstances>
  2097. <packageinstance name="R2512"/>
  2098. </packageinstances>
  2099. </package3d>
  2100. <package3d name="R3216" urn="urn:adsk.eagle:package:13305/1" type="box" library_version="1">
  2101. <description>RESISTOR</description>
  2102. <packageinstances>
  2103. <packageinstance name="R3216"/>
  2104. </packageinstances>
  2105. </package3d>
  2106. <package3d name="R3225" urn="urn:adsk.eagle:package:13311/1" type="box" library_version="1">
  2107. <description>RESISTOR</description>
  2108. <packageinstances>
  2109. <packageinstance name="R3225"/>
  2110. </packageinstances>
  2111. </package3d>
  2112. <package3d name="R4527" urn="urn:adsk.eagle:package:13310/1" type="box" library_version="1">
  2113. <description>Package 4527
  2114. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2115. <packageinstances>
  2116. <packageinstance name="R4527"/>
  2117. </packageinstances>
  2118. </package3d>
  2119. <package3d name="R5025" urn="urn:adsk.eagle:package:13308/1" type="box" library_version="1">
  2120. <description>RESISTOR</description>
  2121. <packageinstances>
  2122. <packageinstance name="R5025"/>
  2123. </packageinstances>
  2124. </package3d>
  2125. <package3d name="R6332" urn="urn:adsk.eagle:package:13307/1" type="box" library_version="1">
  2126. <description>RESISTOR
  2127. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2128. <packageinstances>
  2129. <packageinstance name="R6332"/>
  2130. </packageinstances>
  2131. </package3d>
  2132. </packages3d>
  2133. <symbols>
  2134. <symbol name="R" urn="urn:adsk.eagle:symbol:13232/1" library_version="1">
  2135. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  2136. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2137. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  2138. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2139. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  2140. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  2141. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  2142. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  2143. <text x="-5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 1</text>
  2144. <text x="5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 2</text>
  2145. </symbol>
  2146. </symbols>
  2147. <devicesets>
  2148. <deviceset name="R" urn="urn:adsk.eagle:component:13322/1" prefix="R" uservalue="yes" library_version="1">
  2149. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  2150. <gates>
  2151. <gate name="G$1" symbol="R" x="0" y="0"/>
  2152. </gates>
  2153. <devices>
  2154. <device name="0204/7" package="0204/7">
  2155. <connects>
  2156. <connect gate="G$1" pin="1" pad="1"/>
  2157. <connect gate="G$1" pin="2" pad="2"/>
  2158. </connects>
  2159. <package3dinstances>
  2160. <package3dinstance package3d_urn="urn:adsk.eagle:package:13274/1"/>
  2161. </package3dinstances>
  2162. <technologies>
  2163. <technology name="">
  2164. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2165. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2166. </technology>
  2167. </technologies>
  2168. </device>
  2169. <device name="0207/10" package="0207/10">
  2170. <connects>
  2171. <connect gate="G$1" pin="1" pad="1"/>
  2172. <connect gate="G$1" pin="2" pad="2"/>
  2173. </connects>
  2174. <package3dinstances>
  2175. <package3dinstance package3d_urn="urn:adsk.eagle:package:13275/1"/>
  2176. </package3dinstances>
  2177. <technologies>
  2178. <technology name="">
  2179. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2180. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2181. </technology>
  2182. </technologies>
  2183. </device>
  2184. <device name="R0201" package="R0201">
  2185. <connects>
  2186. <connect gate="G$1" pin="1" pad="1"/>
  2187. <connect gate="G$1" pin="2" pad="2"/>
  2188. </connects>
  2189. <package3dinstances>
  2190. <package3dinstance package3d_urn="urn:adsk.eagle:package:13294/1"/>
  2191. </package3dinstances>
  2192. <technologies>
  2193. <technology name="">
  2194. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2195. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2196. </technology>
  2197. </technologies>
  2198. </device>
  2199. <device name="R0402" package="R0402">
  2200. <connects>
  2201. <connect gate="G$1" pin="1" pad="1"/>
  2202. <connect gate="G$1" pin="2" pad="2"/>
  2203. </connects>
  2204. <package3dinstances>
  2205. <package3dinstance package3d_urn="urn:adsk.eagle:package:13296/1"/>
  2206. </package3dinstances>
  2207. <technologies>
  2208. <technology name="">
  2209. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2210. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2211. </technology>
  2212. </technologies>
  2213. </device>
  2214. <device name="R0603" package="R0603">
  2215. <connects>
  2216. <connect gate="G$1" pin="1" pad="1"/>
  2217. <connect gate="G$1" pin="2" pad="2"/>
  2218. </connects>
  2219. <package3dinstances>
  2220. <package3dinstance package3d_urn="urn:adsk.eagle:package:13302/1"/>
  2221. </package3dinstances>
  2222. <technologies>
  2223. <technology name="">
  2224. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2225. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2226. </technology>
  2227. </technologies>
  2228. </device>
  2229. <device name="" package="R0805">
  2230. <connects>
  2231. <connect gate="G$1" pin="1" pad="1"/>
  2232. <connect gate="G$1" pin="2" pad="2"/>
  2233. </connects>
  2234. <package3dinstances>
  2235. <package3dinstance package3d_urn="urn:adsk.eagle:package:13300/1"/>
  2236. </package3dinstances>
  2237. <technologies>
  2238. <technology name="">
  2239. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2240. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2241. </technology>
  2242. </technologies>
  2243. </device>
  2244. <device name="R1005" package="R1005">
  2245. <connects>
  2246. <connect gate="G$1" pin="1" pad="1"/>
  2247. <connect gate="G$1" pin="2" pad="2"/>
  2248. </connects>
  2249. <package3dinstances>
  2250. <package3dinstance package3d_urn="urn:adsk.eagle:package:13297/1"/>
  2251. </package3dinstances>
  2252. <technologies>
  2253. <technology name="">
  2254. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2255. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2256. </technology>
  2257. </technologies>
  2258. </device>
  2259. <device name="R1206" package="R1206">
  2260. <connects>
  2261. <connect gate="G$1" pin="1" pad="1"/>
  2262. <connect gate="G$1" pin="2" pad="2"/>
  2263. </connects>
  2264. <package3dinstances>
  2265. <package3dinstance package3d_urn="urn:adsk.eagle:package:13301/1"/>
  2266. </package3dinstances>
  2267. <technologies>
  2268. <technology name="">
  2269. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2270. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2271. </technology>
  2272. </technologies>
  2273. </device>
  2274. <device name="R1210" package="R1210">
  2275. <connects>
  2276. <connect gate="G$1" pin="1" pad="1"/>
  2277. <connect gate="G$1" pin="2" pad="2"/>
  2278. </connects>
  2279. <package3dinstances>
  2280. <package3dinstance package3d_urn="urn:adsk.eagle:package:13299/1"/>
  2281. </package3dinstances>
  2282. <technologies>
  2283. <technology name="">
  2284. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2285. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2286. </technology>
  2287. </technologies>
  2288. </device>
  2289. <device name="R1218" package="R1218">
  2290. <connects>
  2291. <connect gate="G$1" pin="1" pad="1"/>
  2292. <connect gate="G$1" pin="2" pad="2"/>
  2293. </connects>
  2294. <package3dinstances>
  2295. <package3dinstance package3d_urn="urn:adsk.eagle:package:13303/1"/>
  2296. </package3dinstances>
  2297. <technologies>
  2298. <technology name="">
  2299. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2300. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2301. </technology>
  2302. </technologies>
  2303. </device>
  2304. <device name="R2010" package="R2010">
  2305. <connects>
  2306. <connect gate="G$1" pin="1" pad="1"/>
  2307. <connect gate="G$1" pin="2" pad="2"/>
  2308. </connects>
  2309. <package3dinstances>
  2310. <package3dinstance package3d_urn="urn:adsk.eagle:package:13309/1"/>
  2311. </package3dinstances>
  2312. <technologies>
  2313. <technology name="">
  2314. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2315. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2316. </technology>
  2317. </technologies>
  2318. </device>
  2319. <device name="R2012" package="R2012">
  2320. <connects>
  2321. <connect gate="G$1" pin="1" pad="1"/>
  2322. <connect gate="G$1" pin="2" pad="2"/>
  2323. </connects>
  2324. <package3dinstances>
  2325. <package3dinstance package3d_urn="urn:adsk.eagle:package:13306/1"/>
  2326. </package3dinstances>
  2327. <technologies>
  2328. <technology name="">
  2329. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2330. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2331. </technology>
  2332. </technologies>
  2333. </device>
  2334. <device name="R2512" package="R2512">
  2335. <connects>
  2336. <connect gate="G$1" pin="1" pad="1"/>
  2337. <connect gate="G$1" pin="2" pad="2"/>
  2338. </connects>
  2339. <package3dinstances>
  2340. <package3dinstance package3d_urn="urn:adsk.eagle:package:13304/1"/>
  2341. </package3dinstances>
  2342. <technologies>
  2343. <technology name="">
  2344. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2345. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2346. </technology>
  2347. </technologies>
  2348. </device>
  2349. <device name="R3216" package="R3216">
  2350. <connects>
  2351. <connect gate="G$1" pin="1" pad="1"/>
  2352. <connect gate="G$1" pin="2" pad="2"/>
  2353. </connects>
  2354. <package3dinstances>
  2355. <package3dinstance package3d_urn="urn:adsk.eagle:package:13305/1"/>
  2356. </package3dinstances>
  2357. <technologies>
  2358. <technology name="">
  2359. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2360. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2361. </technology>
  2362. </technologies>
  2363. </device>
  2364. <device name="R3225" package="R3225">
  2365. <connects>
  2366. <connect gate="G$1" pin="1" pad="1"/>
  2367. <connect gate="G$1" pin="2" pad="2"/>
  2368. </connects>
  2369. <package3dinstances>
  2370. <package3dinstance package3d_urn="urn:adsk.eagle:package:13311/1"/>
  2371. </package3dinstances>
  2372. <technologies>
  2373. <technology name="">
  2374. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2375. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2376. </technology>
  2377. </technologies>
  2378. </device>
  2379. <device name="R4527" package="R4527">
  2380. <connects>
  2381. <connect gate="G$1" pin="1" pad="1"/>
  2382. <connect gate="G$1" pin="2" pad="2"/>
  2383. </connects>
  2384. <package3dinstances>
  2385. <package3dinstance package3d_urn="urn:adsk.eagle:package:13310/1"/>
  2386. </package3dinstances>
  2387. <technologies>
  2388. <technology name="">
  2389. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2390. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2391. </technology>
  2392. </technologies>
  2393. </device>
  2394. <device name="R5025" package="R5025">
  2395. <connects>
  2396. <connect gate="G$1" pin="1" pad="1"/>
  2397. <connect gate="G$1" pin="2" pad="2"/>
  2398. </connects>
  2399. <package3dinstances>
  2400. <package3dinstance package3d_urn="urn:adsk.eagle:package:13308/1"/>
  2401. </package3dinstances>
  2402. <technologies>
  2403. <technology name="">
  2404. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2405. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2406. </technology>
  2407. </technologies>
  2408. </device>
  2409. <device name="R6332" package="R6332">
  2410. <connects>
  2411. <connect gate="G$1" pin="1" pad="1"/>
  2412. <connect gate="G$1" pin="2" pad="2"/>
  2413. </connects>
  2414. <package3dinstances>
  2415. <package3dinstance package3d_urn="urn:adsk.eagle:package:13307/1"/>
  2416. </package3dinstances>
  2417. <technologies>
  2418. <technology name="">
  2419. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2420. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2421. </technology>
  2422. </technologies>
  2423. </device>
  2424. </devices>
  2425. </deviceset>
  2426. </devicesets>
  2427. </library>
  2428. <library name="supply1" urn="urn:adsk.eagle:library:371">
  2429. <description>&lt;b&gt;Supply Symbols&lt;/b&gt;&lt;p&gt;
  2430. GND, VCC, 0V, +5V, -5V, etc.&lt;p&gt;
  2431. Please keep in mind, that these devices are necessary for the
  2432. automatic wiring of the supply signals.&lt;p&gt;
  2433. The pin name defined in the symbol is identical to the net which is to be wired automatically.&lt;p&gt;
  2434. 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;
  2435. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  2436. <packages>
  2437. </packages>
  2438. <symbols>
  2439. <symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1" library_version="1">
  2440. <wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
  2441. <text x="-2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  2442. <pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
  2443. </symbol>
  2444. </symbols>
  2445. <devicesets>
  2446. <deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND" library_version="1">
  2447. <description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>
  2448. <gates>
  2449. <gate name="1" symbol="GND" x="0" y="0"/>
  2450. </gates>
  2451. <devices>
  2452. <device name="">
  2453. <technologies>
  2454. <technology name=""/>
  2455. </technologies>
  2456. </device>
  2457. </devices>
  2458. </deviceset>
  2459. </devicesets>
  2460. </library>
  2461. <library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513">
  2462. <description>&lt;h3&gt;SparkFun Connectors&lt;/h3&gt;
  2463. This library contains electrically-functional connectors.
  2464. &lt;br&gt;
  2465. &lt;br&gt;
  2466. 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.
  2467. &lt;br&gt;
  2468. &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;.
  2469. &lt;br&gt;
  2470. &lt;br&gt;
  2471. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  2472. &lt;br&gt;
  2473. &lt;br&gt;
  2474. 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>
  2475. <packages>
  2476. <package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1">
  2477. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2478. &lt;p&gt;Specifications:
  2479. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2480. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2481. &lt;/ul&gt;&lt;/p&gt;
  2482. &lt;p&gt;Example device(s):
  2483. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2484. &lt;/ul&gt;&lt;/p&gt;</description>
  2485. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2486. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2487. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2488. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2489. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2490. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2491. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2492. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2493. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2494. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2495. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2496. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2497. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2498. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2499. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2500. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2501. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2502. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2503. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2504. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2505. </package>
  2506. <package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1">
  2507. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole&lt;/h3&gt;
  2508. &lt;p&gt;Specifications:
  2509. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2510. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2511. &lt;/ul&gt;&lt;/p&gt;
  2512. &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;
  2513. &lt;p&gt;Example device(s):
  2514. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2515. &lt;/ul&gt;&lt;/p&gt;</description>
  2516. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2517. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2518. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2519. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2520. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2521. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2522. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2523. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2524. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2525. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2526. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  2527. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2528. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2529. </package>
  2530. <package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1">
  2531. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH&lt;/h3&gt;
  2532. &lt;p&gt;Specifications:
  2533. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2534. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2535. &lt;/ul&gt;&lt;/p&gt;
  2536. &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;
  2537. &lt;p&gt;Example device(s):
  2538. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2539. &lt;/ul&gt;&lt;/p&gt;</description>
  2540. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2541. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2542. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2543. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2544. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2545. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2546. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2547. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2548. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2549. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2550. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2551. <wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/>
  2552. <wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/>
  2553. <wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2554. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2555. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2556. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2557. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2558. </package>
  2559. <package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1">
  2560. <description>&lt;h3&gt;JST-Right Angle Male Header SMT&lt;/h3&gt;
  2561. &lt;p&gt;Specifications:
  2562. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2563. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2564. &lt;/ul&gt;&lt;/p&gt;
  2565. &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;
  2566. &lt;p&gt;Example device(s):
  2567. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2568. &lt;li&gt;JST_2MM_MALE&lt;/li&gt;
  2569. &lt;/ul&gt;&lt;/p&gt;</description>
  2570. <wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/>
  2571. <wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/>
  2572. <wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/>
  2573. <wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/>
  2574. <wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/>
  2575. <wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/>
  2576. <wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/>
  2577. <wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/>
  2578. <wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/>
  2579. <smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2580. <smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2581. <smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2582. <smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2583. <text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2584. <text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2585. </package>
  2586. <package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1">
  2587. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2588. &lt;p&gt;Specifications:
  2589. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2590. &lt;li&gt;Pin pitch:0.15"&lt;/li&gt;
  2591. &lt;/ul&gt;&lt;/p&gt;
  2592. &lt;p&gt;Example device(s):
  2593. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2594. &lt;/ul&gt;&lt;/p&gt;</description>
  2595. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/>
  2596. <wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  2597. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/>
  2598. <wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/>
  2599. <pad name="P$1" x="0" y="0" drill="1.0668"/>
  2600. <pad name="P$2" x="3.81" y="0" drill="1.0668"/>
  2601. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2602. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2603. </package>
  2604. <package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1">
  2605. <description>&lt;h3&gt;JST-Vertical Male Header SMT &lt;/h3&gt;
  2606. &lt;p&gt;Specifications:
  2607. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2608. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2609. &lt;/ul&gt;&lt;/p&gt;
  2610. &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;
  2611. &lt;p&gt;Example device(s):
  2612. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2613. &lt;/ul&gt;&lt;/p&gt;</description>
  2614. <wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/>
  2615. <wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/>
  2616. <wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/>
  2617. <wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/>
  2618. <wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/>
  2619. <wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/>
  2620. <wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/>
  2621. <wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/>
  2622. <wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/>
  2623. <wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/>
  2624. <wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/>
  2625. <smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2626. <smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2627. <smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/>
  2628. <smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/>
  2629. <text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2630. <text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2631. </package>
  2632. <package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1">
  2633. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -2 Pin PTH&lt;/h3&gt;
  2634. &lt;p&gt;Specifications:
  2635. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2636. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  2637. &lt;/ul&gt;&lt;/p&gt;
  2638. &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;
  2639. &lt;p&gt;Example device(s):
  2640. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2641. &lt;/ul&gt;&lt;/p&gt;</description>
  2642. <wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/>
  2643. <wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/>
  2644. <wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/>
  2645. <wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  2646. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2647. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  2648. <wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2649. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  2650. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  2651. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  2652. <wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/>
  2653. <wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/>
  2654. <wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/>
  2655. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  2656. <pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/>
  2657. <pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/>
  2658. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2659. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2660. </package>
  2661. <package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1">
  2662. <description>&lt;h3&gt;Plated Through Hole - Locking Footprint&lt;/h3&gt;
  2663. Holes are staggered by 0.005" from center to hold pins while soldering.
  2664. &lt;p&gt;Specifications:
  2665. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2666. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2667. &lt;/ul&gt;&lt;/p&gt;
  2668. &lt;p&gt;Example device(s):
  2669. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2670. &lt;/ul&gt;&lt;/p&gt;</description>
  2671. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2672. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2673. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2674. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2675. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2676. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2677. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2678. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2679. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2680. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2681. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2682. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2683. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2684. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2685. <pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2686. <pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2687. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2688. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2689. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2690. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2691. </package>
  2692. <package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1">
  2693. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  2694. Holes are offset from center by 0.005" to hold pins in place during soldering.
  2695. &lt;p&gt;Specifications:
  2696. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2697. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2698. &lt;/ul&gt;&lt;/p&gt;
  2699. &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;
  2700. &lt;p&gt;Example device(s):
  2701. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2702. &lt;/ul&gt;&lt;/p&gt;</description>
  2703. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2704. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2705. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2706. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2707. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2708. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2709. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2710. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2711. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2712. <pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2713. <pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/>
  2714. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2715. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2716. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2717. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2718. </package>
  2719. <package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1">
  2720. <description>&lt;h3&gt;Plated Through Hole - Long Pads with Locking Footprint&lt;/h3&gt;
  2721. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  2722. &lt;p&gt;Specifications:
  2723. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2724. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2725. &lt;/ul&gt;&lt;/p&gt;
  2726. &lt;p&gt;Example device(s):
  2727. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2728. &lt;/ul&gt;&lt;/p&gt;</description>
  2729. <wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/>
  2730. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  2731. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  2732. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  2733. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  2734. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  2735. <wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  2736. <wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/>
  2737. <wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/>
  2738. <wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/>
  2739. <wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/>
  2740. <pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/>
  2741. <pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/>
  2742. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2743. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2744. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2745. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2746. </package>
  2747. <package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1">
  2748. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking&lt;/h3&gt;
  2749. Holes are offset from center 0.005" to hold pins in place during soldering.
  2750. &lt;p&gt;Specifications:
  2751. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2752. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2753. &lt;/ul&gt;&lt;/p&gt;
  2754. &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;
  2755. &lt;p&gt;Example device(s):
  2756. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2757. &lt;/ul&gt;&lt;/p&gt;</description>
  2758. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2759. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2760. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2761. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2762. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2763. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2764. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2765. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2766. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2767. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2768. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2769. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2770. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2771. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2772. <circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2773. <circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2774. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2775. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  2776. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2777. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2778. </package>
  2779. <package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1">
  2780. <description>&lt;h3&gt;Plated Through Hole - Long Pads without Silk Outline&lt;/h3&gt;
  2781. &lt;p&gt;Specifications:
  2782. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2783. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2784. &lt;/ul&gt;&lt;/p&gt;
  2785. &lt;p&gt;Example device(s):
  2786. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2787. &lt;/ul&gt;&lt;/p&gt;</description>
  2788. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2789. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2790. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2791. <text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2792. </package>
  2793. <package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1">
  2794. <description>&lt;h3&gt;Plated Through Hole - No Silk Outline&lt;/h3&gt;
  2795. &lt;p&gt;Specifications:
  2796. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2797. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2798. &lt;/ul&gt;&lt;/p&gt;
  2799. &lt;p&gt;Example device(s):
  2800. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2801. &lt;/ul&gt;&lt;/p&gt;</description>
  2802. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2803. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2804. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2805. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2806. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2807. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2808. </package>
  2809. <package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1">
  2810. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  2811. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2812. &lt;p&gt;Specifications:
  2813. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2814. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2815. &lt;/ul&gt;&lt;/p&gt;
  2816. &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;
  2817. &lt;p&gt;Example device(s):
  2818. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2819. &lt;/ul&gt;&lt;/p&gt;</description>
  2820. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2821. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2822. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2823. <text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2824. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2825. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2826. <wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/>
  2827. <wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/>
  2828. <wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/>
  2829. <wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/>
  2830. <wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/>
  2831. <wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/>
  2832. <wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/>
  2833. </package>
  2834. <package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1">
  2835. <description>&lt;h3&gt;Plated Through Hole - 0.1" holes&lt;/h3&gt;
  2836. &lt;p&gt;Specifications:
  2837. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2838. &lt;li&gt;Pin pitch:0.2"&lt;/li&gt;
  2839. &lt;/ul&gt;&lt;/p&gt;
  2840. &lt;p&gt;Example device(s):
  2841. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2842. &lt;/ul&gt;&lt;/p&gt;</description>
  2843. <wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/>
  2844. <wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2845. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/>
  2846. <wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/>
  2847. <pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/>
  2848. <pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/>
  2849. <text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2850. <text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2851. </package>
  2852. <package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1">
  2853. <description>&lt;h3&gt;Pogo Pins Connector - No Silk Outline&lt;/h3&gt;
  2854. &lt;p&gt;Specifications:
  2855. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2856. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2857. &lt;/ul&gt;&lt;/p&gt;
  2858. &lt;p&gt;Example device(s):
  2859. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2860. &lt;/ul&gt;&lt;/p&gt;</description>
  2861. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  2862. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  2863. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2864. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2865. <hole x="0" y="0" drill="1.4732"/>
  2866. <hole x="2.54" y="0" drill="1.4732"/>
  2867. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2868. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2869. </package>
  2870. <package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1">
  2871. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline&lt;/h3&gt;
  2872. &lt;p&gt;Specifications:
  2873. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2874. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2875. &lt;/ul&gt;&lt;/p&gt;
  2876. &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;
  2877. &lt;p&gt;Example device(s):
  2878. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2879. &lt;/ul&gt;&lt;/p&gt;</description>
  2880. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/>
  2881. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/>
  2882. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/>
  2883. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  2884. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2885. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  2886. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2887. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2888. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2889. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2890. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2891. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2892. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2893. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2894. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2895. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2896. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2897. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2898. </package>
  2899. <package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1">
  2900. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole- No Silk&lt;/h3&gt;
  2901. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2902. &lt;br&gt; No silk outline of connector.
  2903. &lt;p&gt;Specifications:
  2904. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2905. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2906. &lt;/ul&gt;&lt;/p&gt;
  2907. &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;
  2908. &lt;p&gt;Example device(s):
  2909. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2910. &lt;/ul&gt;&lt;/p&gt;</description>
  2911. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  2912. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  2913. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  2914. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  2915. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  2916. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  2917. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  2918. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2919. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2920. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2921. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2922. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2923. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2924. </package>
  2925. <package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1">
  2926. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole - KIT&lt;/h3&gt;
  2927. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2928. &lt;br&gt; This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  2929. &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.
  2930. &lt;p&gt;Specifications:
  2931. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2932. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2933. &lt;/ul&gt;&lt;/p&gt;
  2934. &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;
  2935. &lt;p&gt;Example device(s):
  2936. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2937. &lt;/ul&gt;&lt;/p&gt;</description>
  2938. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  2939. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  2940. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  2941. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  2942. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  2943. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  2944. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  2945. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  2946. <pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  2947. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2948. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2949. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2950. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2951. <polygon width="0.127" layer="30">
  2952. <vertex x="-0.9975" y="-0.6604" curve="-90.025935"/>
  2953. <vertex x="-1.6604" y="0" curve="-90.017354"/>
  2954. <vertex x="-1" y="0.6604" curve="-90"/>
  2955. <vertex x="-0.3396" y="0" curve="-90.078137"/>
  2956. </polygon>
  2957. <polygon width="0.127" layer="29">
  2958. <vertex x="-1" y="-0.2865" curve="-90.08005"/>
  2959. <vertex x="-1.2865" y="0" curve="-90.040011"/>
  2960. <vertex x="-1" y="0.2865" curve="-90"/>
  2961. <vertex x="-0.7135" y="0" curve="-90"/>
  2962. </polygon>
  2963. <polygon width="0.127" layer="30">
  2964. <vertex x="1.0025" y="-0.6604" curve="-90.025935"/>
  2965. <vertex x="0.3396" y="0" curve="-90.017354"/>
  2966. <vertex x="1" y="0.6604" curve="-90"/>
  2967. <vertex x="1.6604" y="0" curve="-90.078137"/>
  2968. </polygon>
  2969. <polygon width="0.127" layer="29">
  2970. <vertex x="1" y="-0.2865" curve="-90.08005"/>
  2971. <vertex x="0.7135" y="0" curve="-90.040011"/>
  2972. <vertex x="1" y="0.2865" curve="-90"/>
  2973. <vertex x="1.2865" y="0" curve="-90"/>
  2974. </polygon>
  2975. </package>
  2976. <package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1">
  2977. <description>&lt;h3&gt;Spring Terminal- PCB Mount 2 Pin PTH&lt;/h3&gt;
  2978. tDocu marks the spring arms
  2979. &lt;p&gt;Specifications:
  2980. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  2981. &lt;li&gt;Pin pitch: 0.1"&lt;/li&gt;
  2982. &lt;/ul&gt;&lt;/p&gt;
  2983. &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;
  2984. &lt;p&gt;Example device(s):
  2985. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2986. &lt;/ul&gt;&lt;/p&gt;</description>
  2987. <wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/>
  2988. <wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/>
  2989. <wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/>
  2990. <wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/>
  2991. <wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/>
  2992. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/>
  2993. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/>
  2994. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/>
  2995. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/>
  2996. <wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  2997. <wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/>
  2998. <wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/>
  2999. <wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  3000. <pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/>
  3001. <pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/>
  3002. <pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/>
  3003. <pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/>
  3004. </package>
  3005. <package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1">
  3006. <description>&lt;h3&gt;2 Pin Screw Terminal - 2.54mm&lt;/h3&gt;
  3007. &lt;p&gt;Specifications:
  3008. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  3009. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3010. &lt;/ul&gt;&lt;/p&gt;
  3011. &lt;p&gt;Example device(s):
  3012. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3013. &lt;/ul&gt;&lt;/p&gt;</description>
  3014. <pad name="P2" x="0" y="0" drill="1.016" shape="square"/>
  3015. <pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/>
  3016. <wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/>
  3017. <wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/>
  3018. <wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/>
  3019. <wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/>
  3020. <wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/>
  3021. <wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/>
  3022. <wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
  3023. <text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3024. <text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3025. </package>
  3026. <package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1">
  3027. <description>2 pin poke-home connector
  3028. part number 2062-2P from STA</description>
  3029. <wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/>
  3030. <wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/>
  3031. <wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/>
  3032. <wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/>
  3033. <wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/>
  3034. <smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/>
  3035. <smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/>
  3036. <smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/>
  3037. <smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/>
  3038. <text x="0.635" y="-3.175" size="0.4064" layer="25">&gt;NAME</text>
  3039. <text x="0.635" y="-1.905" size="0.4064" layer="27">&gt;VALUE</text>
  3040. </package>
  3041. <package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1">
  3042. <wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/>
  3043. <wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  3044. <wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/>
  3045. <wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  3046. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3047. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3048. <pad name="2" x="-1.27" y="-5.85" drill="0.8"/>
  3049. <pad name="1" x="1.27" y="-5.85" drill="0.8"/>
  3050. </package>
  3051. <package name="1X08" urn="urn:adsk.eagle:footprint:37760/1" library_version="1">
  3052. <description>&lt;h3&gt;Plated Through Hole -8 Pin&lt;/h3&gt;
  3053. &lt;p&gt;Specifications:
  3054. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3055. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3056. &lt;/ul&gt;&lt;/p&gt;
  3057. &lt;p&gt;Example device(s):
  3058. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3059. &lt;/ul&gt;&lt;/p&gt;</description>
  3060. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3061. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3062. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3063. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3064. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3065. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3066. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3067. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3068. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3069. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3070. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3071. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3072. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3073. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3074. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3075. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3076. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3077. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3078. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3079. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3080. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3081. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3082. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3083. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3084. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3085. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3086. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3087. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3088. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3089. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3090. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3091. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3092. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3093. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3094. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3095. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3096. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3097. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3098. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3099. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3100. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3101. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3102. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3103. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3104. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3105. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3106. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3107. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3108. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3109. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3110. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3111. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3112. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3113. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3114. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3115. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3116. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3117. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3118. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3119. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3120. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3121. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3122. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3123. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3124. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3125. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3126. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3127. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3128. </package>
  3129. <package name="1X08_LOCK" urn="urn:adsk.eagle:footprint:37761/1" library_version="1">
  3130. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint&lt;/h3&gt;
  3131. Holes are offset 0.005", to hold pins in place during soldering.
  3132. &lt;p&gt;Specifications:
  3133. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3134. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3135. &lt;/ul&gt;&lt;/p&gt;
  3136. &lt;p&gt;Example device(s):
  3137. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3138. &lt;/ul&gt;&lt;/p&gt;</description>
  3139. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3140. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3141. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3142. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3143. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3144. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3145. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3146. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3147. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3148. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3149. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3150. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3151. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3152. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3153. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3154. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3155. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3156. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3157. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3158. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3159. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3160. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3161. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3162. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3163. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3164. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3165. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3166. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3167. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3168. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3169. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3170. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3171. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3172. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3173. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3174. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3175. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3176. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3177. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3178. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3179. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3180. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3181. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3182. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3183. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3184. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3185. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3186. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3187. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3188. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3189. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3190. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3191. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3192. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3193. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3194. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3195. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3196. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3197. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3198. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3199. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3200. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3201. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3202. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3203. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3204. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3205. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3206. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3207. </package>
  3208. <package name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37762/1" library_version="1">
  3209. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint with Long Pads&lt;/h3&gt;
  3210. Holes are offset 0.005", to hold pins in place during soldering.
  3211. &lt;p&gt;Specifications:
  3212. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3213. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3214. &lt;/ul&gt;&lt;/p&gt;
  3215. &lt;p&gt;Example device(s):
  3216. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3217. &lt;/ul&gt;&lt;/p&gt;</description>
  3218. <wire x1="1.524" y1="0" x2="1.016" y2="0" width="0.2032" layer="21"/>
  3219. <wire x1="4.064" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  3220. <wire x1="6.604" y1="0" x2="6.096" y2="0" width="0.2032" layer="21"/>
  3221. <wire x1="9.144" y1="0" x2="8.636" y2="0" width="0.2032" layer="21"/>
  3222. <wire x1="11.684" y1="0" x2="11.176" y2="0" width="0.2032" layer="21"/>
  3223. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  3224. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  3225. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  3226. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  3227. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  3228. <wire x1="14.224" y1="0" x2="13.716" y2="0" width="0.2032" layer="21"/>
  3229. <wire x1="16.764" y1="0" x2="16.256" y2="0" width="0.2032" layer="21"/>
  3230. <wire x1="19.05" y1="0" x2="19.05" y2="-0.9906" width="0.2032" layer="21"/>
  3231. <wire x1="19.05" y1="-0.9906" x2="18.7706" y2="-1.27" width="0.2032" layer="21"/>
  3232. <wire x1="19.05" y1="0" x2="19.05" y2="0.9906" width="0.2032" layer="21"/>
  3233. <wire x1="19.05" y1="0.9906" x2="18.7706" y2="1.27" width="0.2032" layer="21"/>
  3234. <wire x1="19.05" y1="0" x2="18.796" y2="0" width="0.2032" layer="21"/>
  3235. <pad name="1" x="0" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3236. <pad name="2" x="2.54" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3237. <pad name="3" x="5.08" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3238. <pad name="4" x="7.62" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3239. <pad name="5" x="10.16" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3240. <pad name="6" x="12.7" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3241. <pad name="7" x="15.24" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3242. <pad name="8" x="17.78" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3243. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  3244. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  3245. <rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="51"/>
  3246. <rectangle x1="7.3279" y1="-0.2921" x2="7.9121" y2="0.2921" layer="51" rot="R90"/>
  3247. <rectangle x1="9.8679" y1="-0.2921" x2="10.4521" y2="0.2921" layer="51"/>
  3248. <rectangle x1="12.4079" y1="-0.2921" x2="12.9921" y2="0.2921" layer="51"/>
  3249. <rectangle x1="14.9479" y1="-0.2921" x2="15.5321" y2="0.2921" layer="51"/>
  3250. <rectangle x1="17.4879" y1="-0.2921" x2="18.0721" y2="0.2921" layer="51"/>
  3251. <text x="-0.889" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3252. <text x="-1.143" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3253. </package>
  3254. <package name="1X08_LONGPADS" urn="urn:adsk.eagle:footprint:37763/1" library_version="1">
  3255. <description>&lt;h3&gt;Plated Through Hole -8 Pin Long Pads&lt;/h3&gt;
  3256. &lt;p&gt;Specifications:
  3257. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3258. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3259. &lt;/ul&gt;&lt;/p&gt;
  3260. &lt;p&gt;Example device(s):
  3261. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3262. &lt;/ul&gt;&lt;/p&gt;</description>
  3263. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3264. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3265. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3266. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3267. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3268. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3269. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3270. <pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3271. <pad name="7" x="15.24" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3272. <pad name="8" x="17.78" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3273. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3274. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3275. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3276. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3277. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3278. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3279. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3280. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3281. <text x="-1.143" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3282. <text x="-1.016" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3283. </package>
  3284. <package name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:footprint:37764/1" library_version="1">
  3285. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -8 Pin PTH&lt;/h3&gt;
  3286. &lt;p&gt;Specifications:
  3287. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3288. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3289. &lt;/ul&gt;&lt;/p&gt;
  3290. &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;
  3291. &lt;p&gt;Example device(s):
  3292. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3293. &lt;/ul&gt;&lt;/p&gt;</description>
  3294. <wire x1="-1.75" y1="3.4" x2="26.25" y2="3.4" width="0.2032" layer="21"/>
  3295. <wire x1="26.25" y1="3.4" x2="26.25" y2="-2.8" width="0.2032" layer="21"/>
  3296. <wire x1="26.25" y1="-2.8" x2="26.25" y2="-3.6" width="0.2032" layer="21"/>
  3297. <wire x1="26.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3298. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3299. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3300. <wire x1="26.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3301. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3302. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3303. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3304. <wire x1="26.25" y1="3.15" x2="26.75" y2="3.15" width="0.2032" layer="51"/>
  3305. <wire x1="26.75" y1="3.15" x2="26.75" y2="2.15" width="0.2032" layer="51"/>
  3306. <wire x1="26.75" y1="2.15" x2="26.25" y2="2.15" width="0.2032" layer="51"/>
  3307. <wire x1="1.016" y1="-1.524" x2="-0.889" y2="-1.524" width="0.2032" layer="21"/>
  3308. <wire x1="-0.889" y1="-1.524" x2="1.016" y2="-1.524" width="0.2032" layer="22"/>
  3309. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032"/>
  3310. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3311. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3312. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3313. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  3314. <pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/>
  3315. <pad name="7" x="21" y="0" drill="1.2" diameter="2.032"/>
  3316. <pad name="8" x="24.5" y="0" drill="1.2" diameter="2.032"/>
  3317. <text x="11.049" y="2.286" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3318. <text x="10.795" y="1.397" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3319. </package>
  3320. <package name="1X08_SMD" urn="urn:adsk.eagle:footprint:37765/1" library_version="1">
  3321. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3322. &lt;p&gt;Specifications:
  3323. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3324. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3325. &lt;/ul&gt;&lt;/p&gt;
  3326. &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;
  3327. &lt;p&gt;Example device(s):
  3328. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3329. &lt;/ul&gt;&lt;/p&gt;</description>
  3330. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3331. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3332. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3333. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3334. <wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3335. <wire x1="-19.15" y1="-1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3336. <wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3337. <wire x1="-19.15" y1="1.25" x2="-15.963" y2="1.25" width="0.127" layer="21"/>
  3338. <wire x1="-18.63" y1="-1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3339. <wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/>
  3340. <wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/>
  3341. <wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/>
  3342. <wire x1="-14.537" y1="1.25" x2="-10.863" y2="1.25" width="0.127" layer="21"/>
  3343. <wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/>
  3344. <wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/>
  3345. <wire x1="-13.489" y1="-1.25" x2="-16.991" y2="-1.25" width="0.127" layer="21"/>
  3346. <smd name="7" x="-15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3347. <smd name="5" x="-10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3348. <smd name="3" x="-5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3349. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3350. <smd name="8" x="-17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3351. <smd name="6" x="-12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3352. <smd name="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3353. <smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3354. <text x="-18.542" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3355. <text x="-18.542" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3356. </package>
  3357. <package name="1X08_SMD_ALT" urn="urn:adsk.eagle:footprint:37766/1" library_version="1">
  3358. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3359. Alternate pin configuration
  3360. &lt;p&gt;Specifications:
  3361. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3362. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3363. &lt;/ul&gt;&lt;/p&gt;
  3364. &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;
  3365. &lt;p&gt;Example device(s):
  3366. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3367. &lt;/ul&gt;&lt;/p&gt;</description>
  3368. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3369. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3370. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3371. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3372. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3373. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3374. <wire x1="-18.63" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3375. <wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/>
  3376. <wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3377. <wire x1="-19.15" y1="-1.25" x2="-15.963" y2="-1.25" width="0.127" layer="21"/>
  3378. <wire x1="-13.403" y1="1.25" x2="-17.077" y2="1.25" width="0.127" layer="21"/>
  3379. <wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/>
  3380. <wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/>
  3381. <wire x1="-14.451" y1="-1.25" x2="-10.949" y2="-1.25" width="0.127" layer="21"/>
  3382. <wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/>
  3383. <wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/>
  3384. <smd name="7" x="-15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3385. <smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3386. <smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3387. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3388. <smd name="8" x="-17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3389. <smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3390. <smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3391. <smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3392. <text x="-18.796" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3393. <text x="-18.923" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3394. </package>
  3395. <package name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:footprint:37767/1" library_version="1">
  3396. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3397. Combined footprint configuration
  3398. &lt;p&gt;Specifications:
  3399. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3400. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3401. &lt;/ul&gt;&lt;/p&gt;
  3402. &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;
  3403. &lt;p&gt;Example device(s):
  3404. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3405. &lt;/ul&gt;&lt;/p&gt;</description>
  3406. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.127" layer="21"/>
  3407. <wire x1="19.15" y1="1.25" x2="19.15" y2="-1.25" width="0.127" layer="21"/>
  3408. <wire x1="-0.85" y1="-1.25" x2="-1.37" y2="-1.25" width="0.127" layer="21"/>
  3409. <wire x1="19.15" y1="-1.25" x2="18.503" y2="-1.25" width="0.127" layer="21"/>
  3410. <wire x1="18.63" y1="1.25" x2="19.15" y2="1.25" width="0.127" layer="21"/>
  3411. <wire x1="-1.37" y1="1.25" x2="-0.723" y2="1.25" width="0.127" layer="21"/>
  3412. <wire x1="14.537" y1="-1.25" x2="13.403" y2="-1.25" width="0.127" layer="21"/>
  3413. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.127" layer="21"/>
  3414. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.127" layer="21"/>
  3415. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.127" layer="21"/>
  3416. <wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.127" layer="21"/>
  3417. <wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.127" layer="21"/>
  3418. <wire x1="13.489" y1="1.25" x2="14.451" y2="1.25" width="0.127" layer="21"/>
  3419. <wire x1="16.029" y1="1.25" x2="16.991" y2="1.25" width="0.127" layer="21"/>
  3420. <wire x1="17.077" y1="-1.25" x2="15.943" y2="-1.25" width="0.127" layer="21"/>
  3421. <wire x1="11.997" y1="-1.25" x2="10.863" y2="-1.25" width="0.127" layer="21"/>
  3422. <wire x1="9.457" y1="-1.25" x2="8.323" y2="-1.25" width="0.127" layer="21"/>
  3423. <wire x1="6.917" y1="-1.25" x2="5.783" y2="-1.25" width="0.127" layer="21"/>
  3424. <wire x1="4.377" y1="-1.25" x2="3.243" y2="-1.25" width="0.127" layer="21"/>
  3425. <wire x1="1.837" y1="-1.25" x2="0.703" y2="-1.25" width="0.127" layer="21"/>
  3426. <wire x1="17.78" y1="1.27" x2="17.78" y2="-1.27" width="0.4064" layer="1"/>
  3427. <wire x1="15.24" y1="1.27" x2="15.24" y2="-1.27" width="0.4064" layer="1"/>
  3428. <wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/>
  3429. <wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/>
  3430. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  3431. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  3432. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  3433. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  3434. <smd name="7@2" x="15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3435. <smd name="5@2" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3436. <smd name="3@2" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3437. <smd name="8@2" x="17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3438. <smd name="6@2" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3439. <smd name="4@2" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3440. <smd name="2@2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3441. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3442. <smd name="2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3443. <smd name="3" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3444. <smd name="4" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3445. <smd name="5" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3446. <smd name="6" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3447. <smd name="7" x="15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3448. <smd name="8" x="17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3449. <smd name="1@2" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3450. <text x="-0.381" y="3.048" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3451. <text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3452. </package>
  3453. <package name="BM08B-SRSS-TB" urn="urn:adsk.eagle:footprint:37768/1" library_version="1">
  3454. <description>&lt;h3&gt;JST Vertical Crimp Connect&lt;/h3&gt;
  3455. &lt;p&gt;Specifications:
  3456. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3457. &lt;li&gt;Pin pitch:1mm&lt;/li&gt;
  3458. &lt;/ul&gt;&lt;/p&gt;
  3459. &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;
  3460. &lt;p&gt;Example device(s):
  3461. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3462. &lt;/ul&gt;&lt;/p&gt;</description>
  3463. <wire x1="-5" y1="3.3" x2="5" y2="3.3" width="0.127" layer="51"/>
  3464. <wire x1="-5" y1="0.4" x2="-5" y2="3.3" width="0.127" layer="51"/>
  3465. <wire x1="5" y1="0.4" x2="5" y2="3.3" width="0.127" layer="51"/>
  3466. <wire x1="-5" y1="0.4" x2="5" y2="0.4" width="0.127" layer="51"/>
  3467. <wire x1="-4.1" y1="0.35" x2="-5.05" y2="0.35" width="0.2032" layer="21"/>
  3468. <wire x1="-5.05" y1="0.35" x2="-5.05" y2="1.35" width="0.2032" layer="21"/>
  3469. <wire x1="5.05" y1="0.35" x2="4.15" y2="0.35" width="0.2032" layer="21"/>
  3470. <wire x1="5.05" y1="0.35" x2="5.05" y2="1.35" width="0.2032" layer="21"/>
  3471. <wire x1="-3.9" y1="3.4" x2="3.9" y2="3.4" width="0.2032" layer="21"/>
  3472. <circle x="-4.4" y="-0.35" radius="0.1118" width="0.4064" layer="21"/>
  3473. <smd name="1" x="-3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3474. <smd name="2" x="-2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3475. <smd name="3" x="-1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3476. <smd name="4" x="-0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3477. <smd name="5" x="0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3478. <smd name="6" x="1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3479. <smd name="7" x="2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3480. <smd name="8" x="3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3481. <smd name="P$9" x="4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3482. <smd name="P$10" x="-4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3483. <text x="-1.397" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3484. <text x="-1.651" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3485. </package>
  3486. <package name="1X08_SMD_MALE" urn="urn:adsk.eagle:footprint:37769/1" library_version="1">
  3487. <description>&lt;h3&gt;SMD -8 Pin Vertical Male&lt;/h3&gt;
  3488. &lt;p&gt;Specifications:
  3489. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3490. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3491. &lt;/ul&gt;&lt;/p&gt;
  3492. &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;
  3493. &lt;p&gt;Example device(s):
  3494. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3495. &lt;/ul&gt;&lt;/p&gt;</description>
  3496. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3497. <wire x1="-1.27" y1="-1.25" x2="19.05" y2="-1.25" width="0.127" layer="51"/>
  3498. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.127" layer="51"/>
  3499. <wire x1="19.05" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/>
  3500. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/>
  3501. <wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/>
  3502. <wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/>
  3503. <wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/>
  3504. <wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/>
  3505. <wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/>
  3506. <wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/>
  3507. <wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/>
  3508. <wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/>
  3509. <wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/>
  3510. <wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/>
  3511. <wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/>
  3512. <wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/>
  3513. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.1778" layer="21"/>
  3514. <wire x1="16.002" y1="1.25" x2="17.018" y2="1.25" width="0.1778" layer="21"/>
  3515. <wire x1="17.018" y1="-1.25" x2="16.002" y2="-1.25" width="0.1778" layer="21"/>
  3516. <wire x1="19.05" y1="-1.25" x2="18.415" y2="-1.25" width="0.1778" layer="21"/>
  3517. <wire x1="19.05" y1="1.25" x2="18.415" y2="1.25" width="0.1778" layer="21"/>
  3518. <wire x1="13.462" y1="1.25" x2="14.478" y2="1.25" width="0.1778" layer="21"/>
  3519. <wire x1="14.478" y1="-1.25" x2="13.462" y2="-1.25" width="0.1778" layer="21"/>
  3520. <circle x="0" y="0" radius="0.64" width="0.127" layer="51"/>
  3521. <circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/>
  3522. <circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/>
  3523. <circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/>
  3524. <circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/>
  3525. <circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/>
  3526. <circle x="15.24" y="0" radius="0.64" width="0.127" layer="51"/>
  3527. <circle x="17.78" y="0" radius="0.64" width="0.127" layer="51"/>
  3528. <rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/>
  3529. <rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/>
  3530. <rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/>
  3531. <rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/>
  3532. <rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/>
  3533. <rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/>
  3534. <rectangle x1="14.92" y1="0" x2="15.56" y2="2.75" layer="51"/>
  3535. <rectangle x1="17.46" y1="-2.75" x2="18.1" y2="0" layer="51" rot="R180"/>
  3536. <smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/>
  3537. <smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/>
  3538. <smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/>
  3539. <smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/>
  3540. <smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/>
  3541. <smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/>
  3542. <smd name="7" x="15.24" y="0" dx="1.02" dy="6" layer="1"/>
  3543. <smd name="8" x="17.78" y="0" dx="1.02" dy="6" layer="1"/>
  3544. <text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3545. <text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3546. </package>
  3547. <package name="1X08_NO_SILK" urn="urn:adsk.eagle:footprint:37770/1" library_version="1">
  3548. <description>&lt;h3&gt;Plated Through Hole -8 Pin No Silk&lt;/h3&gt;
  3549. &lt;p&gt;Specifications:
  3550. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3551. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3552. &lt;/ul&gt;&lt;/p&gt;
  3553. &lt;p&gt;Example device(s):
  3554. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3555. &lt;/ul&gt;&lt;/p&gt;</description>
  3556. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3557. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3558. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3559. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3560. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3561. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3562. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3563. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3564. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3565. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3566. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3567. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3568. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3569. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3570. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3571. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3572. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3573. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3574. </package>
  3575. <package name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:footprint:37771/1" library_version="1">
  3576. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint No Silk&lt;/h3&gt;
  3577. Holes are offset 0.005", to hold pins in place during soldering.
  3578. &lt;p&gt;Specifications:
  3579. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3580. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3581. &lt;/ul&gt;&lt;/p&gt;
  3582. &lt;p&gt;Example device(s):
  3583. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3584. &lt;/ul&gt;&lt;/p&gt;</description>
  3585. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3586. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3587. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3588. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3589. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3590. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3591. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3592. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3593. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3594. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3595. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  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. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3601. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3602. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3603. </package>
  3604. <package name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:footprint:37772/1" library_version="1">
  3605. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Female Headers&lt;/h3&gt;
  3606. Holes are offset 0.005" to hold pins in place during soldering.
  3607. &lt;p&gt;Specifications:
  3608. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3609. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3610. &lt;/ul&gt;&lt;/p&gt;
  3611. &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;
  3612. &lt;p&gt;Example device(s):
  3613. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3614. &lt;/ul&gt;&lt;/p&gt;</description>
  3615. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3616. <wire x1="-1.27" y1="1.27" x2="19.05" y2="1.27" width="0.2032" layer="21"/>
  3617. <wire x1="19.05" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3618. <wire x1="19.05" y1="1.27" x2="19.05" y2="-1.27" width="0.2032" layer="21"/>
  3619. <pad name="1" x="0" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3620. <pad name="2" x="2.54" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3621. <pad name="3" x="5.08" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3622. <pad name="4" x="7.62" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3623. <pad name="5" x="10.16" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3624. <pad name="6" x="12.7" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3625. <pad name="7" x="15.24" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3626. <pad name="8" x="17.78" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3627. <rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/>
  3628. <rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/>
  3629. <rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/>
  3630. <rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/>
  3631. <rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/>
  3632. <rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/>
  3633. <rectangle x1="14.9225" y1="-0.1905" x2="15.5575" y2="0.1905" layer="51"/>
  3634. <rectangle x1="17.4625" y1="-0.1905" x2="18.0975" y2="0.1905" layer="51"/>
  3635. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3636. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3637. </package>
  3638. <package name="1X04" urn="urn:adsk.eagle:footprint:37702/1" library_version="1">
  3639. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3640. &lt;p&gt;Specifications:
  3641. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3642. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3643. &lt;/ul&gt;&lt;/p&gt;
  3644. &lt;p&gt;Example device(s):
  3645. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3646. &lt;/ul&gt;&lt;/p&gt;</description>
  3647. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3648. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3649. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3650. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3651. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3652. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3653. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3654. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3655. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3656. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3657. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3658. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3659. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3660. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3661. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3662. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3663. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3664. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3665. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3666. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3667. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3668. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3669. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3670. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3671. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3672. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3673. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3674. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3675. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3676. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3677. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3678. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3679. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3680. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3681. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3682. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3683. </package>
  3684. <package name="MOLEX-1X4" urn="urn:adsk.eagle:footprint:37703/1" library_version="1">
  3685. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole&lt;/h3&gt;
  3686. &lt;p&gt;Specifications:
  3687. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3688. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3689. &lt;/ul&gt;&lt;/p&gt;
  3690. &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;
  3691. &lt;p&gt;Example device(s):
  3692. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3693. &lt;/ul&gt;&lt;/p&gt;</description>
  3694. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3695. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3696. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3697. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3698. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3699. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3700. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3701. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3702. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3703. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  3704. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3705. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3706. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3707. <text x="2.286" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3708. <text x="2.286" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3709. </package>
  3710. <package name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:footprint:37704/1" library_version="1">
  3711. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH&lt;/h3&gt;
  3712. &lt;p&gt;Specifications:
  3713. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3714. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3715. &lt;/ul&gt;&lt;/p&gt;
  3716. &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;
  3717. &lt;p&gt;Example device(s):
  3718. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3719. &lt;/ul&gt;&lt;/p&gt;</description>
  3720. <wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/>
  3721. <wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/>
  3722. <wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/>
  3723. <wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3724. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3725. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3726. <wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3727. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3728. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3729. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3730. <wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="51"/>
  3731. <wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="51"/>
  3732. <wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="51"/>
  3733. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3734. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3735. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3736. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3737. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3738. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3739. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3740. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3741. <text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3742. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3743. </package>
  3744. <package name="1X04_1.27MM" urn="urn:adsk.eagle:footprint:37705/1" library_version="1">
  3745. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3746. &lt;p&gt;Specifications:
  3747. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3748. &lt;li&gt;Pin pitch: 1.27mm&lt;/li&gt;
  3749. &lt;/ul&gt;&lt;/p&gt;
  3750. &lt;p&gt;Example device(s):
  3751. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3752. &lt;/ul&gt;&lt;/p&gt;</description>
  3753. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  3754. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  3755. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  3756. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  3757. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  3758. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  3759. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  3760. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  3761. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  3762. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3763. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  3764. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  3765. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  3766. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  3767. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  3768. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  3769. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  3770. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  3771. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  3772. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  3773. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  3774. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  3775. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  3776. <wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/>
  3777. <wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/>
  3778. <wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3779. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  3780. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  3781. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  3782. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  3783. <text x="-0.508" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3784. <text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3785. </package>
  3786. <package name="1X04_LOCK" urn="urn:adsk.eagle:footprint:37706/1" library_version="1">
  3787. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Locking Footprint&lt;/h3&gt;
  3788. Pins are offset 0.005" from center to lock 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;Example device(s):
  3794. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3795. &lt;/ul&gt;&lt;/p&gt;</description>
  3796. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3797. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3798. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3799. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3800. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3801. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3802. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3803. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3804. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3805. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3806. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3807. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3808. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3809. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3810. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3811. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3812. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3813. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3814. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3815. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3816. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3817. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3818. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3819. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3820. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3821. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3822. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3823. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3824. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3825. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3826. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3827. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3828. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3829. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3830. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3831. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3832. </package>
  3833. <package name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37707/1" library_version="1">
  3834. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint&lt;/h3&gt;
  3835. Holes are offset 0.005" from center to lock pins in place during soldering.
  3836. &lt;p&gt;Specifications:
  3837. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3838. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3839. &lt;/ul&gt;&lt;/p&gt;
  3840. &lt;p&gt;Example device(s):
  3841. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3842. &lt;/ul&gt;&lt;/p&gt;</description>
  3843. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  3844. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  3845. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  3846. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  3847. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  3848. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  3849. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  3850. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  3851. <wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  3852. <wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/>
  3853. <wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/>
  3854. <wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/>
  3855. <wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/>
  3856. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  3857. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3858. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  3859. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3860. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3861. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3862. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3863. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  3864. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3865. <text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3866. </package>
  3867. <package name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:footprint:37708/1" library_version="1">
  3868. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole Locking&lt;/h3&gt;
  3869. Holes are offset 0.005" from center to hold pins in place during soldering.
  3870. &lt;p&gt;Specifications:
  3871. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3872. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3873. &lt;/ul&gt;&lt;/p&gt;
  3874. &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;
  3875. &lt;p&gt;Example device(s):
  3876. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3877. &lt;/ul&gt;&lt;/p&gt;</description>
  3878. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3879. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3880. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3881. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3882. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3883. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3884. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3885. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3886. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3887. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
  3888. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  3889. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  3890. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  3891. <text x="2.667" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3892. <text x="2.032" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3893. </package>
  3894. <package name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37709/1" library_version="1">
  3895. <description>&lt;h3&gt;SMD - 4 Pin Right Angle Male Header&lt;/h3&gt;
  3896. tDocu layer shows pin locations.
  3897. &lt;p&gt;Specifications:
  3898. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3899. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3900. &lt;/ul&gt;&lt;/p&gt;
  3901. &lt;p&gt;Example device(s):
  3902. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3903. &lt;/ul&gt;&lt;/p&gt;</description>
  3904. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  3905. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  3906. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  3907. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3908. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  3909. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  3910. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  3911. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  3912. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  3913. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  3914. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  3915. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  3916. <smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3917. <smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3918. <smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3919. <smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3920. <hole x="-2.54" y="0" drill="1.4"/>
  3921. <hole x="2.54" y="0" drill="1.4"/>
  3922. <text x="-4.318" y="6.731" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3923. <text x="-4.318" y="2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3924. </package>
  3925. <package name="1X04_LONGPADS" urn="urn:adsk.eagle:footprint:37710/1" library_version="1">
  3926. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads&lt;/h3&gt;
  3927. &lt;p&gt;Specifications:
  3928. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3929. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3930. &lt;/ul&gt;&lt;/p&gt;
  3931. &lt;p&gt;Example device(s):
  3932. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3933. &lt;/ul&gt;&lt;/p&gt;</description>
  3934. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3935. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3936. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3937. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3938. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3939. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3940. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3941. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3942. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3943. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3944. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3945. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3946. </package>
  3947. <package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1">
  3948. <description>&lt;h3&gt;Plated Through Hole - 4 Pin No Silk Outline&lt;/h3&gt;
  3949. &lt;p&gt;Specifications:
  3950. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3951. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3952. &lt;/ul&gt;&lt;/p&gt;
  3953. &lt;p&gt;Example device(s):
  3954. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3955. &lt;/ul&gt;&lt;/p&gt;</description>
  3956. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3957. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3958. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3959. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3960. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3961. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3962. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3963. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3964. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3965. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3966. </package>
  3967. <package name="JST-4-PTH" urn="urn:adsk.eagle:footprint:37712/1" library_version="1">
  3968. <description>&lt;h3&gt;JST Right Angle 4 Pin Plated Through Hole&lt;/h3&gt;
  3969. &lt;p&gt;Specifications:
  3970. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3971. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  3972. &lt;/ul&gt;&lt;/p&gt;
  3973. &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;
  3974. &lt;p&gt;Example device(s):
  3975. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3976. &lt;/ul&gt;&lt;/p&gt;</description>
  3977. <pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/>
  3978. <pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/>
  3979. <pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/>
  3980. <pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/>
  3981. <text x="-3.4" y="0.7" size="1.27" layer="51">+</text>
  3982. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3983. <text x="0.7" y="0.9" size="0.8" layer="51">S</text>
  3984. <text x="2.7" y="0.9" size="0.8" layer="51">S</text>
  3985. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3986. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3987. <wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/>
  3988. <wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/>
  3989. <wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/>
  3990. <wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/>
  3991. <wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/>
  3992. <wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/>
  3993. <wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/>
  3994. </package>
  3995. <package name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:footprint:37713/1" library_version="1">
  3996. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH Locking&lt;/h3&gt;
  3997. Holes are offset 0.005" from center to hold pins in place during soldering.
  3998. &lt;p&gt;Specifications:
  3999. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4000. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  4001. &lt;/ul&gt;&lt;/p&gt;
  4002. &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;
  4003. &lt;p&gt;Example device(s):
  4004. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4005. &lt;/ul&gt;&lt;/p&gt;</description>
  4006. <wire x1="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/>
  4007. <wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/>
  4008. <wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/>
  4009. <wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/>
  4010. <wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  4011. <wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/>
  4012. <wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  4013. <wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="51"/>
  4014. <wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="51"/>
  4015. <wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="51"/>
  4016. <wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="51"/>
  4017. <wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="51"/>
  4018. <wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="51"/>
  4019. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  4020. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  4021. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  4022. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  4023. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  4024. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  4025. <pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/>
  4026. <pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/>
  4027. <text x="3.81" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4028. <text x="3.81" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4029. </package>
  4030. <package name="1X04_1MM_RA" urn="urn:adsk.eagle:footprint:37714/1" library_version="1">
  4031. <description>&lt;h3&gt;SMD- 4 Pin Right Angle &lt;/h3&gt;
  4032. &lt;p&gt;Specifications:
  4033. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4034. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4035. &lt;/ul&gt;&lt;/p&gt;
  4036. &lt;p&gt;Example device(s):
  4037. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4038. &lt;/ul&gt;&lt;/p&gt;</description>
  4039. <wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/>
  4040. <wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/>
  4041. <wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/>
  4042. <wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/>
  4043. <wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/>
  4044. <circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  4045. <smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  4046. <smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  4047. <smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4048. <smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4049. <smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4050. <smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4051. <text x="-1.397" y="-2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4052. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4053. </package>
  4054. <package name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:footprint:37715/1" library_version="1">
  4055. <description>&lt;h3&gt;SMD - 4 Pin Vertical Connector&lt;/h3&gt;
  4056. &lt;p&gt;Specifications:
  4057. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4058. &lt;li&gt;SMD Pad count:8&lt;/li&gt;
  4059. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4060. &lt;/ul&gt;&lt;/p&gt;
  4061. &lt;p&gt;Example device(s):
  4062. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4063. &lt;/ul&gt;&lt;/p&gt;</description>
  4064. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  4065. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  4066. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  4067. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  4068. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  4069. <wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/>
  4070. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  4071. <wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/>
  4072. <wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/>
  4073. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  4074. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  4075. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  4076. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  4077. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  4078. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  4079. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  4080. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4081. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4082. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4083. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4084. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4085. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4086. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4087. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4088. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4089. <text x="-0.508" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4090. </package>
  4091. <package name="1X04_SMD_LONG" urn="urn:adsk.eagle:footprint:37716/1" library_version="1">
  4092. <description>&lt;h3&gt;SMD - 4 Pin w/ Long Solder Pads&lt;/h3&gt;
  4093. No silk, but tDocu layer shows pin position.
  4094. &lt;p&gt;Specifications:
  4095. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4096. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4097. &lt;/ul&gt;&lt;/p&gt;
  4098. &lt;p&gt;Example device(s):
  4099. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4100. &lt;/ul&gt;&lt;/p&gt;</description>
  4101. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  4102. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  4103. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  4104. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4105. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  4106. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  4107. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  4108. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  4109. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  4110. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  4111. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  4112. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  4113. <smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4114. <smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4115. <smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4116. <smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4117. <hole x="-2.54" y="0" drill="1.4"/>
  4118. <hole x="2.54" y="0" drill="1.4"/>
  4119. </package>
  4120. <package name="JST-4-PTH-VERT" urn="urn:adsk.eagle:footprint:37717/1" library_version="1">
  4121. <description>&lt;h3&gt;JST Vertical 4 Pin Plated Through Hole&lt;/h3&gt;
  4122. &lt;p&gt;Specifications:
  4123. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4124. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  4125. &lt;/ul&gt;&lt;/p&gt;
  4126. &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;
  4127. &lt;p&gt;Example device(s):
  4128. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4129. &lt;/ul&gt;&lt;/p&gt;</description>
  4130. <wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/>
  4131. <wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/>
  4132. <wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4133. <wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/>
  4134. <wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
  4135. <wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4136. <wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
  4137. <wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/>
  4138. <pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/>
  4139. <pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/>
  4140. <pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/>
  4141. <pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/>
  4142. <text x="-1.4" y="0.75" size="1.27" layer="51">+</text>
  4143. <text x="0.6" y="0.75" size="1.27" layer="51">-</text>
  4144. <text x="2.7" y="0.95" size="0.8" layer="51">Y</text>
  4145. <text x="-3.3" y="0.95" size="0.8" layer="51">B</text>
  4146. <text x="-1.143" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4147. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4148. </package>
  4149. <package name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37718/1" library_version="1">
  4150. <description>&lt;h3&gt;SMD - 4 Pin Right-Angle Female Header&lt;/h3&gt;
  4151. Silk outline shows header location.
  4152. &lt;p&gt;Specifications:
  4153. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4154. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4155. &lt;/ul&gt;&lt;/p&gt;
  4156. &lt;p&gt;Example device(s):
  4157. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4158. &lt;/ul&gt;&lt;/p&gt;</description>
  4159. <wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/>
  4160. <wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/>
  4161. <wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/>
  4162. <wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/>
  4163. <rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="51"/>
  4164. <rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="51"/>
  4165. <rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="51"/>
  4166. <rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="51"/>
  4167. <smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4168. <smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4169. <smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4170. <smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4171. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4172. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4173. </package>
  4174. </packages>
  4175. <packages3d>
  4176. <package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1">
  4177. <description>Plated Through Hole
  4178. Specifications:
  4179. Pin count:2
  4180. Pin pitch:0.1"
  4181. Example device(s):
  4182. CONN_02
  4183. </description>
  4184. <packageinstances>
  4185. <packageinstance name="1X02"/>
  4186. </packageinstances>
  4187. </package3d>
  4188. <package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1">
  4189. <description>Molex 2-Pin Plated Through-Hole
  4190. Specifications:
  4191. Pin count:2
  4192. Pin pitch:0.1"
  4193. Datasheet referenced for footprint
  4194. Example device(s):
  4195. CONN_02
  4196. </description>
  4197. <packageinstances>
  4198. <packageinstance name="MOLEX-1X2"/>
  4199. </packageinstances>
  4200. </package3d>
  4201. <package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1">
  4202. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH
  4203. Specifications:
  4204. Pin count: 2
  4205. Pin pitch: 3.5mm/138mil
  4206. Datasheet referenced for footprint
  4207. Example device(s):
  4208. CONN_02
  4209. </description>
  4210. <packageinstances>
  4211. <packageinstance name="SCREWTERMINAL-3.5MM-2"/>
  4212. </packageinstances>
  4213. </package3d>
  4214. <package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1">
  4215. <description>JST-Right Angle Male Header SMT
  4216. Specifications:
  4217. Pin count: 2
  4218. Pin pitch: 2mm
  4219. Datasheet referenced for footprint
  4220. Example device(s):
  4221. CONN_02
  4222. JST_2MM_MALE
  4223. </description>
  4224. <packageinstances>
  4225. <packageinstance name="JST-2-SMD"/>
  4226. </packageinstances>
  4227. </package3d>
  4228. <package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1">
  4229. <description>Plated Through Hole
  4230. Specifications:
  4231. Pin count:2
  4232. Pin pitch:0.15"
  4233. Example device(s):
  4234. CONN_02
  4235. </description>
  4236. <packageinstances>
  4237. <packageinstance name="1X02_BIG"/>
  4238. </packageinstances>
  4239. </package3d>
  4240. <package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1">
  4241. <description>JST-Vertical Male Header SMT
  4242. Specifications:
  4243. Pin count: 2
  4244. Pin pitch: 2mm
  4245. Datasheet referenced for footprint
  4246. Example device(s):
  4247. CONN_02
  4248. </description>
  4249. <packageinstances>
  4250. <packageinstance name="JST-2-SMD-VERT"/>
  4251. </packageinstances>
  4252. </package3d>
  4253. <package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1">
  4254. <description>Screw Terminal 5mm Pitch -2 Pin PTH
  4255. Specifications:
  4256. Pin count: 2
  4257. Pin pitch: 5mm/197mil
  4258. Datasheet referenced for footprint
  4259. Example device(s):
  4260. CONN_02
  4261. </description>
  4262. <packageinstances>
  4263. <packageinstance name="SCREWTERMINAL-5MM-2"/>
  4264. </packageinstances>
  4265. </package3d>
  4266. <package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1">
  4267. <description>Plated Through Hole - Locking Footprint
  4268. Holes are staggered by 0.005" from center to hold pins while soldering.
  4269. Specifications:
  4270. Pin count:2
  4271. Pin pitch:0.1"
  4272. Example device(s):
  4273. CONN_02
  4274. </description>
  4275. <packageinstances>
  4276. <packageinstance name="1X02_LOCK"/>
  4277. </packageinstances>
  4278. </package3d>
  4279. <package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1">
  4280. <description>Molex 2-Pin Plated Through-Hole Locking Footprint
  4281. Holes are offset from center by 0.005" to hold pins in place during soldering.
  4282. Specifications:
  4283. Pin count:2
  4284. Pin pitch:0.1"
  4285. Datasheet referenced for footprint
  4286. Example device(s):
  4287. CONN_02
  4288. </description>
  4289. <packageinstances>
  4290. <packageinstance name="MOLEX-1X2_LOCK"/>
  4291. </packageinstances>
  4292. </package3d>
  4293. <package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1">
  4294. <description>Plated Through Hole - Long Pads with Locking Footprint
  4295. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  4296. Specifications:
  4297. Pin count:2
  4298. Pin pitch:0.1"
  4299. Example device(s):
  4300. CONN_02
  4301. </description>
  4302. <packageinstances>
  4303. <packageinstance name="1X02_LOCK_LONGPADS"/>
  4304. </packageinstances>
  4305. </package3d>
  4306. <package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1">
  4307. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking
  4308. Holes are offset from center 0.005" to hold pins in place during soldering.
  4309. Specifications:
  4310. Pin count: 2
  4311. Pin pitch: 3.5mm/138mil
  4312. Datasheet referenced for footprint
  4313. Example device(s):
  4314. CONN_02
  4315. </description>
  4316. <packageinstances>
  4317. <packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/>
  4318. </packageinstances>
  4319. </package3d>
  4320. <package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1">
  4321. <description>Plated Through Hole - Long Pads without Silk Outline
  4322. Specifications:
  4323. Pin count:2
  4324. Pin pitch:0.1"
  4325. Example device(s):
  4326. CONN_02
  4327. </description>
  4328. <packageinstances>
  4329. <packageinstance name="1X02_LONGPADS"/>
  4330. </packageinstances>
  4331. </package3d>
  4332. <package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1">
  4333. <description>Plated Through Hole - No Silk Outline
  4334. Specifications:
  4335. Pin count:2
  4336. Pin pitch:0.1"
  4337. Example device(s):
  4338. CONN_02
  4339. </description>
  4340. <packageinstances>
  4341. <packageinstance name="1X02_NO_SILK"/>
  4342. </packageinstances>
  4343. </package3d>
  4344. <package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1">
  4345. <description>JST 2 Pin Right Angle Plated Through Hole
  4346. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4347. Specifications:
  4348. Pin count: 2
  4349. Pin pitch:2mm
  4350. Datasheet referenced for footprint
  4351. Example device(s):
  4352. CONN_02
  4353. </description>
  4354. <packageinstances>
  4355. <packageinstance name="JST-2-PTH"/>
  4356. </packageinstances>
  4357. </package3d>
  4358. <package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1">
  4359. <description>Plated Through Hole - 0.1" holes
  4360. Specifications:
  4361. Pin count:2
  4362. Pin pitch:0.2"
  4363. Example device(s):
  4364. CONN_02
  4365. </description>
  4366. <packageinstances>
  4367. <packageinstance name="1X02_XTRA_BIG"/>
  4368. </packageinstances>
  4369. </package3d>
  4370. <package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1">
  4371. <description>Pogo Pins Connector - No Silk Outline
  4372. Specifications:
  4373. Pin count:2
  4374. Pin pitch:0.1"
  4375. Example device(s):
  4376. CONN_02
  4377. </description>
  4378. <packageinstances>
  4379. <packageinstance name="1X02_PP_HOLES_ONLY"/>
  4380. </packageinstances>
  4381. </package3d>
  4382. <package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1">
  4383. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline
  4384. Specifications:
  4385. Pin count: 2
  4386. Pin pitch: 3.5mm/138mil
  4387. Datasheet referenced for footprint
  4388. Example device(s):
  4389. CONN_02
  4390. </description>
  4391. <packageinstances>
  4392. <packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/>
  4393. </packageinstances>
  4394. </package3d>
  4395. <package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1">
  4396. <description>JST 2 Pin Right Angle Plated Through Hole- No Silk
  4397. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4398. No silk outline of connector.
  4399. Specifications:
  4400. Pin count: 2
  4401. Pin pitch:2mm
  4402. Datasheet referenced for footprint
  4403. Example device(s):
  4404. CONN_02
  4405. </description>
  4406. <packageinstances>
  4407. <packageinstance name="JST-2-PTH-NS"/>
  4408. </packageinstances>
  4409. </package3d>
  4410. <package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1">
  4411. <description>JST 2 Pin Right Angle Plated Through Hole - KIT
  4412. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4413. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  4414. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  4415. Specifications:
  4416. Pin count: 2
  4417. Pin pitch:2mm
  4418. Datasheet referenced for footprint
  4419. Example device(s):
  4420. CONN_02
  4421. </description>
  4422. <packageinstances>
  4423. <packageinstance name="JST-2-PTH-KIT"/>
  4424. </packageinstances>
  4425. </package3d>
  4426. <package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1">
  4427. <description>Spring Terminal- PCB Mount 2 Pin PTH
  4428. tDocu marks the spring arms
  4429. Specifications:
  4430. Pin count: 4
  4431. Pin pitch: 0.1"
  4432. Datasheet referenced for footprint
  4433. Example device(s):
  4434. CONN_02
  4435. </description>
  4436. <packageinstances>
  4437. <packageinstance name="SPRINGTERMINAL-2.54MM-2"/>
  4438. </packageinstances>
  4439. </package3d>
  4440. <package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1">
  4441. <description>2 Pin Screw Terminal - 2.54mm
  4442. Specifications:
  4443. Pin count:2
  4444. Pin pitch:0.1"
  4445. Example device(s):
  4446. CONN_02
  4447. </description>
  4448. <packageinstances>
  4449. <packageinstance name="1X02_2.54_SCREWTERM"/>
  4450. </packageinstances>
  4451. </package3d>
  4452. <package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1">
  4453. <description>2 pin poke-home connector
  4454. part number 2062-2P from STA</description>
  4455. <packageinstances>
  4456. <packageinstance name="1X02_POKEHOME"/>
  4457. </packageinstances>
  4458. </package3d>
  4459. <package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1">
  4460. <packageinstances>
  4461. <packageinstance name="1X02_RA_PTH_FEMALE"/>
  4462. </packageinstances>
  4463. </package3d>
  4464. <package3d name="1X08" urn="urn:adsk.eagle:package:38138/1" type="box" library_version="1">
  4465. <description>Plated Through Hole -8 Pin
  4466. Specifications:
  4467. Pin count:8
  4468. Pin pitch:0.1"
  4469. Example device(s):
  4470. CONN_08
  4471. </description>
  4472. <packageinstances>
  4473. <packageinstance name="1X08"/>
  4474. </packageinstances>
  4475. </package3d>
  4476. <package3d name="1X08_LOCK" urn="urn:adsk.eagle:package:38137/1" type="box" library_version="1">
  4477. <description>Plated Through Hole -8 Pin Locking Footprint
  4478. Holes are offset 0.005", to hold pins in place during soldering.
  4479. Specifications:
  4480. Pin count:8
  4481. Pin pitch:0.1"
  4482. Example device(s):
  4483. CONN_08
  4484. </description>
  4485. <packageinstances>
  4486. <packageinstance name="1X08_LOCK"/>
  4487. </packageinstances>
  4488. </package3d>
  4489. <package3d name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38140/1" type="box" library_version="1">
  4490. <description>Plated Through Hole -8 Pin Locking Footprint with Long Pads
  4491. Holes are offset 0.005", to hold pins in place during soldering.
  4492. Specifications:
  4493. Pin count:8
  4494. Pin pitch:0.1"
  4495. Example device(s):
  4496. CONN_08
  4497. </description>
  4498. <packageinstances>
  4499. <packageinstance name="1X08_LOCK_LONGPADS"/>
  4500. </packageinstances>
  4501. </package3d>
  4502. <package3d name="1X08_LONGPADS" urn="urn:adsk.eagle:package:38142/1" type="box" library_version="1">
  4503. <description>Plated Through Hole -8 Pin Long Pads
  4504. Specifications:
  4505. Pin count:8
  4506. Pin pitch:0.1"
  4507. Example device(s):
  4508. CONN_08
  4509. </description>
  4510. <packageinstances>
  4511. <packageinstance name="1X08_LONGPADS"/>
  4512. </packageinstances>
  4513. </package3d>
  4514. <package3d name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:package:38143/1" type="box" library_version="1">
  4515. <description>Screw Terminal 3.5mm Pitch -8 Pin PTH
  4516. Specifications:
  4517. Pin count: 8
  4518. Pin pitch: 3.5mm/138mil
  4519. Datasheet referenced for footprint
  4520. Example device(s):
  4521. CONN_08
  4522. </description>
  4523. <packageinstances>
  4524. <packageinstance name="SCREWTERMINAL-3.5MM-8"/>
  4525. </packageinstances>
  4526. </package3d>
  4527. <package3d name="1X08_SMD" urn="urn:adsk.eagle:package:38144/1" type="box" library_version="1">
  4528. <description>SMD -8 Pin Vertical Female
  4529. Specifications:
  4530. Pin count:8
  4531. Pin pitch:0.1"
  4532. Datasheet referenced for footprint
  4533. Example device(s):
  4534. CONN_08
  4535. </description>
  4536. <packageinstances>
  4537. <packageinstance name="1X08_SMD"/>
  4538. </packageinstances>
  4539. </package3d>
  4540. <package3d name="1X08_SMD_ALT" urn="urn:adsk.eagle:package:38148/1" type="box" library_version="1">
  4541. <description>SMD -8 Pin Vertical Female
  4542. Alternate pin configuration
  4543. Specifications:
  4544. Pin count:8
  4545. Pin pitch:0.1"
  4546. Datasheet referenced for footprint
  4547. Example device(s):
  4548. CONN_08
  4549. </description>
  4550. <packageinstances>
  4551. <packageinstance name="1X08_SMD_ALT"/>
  4552. </packageinstances>
  4553. </package3d>
  4554. <package3d name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:package:38146/1" type="box" library_version="1">
  4555. <description>SMD -8 Pin Vertical Female
  4556. Combined footprint configuration
  4557. Specifications:
  4558. Pin count:8
  4559. Pin pitch:0.1"
  4560. Datasheet referenced for footprint
  4561. Example device(s):
  4562. CONN_08
  4563. </description>
  4564. <packageinstances>
  4565. <packageinstance name="1X08_SMD_COMBINED"/>
  4566. </packageinstances>
  4567. </package3d>
  4568. <package3d name="BM08B-SRSS-TB" urn="urn:adsk.eagle:package:38145/1" type="box" library_version="1">
  4569. <description>JST Vertical Crimp Connect
  4570. Specifications:
  4571. Pin count: 8
  4572. Pin pitch:1mm
  4573. Datasheet referenced for footprint
  4574. Example device(s):
  4575. CONN_08
  4576. </description>
  4577. <packageinstances>
  4578. <packageinstance name="BM08B-SRSS-TB"/>
  4579. </packageinstances>
  4580. </package3d>
  4581. <package3d name="1X08_SMD_MALE" urn="urn:adsk.eagle:package:38150/1" type="box" library_version="1">
  4582. <description>SMD -8 Pin Vertical Male
  4583. Specifications:
  4584. Pin count:8
  4585. Pin pitch:0.1"
  4586. Datasheet referenced for footprint
  4587. Example device(s):
  4588. CONN_08
  4589. </description>
  4590. <packageinstances>
  4591. <packageinstance name="1X08_SMD_MALE"/>
  4592. </packageinstances>
  4593. </package3d>
  4594. <package3d name="1X08_NO_SILK" urn="urn:adsk.eagle:package:38149/1" type="box" library_version="1">
  4595. <description>Plated Through Hole -8 Pin No Silk
  4596. Specifications:
  4597. Pin count:8
  4598. Pin pitch:0.1"
  4599. Example device(s):
  4600. CONN_08
  4601. </description>
  4602. <packageinstances>
  4603. <packageinstance name="1X08_NO_SILK"/>
  4604. </packageinstances>
  4605. </package3d>
  4606. <package3d name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:package:38147/1" type="box" library_version="1">
  4607. <description>Plated Through Hole -8 Pin Locking Footprint No Silk
  4608. Holes are offset 0.005", to hold pins in place during soldering.
  4609. Specifications:
  4610. Pin count:8
  4611. Pin pitch:0.1"
  4612. Example device(s):
  4613. CONN_08
  4614. </description>
  4615. <packageinstances>
  4616. <packageinstance name="1X08_LOCK_NO_SILK"/>
  4617. </packageinstances>
  4618. </package3d>
  4619. <package3d name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:package:38151/1" type="box" library_version="1">
  4620. <description>Plated Through Hole -8 Pin Locking Female Headers
  4621. Holes are offset 0.005" to hold pins in place during soldering.
  4622. Specifications:
  4623. Pin count:8
  4624. Pin pitch:0.1"
  4625. Datasheet referenced for footprint
  4626. Example device(s):
  4627. CONN_08
  4628. </description>
  4629. <packageinstances>
  4630. <packageinstance name="1X08_FEMALE_LOCK"/>
  4631. </packageinstances>
  4632. </package3d>
  4633. <package3d name="1X04" urn="urn:adsk.eagle:package:38085/1" type="box" library_version="1">
  4634. <description>Plated Through Hole - 4 Pin
  4635. Specifications:
  4636. Pin count:4
  4637. Pin pitch:0.1"
  4638. Example device(s):
  4639. CONN_04
  4640. </description>
  4641. <packageinstances>
  4642. <packageinstance name="1X04"/>
  4643. </packageinstances>
  4644. </package3d>
  4645. <package3d name="MOLEX-1X4" urn="urn:adsk.eagle:package:38087/1" type="box" library_version="1">
  4646. <description>Molex 4-Pin Plated Through-Hole
  4647. Specifications:
  4648. Pin count:4
  4649. Pin pitch:0.1"
  4650. Datasheet referenced for footprint
  4651. Example device(s):
  4652. CONN_04
  4653. </description>
  4654. <packageinstances>
  4655. <packageinstance name="MOLEX-1X4"/>
  4656. </packageinstances>
  4657. </package3d>
  4658. <package3d name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:package:38090/1" type="box" library_version="1">
  4659. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH
  4660. Specifications:
  4661. Pin count: 4
  4662. Pin pitch: 3.5mm/138mil
  4663. Datasheet referenced for footprint
  4664. Example device(s):
  4665. CONN_04
  4666. </description>
  4667. <packageinstances>
  4668. <packageinstance name="SCREWTERMINAL-3.5MM-4"/>
  4669. </packageinstances>
  4670. </package3d>
  4671. <package3d name="1X04_1.27MM" urn="urn:adsk.eagle:package:38086/1" type="box" library_version="1">
  4672. <description>Plated Through Hole - 4 Pin
  4673. Specifications:
  4674. Pin count:4
  4675. Pin pitch: 1.27mm
  4676. Example device(s):
  4677. CONN_04
  4678. </description>
  4679. <packageinstances>
  4680. <packageinstance name="1X04_1.27MM"/>
  4681. </packageinstances>
  4682. </package3d>
  4683. <package3d name="1X04_LOCK" urn="urn:adsk.eagle:package:38089/1" type="box" library_version="1">
  4684. <description>Plated Through Hole - 4 Pin Locking Footprint
  4685. Pins are offset 0.005" from center to lock pins in place during soldering.
  4686. Specifications:
  4687. Pin count:4
  4688. Pin pitch:0.1"
  4689. Example device(s):
  4690. CONN_04
  4691. </description>
  4692. <packageinstances>
  4693. <packageinstance name="1X04_LOCK"/>
  4694. </packageinstances>
  4695. </package3d>
  4696. <package3d name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38091/1" type="box" library_version="1">
  4697. <description>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint
  4698. Holes are offset 0.005" from center to lock pins in place during soldering.
  4699. Specifications:
  4700. Pin count:4
  4701. Pin pitch:0.1"
  4702. Example device(s):
  4703. CONN_04
  4704. </description>
  4705. <packageinstances>
  4706. <packageinstance name="1X04_LOCK_LONGPADS"/>
  4707. </packageinstances>
  4708. </package3d>
  4709. <package3d name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:package:38092/1" type="box" library_version="1">
  4710. <description>Molex 4-Pin Plated Through-Hole Locking
  4711. Holes are offset 0.005" from center to hold pins in place during soldering.
  4712. Specifications:
  4713. Pin count:4
  4714. Pin pitch:0.1"
  4715. Datasheet referenced for footprint
  4716. Example device(s):
  4717. CONN_04
  4718. </description>
  4719. <packageinstances>
  4720. <packageinstance name="MOLEX-1X4_LOCK"/>
  4721. </packageinstances>
  4722. </package3d>
  4723. <package3d name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:package:38093/1" type="box" library_version="1">
  4724. <description>SMD - 4 Pin Right Angle Male Header
  4725. tDocu layer shows pin locations.
  4726. Specifications:
  4727. Pin count:4
  4728. Pin pitch:0.1"
  4729. Example device(s):
  4730. CONN_04
  4731. </description>
  4732. <packageinstances>
  4733. <packageinstance name="1X04_SMD_RA_MALE"/>
  4734. </packageinstances>
  4735. </package3d>
  4736. <package3d name="1X04_LONGPADS" urn="urn:adsk.eagle:package:38098/1" type="box" library_version="1">
  4737. <description>Plated Through Hole - 4 Pin Long Pads
  4738. Specifications:
  4739. Pin count:4
  4740. Pin pitch:0.1"
  4741. Example device(s):
  4742. CONN_04
  4743. </description>
  4744. <packageinstances>
  4745. <packageinstance name="1X04_LONGPADS"/>
  4746. </packageinstances>
  4747. </package3d>
  4748. <package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1">
  4749. <description>Plated Through Hole - 4 Pin No Silk Outline
  4750. Specifications:
  4751. Pin count:4
  4752. Pin pitch:0.1"
  4753. Example device(s):
  4754. CONN_04
  4755. </description>
  4756. <packageinstances>
  4757. <packageinstance name="1X04_NO_SILK"/>
  4758. </packageinstances>
  4759. </package3d>
  4760. <package3d name="JST-4-PTH" urn="urn:adsk.eagle:package:38101/1" type="box" library_version="1">
  4761. <description>JST Right Angle 4 Pin Plated Through Hole
  4762. Specifications:
  4763. Pin count: 4
  4764. Pin pitch: 2mm
  4765. Datasheet referenced for footprint
  4766. Example device(s):
  4767. CONN_04
  4768. </description>
  4769. <packageinstances>
  4770. <packageinstance name="JST-4-PTH"/>
  4771. </packageinstances>
  4772. </package3d>
  4773. <package3d name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:package:38095/1" type="box" library_version="1">
  4774. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking
  4775. Holes are offset 0.005" from center to hold pins in place during soldering.
  4776. Specifications:
  4777. Pin count: 4
  4778. Pin pitch: 3.5mm/138mil
  4779. Datasheet referenced for footprint
  4780. Example device(s):
  4781. CONN_04
  4782. </description>
  4783. <packageinstances>
  4784. <packageinstance name="SCREWTERMINAL-3.5MM-4_LOCK"/>
  4785. </packageinstances>
  4786. </package3d>
  4787. <package3d name="1X04_1MM_RA" urn="urn:adsk.eagle:package:38096/1" type="box" library_version="1">
  4788. <description>SMD- 4 Pin Right Angle
  4789. Specifications:
  4790. Pin count:4
  4791. Pin pitch:0.1"
  4792. Example device(s):
  4793. CONN_04
  4794. </description>
  4795. <packageinstances>
  4796. <packageinstance name="1X04_1MM_RA"/>
  4797. </packageinstances>
  4798. </package3d>
  4799. <package3d name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:package:38097/1" type="box" library_version="1">
  4800. <description>SMD - 4 Pin Vertical Connector
  4801. Specifications:
  4802. Pin count:4
  4803. SMD Pad count:8
  4804. Pin pitch:0.1"
  4805. Example device(s):
  4806. CONN_04
  4807. </description>
  4808. <packageinstances>
  4809. <packageinstance name="1X04_SMD_VERTICAL_COMBO"/>
  4810. </packageinstances>
  4811. </package3d>
  4812. <package3d name="1X04_SMD_LONG" urn="urn:adsk.eagle:package:38099/1" type="box" library_version="1">
  4813. <description>SMD - 4 Pin w/ Long Solder Pads
  4814. No silk, but tDocu layer shows pin position.
  4815. Specifications:
  4816. Pin count:4
  4817. Pin pitch:0.1"
  4818. Example device(s):
  4819. CONN_04
  4820. </description>
  4821. <packageinstances>
  4822. <packageinstance name="1X04_SMD_LONG"/>
  4823. </packageinstances>
  4824. </package3d>
  4825. <package3d name="JST-4-PTH-VERT" urn="urn:adsk.eagle:package:38102/1" type="box" library_version="1">
  4826. <description>JST Vertical 4 Pin Plated Through Hole
  4827. Specifications:
  4828. Pin count: 4
  4829. Pin pitch: 2mm
  4830. Datasheet referenced for footprint
  4831. Example device(s):
  4832. CONN_04
  4833. </description>
  4834. <packageinstances>
  4835. <packageinstance name="JST-4-PTH-VERT"/>
  4836. </packageinstances>
  4837. </package3d>
  4838. <package3d name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38100/1" type="box" library_version="1">
  4839. <description>SMD - 4 Pin Right-Angle Female Header
  4840. Silk outline shows header location.
  4841. Specifications:
  4842. Pin count:4
  4843. Pin pitch:0.1"
  4844. Example device(s):
  4845. CONN_04
  4846. </description>
  4847. <packageinstances>
  4848. <packageinstance name="1X04_SMD_RA_FEMALE"/>
  4849. </packageinstances>
  4850. </package3d>
  4851. </packages3d>
  4852. <symbols>
  4853. <symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1">
  4854. <description>&lt;h3&gt;2 Pin Connection&lt;/h3&gt;</description>
  4855. <wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  4856. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  4857. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  4858. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  4859. <wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  4860. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  4861. <text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4862. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4863. <pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4864. <pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4865. </symbol>
  4866. <symbol name="CONN_08" urn="urn:adsk.eagle:symbol:37759/1" library_version="1">
  4867. <description>&lt;h3&gt; 8 Pin Connection&lt;/h3&gt;</description>
  4868. <wire x1="1.27" y1="-10.16" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  4869. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  4870. <wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/>
  4871. <wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.6096" layer="94"/>
  4872. <wire x1="-5.08" y1="12.7" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  4873. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  4874. <wire x1="-5.08" y1="12.7" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  4875. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  4876. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  4877. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  4878. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/>
  4879. <wire x1="-1.27" y1="10.16" x2="0" y2="10.16" width="0.6096" layer="94"/>
  4880. <text x="-5.08" y="-12.446" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4881. <text x="-5.08" y="13.208" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4882. <pin name="1" x="5.08" y="-7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4883. <pin name="2" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4884. <pin name="3" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4885. <pin name="4" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4886. <pin name="5" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4887. <pin name="6" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4888. <pin name="7" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4889. <pin name="8" x="5.08" y="10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4890. </symbol>
  4891. <symbol name="CONN_04" urn="urn:adsk.eagle:symbol:37701/1" library_version="1">
  4892. <description>&lt;h3&gt;4 Pin Connection&lt;/h3&gt;</description>
  4893. <wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  4894. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  4895. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  4896. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  4897. <wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  4898. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  4899. <wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  4900. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  4901. <text x="-5.08" y="-7.366" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4902. <text x="-5.08" y="8.128" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4903. <pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4904. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4905. <pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4906. <pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4907. </symbol>
  4908. </symbols>
  4909. <devicesets>
  4910. <deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1">
  4911. <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;
  4912. &lt;p&gt;&lt;/p&gt;
  4913. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  4914. &lt;ul&gt;
  4915. &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;
  4916. &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;
  4917. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  4918. &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;
  4919. &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;
  4920. &lt;/ul&gt;
  4921. &lt;p&gt;&lt;/p&gt;
  4922. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  4923. &lt;ul&gt;
  4924. &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;
  4925. &lt;/ul&gt;
  4926. &lt;p&gt;&lt;/p&gt;
  4927. &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;
  4928. &lt;ul&gt;
  4929. &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;
  4930. &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;
  4931. &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;
  4932. &lt;p&gt;&lt;/p&gt;
  4933. &lt;/ul&gt;
  4934. &lt;p&gt;&lt;/p&gt;
  4935. &lt;b&gt;Special notes:&lt;/b&gt;
  4936. Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.&lt;br&gt;&lt;br&gt;
  4937. 2.54_SCREWTERM for use with PRT-10571.&lt;br&gt;&lt;br&gt;
  4938. 3.5mm Screw Terminal footprints for PRT-08084&lt;br&gt;&lt;br&gt;
  4939. 5mm Screw Terminal footprints for use with PRT-08432</description>
  4940. <gates>
  4941. <gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/>
  4942. </gates>
  4943. <devices>
  4944. <device name="" package="1X02">
  4945. <connects>
  4946. <connect gate="G$1" pin="1" pad="1"/>
  4947. <connect gate="G$1" pin="2" pad="2"/>
  4948. </connects>
  4949. <package3dinstances>
  4950. <package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/>
  4951. </package3dinstances>
  4952. <technologies>
  4953. <technology name=""/>
  4954. </technologies>
  4955. </device>
  4956. <device name="POLAR" package="MOLEX-1X2">
  4957. <connects>
  4958. <connect gate="G$1" pin="1" pad="1"/>
  4959. <connect gate="G$1" pin="2" pad="2"/>
  4960. </connects>
  4961. <package3dinstances>
  4962. <package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/>
  4963. </package3dinstances>
  4964. <technologies>
  4965. <technology name="">
  4966. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  4967. </technology>
  4968. </technologies>
  4969. </device>
  4970. <device name="3.5MM" package="SCREWTERMINAL-3.5MM-2">
  4971. <connects>
  4972. <connect gate="G$1" pin="1" pad="1"/>
  4973. <connect gate="G$1" pin="2" pad="2"/>
  4974. </connects>
  4975. <package3dinstances>
  4976. <package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/>
  4977. </package3dinstances>
  4978. <technologies>
  4979. <technology name="">
  4980. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  4981. </technology>
  4982. </technologies>
  4983. </device>
  4984. <device name="-JST-2MM-SMT" package="JST-2-SMD">
  4985. <connects>
  4986. <connect gate="G$1" pin="1" pad="2"/>
  4987. <connect gate="G$1" pin="2" pad="1"/>
  4988. </connects>
  4989. <package3dinstances>
  4990. <package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/>
  4991. </package3dinstances>
  4992. <technologies>
  4993. <technology name="">
  4994. <attribute name="PROD_ID" value="CONN-11443"/>
  4995. </technology>
  4996. </technologies>
  4997. </device>
  4998. <device name="PTH2" package="1X02_BIG">
  4999. <connects>
  5000. <connect gate="G$1" pin="1" pad="P$1"/>
  5001. <connect gate="G$1" pin="2" pad="P$2"/>
  5002. </connects>
  5003. <package3dinstances>
  5004. <package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/>
  5005. </package3dinstances>
  5006. <technologies>
  5007. <technology name=""/>
  5008. </technologies>
  5009. </device>
  5010. <device name="4UCON-15767" package="JST-2-SMD-VERT">
  5011. <connects>
  5012. <connect gate="G$1" pin="1" pad="GND"/>
  5013. <connect gate="G$1" pin="2" pad="VCC"/>
  5014. </connects>
  5015. <package3dinstances>
  5016. <package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/>
  5017. </package3dinstances>
  5018. <technologies>
  5019. <technology name=""/>
  5020. </technologies>
  5021. </device>
  5022. <device name="5MM" package="SCREWTERMINAL-5MM-2">
  5023. <connects>
  5024. <connect gate="G$1" pin="1" pad="1"/>
  5025. <connect gate="G$1" pin="2" pad="2"/>
  5026. </connects>
  5027. <package3dinstances>
  5028. <package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/>
  5029. </package3dinstances>
  5030. <technologies>
  5031. <technology name="">
  5032. <attribute name="SF_SKU" value="PRT-08432" constant="no"/>
  5033. </technology>
  5034. </technologies>
  5035. </device>
  5036. <device name="LOCK" package="1X02_LOCK">
  5037. <connects>
  5038. <connect gate="G$1" pin="1" pad="1"/>
  5039. <connect gate="G$1" pin="2" pad="2"/>
  5040. </connects>
  5041. <package3dinstances>
  5042. <package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/>
  5043. </package3dinstances>
  5044. <technologies>
  5045. <technology name=""/>
  5046. </technologies>
  5047. </device>
  5048. <device name="POLAR_LOCK" package="MOLEX-1X2_LOCK">
  5049. <connects>
  5050. <connect gate="G$1" pin="1" pad="1"/>
  5051. <connect gate="G$1" pin="2" pad="2"/>
  5052. </connects>
  5053. <package3dinstances>
  5054. <package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/>
  5055. </package3dinstances>
  5056. <technologies>
  5057. <technology name="">
  5058. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5059. </technology>
  5060. </technologies>
  5061. </device>
  5062. <device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS">
  5063. <connects>
  5064. <connect gate="G$1" pin="1" pad="1"/>
  5065. <connect gate="G$1" pin="2" pad="2"/>
  5066. </connects>
  5067. <package3dinstances>
  5068. <package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/>
  5069. </package3dinstances>
  5070. <technologies>
  5071. <technology name=""/>
  5072. </technologies>
  5073. </device>
  5074. <device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK">
  5075. <connects>
  5076. <connect gate="G$1" pin="1" pad="1"/>
  5077. <connect gate="G$1" pin="2" pad="2"/>
  5078. </connects>
  5079. <package3dinstances>
  5080. <package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/>
  5081. </package3dinstances>
  5082. <technologies>
  5083. <technology name="">
  5084. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5085. </technology>
  5086. </technologies>
  5087. </device>
  5088. <device name="PTH3" package="1X02_LONGPADS">
  5089. <connects>
  5090. <connect gate="G$1" pin="1" pad="1"/>
  5091. <connect gate="G$1" pin="2" pad="2"/>
  5092. </connects>
  5093. <package3dinstances>
  5094. <package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/>
  5095. </package3dinstances>
  5096. <technologies>
  5097. <technology name=""/>
  5098. </technologies>
  5099. </device>
  5100. <device name="1X02_NO_SILK" package="1X02_NO_SILK">
  5101. <connects>
  5102. <connect gate="G$1" pin="1" pad="1"/>
  5103. <connect gate="G$1" pin="2" pad="2"/>
  5104. </connects>
  5105. <package3dinstances>
  5106. <package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/>
  5107. </package3dinstances>
  5108. <technologies>
  5109. <technology name=""/>
  5110. </technologies>
  5111. </device>
  5112. <device name="JST-PTH-2" package="JST-2-PTH">
  5113. <connects>
  5114. <connect gate="G$1" pin="1" pad="1"/>
  5115. <connect gate="G$1" pin="2" pad="2"/>
  5116. </connects>
  5117. <package3dinstances>
  5118. <package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/>
  5119. </package3dinstances>
  5120. <technologies>
  5121. <technology name="">
  5122. <attribute name="PROD_ID" value="CONN-09863" constant="no"/>
  5123. <attribute name="SKU" value="PRT-09914" constant="no"/>
  5124. </technology>
  5125. </technologies>
  5126. </device>
  5127. <device name="PTH4" package="1X02_XTRA_BIG">
  5128. <connects>
  5129. <connect gate="G$1" pin="1" pad="1"/>
  5130. <connect gate="G$1" pin="2" pad="2"/>
  5131. </connects>
  5132. <package3dinstances>
  5133. <package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/>
  5134. </package3dinstances>
  5135. <technologies>
  5136. <technology name=""/>
  5137. </technologies>
  5138. </device>
  5139. <device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY">
  5140. <connects>
  5141. <connect gate="G$1" pin="1" pad="1"/>
  5142. <connect gate="G$1" pin="2" pad="2"/>
  5143. </connects>
  5144. <package3dinstances>
  5145. <package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/>
  5146. </package3dinstances>
  5147. <technologies>
  5148. <technology name=""/>
  5149. </technologies>
  5150. </device>
  5151. <device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS">
  5152. <connects>
  5153. <connect gate="G$1" pin="1" pad="1"/>
  5154. <connect gate="G$1" pin="2" pad="2"/>
  5155. </connects>
  5156. <package3dinstances>
  5157. <package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/>
  5158. </package3dinstances>
  5159. <technologies>
  5160. <technology name="">
  5161. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5162. </technology>
  5163. </technologies>
  5164. </device>
  5165. <device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS">
  5166. <connects>
  5167. <connect gate="G$1" pin="1" pad="1"/>
  5168. <connect gate="G$1" pin="2" pad="2"/>
  5169. </connects>
  5170. <package3dinstances>
  5171. <package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/>
  5172. </package3dinstances>
  5173. <technologies>
  5174. <technology name=""/>
  5175. </technologies>
  5176. </device>
  5177. <device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT">
  5178. <connects>
  5179. <connect gate="G$1" pin="1" pad="1"/>
  5180. <connect gate="G$1" pin="2" pad="2"/>
  5181. </connects>
  5182. <package3dinstances>
  5183. <package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/>
  5184. </package3dinstances>
  5185. <technologies>
  5186. <technology name=""/>
  5187. </technologies>
  5188. </device>
  5189. <device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2">
  5190. <connects>
  5191. <connect gate="G$1" pin="1" pad="1"/>
  5192. <connect gate="G$1" pin="2" pad="2"/>
  5193. </connects>
  5194. <package3dinstances>
  5195. <package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/>
  5196. </package3dinstances>
  5197. <technologies>
  5198. <technology name=""/>
  5199. </technologies>
  5200. </device>
  5201. <device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM">
  5202. <connects>
  5203. <connect gate="G$1" pin="1" pad="P1"/>
  5204. <connect gate="G$1" pin="2" pad="P2"/>
  5205. </connects>
  5206. <package3dinstances>
  5207. <package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/>
  5208. </package3dinstances>
  5209. <technologies>
  5210. <technology name=""/>
  5211. </technologies>
  5212. </device>
  5213. <device name="SMALL_POKEHOME" package="1X02_POKEHOME">
  5214. <connects>
  5215. <connect gate="G$1" pin="1" pad="P1 P3"/>
  5216. <connect gate="G$1" pin="2" pad="P2 P4"/>
  5217. </connects>
  5218. <package3dinstances>
  5219. <package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/>
  5220. </package3dinstances>
  5221. <technologies>
  5222. <technology name="">
  5223. <attribute name="PROD_ID" value="CONN-13512"/>
  5224. </technology>
  5225. </technologies>
  5226. </device>
  5227. <device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE">
  5228. <connects>
  5229. <connect gate="G$1" pin="1" pad="1"/>
  5230. <connect gate="G$1" pin="2" pad="2"/>
  5231. </connects>
  5232. <package3dinstances>
  5233. <package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/>
  5234. </package3dinstances>
  5235. <technologies>
  5236. <technology name="">
  5237. <attribute name="PROD_ID" value="CONN-13700"/>
  5238. </technology>
  5239. </technologies>
  5240. </device>
  5241. </devices>
  5242. </deviceset>
  5243. <deviceset name="CONN_08" urn="urn:adsk.eagle:component:38333/1" prefix="J" uservalue="yes" library_version="1">
  5244. <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;
  5245. &lt;p&gt;&lt;/p&gt;
  5246. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5247. &lt;ul&gt;
  5248. &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;
  5249. &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;
  5250. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5251. &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;
  5252. &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;
  5253. &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;
  5254. &lt;/ul&gt;
  5255. &lt;p&gt;&lt;/p&gt;
  5256. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5257. &lt;ul&gt;
  5258. &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;
  5259. &lt;/ul&gt;
  5260. &lt;p&gt;&lt;/p&gt;
  5261. &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;
  5262. &lt;ul&gt;
  5263. &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;
  5264. &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;
  5265. &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;
  5266. &lt;p&gt;&lt;/p&gt;
  5267. &lt;/ul&gt;
  5268. &lt;p&gt;&lt;/p&gt;
  5269. &lt;b&gt;Special notes:&lt;/b&gt;
  5270. &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
  5271. &lt;p&gt;&lt;/p&gt;
  5272. NOTES ON THE VARIANTS LOCK and LOCK_LONGPADS...
  5273. 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>
  5274. <gates>
  5275. <gate name="G$1" symbol="CONN_08" x="-2.54" y="0"/>
  5276. </gates>
  5277. <devices>
  5278. <device name="&quot;" package="1X08">
  5279. <connects>
  5280. <connect gate="G$1" pin="1" pad="1"/>
  5281. <connect gate="G$1" pin="2" pad="2"/>
  5282. <connect gate="G$1" pin="3" pad="3"/>
  5283. <connect gate="G$1" pin="4" pad="4"/>
  5284. <connect gate="G$1" pin="5" pad="5"/>
  5285. <connect gate="G$1" pin="6" pad="6"/>
  5286. <connect gate="G$1" pin="7" pad="7"/>
  5287. <connect gate="G$1" pin="8" pad="8"/>
  5288. </connects>
  5289. <package3dinstances>
  5290. <package3dinstance package3d_urn="urn:adsk.eagle:package:38138/1"/>
  5291. </package3dinstances>
  5292. <technologies>
  5293. <technology name="">
  5294. <attribute name="PROD_ID" value="CONN-08438"/>
  5295. </technology>
  5296. </technologies>
  5297. </device>
  5298. <device name="LOCK" package="1X08_LOCK">
  5299. <connects>
  5300. <connect gate="G$1" pin="1" pad="1"/>
  5301. <connect gate="G$1" pin="2" pad="2"/>
  5302. <connect gate="G$1" pin="3" pad="3"/>
  5303. <connect gate="G$1" pin="4" pad="4"/>
  5304. <connect gate="G$1" pin="5" pad="5"/>
  5305. <connect gate="G$1" pin="6" pad="6"/>
  5306. <connect gate="G$1" pin="7" pad="7"/>
  5307. <connect gate="G$1" pin="8" pad="8"/>
  5308. </connects>
  5309. <package3dinstances>
  5310. <package3dinstance package3d_urn="urn:adsk.eagle:package:38137/1"/>
  5311. </package3dinstances>
  5312. <technologies>
  5313. <technology name=""/>
  5314. </technologies>
  5315. </device>
  5316. <device name="LOCK_LONGPADS" package="1X08_LOCK_LONGPADS">
  5317. <connects>
  5318. <connect gate="G$1" pin="1" pad="1"/>
  5319. <connect gate="G$1" pin="2" pad="2"/>
  5320. <connect gate="G$1" pin="3" pad="3"/>
  5321. <connect gate="G$1" pin="4" pad="4"/>
  5322. <connect gate="G$1" pin="5" pad="5"/>
  5323. <connect gate="G$1" pin="6" pad="6"/>
  5324. <connect gate="G$1" pin="7" pad="7"/>
  5325. <connect gate="G$1" pin="8" pad="8"/>
  5326. </connects>
  5327. <package3dinstances>
  5328. <package3dinstance package3d_urn="urn:adsk.eagle:package:38140/1"/>
  5329. </package3dinstances>
  5330. <technologies>
  5331. <technology name=""/>
  5332. </technologies>
  5333. </device>
  5334. <device name="LONGPADS" package="1X08_LONGPADS">
  5335. <connects>
  5336. <connect gate="G$1" pin="1" pad="1"/>
  5337. <connect gate="G$1" pin="2" pad="2"/>
  5338. <connect gate="G$1" pin="3" pad="3"/>
  5339. <connect gate="G$1" pin="4" pad="4"/>
  5340. <connect gate="G$1" pin="5" pad="5"/>
  5341. <connect gate="G$1" pin="6" pad="6"/>
  5342. <connect gate="G$1" pin="7" pad="7"/>
  5343. <connect gate="G$1" pin="8" pad="8"/>
  5344. </connects>
  5345. <package3dinstances>
  5346. <package3dinstance package3d_urn="urn:adsk.eagle:package:38142/1"/>
  5347. </package3dinstances>
  5348. <technologies>
  5349. <technology name=""/>
  5350. </technologies>
  5351. </device>
  5352. <device name="3.5MM-8" package="SCREWTERMINAL-3.5MM-8">
  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:38143/1"/>
  5365. </package3dinstances>
  5366. <technologies>
  5367. <technology name=""/>
  5368. </technologies>
  5369. </device>
  5370. <device name="SMD-STRAIGHT-FEMALE" package="1X08_SMD">
  5371. <connects>
  5372. <connect gate="G$1" pin="1" pad="1"/>
  5373. <connect gate="G$1" pin="2" pad="2"/>
  5374. <connect gate="G$1" pin="3" pad="3"/>
  5375. <connect gate="G$1" pin="4" pad="4"/>
  5376. <connect gate="G$1" pin="5" pad="5"/>
  5377. <connect gate="G$1" pin="6" pad="6"/>
  5378. <connect gate="G$1" pin="7" pad="7"/>
  5379. <connect gate="G$1" pin="8" pad="8"/>
  5380. </connects>
  5381. <package3dinstances>
  5382. <package3dinstance package3d_urn="urn:adsk.eagle:package:38144/1"/>
  5383. </package3dinstances>
  5384. <technologies>
  5385. <technology name="">
  5386. <attribute name="PROD_ID" value="CONN-10204"/>
  5387. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5388. </technology>
  5389. </technologies>
  5390. </device>
  5391. <device name="SMD-STRAIGHT-ALT-FEMALE" package="1X08_SMD_ALT">
  5392. <connects>
  5393. <connect gate="G$1" pin="1" pad="1"/>
  5394. <connect gate="G$1" pin="2" pad="2"/>
  5395. <connect gate="G$1" pin="3" pad="3"/>
  5396. <connect gate="G$1" pin="4" pad="4"/>
  5397. <connect gate="G$1" pin="5" pad="5"/>
  5398. <connect gate="G$1" pin="6" pad="6"/>
  5399. <connect gate="G$1" pin="7" pad="7"/>
  5400. <connect gate="G$1" pin="8" pad="8"/>
  5401. </connects>
  5402. <package3dinstances>
  5403. <package3dinstance package3d_urn="urn:adsk.eagle:package:38148/1"/>
  5404. </package3dinstances>
  5405. <technologies>
  5406. <technology name="">
  5407. <attribute name="PROD_ID" value="CONN-10204"/>
  5408. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5409. </technology>
  5410. </technologies>
  5411. </device>
  5412. <device name="SMD-COMBO-FEMALE" package="1X08_SMD_COMBINED">
  5413. <connects>
  5414. <connect gate="G$1" pin="1" pad="1"/>
  5415. <connect gate="G$1" pin="2" pad="2"/>
  5416. <connect gate="G$1" pin="3" pad="3"/>
  5417. <connect gate="G$1" pin="4" pad="4"/>
  5418. <connect gate="G$1" pin="5" pad="5"/>
  5419. <connect gate="G$1" pin="6" pad="6"/>
  5420. <connect gate="G$1" pin="7" pad="7"/>
  5421. <connect gate="G$1" pin="8" pad="8"/>
  5422. </connects>
  5423. <package3dinstances>
  5424. <package3dinstance package3d_urn="urn:adsk.eagle:package:38146/1"/>
  5425. </package3dinstances>
  5426. <technologies>
  5427. <technology name="">
  5428. <attribute name="PROD_ID" value="CONN-10204"/>
  5429. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5430. </technology>
  5431. </technologies>
  5432. </device>
  5433. <device name="BM08B-SRSS-TB" package="BM08B-SRSS-TB">
  5434. <connects>
  5435. <connect gate="G$1" pin="1" pad="1"/>
  5436. <connect gate="G$1" pin="2" pad="2"/>
  5437. <connect gate="G$1" pin="3" pad="3"/>
  5438. <connect gate="G$1" pin="4" pad="4"/>
  5439. <connect gate="G$1" pin="5" pad="5"/>
  5440. <connect gate="G$1" pin="6" pad="6"/>
  5441. <connect gate="G$1" pin="7" pad="7"/>
  5442. <connect gate="G$1" pin="8" pad="8"/>
  5443. </connects>
  5444. <package3dinstances>
  5445. <package3dinstance package3d_urn="urn:adsk.eagle:package:38145/1"/>
  5446. </package3dinstances>
  5447. <technologies>
  5448. <technology name="">
  5449. <attribute name="PROD_ID" value="CONN-10556" constant="no"/>
  5450. </technology>
  5451. </technologies>
  5452. </device>
  5453. <device name="SMD-MALE" package="1X08_SMD_MALE">
  5454. <connects>
  5455. <connect gate="G$1" pin="1" pad="1"/>
  5456. <connect gate="G$1" pin="2" pad="2"/>
  5457. <connect gate="G$1" pin="3" pad="3"/>
  5458. <connect gate="G$1" pin="4" pad="4"/>
  5459. <connect gate="G$1" pin="5" pad="5"/>
  5460. <connect gate="G$1" pin="6" pad="6"/>
  5461. <connect gate="G$1" pin="7" pad="7"/>
  5462. <connect gate="G$1" pin="8" pad="8"/>
  5463. </connects>
  5464. <package3dinstances>
  5465. <package3dinstance package3d_urn="urn:adsk.eagle:package:38150/1"/>
  5466. </package3dinstances>
  5467. <technologies>
  5468. <technology name="">
  5469. <attribute name="PROD_ID" value="CONN-11292"/>
  5470. <attribute name="SF_ID" value="PRT-11541" constant="no"/>
  5471. </technology>
  5472. </technologies>
  5473. </device>
  5474. <device name="NO_SILK_FEMALE_PTH" package="1X08_NO_SILK">
  5475. <connects>
  5476. <connect gate="G$1" pin="1" pad="1"/>
  5477. <connect gate="G$1" pin="2" pad="2"/>
  5478. <connect gate="G$1" pin="3" pad="3"/>
  5479. <connect gate="G$1" pin="4" pad="4"/>
  5480. <connect gate="G$1" pin="5" pad="5"/>
  5481. <connect gate="G$1" pin="6" pad="6"/>
  5482. <connect gate="G$1" pin="7" pad="7"/>
  5483. <connect gate="G$1" pin="8" pad="8"/>
  5484. </connects>
  5485. <package3dinstances>
  5486. <package3dinstance package3d_urn="urn:adsk.eagle:package:38149/1"/>
  5487. </package3dinstances>
  5488. <technologies>
  5489. <technology name="">
  5490. <attribute name="PROD_ID" value="CONN-08438"/>
  5491. </technology>
  5492. </technologies>
  5493. </device>
  5494. <device name="LOCK_NO_SILK" package="1X08_LOCK_NO_SILK">
  5495. <connects>
  5496. <connect gate="G$1" pin="1" pad="1"/>
  5497. <connect gate="G$1" pin="2" pad="2"/>
  5498. <connect gate="G$1" pin="3" pad="3"/>
  5499. <connect gate="G$1" pin="4" pad="4"/>
  5500. <connect gate="G$1" pin="5" pad="5"/>
  5501. <connect gate="G$1" pin="6" pad="6"/>
  5502. <connect gate="G$1" pin="7" pad="7"/>
  5503. <connect gate="G$1" pin="8" pad="8"/>
  5504. </connects>
  5505. <package3dinstances>
  5506. <package3dinstance package3d_urn="urn:adsk.eagle:package:38147/1"/>
  5507. </package3dinstances>
  5508. <technologies>
  5509. <technology name=""/>
  5510. </technologies>
  5511. </device>
  5512. <device name="FEMALE_LOCK" package="1X08_FEMALE_LOCK">
  5513. <connects>
  5514. <connect gate="G$1" pin="1" pad="1"/>
  5515. <connect gate="G$1" pin="2" pad="2"/>
  5516. <connect gate="G$1" pin="3" pad="3"/>
  5517. <connect gate="G$1" pin="4" pad="4"/>
  5518. <connect gate="G$1" pin="5" pad="5"/>
  5519. <connect gate="G$1" pin="6" pad="6"/>
  5520. <connect gate="G$1" pin="7" pad="7"/>
  5521. <connect gate="G$1" pin="8" pad="8"/>
  5522. </connects>
  5523. <package3dinstances>
  5524. <package3dinstance package3d_urn="urn:adsk.eagle:package:38151/1"/>
  5525. </package3dinstances>
  5526. <technologies>
  5527. <technology name="">
  5528. <attribute name="PROD_ID" value="CONN-09233" constant="no"/>
  5529. <attribute name="SF_ID" value="PRT-09279" constant="no"/>
  5530. </technology>
  5531. </technologies>
  5532. </device>
  5533. </devices>
  5534. </deviceset>
  5535. <deviceset name="CONN_04" urn="urn:adsk.eagle:component:38327/1" prefix="J" uservalue="yes" library_version="1">
  5536. <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;
  5537. &lt;p&gt;&lt;/p&gt;
  5538. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5539. &lt;ul&gt;
  5540. &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;
  5541. &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;
  5542. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5543. &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;
  5544. &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;
  5545. &lt;/ul&gt;
  5546. &lt;p&gt;&lt;/p&gt;
  5547. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5548. &lt;ul&gt;
  5549. &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;
  5550. &lt;/ul&gt;
  5551. &lt;p&gt;&lt;/p&gt;
  5552. &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;
  5553. &lt;ul&gt;
  5554. &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;
  5555. &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;
  5556. &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;
  5557. &lt;p&gt;&lt;/p&gt;
  5558. &lt;/ul&gt;
  5559. &lt;p&gt;&lt;/p&gt;
  5560. &lt;b&gt;Special notes:&lt;/b&gt;
  5561. &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>
  5562. <gates>
  5563. <gate name="G$1" symbol="CONN_04" x="-2.54" y="0"/>
  5564. </gates>
  5565. <devices>
  5566. <device name="" package="1X04">
  5567. <connects>
  5568. <connect gate="G$1" pin="1" pad="1"/>
  5569. <connect gate="G$1" pin="2" pad="2"/>
  5570. <connect gate="G$1" pin="3" pad="3"/>
  5571. <connect gate="G$1" pin="4" pad="4"/>
  5572. </connects>
  5573. <package3dinstances>
  5574. <package3dinstance package3d_urn="urn:adsk.eagle:package:38085/1"/>
  5575. </package3dinstances>
  5576. <technologies>
  5577. <technology name="">
  5578. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5579. </technology>
  5580. </technologies>
  5581. </device>
  5582. <device name="POLAR" package="MOLEX-1X4">
  5583. <connects>
  5584. <connect gate="G$1" pin="1" pad="1"/>
  5585. <connect gate="G$1" pin="2" pad="2"/>
  5586. <connect gate="G$1" pin="3" pad="3"/>
  5587. <connect gate="G$1" pin="4" pad="4"/>
  5588. </connects>
  5589. <package3dinstances>
  5590. <package3dinstance package3d_urn="urn:adsk.eagle:package:38087/1"/>
  5591. </package3dinstances>
  5592. <technologies>
  5593. <technology name="">
  5594. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5595. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5596. </technology>
  5597. </technologies>
  5598. </device>
  5599. <device name="SCREW" package="SCREWTERMINAL-3.5MM-4">
  5600. <connects>
  5601. <connect gate="G$1" pin="1" pad="1"/>
  5602. <connect gate="G$1" pin="2" pad="2"/>
  5603. <connect gate="G$1" pin="3" pad="3"/>
  5604. <connect gate="G$1" pin="4" pad="4"/>
  5605. </connects>
  5606. <package3dinstances>
  5607. <package3dinstance package3d_urn="urn:adsk.eagle:package:38090/1"/>
  5608. </package3dinstances>
  5609. <technologies>
  5610. <technology name="">
  5611. <attribute name="PROD_ID" value="2xCONN-08399" constant="no"/>
  5612. <attribute name="SF_ID" value="2xPRT-08084" constant="no"/>
  5613. </technology>
  5614. </technologies>
  5615. </device>
  5616. <device name="1.27MM" package="1X04_1.27MM">
  5617. <connects>
  5618. <connect gate="G$1" pin="1" pad="1"/>
  5619. <connect gate="G$1" pin="2" pad="2"/>
  5620. <connect gate="G$1" pin="3" pad="3"/>
  5621. <connect gate="G$1" pin="4" pad="4"/>
  5622. </connects>
  5623. <package3dinstances>
  5624. <package3dinstance package3d_urn="urn:adsk.eagle:package:38086/1"/>
  5625. </package3dinstances>
  5626. <technologies>
  5627. <technology name=""/>
  5628. </technologies>
  5629. </device>
  5630. <device name="LOCK" package="1X04_LOCK">
  5631. <connects>
  5632. <connect gate="G$1" pin="1" pad="1"/>
  5633. <connect gate="G$1" pin="2" pad="2"/>
  5634. <connect gate="G$1" pin="3" pad="3"/>
  5635. <connect gate="G$1" pin="4" pad="4"/>
  5636. </connects>
  5637. <package3dinstances>
  5638. <package3dinstance package3d_urn="urn:adsk.eagle:package:38089/1"/>
  5639. </package3dinstances>
  5640. <technologies>
  5641. <technology name="">
  5642. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5643. </technology>
  5644. </technologies>
  5645. </device>
  5646. <device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS">
  5647. <connects>
  5648. <connect gate="G$1" pin="1" pad="1"/>
  5649. <connect gate="G$1" pin="2" pad="2"/>
  5650. <connect gate="G$1" pin="3" pad="3"/>
  5651. <connect gate="G$1" pin="4" pad="4"/>
  5652. </connects>
  5653. <package3dinstances>
  5654. <package3dinstance package3d_urn="urn:adsk.eagle:package:38091/1"/>
  5655. </package3dinstances>
  5656. <technologies>
  5657. <technology name="">
  5658. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5659. </technology>
  5660. </technologies>
  5661. </device>
  5662. <device name="POLAR_LOCK" package="MOLEX-1X4_LOCK">
  5663. <connects>
  5664. <connect gate="G$1" pin="1" pad="1"/>
  5665. <connect gate="G$1" pin="2" pad="2"/>
  5666. <connect gate="G$1" pin="3" pad="3"/>
  5667. <connect gate="G$1" pin="4" pad="4"/>
  5668. </connects>
  5669. <package3dinstances>
  5670. <package3dinstance package3d_urn="urn:adsk.eagle:package:38092/1"/>
  5671. </package3dinstances>
  5672. <technologies>
  5673. <technology name="">
  5674. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5675. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5676. </technology>
  5677. </technologies>
  5678. </device>
  5679. <device name="SMD" package="1X04_SMD_RA_MALE">
  5680. <connects>
  5681. <connect gate="G$1" pin="1" pad="1"/>
  5682. <connect gate="G$1" pin="2" pad="2"/>
  5683. <connect gate="G$1" pin="3" pad="3"/>
  5684. <connect gate="G$1" pin="4" pad="4"/>
  5685. </connects>
  5686. <package3dinstances>
  5687. <package3dinstance package3d_urn="urn:adsk.eagle:package:38093/1"/>
  5688. </package3dinstances>
  5689. <technologies>
  5690. <technology name="">
  5691. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5692. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5693. </technology>
  5694. </technologies>
  5695. </device>
  5696. <device name="LONGPADS" package="1X04_LONGPADS">
  5697. <connects>
  5698. <connect gate="G$1" pin="1" pad="1"/>
  5699. <connect gate="G$1" pin="2" pad="2"/>
  5700. <connect gate="G$1" pin="3" pad="3"/>
  5701. <connect gate="G$1" pin="4" pad="4"/>
  5702. </connects>
  5703. <package3dinstances>
  5704. <package3dinstance package3d_urn="urn:adsk.eagle:package:38098/1"/>
  5705. </package3dinstances>
  5706. <technologies>
  5707. <technology name="">
  5708. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5709. </technology>
  5710. </technologies>
  5711. </device>
  5712. <device name="1X04_NO_SILK" package="1X04_NO_SILK">
  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:38094/1"/>
  5721. </package3dinstances>
  5722. <technologies>
  5723. <technology name="">
  5724. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5725. </technology>
  5726. </technologies>
  5727. </device>
  5728. <device name="JST-PTH" package="JST-4-PTH">
  5729. <connects>
  5730. <connect gate="G$1" pin="1" pad="1"/>
  5731. <connect gate="G$1" pin="2" pad="2"/>
  5732. <connect gate="G$1" pin="3" pad="3"/>
  5733. <connect gate="G$1" pin="4" pad="4"/>
  5734. </connects>
  5735. <package3dinstances>
  5736. <package3dinstance package3d_urn="urn:adsk.eagle:package:38101/1"/>
  5737. </package3dinstances>
  5738. <technologies>
  5739. <technology name="">
  5740. <attribute name="PROD_ID" value="WIRE-13531" constant="no"/>
  5741. <attribute name="SF_ID" value="PRT-09916" constant="no"/>
  5742. </technology>
  5743. </technologies>
  5744. </device>
  5745. <device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK">
  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:38095/1"/>
  5754. </package3dinstances>
  5755. <technologies>
  5756. <technology name=""/>
  5757. </technologies>
  5758. </device>
  5759. <device name="SMD2" package="1X04_1MM_RA">
  5760. <connects>
  5761. <connect gate="G$1" pin="1" pad="1"/>
  5762. <connect gate="G$1" pin="2" pad="2"/>
  5763. <connect gate="G$1" pin="3" pad="3"/>
  5764. <connect gate="G$1" pin="4" pad="4"/>
  5765. </connects>
  5766. <package3dinstances>
  5767. <package3dinstance package3d_urn="urn:adsk.eagle:package:38096/1"/>
  5768. </package3dinstances>
  5769. <technologies>
  5770. <technology name="">
  5771. <attribute name="PROD_ID" value="CONN-10310" constant="no"/>
  5772. <attribute name="SF_ID" value="PRT-10208" constant="no"/>
  5773. </technology>
  5774. </technologies>
  5775. </device>
  5776. <device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_VERTICAL_COMBO">
  5777. <connects>
  5778. <connect gate="G$1" pin="1" pad="1"/>
  5779. <connect gate="G$1" pin="2" pad="2"/>
  5780. <connect gate="G$1" pin="3" pad="3"/>
  5781. <connect gate="G$1" pin="4" pad="4"/>
  5782. </connects>
  5783. <package3dinstances>
  5784. <package3dinstance package3d_urn="urn:adsk.eagle:package:38097/1"/>
  5785. </package3dinstances>
  5786. <technologies>
  5787. <technology name="">
  5788. <attribute name="PROD_ID" value="CONN-08511"/>
  5789. <attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/>
  5790. </technology>
  5791. </technologies>
  5792. </device>
  5793. <device name="SMD_LONG" package="1X04_SMD_LONG">
  5794. <connects>
  5795. <connect gate="G$1" pin="1" pad="1"/>
  5796. <connect gate="G$1" pin="2" pad="2"/>
  5797. <connect gate="G$1" pin="3" pad="3"/>
  5798. <connect gate="G$1" pin="4" pad="4"/>
  5799. </connects>
  5800. <package3dinstances>
  5801. <package3dinstance package3d_urn="urn:adsk.eagle:package:38099/1"/>
  5802. </package3dinstances>
  5803. <technologies>
  5804. <technology name="">
  5805. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5806. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5807. </technology>
  5808. </technologies>
  5809. </device>
  5810. <device name="JST-PTH-VERT" package="JST-4-PTH-VERT">
  5811. <connects>
  5812. <connect gate="G$1" pin="1" pad="1"/>
  5813. <connect gate="G$1" pin="2" pad="2"/>
  5814. <connect gate="G$1" pin="3" pad="3"/>
  5815. <connect gate="G$1" pin="4" pad="4"/>
  5816. </connects>
  5817. <package3dinstances>
  5818. <package3dinstance package3d_urn="urn:adsk.eagle:package:38102/1"/>
  5819. </package3dinstances>
  5820. <technologies>
  5821. <technology name="">
  5822. <attribute name="PROD_ID" value="CONN-13251"/>
  5823. </technology>
  5824. </technologies>
  5825. </device>
  5826. <device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE">
  5827. <connects>
  5828. <connect gate="G$1" pin="1" pad="1"/>
  5829. <connect gate="G$1" pin="2" pad="2"/>
  5830. <connect gate="G$1" pin="3" pad="3"/>
  5831. <connect gate="G$1" pin="4" pad="4"/>
  5832. </connects>
  5833. <package3dinstances>
  5834. <package3dinstance package3d_urn="urn:adsk.eagle:package:38100/1"/>
  5835. </package3dinstances>
  5836. <technologies>
  5837. <technology name="">
  5838. <attribute name="PROD_ID" value="CONN-12382" constant="no"/>
  5839. </technology>
  5840. </technologies>
  5841. </device>
  5842. </devices>
  5843. </deviceset>
  5844. </devicesets>
  5845. </library>
  5846. <library name="Transistor" urn="urn:adsk.eagle:library:16378713">
  5847. <description>&lt;B&gt;BJT, JFET, MOSFET, UJT, Darlington</description>
  5848. <packages>
  5849. <package name="SOT23" urn="urn:adsk.eagle:footprint:28669/1" library_version="4">
  5850. <description>&lt;b&gt;SOT-23&lt;/b&gt;</description>
  5851. <wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  5852. <wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  5853. <wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/>
  5854. <wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/>
  5855. <smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/>
  5856. <smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  5857. <smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  5858. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  5859. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  5860. <rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/>
  5861. <rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/>
  5862. <rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/>
  5863. </package>
  5864. <package name="TO92" urn="urn:adsk.eagle:footprint:28459/1" library_version="4">
  5865. <description>&lt;b&gt;TO 92&lt;/b&gt;</description>
  5866. <wire x1="-2.0946" y1="-1.651" x2="-2.6549" y2="-0.254" width="0.127" layer="21" curve="-32.781"/>
  5867. <wire x1="-2.6549" y1="-0.254" x2="-0.7863" y2="2.5485" width="0.127" layer="21" curve="-78.3185"/>
  5868. <wire x1="0.7863" y1="2.5484" x2="2.0945" y2="-1.651" width="0.127" layer="21" curve="-111.1"/>
  5869. <wire x1="-2.0945" y1="-1.651" x2="2.0945" y2="-1.651" width="0.127" layer="21"/>
  5870. <wire x1="-2.2537" y1="-0.254" x2="-0.2863" y2="-0.254" width="0.127" layer="51"/>
  5871. <wire x1="-2.6549" y1="-0.254" x2="-2.2537" y2="-0.254" width="0.127" layer="21"/>
  5872. <wire x1="-0.2863" y1="-0.254" x2="0.2863" y2="-0.254" width="0.127" layer="21"/>
  5873. <wire x1="2.2537" y1="-0.254" x2="2.6549" y2="-0.254" width="0.127" layer="21"/>
  5874. <wire x1="0.2863" y1="-0.254" x2="2.2537" y2="-0.254" width="0.127" layer="51"/>
  5875. <wire x1="-0.7863" y1="2.5485" x2="0.7863" y2="2.5485" width="0.127" layer="51" curve="-34.2936"/>
  5876. <pad name="1" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5877. <pad name="2" x="0" y="1.905" drill="0.8128" shape="octagon"/>
  5878. <pad name="3" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5879. <text x="3.175" y="0.635" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5880. <text x="3.175" y="-1.27" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5881. <text x="-0.635" y="0.635" size="1.27" layer="51" ratio="10">2</text>
  5882. <text x="-2.159" y="0" size="1.27" layer="51" ratio="10">3</text>
  5883. <text x="1.143" y="0" size="1.27" layer="51" ratio="10">1</text>
  5884. </package>
  5885. <package name="TO220BV" urn="urn:adsk.eagle:footprint:29371/1" library_version="4">
  5886. <description>&lt;b&gt;Molded Package&lt;/b&gt;&lt;p&gt;
  5887. grid 2.54 mm</description>
  5888. <wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  5889. <wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  5890. <wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  5891. <wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  5892. <wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/>
  5893. <circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/>
  5894. <pad name="G" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5895. <pad name="D" x="0" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5896. <pad name="S" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5897. <text x="-5.08" y="-6.0452" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5898. <text x="-5.08" y="-7.62" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5899. <rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/>
  5900. <rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/>
  5901. <rectangle x1="-1.651" y1="-1.27" x2="-0.889" y2="-0.762" layer="21"/>
  5902. <rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/>
  5903. <rectangle x1="0.889" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/>
  5904. <rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/>
  5905. <rectangle x1="-0.889" y1="-1.27" x2="0.889" y2="-0.762" layer="51"/>
  5906. <rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/>
  5907. </package>
  5908. </packages>
  5909. <packages3d>
  5910. <package3d name="SOT23" urn="urn:adsk.eagle:package:28738/2" type="model" library_version="4">
  5911. <description>SOT-23</description>
  5912. <packageinstances>
  5913. <packageinstance name="SOT23"/>
  5914. </packageinstances>
  5915. </package3d>
  5916. <package3d name="TO92" urn="urn:adsk.eagle:package:16378726/2" type="model" library_version="4">
  5917. <description>TO 92</description>
  5918. <packageinstances>
  5919. <packageinstance name="TO92"/>
  5920. </packageinstances>
  5921. </package3d>
  5922. <package3d name="TO220BV" urn="urn:adsk.eagle:package:29484/3" type="model" library_version="4">
  5923. <description>Molded Package
  5924. grid 2.54 mm</description>
  5925. <packageinstances>
  5926. <packageinstance name="TO220BV"/>
  5927. </packageinstances>
  5928. </package3d>
  5929. </packages3d>
  5930. <symbols>
  5931. <symbol name="MFNS" urn="urn:adsk.eagle:symbol:16378716/2" library_version="4">
  5932. <wire x1="-1.1176" y1="2.413" x2="-1.1176" y2="-2.54" width="0.254" layer="94"/>
  5933. <wire x1="-1.1176" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  5934. <wire x1="2.54" y1="1.905" x2="0.5334" y2="1.905" width="0.1524" layer="94"/>
  5935. <wire x1="2.54" y1="0" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  5936. <wire x1="0.508" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  5937. <wire x1="2.54" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  5938. <wire x1="2.54" y1="1.905" x2="5.08" y2="1.905" width="0.1524" layer="94"/>
  5939. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  5940. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  5941. <wire x1="5.08" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  5942. <wire x1="2.54" y1="-1.905" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  5943. <wire x1="5.08" y1="0.762" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  5944. <wire x1="4.445" y1="-0.635" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  5945. <wire x1="5.715" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  5946. <wire x1="4.445" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  5947. <wire x1="5.08" y1="0.762" x2="5.715" y2="0.762" width="0.1524" layer="94"/>
  5948. <wire x1="5.715" y1="0.762" x2="5.969" y2="1.016" width="0.1524" layer="94"/>
  5949. <wire x1="4.445" y1="0.762" x2="4.191" y2="0.508" width="0.1524" layer="94"/>
  5950. <wire x1="0.508" y1="0" x2="1.778" y2="-0.508" width="0.1524" layer="94"/>
  5951. <wire x1="1.778" y1="-0.508" x2="1.778" y2="0.508" width="0.1524" layer="94"/>
  5952. <wire x1="1.778" y1="0.508" x2="0.508" y2="0" width="0.1524" layer="94"/>
  5953. <wire x1="1.651" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  5954. <wire x1="1.651" y1="0.254" x2="0.762" y2="0" width="0.3048" layer="94"/>
  5955. <wire x1="0.762" y1="0" x2="1.651" y2="-0.254" width="0.3048" layer="94"/>
  5956. <wire x1="1.651" y1="-0.254" x2="1.651" y2="0" width="0.3048" layer="94"/>
  5957. <wire x1="1.651" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  5958. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  5959. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  5960. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  5961. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  5962. <text x="1.27" y="2.54" size="0.8128" layer="93">D</text>
  5963. <text x="1.27" y="-3.175" size="0.8128" layer="93">S</text>
  5964. <text x="-2.54" y="-1.27" size="0.8128" layer="93">G</text>
  5965. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  5966. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  5967. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  5968. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  5969. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  5970. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  5971. </symbol>
  5972. </symbols>
  5973. <devicesets>
  5974. <deviceset name="NMOSFET" urn="urn:adsk.eagle:component:16378730/3" prefix="Q" library_version="4">
  5975. <description>&lt;b&gt; N-Channel MOSFET - Generic</description>
  5976. <gates>
  5977. <gate name="G$1" symbol="MFNS" x="-2.54" y="0"/>
  5978. </gates>
  5979. <devices>
  5980. <device name="SOT23" package="SOT23">
  5981. <connects>
  5982. <connect gate="G$1" pin="D" pad="3"/>
  5983. <connect gate="G$1" pin="G" pad="1"/>
  5984. <connect gate="G$1" pin="S" pad="2"/>
  5985. </connects>
  5986. <package3dinstances>
  5987. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  5988. </package3dinstances>
  5989. <technologies>
  5990. <technology name="">
  5991. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  5992. <attribute name="DESCRIPTION" value="" constant="no"/>
  5993. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  5994. <attribute name="MANUFACTURER" value="" constant="no"/>
  5995. <attribute name="MPN" value="" constant="no"/>
  5996. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  5997. <attribute name="PART_STATUS" value="" constant="no"/>
  5998. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  5999. <attribute name="SERIES" value="" constant="no"/>
  6000. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6001. <attribute name="THERMALLOSS" value="" constant="no"/>
  6002. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6003. </technology>
  6004. <technology name="_">
  6005. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6006. <attribute name="DESCRIPTION" value="" constant="no"/>
  6007. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6008. <attribute name="MANUFACTURER" value="" constant="no"/>
  6009. <attribute name="MPN" value="" constant="no"/>
  6010. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6011. <attribute name="PART_STATUS" value="" constant="no"/>
  6012. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6013. <attribute name="SERIES" value="" constant="no"/>
  6014. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6015. <attribute name="THERMALLOSS" value="" constant="no"/>
  6016. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6017. </technology>
  6018. </technologies>
  6019. </device>
  6020. <device name="TO92" package="TO92">
  6021. <connects>
  6022. <connect gate="G$1" pin="D" pad="1"/>
  6023. <connect gate="G$1" pin="G" pad="2"/>
  6024. <connect gate="G$1" pin="S" pad="3"/>
  6025. </connects>
  6026. <package3dinstances>
  6027. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  6028. </package3dinstances>
  6029. <technologies>
  6030. <technology name="_">
  6031. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6032. <attribute name="DESCRIPTION" value="" constant="no"/>
  6033. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6034. <attribute name="MANUFACTURER" value="" constant="no"/>
  6035. <attribute name="MPN" value="" constant="no"/>
  6036. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6037. <attribute name="PART_STATUS" value="" constant="no"/>
  6038. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6039. <attribute name="SERIES" value="" constant="no"/>
  6040. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6041. <attribute name="THERMALLOSS" value="" constant="no"/>
  6042. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6043. </technology>
  6044. </technologies>
  6045. </device>
  6046. <device name="TO220" package="TO220BV">
  6047. <connects>
  6048. <connect gate="G$1" pin="D" pad="D"/>
  6049. <connect gate="G$1" pin="G" pad="G"/>
  6050. <connect gate="G$1" pin="S" pad="S"/>
  6051. </connects>
  6052. <package3dinstances>
  6053. <package3dinstance package3d_urn="urn:adsk.eagle:package:29484/3"/>
  6054. </package3dinstances>
  6055. <technologies>
  6056. <technology name="_">
  6057. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6058. <attribute name="DESCRIPTION" value="" constant="no"/>
  6059. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6060. <attribute name="MANUFACTURER" value="" constant="no"/>
  6061. <attribute name="MPN" value="" constant="no"/>
  6062. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6063. <attribute name="PART_STATUS" value="" constant="no"/>
  6064. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6065. <attribute name="SERIES" value="" constant="no"/>
  6066. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6067. <attribute name="THERMALLOSS" value="" constant="no"/>
  6068. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6069. </technology>
  6070. </technologies>
  6071. </device>
  6072. </devices>
  6073. </deviceset>
  6074. </devicesets>
  6075. </library>
  6076. <library name="eScooter">
  6077. <packages>
  6078. <package name="DIOM5027X220N" urn="urn:adsk.eagle:footprint:21928331/1">
  6079. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6080. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6081. <wire x1="2.5" y1="1.35" x2="-3.3699" y2="1.35" width="0.12" layer="21"/>
  6082. <wire x1="-3.3699" y1="1.35" x2="-3.3699" y2="-1.35" width="0.12" layer="21"/>
  6083. <wire x1="-3.3699" y1="-1.35" x2="2.5" y2="-1.35" width="0.12" layer="21"/>
  6084. <wire x1="2.5" y1="-1.35" x2="-2.5" y2="-1.35" width="0.12" layer="51"/>
  6085. <wire x1="-2.5" y1="-1.35" x2="-2.5" y2="1.35" width="0.12" layer="51"/>
  6086. <wire x1="-2.5" y1="1.35" x2="2.5" y2="1.35" width="0.12" layer="51"/>
  6087. <wire x1="2.5" y1="1.35" x2="2.5" y2="-1.35" width="0.12" layer="51"/>
  6088. <smd name="1" x="-2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6089. <smd name="2" x="2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6090. <text x="0" y="1.985" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6091. <text x="0" y="-1.985" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6092. </package>
  6093. <package name="CAPAE1230X1250N" urn="urn:adsk.eagle:footprint:21812987/1">
  6094. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6095. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6096. <wire x1="-6.25" y1="1.3186" x2="-6.25" y2="3.6573" width="0.12" layer="21"/>
  6097. <wire x1="-6.25" y1="3.6573" x2="-3.6573" y2="6.25" width="0.12" layer="21"/>
  6098. <wire x1="-3.6573" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="21"/>
  6099. <wire x1="6.25" y1="6.25" x2="6.25" y2="1.3186" width="0.12" layer="21"/>
  6100. <wire x1="-6.25" y1="-1.3186" x2="-6.25" y2="-3.6573" width="0.12" layer="21"/>
  6101. <wire x1="-6.25" y1="-3.6573" x2="-3.6573" y2="-6.25" width="0.12" layer="21"/>
  6102. <wire x1="-3.6573" y1="-6.25" x2="6.25" y2="-6.25" width="0.12" layer="21"/>
  6103. <wire x1="6.25" y1="-6.25" x2="6.25" y2="-1.3186" width="0.12" layer="21"/>
  6104. <wire x1="6.25" y1="-6.25" x2="-6.25" y2="-6.25" width="0.12" layer="51"/>
  6105. <wire x1="-6.25" y1="-6.25" x2="-6.25" y2="6.25" width="0.12" layer="51"/>
  6106. <wire x1="-6.25" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="51"/>
  6107. <wire x1="6.25" y1="6.25" x2="6.25" y2="-6.25" width="0.12" layer="51"/>
  6108. <smd name="1" x="-4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6109. <smd name="2" x="4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6110. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6111. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6112. </package>
  6113. <package name="DIP8" urn="urn:adsk.eagle:footprint:4470/1">
  6114. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; Gull Wing Surface Mount Optioon 300&lt;p&gt;
  6115. Source: http://www.avagotech.com/docs/AV02-0410EN</description>
  6116. <wire x1="-4.81" y1="-3.075" x2="4.81" y2="-3.075" width="0.2032" layer="51"/>
  6117. <wire x1="4.81" y1="-3.075" x2="4.81" y2="3.075" width="0.2032" layer="21"/>
  6118. <wire x1="4.81" y1="3.075" x2="-4.81" y2="3.075" width="0.2032" layer="51"/>
  6119. <wire x1="-4.81" y1="3.075" x2="-4.81" y2="-3.075" width="0.2032" layer="21"/>
  6120. <circle x="-3.81" y="-2.159" radius="0.3667" width="0" layer="21"/>
  6121. <smd name="1" x="-3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  6122. <smd name="2" x="-1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  6123. <smd name="3" x="1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  6124. <smd name="4" x="3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  6125. <smd name="5" x="3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  6126. <smd name="6" x="1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  6127. <smd name="7" x="-1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  6128. <smd name="8" x="-3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  6129. <text x="-5.635" y="-3.1351" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6130. <text x="6.905" y="-4.4051" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6131. <rectangle x1="-4.0899" y1="-4.825" x2="-3.5301" y2="-3.81" layer="51"/>
  6132. <rectangle x1="-1.5499" y1="-4.825" x2="-0.9901" y2="-3.81" layer="51"/>
  6133. <rectangle x1="0.9901" y1="-4.825" x2="1.5499" y2="-3.81" layer="51"/>
  6134. <rectangle x1="3.5301" y1="-4.825" x2="4.0899" y2="-3.81" layer="51"/>
  6135. <rectangle x1="3.5301" y1="3.81" x2="4.0899" y2="4.825" layer="51"/>
  6136. <rectangle x1="0.9901" y1="3.81" x2="1.5499" y2="4.825" layer="51"/>
  6137. <rectangle x1="-1.5499" y1="3.81" x2="-0.9901" y2="4.825" layer="51"/>
  6138. <rectangle x1="-4.0899" y1="3.81" x2="-3.5301" y2="4.825" layer="51"/>
  6139. <rectangle x1="-2.15" y1="3.1" x2="-0.4" y2="3.81" layer="51" rot="R180"/>
  6140. <rectangle x1="-4.1" y1="3.1" x2="-2.94" y2="3.81" layer="51" rot="R180"/>
  6141. <rectangle x1="0.39" y1="3.1" x2="2.14" y2="3.81" layer="51" rot="R180"/>
  6142. <rectangle x1="2.93" y1="3.1" x2="4.1" y2="3.81" layer="51" rot="R180"/>
  6143. <rectangle x1="-4.075" y1="-3.81" x2="-2.93" y2="-3.1" layer="51"/>
  6144. <rectangle x1="-2.14" y1="-3.81" x2="-0.39" y2="-3.1" layer="51"/>
  6145. <rectangle x1="0.4" y1="-3.81" x2="2.15" y2="-3.1" layer="51"/>
  6146. <rectangle x1="2.94" y1="-3.81" x2="4.1" y2="-3.1" layer="51"/>
  6147. </package>
  6148. <package name="DIP826W56P254L937H458Q8B" urn="urn:adsk.eagle:footprint:22059849/1">
  6149. <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
  6150. &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>
  6151. <circle x="-5.3669" y="3.81" radius="0.25" width="0" layer="21"/>
  6152. <wire x1="-3.935" y1="4.7969" x2="-3.935" y2="4.955" width="0.12" layer="21"/>
  6153. <wire x1="-3.935" y1="4.955" x2="3.935" y2="4.955" width="0.12" layer="21"/>
  6154. <wire x1="3.935" y1="4.955" x2="3.935" y2="4.7969" width="0.12" layer="21"/>
  6155. <wire x1="-3.935" y1="-4.7969" x2="-3.935" y2="-4.955" width="0.12" layer="21"/>
  6156. <wire x1="-3.935" y1="-4.955" x2="3.935" y2="-4.955" width="0.12" layer="21"/>
  6157. <wire x1="3.935" y1="-4.955" x2="3.935" y2="-4.7969" width="0.12" layer="21"/>
  6158. <wire x1="3.935" y1="-4.955" x2="-3.935" y2="-4.955" width="0.12" layer="51"/>
  6159. <wire x1="-3.935" y1="-4.955" x2="-3.935" y2="4.955" width="0.12" layer="51"/>
  6160. <wire x1="-3.935" y1="4.955" x2="3.935" y2="4.955" width="0.12" layer="51"/>
  6161. <wire x1="3.935" y1="4.955" x2="3.935" y2="-4.955" width="0.12" layer="51"/>
  6162. <pad name="1" x="-4.13" y="3.81" drill="0.8657" diameter="1.4657"/>
  6163. <pad name="2" x="-4.13" y="1.27" drill="0.8657" diameter="1.4657"/>
  6164. <pad name="3" x="-4.13" y="-1.27" drill="0.8657" diameter="1.4657"/>
  6165. <pad name="4" x="-4.13" y="-3.81" drill="0.8657" diameter="1.4657"/>
  6166. <pad name="5" x="4.13" y="-3.81" drill="0.8657" diameter="1.4657"/>
  6167. <pad name="6" x="4.13" y="-1.27" drill="0.8657" diameter="1.4657"/>
  6168. <pad name="7" x="4.13" y="1.27" drill="0.8657" diameter="1.4657"/>
  6169. <pad name="8" x="4.13" y="3.81" drill="0.8657" diameter="1.4657"/>
  6170. <text x="0" y="5.59" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6171. <text x="0" y="-5.59" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6172. </package>
  6173. </packages>
  6174. <packages3d>
  6175. <package3d name="DIOM5027X220N" urn="urn:adsk.eagle:package:21928182/1" type="model">
  6176. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6177. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6178. <packageinstances>
  6179. <packageinstance name="DIOM5027X220N"/>
  6180. </packageinstances>
  6181. </package3d>
  6182. <package3d name="CAPAE1230X1250N" urn="urn:adsk.eagle:package:21812541/1" type="model">
  6183. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6184. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6185. <packageinstances>
  6186. <packageinstance name="CAPAE1230X1250N"/>
  6187. </packageinstances>
  6188. </package3d>
  6189. <package3d name="DIP8" urn="urn:adsk.eagle:package:8089856/1" locally_modified="yes" type="box">
  6190. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; &lt;p&gt;
  6191. dual in line package'</description>
  6192. <packageinstances>
  6193. <packageinstance name="DIP8"/>
  6194. </packageinstances>
  6195. </package3d>
  6196. <package3d name="DIP826W56P254L937H458Q8B" urn="urn:adsk.eagle:package:22059831/1" type="model">
  6197. <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
  6198. &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>
  6199. <packageinstances>
  6200. <packageinstance name="DIP826W56P254L937H458Q8B"/>
  6201. </packageinstances>
  6202. </package3d>
  6203. </packages3d>
  6204. <symbols>
  6205. <symbol name="TVS_DIODE">
  6206. <wire x1="0" y1="0" x2="-2.54" y2="2.54" width="0.254" layer="94"/>
  6207. <wire x1="2.54" y1="2.54" x2="0" y2="0" width="0.254" layer="94"/>
  6208. <wire x1="-5.08" y1="-2.54" x2="-2.54" y2="0" width="0.254" layer="94"/>
  6209. <wire x1="-2.54" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  6210. <wire x1="2.54" y1="0" x2="5.08" y2="2.54" width="0.254" layer="94"/>
  6211. <wire x1="0" y1="0" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  6212. <wire x1="2.54" y1="-2.54" x2="0" y2="0" width="0.254" layer="94"/>
  6213. <wire x1="-2.54" y1="2.54" x2="2.54" y2="2.54" width="0.254" layer="94"/>
  6214. <wire x1="-2.54" y1="-2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  6215. <pin name="P$1" x="0" y="7.62" visible="off" length="middle" rot="R270"/>
  6216. <pin name="P$2" x="0" y="-7.62" visible="off" length="middle" rot="R90"/>
  6217. <text x="2.54" y="5.08" size="1.778" layer="95">&gt;NAME</text>
  6218. <text x="2.54" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6219. </symbol>
  6220. <symbol name="C">
  6221. <wire x1="-2.54" y1="1.27" x2="2.54" y2="1.27" width="0.254" layer="94"/>
  6222. <wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.254" layer="94" curve="-90"/>
  6223. <pin name="P$1" x="0" y="6.35" visible="off" length="middle" direction="pwr" rot="R270"/>
  6224. <pin name="P$2" x="0" y="-5.08" visible="off" length="middle" direction="pwr" rot="R90"/>
  6225. <text x="-3.81" y="1.27" size="1.778" layer="94">+</text>
  6226. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  6227. <text x="2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6228. </symbol>
  6229. <symbol name="MX5035">
  6230. <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>
  6231. <wire x1="-10.16" y1="12.7" x2="10.16" y2="12.7" width="0.254" layer="94"/>
  6232. <wire x1="10.16" y1="12.7" x2="10.16" y2="-12.7" width="0.254" layer="94"/>
  6233. <wire x1="10.16" y1="-12.7" x2="-10.16" y2="-12.7" width="0.254" layer="94"/>
  6234. <wire x1="-10.16" y1="-12.7" x2="-10.16" y2="12.7" width="0.254" layer="94"/>
  6235. <pin name="BST" x="-15.24" y="7.62" length="middle" direction="in"/>
  6236. <pin name="VD" x="-15.24" y="2.54" length="middle" direction="in"/>
  6237. <pin name="SGND" x="-15.24" y="-2.54" length="middle" direction="in"/>
  6238. <pin name="FB" x="-15.24" y="-7.62" length="middle" direction="in"/>
  6239. <pin name="ON/OFF" x="15.24" y="-7.62" length="middle" direction="in" rot="R180"/>
  6240. <pin name="GND" x="15.24" y="-2.54" length="middle" direction="pwr" rot="R180"/>
  6241. <pin name="VIN" x="15.24" y="2.54" length="middle" direction="pwr" rot="R180"/>
  6242. <pin name="LX" x="15.24" y="7.62" length="middle" direction="pwr" rot="R180"/>
  6243. <text x="-10.16" y="15.24" size="1.778" layer="95">&gt;NAME</text>
  6244. <text x="-10.16" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  6245. </symbol>
  6246. </symbols>
  6247. <devicesets>
  6248. <deviceset name="TVS_DIODE">
  6249. <description>TVS protective diode</description>
  6250. <gates>
  6251. <gate name="D$1" symbol="TVS_DIODE" x="0" y="0"/>
  6252. </gates>
  6253. <devices>
  6254. <device name="SMA" package="DIOM5027X220N">
  6255. <connects>
  6256. <connect gate="D$1" pin="P$1" pad="1"/>
  6257. <connect gate="D$1" pin="P$2" pad="2"/>
  6258. </connects>
  6259. <package3dinstances>
  6260. <package3dinstance package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  6261. </package3dinstances>
  6262. <technologies>
  6263. <technology name=""/>
  6264. </technologies>
  6265. </device>
  6266. </devices>
  6267. </deviceset>
  6268. <deviceset name="C">
  6269. <gates>
  6270. <gate name="G$1" symbol="C" x="-1.27" y="-1.27"/>
  6271. </gates>
  6272. <devices>
  6273. <device name="PANASONIC_H13" package="CAPAE1230X1250N">
  6274. <connects>
  6275. <connect gate="G$1" pin="P$1" pad="1"/>
  6276. <connect gate="G$1" pin="P$2" pad="2"/>
  6277. </connects>
  6278. <package3dinstances>
  6279. <package3dinstance package3d_urn="urn:adsk.eagle:package:21812541/1"/>
  6280. </package3dinstances>
  6281. <technologies>
  6282. <technology name=""/>
  6283. </technologies>
  6284. </device>
  6285. </devices>
  6286. </deviceset>
  6287. <deviceset name="MAX5035">
  6288. <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>
  6289. <gates>
  6290. <gate name="G$1" symbol="MX5035" x="0" y="0"/>
  6291. </gates>
  6292. <devices>
  6293. <device name="DIP8" package="DIP8">
  6294. <connects>
  6295. <connect gate="G$1" pin="BST" pad="1"/>
  6296. <connect gate="G$1" pin="FB" pad="4"/>
  6297. <connect gate="G$1" pin="GND" pad="6"/>
  6298. <connect gate="G$1" pin="LX" pad="8"/>
  6299. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  6300. <connect gate="G$1" pin="SGND" pad="3"/>
  6301. <connect gate="G$1" pin="VD" pad="2"/>
  6302. <connect gate="G$1" pin="VIN" pad="7"/>
  6303. </connects>
  6304. <package3dinstances>
  6305. <package3dinstance package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  6306. </package3dinstances>
  6307. <technologies>
  6308. <technology name=""/>
  6309. </technologies>
  6310. </device>
  6311. <device name="PDIP8" package="DIP826W56P254L937H458Q8B">
  6312. <connects>
  6313. <connect gate="G$1" pin="BST" pad="1"/>
  6314. <connect gate="G$1" pin="FB" pad="4"/>
  6315. <connect gate="G$1" pin="GND" pad="6"/>
  6316. <connect gate="G$1" pin="LX" pad="8"/>
  6317. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  6318. <connect gate="G$1" pin="SGND" pad="3"/>
  6319. <connect gate="G$1" pin="VD" pad="2"/>
  6320. <connect gate="G$1" pin="VIN" pad="7"/>
  6321. </connects>
  6322. <package3dinstances>
  6323. <package3dinstance package3d_urn="urn:adsk.eagle:package:22059831/1"/>
  6324. </package3dinstances>
  6325. <technologies>
  6326. <technology name=""/>
  6327. </technologies>
  6328. </device>
  6329. </devices>
  6330. </deviceset>
  6331. </devicesets>
  6332. </library>
  6333. </libraries>
  6334. <attributes>
  6335. </attributes>
  6336. <variantdefs>
  6337. </variantdefs>
  6338. <classes>
  6339. <class number="0" name="default" width="0" drill="0">
  6340. </class>
  6341. </classes>
  6342. <parts>
  6343. <part name="J4" library="Connectors" library_urn="urn:adsk.eagle:library:14555660" deviceset="B2P-VH(LF)(SN)" device="" package3d_urn="urn:adsk.eagle:package:10989917/2" value="IN"/>
  6344. <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"/>
  6345. <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"/>
  6346. <part name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" deviceset="DR127" device="" package3d_urn="urn:adsk.eagle:package:15117/1"/>
  6347. <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"/>
  6348. <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"/>
  6349. <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"/>
  6350. <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"/>
  6351. <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"/>
  6352. <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"/>
  6353. <part name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6354. <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"/>
  6355. <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"/>
  6356. <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"/>
  6357. <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"/>
  6358. <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"/>
  6359. <part name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6360. <part name="Q3" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6361. <part name="GND2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  6362. <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"/>
  6363. <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"/>
  6364. <part name="D2" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1" value="P4SMAJ12CA"/>
  6365. <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"/>
  6366. <part name="C4" library="eScooter" deviceset="C" device="PANASONIC_H13" package3d_urn="urn:adsk.eagle:package:21812541/1" value="68uF"/>
  6367. <part name="U$1" library="eScooter" deviceset="MAX5035" device="PDIP8" package3d_urn="urn:adsk.eagle:package:22059831/1"/>
  6368. </parts>
  6369. <sheets>
  6370. <sheet>
  6371. <plain>
  6372. </plain>
  6373. <instances>
  6374. <instance part="J4" gate="G$1" x="213.36" y="116.84" smashed="yes" rot="MR0">
  6375. <attribute name="NAME" x="215.9" y="122.682" size="1.778" layer="95" rot="MR0"/>
  6376. </instance>
  6377. <instance part="C1" gate="G$1" x="129.54" y="124.46" smashed="yes" rot="R90">
  6378. <attribute name="NAME" x="129.54" y="124.46" size="1.778" layer="95" rot="R90"/>
  6379. <attribute name="VALUE" x="134.62" y="124.46" size="1.778" layer="96" rot="R90"/>
  6380. </instance>
  6381. <instance part="D1" gate="G$1" x="149.86" y="132.08" smashed="yes" rot="R180">
  6382. <attribute name="NAME" x="152.146" y="130.175" size="1.778" layer="95" rot="R180"/>
  6383. <attribute name="VALUE" x="152.146" y="135.509" size="1.778" layer="96" rot="R180"/>
  6384. </instance>
  6385. <instance part="L1" gate="G$1" x="119.38" y="132.08" smashed="yes" rot="R180">
  6386. <attribute name="NAME" x="123.19" y="129.794" size="1.778" layer="95" rot="R180"/>
  6387. <attribute name="VALUE" x="123.317" y="135.128" size="1.778" layer="96" rot="R180"/>
  6388. </instance>
  6389. <instance part="C2" gate="G$1" x="106.68" y="104.14" smashed="yes" rot="R90">
  6390. <attribute name="NAME" x="106.68" y="104.14" size="1.778" layer="95" rot="R90"/>
  6391. <attribute name="VALUE" x="111.76" y="104.14" size="1.778" layer="96" rot="R90"/>
  6392. </instance>
  6393. <instance part="C3" gate="G$1" x="91.44" y="119.38" smashed="yes">
  6394. <attribute name="NAME" x="92.583" y="119.8626" size="1.778" layer="95"/>
  6395. <attribute name="VALUE" x="92.583" y="114.7826" size="1.778" layer="96"/>
  6396. </instance>
  6397. <instance part="R1" gate="G$1" x="182.88" y="101.6" smashed="yes" rot="R270">
  6398. <attribute name="NAME" x="179.2986" y="100.33" size="1.778" layer="95" rot="MR90"/>
  6399. <attribute name="VALUE" x="184.658" y="100.33" size="1.778" layer="96" rot="MR90"/>
  6400. </instance>
  6401. <instance part="R2" gate="G$1" x="182.88" y="86.36" smashed="yes" rot="R270">
  6402. <attribute name="NAME" x="179.2986" y="85.09" size="1.778" layer="95" rot="MR90"/>
  6403. <attribute name="VALUE" x="184.658" y="85.09" size="1.778" layer="96" rot="MR90"/>
  6404. </instance>
  6405. <instance part="R3" gate="G$1" x="182.88" y="73.66" smashed="yes" rot="R90">
  6406. <attribute name="NAME" x="181.3814" y="72.39" size="1.778" layer="95" rot="R90"/>
  6407. <attribute name="VALUE" x="186.182" y="72.39" size="1.778" layer="96" rot="R90"/>
  6408. </instance>
  6409. <instance part="J3" gate="G$1" x="195.58" y="93.98" smashed="yes" rot="R180">
  6410. <attribute name="VALUE" x="198.12" y="98.806" size="1.778" layer="96" font="vector" rot="R180"/>
  6411. <attribute name="NAME" x="198.12" y="88.392" size="1.778" layer="95" font="vector" rot="R180"/>
  6412. </instance>
  6413. <instance part="Q1" gate="G$1" x="17.78" y="111.76" smashed="yes" rot="R180">
  6414. <attribute name="NAME" x="11.43" y="110.49" size="1.778" layer="95" rot="R180"/>
  6415. </instance>
  6416. <instance part="J1" gate="G$1" x="55.88" y="111.76" smashed="yes" rot="R180">
  6417. <attribute name="VALUE" x="60.96" y="124.206" size="1.778" layer="96" font="vector" rot="R180"/>
  6418. <attribute name="NAME" x="60.96" y="98.552" size="1.778" layer="95" font="vector" rot="R180"/>
  6419. </instance>
  6420. <instance part="J2" gate="G$1" x="58.42" y="68.58" smashed="yes" rot="R180">
  6421. <attribute name="VALUE" x="60.96" y="73.406" size="1.778" layer="96" font="vector" rot="R180"/>
  6422. <attribute name="NAME" x="60.96" y="62.992" size="1.778" layer="95" font="vector" rot="R180"/>
  6423. </instance>
  6424. <instance part="J5" gate="G$1" x="55.88" y="86.36" smashed="yes" rot="R180">
  6425. <attribute name="VALUE" x="60.96" y="93.726" size="1.778" layer="96" font="vector" rot="R180"/>
  6426. <attribute name="NAME" x="60.96" y="78.232" size="1.778" layer="95" font="vector" rot="R180"/>
  6427. </instance>
  6428. <instance part="R4" gate="G$1" x="48.26" y="33.02" smashed="yes" rot="R90">
  6429. <attribute name="NAME" x="46.7614" y="29.21" size="1.778" layer="95" rot="R90"/>
  6430. <attribute name="VALUE" x="51.562" y="29.21" size="1.778" layer="96" rot="R90"/>
  6431. </instance>
  6432. <instance part="R5" gate="G$1" x="48.26" y="17.78" smashed="yes" rot="R90">
  6433. <attribute name="NAME" x="46.7614" y="13.97" size="1.778" layer="95" rot="R90"/>
  6434. <attribute name="VALUE" x="51.562" y="13.97" size="1.778" layer="96" rot="R90"/>
  6435. </instance>
  6436. <instance part="Q2" gate="G$1" x="45.72" y="45.72" smashed="yes">
  6437. <attribute name="NAME" x="52.07" y="46.99" size="1.778" layer="95"/>
  6438. </instance>
  6439. <instance part="Q3" gate="G$1" x="30.48" y="91.44" smashed="yes" rot="MR180">
  6440. <attribute name="NAME" x="36.83" y="90.17" size="1.778" layer="95" rot="MR180"/>
  6441. </instance>
  6442. <instance part="GND2" gate="1" x="48.26" y="2.54" smashed="yes">
  6443. <attribute name="VALUE" x="45.72" y="0" size="1.778" layer="96"/>
  6444. </instance>
  6445. <instance part="R6" gate="G$1" x="27.94" y="116.84" smashed="yes" rot="R90">
  6446. <attribute name="NAME" x="26.4414" y="113.03" size="1.778" layer="95" rot="R90"/>
  6447. <attribute name="VALUE" x="31.242" y="113.03" size="1.778" layer="96" rot="R90"/>
  6448. </instance>
  6449. <instance part="R7" gate="G$1" x="25.4" y="86.36" smashed="yes" rot="R90">
  6450. <attribute name="NAME" x="23.9014" y="82.55" size="1.778" layer="95" rot="R90"/>
  6451. <attribute name="VALUE" x="28.702" y="82.55" size="1.778" layer="96" rot="R90"/>
  6452. </instance>
  6453. <instance part="D2" gate="D$1" x="78.74" y="116.84" smashed="yes">
  6454. <attribute name="NAME" x="81.28" y="121.92" size="1.778" layer="95"/>
  6455. </instance>
  6456. <instance part="R8" gate="G$1" x="30.48" y="55.88" smashed="yes" rot="MR0">
  6457. <attribute name="NAME" x="34.29" y="57.3786" size="1.778" layer="95" rot="MR0"/>
  6458. <attribute name="VALUE" x="34.29" y="52.578" size="1.778" layer="96" rot="MR0"/>
  6459. </instance>
  6460. <instance part="C4" gate="G$1" x="160.02" y="106.68" smashed="yes">
  6461. <attribute name="NAME" x="162.56" y="109.22" size="1.778" layer="95"/>
  6462. <attribute name="VALUE" x="162.56" y="104.14" size="1.778" layer="96" rot="MR180"/>
  6463. </instance>
  6464. <instance part="U$1" gate="G$1" x="132.08" y="101.6" smashed="yes">
  6465. <attribute name="NAME" x="121.92" y="116.84" size="1.778" layer="95"/>
  6466. <attribute name="VALUE" x="121.92" y="83.82" size="1.778" layer="96"/>
  6467. </instance>
  6468. </instances>
  6469. <busses>
  6470. </busses>
  6471. <nets>
  6472. <net name="GND" class="0">
  6473. <segment>
  6474. <pinref part="R5" gate="G$1" pin="1"/>
  6475. <pinref part="GND2" gate="1" pin="GND"/>
  6476. <wire x1="48.26" y1="12.7" x2="48.26" y2="7.62" width="0.1524" layer="91"/>
  6477. <pinref part="J1" gate="G$1" pin="2"/>
  6478. <label x="45.72" y="116.84" size="1.778" layer="95"/>
  6479. <pinref part="Q1" gate="G$1" pin="S"/>
  6480. <wire x1="48.26" y1="7.62" x2="48.26" y2="5.08" width="0.1524" layer="91"/>
  6481. <wire x1="50.8" y1="116.84" x2="35.56" y2="116.84" width="0.1524" layer="91"/>
  6482. <wire x1="35.56" y1="116.84" x2="35.56" y2="124.46" width="0.1524" layer="91"/>
  6483. <wire x1="35.56" y1="124.46" x2="27.94" y2="124.46" width="0.1524" layer="91"/>
  6484. <wire x1="27.94" y1="124.46" x2="15.24" y2="124.46" width="0.1524" layer="91"/>
  6485. <wire x1="15.24" y1="124.46" x2="15.24" y2="116.84" width="0.1524" layer="91"/>
  6486. <wire x1="27.94" y1="121.92" x2="27.94" y2="124.46" width="0.1524" layer="91"/>
  6487. <junction x="27.94" y="124.46"/>
  6488. <wire x1="15.24" y1="124.46" x2="5.08" y2="124.46" width="0.1524" layer="91"/>
  6489. <junction x="15.24" y="124.46"/>
  6490. <wire x1="5.08" y1="124.46" x2="5.08" y2="73.66" width="0.1524" layer="91"/>
  6491. <wire x1="5.08" y1="73.66" x2="5.08" y2="55.88" width="0.1524" layer="91"/>
  6492. <wire x1="5.08" y1="55.88" x2="5.08" y2="7.62" width="0.1524" layer="91"/>
  6493. <wire x1="5.08" y1="7.62" x2="48.26" y2="7.62" width="0.1524" layer="91"/>
  6494. <junction x="48.26" y="7.62"/>
  6495. <wire x1="25.4" y1="81.28" x2="25.4" y2="73.66" width="0.1524" layer="91"/>
  6496. <label x="25.4" y="76.2" size="1.778" layer="95"/>
  6497. <wire x1="25.4" y1="73.66" x2="5.08" y2="73.66" width="0.1524" layer="91"/>
  6498. <junction x="5.08" y="73.66"/>
  6499. <pinref part="R6" gate="G$1" pin="2"/>
  6500. <pinref part="R7" gate="G$1" pin="1"/>
  6501. <pinref part="R3" gate="G$1" pin="1"/>
  6502. <wire x1="182.88" y1="68.58" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
  6503. <wire x1="182.88" y1="66.04" x2="160.02" y2="66.04" width="0.1524" layer="91"/>
  6504. <pinref part="J4" gate="G$1" pin="1"/>
  6505. <junction x="182.88" y="66.04"/>
  6506. <pinref part="C3" gate="G$1" pin="-"/>
  6507. <wire x1="187.96" y1="66.04" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
  6508. <wire x1="160.02" y1="66.04" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
  6509. <wire x1="101.6" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
  6510. <wire x1="91.44" y1="66.04" x2="91.44" y2="114.3" width="0.1524" layer="91"/>
  6511. <pinref part="D1" gate="G$1" pin="A"/>
  6512. <wire x1="152.4" y1="132.08" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
  6513. <wire x1="200.66" y1="132.08" x2="223.52" y2="132.08" width="0.1524" layer="91"/>
  6514. <pinref part="J3" gate="G$1" pin="2"/>
  6515. <wire x1="187.96" y1="91.44" x2="187.96" y2="66.04" width="0.1524" layer="91"/>
  6516. <wire x1="160.02" y1="99.06" x2="160.02" y2="101.6" width="0.1524" layer="91"/>
  6517. <wire x1="147.32" y1="99.06" x2="160.02" y2="99.06" width="0.1524" layer="91"/>
  6518. <junction x="160.02" y="99.06"/>
  6519. <label x="147.32" y="99.06" size="1.778" layer="95"/>
  6520. <wire x1="160.02" y1="99.06" x2="160.02" y2="66.04" width="0.1524" layer="91"/>
  6521. <junction x="160.02" y="66.04"/>
  6522. <label x="203.2" y="119.38" size="1.778" layer="95"/>
  6523. <pinref part="D2" gate="D$1" pin="P$2"/>
  6524. <wire x1="78.74" y1="109.22" x2="78.74" y2="66.04" width="0.1524" layer="91"/>
  6525. <wire x1="78.74" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
  6526. <junction x="91.44" y="66.04"/>
  6527. <wire x1="48.26" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
  6528. <wire x1="78.74" y1="7.62" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
  6529. <pinref part="R8" gate="G$1" pin="2"/>
  6530. <wire x1="5.08" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
  6531. <junction x="5.08" y="55.88"/>
  6532. <wire x1="200.66" y1="119.38" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
  6533. <junction x="200.66" y="132.08"/>
  6534. <wire x1="208.28" y1="119.38" x2="200.66" y2="119.38" width="0.1524" layer="91"/>
  6535. <wire x1="223.52" y1="132.08" x2="223.52" y2="33.02" width="0.1524" layer="91"/>
  6536. <wire x1="223.52" y1="33.02" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
  6537. <wire x1="116.84" y1="99.06" x2="101.6" y2="99.06" width="0.1524" layer="91"/>
  6538. <wire x1="101.6" y1="99.06" x2="101.6" y2="104.14" width="0.1524" layer="91"/>
  6539. <wire x1="101.6" y1="104.14" x2="104.14" y2="104.14" width="0.1524" layer="91"/>
  6540. <pinref part="C2" gate="G$1" pin="1"/>
  6541. <wire x1="101.6" y1="99.06" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
  6542. <junction x="101.6" y="99.06"/>
  6543. <junction x="101.6" y="66.04"/>
  6544. <label x="111.76" y="99.06" size="1.778" layer="95"/>
  6545. <wire x1="78.74" y1="66.04" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
  6546. <junction x="78.74" y="66.04"/>
  6547. <junction x="78.74" y="33.02"/>
  6548. <pinref part="C4" gate="G$1" pin="P$2"/>
  6549. <pinref part="U$1" gate="G$1" pin="SGND"/>
  6550. <pinref part="U$1" gate="G$1" pin="GND"/>
  6551. </segment>
  6552. </net>
  6553. <net name="VIN" class="0">
  6554. <segment>
  6555. <pinref part="Q2" gate="G$1" pin="D"/>
  6556. <wire x1="48.26" y1="50.8" x2="48.26" y2="58.42" width="0.1524" layer="91"/>
  6557. <label x="53.34" y="53.34" size="1.778" layer="95"/>
  6558. <wire x1="147.32" y1="104.14" x2="154.94" y2="104.14" width="0.1524" layer="91"/>
  6559. <wire x1="182.88" y1="116.84" x2="182.88" y2="106.68" width="0.1524" layer="91"/>
  6560. <pinref part="R1" gate="G$1" pin="1"/>
  6561. <pinref part="J4" gate="G$1" pin="2"/>
  6562. <wire x1="182.88" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6563. <junction x="182.88" y="116.84"/>
  6564. <wire x1="205.74" y1="116.84" x2="208.28" y2="116.84" width="0.1524" layer="91"/>
  6565. <wire x1="154.94" y1="104.14" x2="154.94" y2="116.84" width="0.1524" layer="91"/>
  6566. <wire x1="154.94" y1="116.84" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
  6567. <wire x1="160.02" y1="116.84" x2="182.88" y2="116.84" width="0.1524" layer="91"/>
  6568. <wire x1="160.02" y1="113.03" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
  6569. <junction x="160.02" y="116.84"/>
  6570. <label x="203.2" y="116.84" size="1.778" layer="95"/>
  6571. <wire x1="48.26" y1="58.42" x2="205.74" y2="58.42" width="0.1524" layer="91"/>
  6572. <wire x1="205.74" y1="58.42" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6573. <junction x="205.74" y="116.84"/>
  6574. <pinref part="C4" gate="G$1" pin="P$1"/>
  6575. <label x="147.32" y="104.14" size="1.778" layer="95"/>
  6576. <pinref part="U$1" gate="G$1" pin="VIN"/>
  6577. </segment>
  6578. </net>
  6579. <net name="N$1" class="0">
  6580. <segment>
  6581. <wire x1="116.84" y1="109.22" x2="114.3" y2="109.22" width="0.1524" layer="91"/>
  6582. <wire x1="114.3" y1="109.22" x2="114.3" y2="124.46" width="0.1524" layer="91"/>
  6583. <pinref part="C1" gate="G$1" pin="1"/>
  6584. <wire x1="114.3" y1="124.46" x2="127" y2="124.46" width="0.1524" layer="91"/>
  6585. <pinref part="U$1" gate="G$1" pin="BST"/>
  6586. </segment>
  6587. </net>
  6588. <net name="N$2" class="0">
  6589. <segment>
  6590. <pinref part="C1" gate="G$1" pin="2"/>
  6591. <wire x1="134.62" y1="124.46" x2="137.16" y2="124.46" width="0.1524" layer="91"/>
  6592. <wire x1="137.16" y1="124.46" x2="149.86" y2="124.46" width="0.1524" layer="91"/>
  6593. <wire x1="149.86" y1="124.46" x2="149.86" y2="109.22" width="0.1524" layer="91"/>
  6594. <wire x1="149.86" y1="109.22" x2="147.32" y2="109.22" width="0.1524" layer="91"/>
  6595. <wire x1="137.16" y1="132.08" x2="137.16" y2="124.46" width="0.1524" layer="91"/>
  6596. <junction x="137.16" y="124.46"/>
  6597. <pinref part="D1" gate="G$1" pin="C"/>
  6598. <wire x1="147.32" y1="132.08" x2="137.16" y2="132.08" width="0.1524" layer="91"/>
  6599. <wire x1="137.16" y1="132.08" x2="127" y2="132.08" width="0.1524" layer="91"/>
  6600. <junction x="137.16" y="132.08"/>
  6601. <pinref part="L1" gate="G$1" pin="1"/>
  6602. <pinref part="U$1" gate="G$1" pin="LX"/>
  6603. </segment>
  6604. </net>
  6605. <net name="12V" class="0">
  6606. <segment>
  6607. <pinref part="L1" gate="G$1" pin="2"/>
  6608. <wire x1="111.76" y1="132.08" x2="99.06" y2="132.08" width="0.1524" layer="91"/>
  6609. <wire x1="99.06" y1="132.08" x2="99.06" y2="93.98" width="0.1524" layer="91"/>
  6610. <wire x1="99.06" y1="93.98" x2="116.84" y2="93.98" width="0.1524" layer="91"/>
  6611. <wire x1="99.06" y1="132.08" x2="91.44" y2="132.08" width="0.1524" layer="91"/>
  6612. <junction x="99.06" y="132.08"/>
  6613. <wire x1="91.44" y1="132.08" x2="91.44" y2="121.92" width="0.1524" layer="91"/>
  6614. <junction x="91.44" y="132.08"/>
  6615. <pinref part="C3" gate="G$1" pin="+"/>
  6616. <label x="86.36" y="132.08" size="1.778" layer="95"/>
  6617. <pinref part="J1" gate="G$1" pin="1"/>
  6618. <wire x1="50.8" y1="119.38" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
  6619. <label x="45.72" y="119.38" size="1.778" layer="95"/>
  6620. <wire x1="91.44" y1="132.08" x2="78.74" y2="132.08" width="0.1524" layer="91"/>
  6621. <wire x1="78.74" y1="132.08" x2="40.64" y2="132.08" width="0.1524" layer="91"/>
  6622. <wire x1="40.64" y1="132.08" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
  6623. <pinref part="D2" gate="D$1" pin="P$1"/>
  6624. <wire x1="78.74" y1="132.08" x2="78.74" y2="124.46" width="0.1524" layer="91"/>
  6625. <junction x="78.74" y="132.08"/>
  6626. <pinref part="U$1" gate="G$1" pin="FB"/>
  6627. </segment>
  6628. </net>
  6629. <net name="N$4" class="0">
  6630. <segment>
  6631. <pinref part="C2" gate="G$1" pin="2"/>
  6632. <wire x1="111.76" y1="104.14" x2="116.84" y2="104.14" width="0.1524" layer="91"/>
  6633. <pinref part="U$1" gate="G$1" pin="VD"/>
  6634. </segment>
  6635. </net>
  6636. <net name="N$5" class="0">
  6637. <segment>
  6638. <wire x1="147.32" y1="93.98" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
  6639. <pinref part="R1" gate="G$1" pin="2"/>
  6640. <wire x1="182.88" y1="96.52" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
  6641. <wire x1="182.88" y1="93.98" x2="182.88" y2="91.44" width="0.1524" layer="91"/>
  6642. <junction x="182.88" y="93.98"/>
  6643. <pinref part="R2" gate="G$1" pin="1"/>
  6644. <pinref part="J3" gate="G$1" pin="1"/>
  6645. <wire x1="182.88" y1="93.98" x2="187.96" y2="93.98" width="0.1524" layer="91"/>
  6646. <pinref part="U$1" gate="G$1" pin="ON/OFF"/>
  6647. </segment>
  6648. </net>
  6649. <net name="N$7" class="0">
  6650. <segment>
  6651. <pinref part="R2" gate="G$1" pin="2"/>
  6652. <pinref part="R3" gate="G$1" pin="2"/>
  6653. <wire x1="182.88" y1="81.28" x2="182.88" y2="78.74" width="0.1524" layer="91"/>
  6654. </segment>
  6655. </net>
  6656. <net name="SPIN" class="0">
  6657. <segment>
  6658. <pinref part="J5" gate="G$1" pin="1"/>
  6659. <wire x1="50.8" y1="88.9" x2="43.18" y2="88.9" width="0.1524" layer="91"/>
  6660. <pinref part="J1" gate="G$1" pin="8"/>
  6661. <wire x1="43.18" y1="88.9" x2="43.18" y2="101.6" width="0.1524" layer="91"/>
  6662. <wire x1="43.18" y1="101.6" x2="50.8" y2="101.6" width="0.1524" layer="91"/>
  6663. <label x="45.72" y="88.9" size="1.778" layer="95"/>
  6664. </segment>
  6665. </net>
  6666. <net name="SPOUT" class="0">
  6667. <segment>
  6668. <pinref part="J5" gate="G$1" pin="2"/>
  6669. <wire x1="50.8" y1="86.36" x2="40.64" y2="86.36" width="0.1524" layer="91"/>
  6670. <pinref part="J1" gate="G$1" pin="7"/>
  6671. <wire x1="40.64" y1="86.36" x2="40.64" y2="104.14" width="0.1524" layer="91"/>
  6672. <wire x1="40.64" y1="104.14" x2="50.8" y2="104.14" width="0.1524" layer="91"/>
  6673. <label x="43.18" y="86.36" size="1.778" layer="95"/>
  6674. </segment>
  6675. </net>
  6676. <net name="ST" class="0">
  6677. <segment>
  6678. <pinref part="J5" gate="G$1" pin="3"/>
  6679. <wire x1="50.8" y1="83.82" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6680. <label x="48.26" y="83.82" size="1.778" layer="95"/>
  6681. <pinref part="Q3" gate="G$1" pin="S"/>
  6682. <wire x1="33.02" y1="96.52" x2="33.02" y2="99.06" width="0.1524" layer="91"/>
  6683. <wire x1="33.02" y1="99.06" x2="38.1" y2="99.06" width="0.1524" layer="91"/>
  6684. <wire x1="38.1" y1="99.06" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6685. </segment>
  6686. </net>
  6687. <net name="5V" class="0">
  6688. <segment>
  6689. <pinref part="J5" gate="G$1" pin="4"/>
  6690. <wire x1="50.8" y1="81.28" x2="40.64" y2="81.28" width="0.1524" layer="91"/>
  6691. <wire x1="40.64" y1="81.28" x2="40.64" y2="68.58" width="0.1524" layer="91"/>
  6692. <pinref part="J2" gate="G$1" pin="1"/>
  6693. <wire x1="40.64" y1="68.58" x2="50.8" y2="68.58" width="0.1524" layer="91"/>
  6694. <label x="48.26" y="81.28" size="1.778" layer="95"/>
  6695. <pinref part="Q3" gate="G$1" pin="D"/>
  6696. <wire x1="33.02" y1="86.36" x2="33.02" y2="81.28" width="0.1524" layer="91"/>
  6697. <wire x1="33.02" y1="81.28" x2="40.64" y2="81.28" width="0.1524" layer="91"/>
  6698. <junction x="40.64" y="81.28"/>
  6699. </segment>
  6700. </net>
  6701. <net name="N$3" class="0">
  6702. <segment>
  6703. <pinref part="Q1" gate="G$1" pin="D"/>
  6704. <wire x1="15.24" y1="106.68" x2="15.24" y2="66.04" width="0.1524" layer="91"/>
  6705. <pinref part="J2" gate="G$1" pin="2"/>
  6706. <wire x1="15.24" y1="66.04" x2="50.8" y2="66.04" width="0.1524" layer="91"/>
  6707. </segment>
  6708. </net>
  6709. <net name="STLEDCTL" class="0">
  6710. <segment>
  6711. <pinref part="Q1" gate="G$1" pin="G"/>
  6712. <wire x1="20.32" y1="114.3" x2="22.86" y2="114.3" width="0.1524" layer="91"/>
  6713. <wire x1="22.86" y1="114.3" x2="22.86" y2="109.22" width="0.1524" layer="91"/>
  6714. <pinref part="J1" gate="G$1" pin="5"/>
  6715. <wire x1="22.86" y1="109.22" x2="27.94" y2="109.22" width="0.1524" layer="91"/>
  6716. <label x="38.1" y="109.22" size="1.778" layer="95"/>
  6717. <wire x1="27.94" y1="109.22" x2="50.8" y2="109.22" width="0.1524" layer="91"/>
  6718. <wire x1="27.94" y1="111.76" x2="27.94" y2="109.22" width="0.1524" layer="91"/>
  6719. <junction x="27.94" y="109.22"/>
  6720. <pinref part="R6" gate="G$1" pin="1"/>
  6721. </segment>
  6722. </net>
  6723. <net name="PWM" class="0">
  6724. <segment>
  6725. <pinref part="Q2" gate="G$1" pin="G"/>
  6726. <wire x1="43.18" y1="43.18" x2="40.64" y2="43.18" width="0.1524" layer="91"/>
  6727. <label x="30.48" y="43.18" size="1.778" layer="95"/>
  6728. <pinref part="R8" gate="G$1" pin="1"/>
  6729. <wire x1="40.64" y1="43.18" x2="30.48" y2="43.18" width="0.1524" layer="91"/>
  6730. <wire x1="40.64" y1="55.88" x2="35.56" y2="55.88" width="0.1524" layer="91"/>
  6731. <wire x1="40.64" y1="55.88" x2="40.64" y2="43.18" width="0.1524" layer="91"/>
  6732. <junction x="40.64" y="43.18"/>
  6733. </segment>
  6734. <segment>
  6735. <pinref part="J1" gate="G$1" pin="4"/>
  6736. <wire x1="50.8" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
  6737. <label x="45.72" y="111.76" size="1.778" layer="95"/>
  6738. </segment>
  6739. </net>
  6740. <net name="BAT" class="0">
  6741. <segment>
  6742. <wire x1="48.26" y1="25.4" x2="30.48" y2="25.4" width="0.1524" layer="91"/>
  6743. <label x="30.48" y="25.4" size="1.778" layer="95"/>
  6744. <wire x1="48.26" y1="27.94" x2="48.26" y2="25.4" width="0.1524" layer="91"/>
  6745. <wire x1="48.26" y1="25.4" x2="48.26" y2="22.86" width="0.1524" layer="91"/>
  6746. <junction x="48.26" y="25.4"/>
  6747. <pinref part="R4" gate="G$1" pin="1"/>
  6748. <pinref part="R5" gate="G$1" pin="2"/>
  6749. </segment>
  6750. <segment>
  6751. <pinref part="J1" gate="G$1" pin="3"/>
  6752. <wire x1="50.8" y1="114.3" x2="40.64" y2="114.3" width="0.1524" layer="91"/>
  6753. <label x="45.72" y="114.3" size="1.778" layer="95"/>
  6754. </segment>
  6755. </net>
  6756. <net name="N$8" class="0">
  6757. <segment>
  6758. <pinref part="Q2" gate="G$1" pin="S"/>
  6759. <pinref part="R4" gate="G$1" pin="2"/>
  6760. <wire x1="48.26" y1="40.64" x2="48.26" y2="38.1" width="0.1524" layer="91"/>
  6761. </segment>
  6762. </net>
  6763. <net name="STOUT" class="0">
  6764. <segment>
  6765. <pinref part="J1" gate="G$1" pin="6"/>
  6766. <pinref part="Q3" gate="G$1" pin="G"/>
  6767. <wire x1="50.8" y1="106.68" x2="25.4" y2="106.68" width="0.1524" layer="91"/>
  6768. <wire x1="25.4" y1="106.68" x2="25.4" y2="93.98" width="0.1524" layer="91"/>
  6769. <wire x1="25.4" y1="93.98" x2="27.94" y2="93.98" width="0.1524" layer="91"/>
  6770. <label x="43.18" y="106.68" size="1.778" layer="95"/>
  6771. <wire x1="25.4" y1="93.98" x2="25.4" y2="91.44" width="0.1524" layer="91"/>
  6772. <junction x="25.4" y="93.98"/>
  6773. <pinref part="R7" gate="G$1" pin="2"/>
  6774. </segment>
  6775. </net>
  6776. </nets>
  6777. </sheet>
  6778. </sheets>
  6779. </schematic>
  6780. </drawing>
  6781. <compatibility>
  6782. <note version="8.2" severity="warning">
  6783. Since Version 8.2, EAGLE supports online libraries. The ids
  6784. of those online libraries will not be understood (or retained)
  6785. with this version.
  6786. </note>
  6787. <note version="8.3" severity="warning">
  6788. Since Version 8.3, EAGLE supports URNs for individual library
  6789. assets (packages, symbols, and devices). The URNs of those assets
  6790. will not be understood (or retained) with this version.
  6791. </note>
  6792. <note version="8.3" severity="warning">
  6793. Since Version 8.3, EAGLE supports the association of 3D packages
  6794. with devices in libraries, schematics, and board files. Those 3D
  6795. packages will not be understood (or retained) with this version.
  6796. </note>
  6797. <note version="8.4" severity="warning">
  6798. Since Version 8.4, EAGLE supports properties for SPICE simulation.
  6799. Probes in schematics and SPICE mapping objects found in parts and library devices
  6800. will not be understood with this version. Update EAGLE to the latest version
  6801. for full support of SPICE simulation.
  6802. </note>
  6803. </compatibility>
  6804. </eagle>