regulator.s#6 338 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="9.6.2">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  13. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  14. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  15. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  16. <layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/>
  17. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  18. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  19. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  20. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  21. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  22. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  23. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  24. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  25. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  26. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  27. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  28. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  29. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  30. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  31. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  32. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  33. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  34. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  35. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  36. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  37. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  38. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  39. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  40. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  41. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  42. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  43. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  44. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  45. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  46. <layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
  47. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
  50. <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
  51. <layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
  52. <layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
  53. <layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
  54. <layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/>
  56. <layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/>
  57. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  58. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  59. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  60. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  61. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  62. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  63. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  64. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  65. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  66. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  67. <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
  68. <layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
  69. <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
  71. <layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
  72. <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
  76. <layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
  77. <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
  78. <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
  79. <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
  80. <layer number="113" name="IDFDebug" color="4" fill="1" visible="yes" active="yes"/>
  81. <layer number="114" name="Badge_Outline" color="7" fill="1" visible="yes" active="yes"/>
  82. <layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/>
  83. <layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
  84. <layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
  85. <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
  86. <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
  87. <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
  88. <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
  89. <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
  90. <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
  91. <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
  92. <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
  93. <layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
  94. <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
  95. <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
  96. <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
  97. <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
  98. <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
  99. <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
  100. <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
  101. <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
  102. <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
  103. <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
  104. <layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
  105. <layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
  106. <layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
  107. <layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
  108. <layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
  109. <layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
  110. <layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
  111. <layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
  112. <layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
  113. <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
  114. <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
  115. <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
  116. <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
  117. <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
  118. <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
  119. <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
  120. <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
  121. <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
  122. <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
  123. <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
  124. <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
  125. <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
  126. <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
  127. <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
  128. <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
  129. <layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
  130. <layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
  131. <layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
  132. <layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
  133. <layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
  134. <layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
  135. <layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
  136. <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="yes" active="yes"/>
  137. <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="yes" active="yes"/>
  138. <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
  139. <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
  140. <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
  141. <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
  142. <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
  143. <layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
  144. </layers>
  145. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  146. <libraries>
  147. <library name="regulator">
  148. <packages>
  149. <package name="DIP8" urn="urn:adsk.eagle:footprint:4470/1">
  150. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; Gull Wing Surface Mount Optioon 300&lt;p&gt;
  151. Source: http://www.avagotech.com/docs/AV02-0410EN</description>
  152. <wire x1="-4.81" y1="-3.075" x2="4.81" y2="-3.075" width="0.2032" layer="51"/>
  153. <wire x1="4.81" y1="-3.075" x2="4.81" y2="3.075" width="0.2032" layer="21"/>
  154. <wire x1="4.81" y1="3.075" x2="-4.81" y2="3.075" width="0.2032" layer="51"/>
  155. <wire x1="-4.81" y1="3.075" x2="-4.81" y2="-3.075" width="0.2032" layer="21"/>
  156. <circle x="-3.81" y="-2.159" radius="0.3667" width="0" layer="21"/>
  157. <smd name="1" x="-3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  158. <smd name="2" x="-1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  159. <smd name="3" x="1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  160. <smd name="4" x="3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  161. <smd name="5" x="3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  162. <smd name="6" x="1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  163. <smd name="7" x="-1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  164. <smd name="8" x="-3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  165. <text x="-5.635" y="-3.1351" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  166. <text x="6.905" y="-4.4051" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  167. <rectangle x1="-4.0899" y1="-4.825" x2="-3.5301" y2="-3.81" layer="51"/>
  168. <rectangle x1="-1.5499" y1="-4.825" x2="-0.9901" y2="-3.81" layer="51"/>
  169. <rectangle x1="0.9901" y1="-4.825" x2="1.5499" y2="-3.81" layer="51"/>
  170. <rectangle x1="3.5301" y1="-4.825" x2="4.0899" y2="-3.81" layer="51"/>
  171. <rectangle x1="3.5301" y1="3.81" x2="4.0899" y2="4.825" layer="51"/>
  172. <rectangle x1="0.9901" y1="3.81" x2="1.5499" y2="4.825" layer="51"/>
  173. <rectangle x1="-1.5499" y1="3.81" x2="-0.9901" y2="4.825" layer="51"/>
  174. <rectangle x1="-4.0899" y1="3.81" x2="-3.5301" y2="4.825" layer="51"/>
  175. <rectangle x1="-2.15" y1="3.1" x2="-0.4" y2="3.81" layer="51" rot="R180"/>
  176. <rectangle x1="-4.1" y1="3.1" x2="-2.94" y2="3.81" layer="51" rot="R180"/>
  177. <rectangle x1="0.39" y1="3.1" x2="2.14" y2="3.81" layer="51" rot="R180"/>
  178. <rectangle x1="2.93" y1="3.1" x2="4.1" y2="3.81" layer="51" rot="R180"/>
  179. <rectangle x1="-4.075" y1="-3.81" x2="-2.93" y2="-3.1" layer="51"/>
  180. <rectangle x1="-2.14" y1="-3.81" x2="-0.39" y2="-3.1" layer="51"/>
  181. <rectangle x1="0.4" y1="-3.81" x2="2.15" y2="-3.1" layer="51"/>
  182. <rectangle x1="2.94" y1="-3.81" x2="4.1" y2="-3.1" layer="51"/>
  183. </package>
  184. </packages>
  185. <packages3d>
  186. <package3d name="DIP8" urn="urn:adsk.eagle:package:8089856/1" locally_modified="yes" type="box">
  187. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; &lt;p&gt;
  188. dual in line package'</description>
  189. <packageinstances>
  190. <packageinstance name="DIP8"/>
  191. </packageinstances>
  192. </package3d>
  193. </packages3d>
  194. <symbols>
  195. <symbol name="MX5035">
  196. <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>
  197. <wire x1="-10.16" y1="12.7" x2="10.16" y2="12.7" width="0.254" layer="94"/>
  198. <wire x1="10.16" y1="12.7" x2="10.16" y2="-12.7" width="0.254" layer="94"/>
  199. <wire x1="10.16" y1="-12.7" x2="-10.16" y2="-12.7" width="0.254" layer="94"/>
  200. <wire x1="-10.16" y1="-12.7" x2="-10.16" y2="12.7" width="0.254" layer="94"/>
  201. <pin name="BST" x="-15.24" y="7.62" length="middle" direction="in"/>
  202. <pin name="VD" x="-15.24" y="2.54" length="middle" direction="in"/>
  203. <pin name="SGND" x="-15.24" y="-2.54" length="middle" direction="in"/>
  204. <pin name="FB" x="-15.24" y="-7.62" length="middle" direction="in"/>
  205. <pin name="ON/OFF" x="15.24" y="-7.62" length="middle" direction="in" rot="R180"/>
  206. <pin name="GND" x="15.24" y="-2.54" length="middle" direction="pwr" rot="R180"/>
  207. <pin name="VIN" x="15.24" y="2.54" length="middle" direction="pwr" rot="R180"/>
  208. <pin name="LX" x="15.24" y="7.62" length="middle" direction="pwr" rot="R180"/>
  209. <text x="-10.16" y="15.24" size="1.778" layer="95">&gt;NAME</text>
  210. <text x="-10.16" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  211. </symbol>
  212. </symbols>
  213. <devicesets>
  214. <deviceset name="MAX5035">
  215. <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>
  216. <gates>
  217. <gate name="G$1" symbol="MX5035" x="0" y="0"/>
  218. </gates>
  219. <devices>
  220. <device name="DIP8" package="DIP8">
  221. <connects>
  222. <connect gate="G$1" pin="BST" pad="1"/>
  223. <connect gate="G$1" pin="FB" pad="4"/>
  224. <connect gate="G$1" pin="GND" pad="6"/>
  225. <connect gate="G$1" pin="LX" pad="8"/>
  226. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  227. <connect gate="G$1" pin="SGND" pad="3"/>
  228. <connect gate="G$1" pin="VD" pad="2"/>
  229. <connect gate="G$1" pin="VIN" pad="7"/>
  230. </connects>
  231. <package3dinstances>
  232. <package3dinstance package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  233. </package3dinstances>
  234. <technologies>
  235. <technology name=""/>
  236. </technologies>
  237. </device>
  238. </devices>
  239. </deviceset>
  240. </devicesets>
  241. </library>
  242. <library name="Connectors" urn="urn:adsk.eagle:library:14555660">
  243. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Connectors&lt;/i&gt;&lt;/h3&gt;
  244. 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.
  245. &lt;BR&gt;
  246. &lt;BR&gt;
  247. 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;.
  248. &lt;BR&gt;
  249. &lt;BR&gt;
  250. 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>
  251. <packages>
  252. <package name="HDR-02" urn="urn:adsk.eagle:footprint:10989906/1" library_version="1">
  253. <pad name="1" x="-1.98" y="0" drill="1.65" shape="square"/>
  254. <pad name="2" x="1.98" y="0" drill="1.65"/>
  255. <wire x1="-3.93" y1="2" x2="-3.93" y2="-6.5" width="0.254" layer="51"/>
  256. <wire x1="-3.93" y1="-6.5" x2="3.93" y2="-6.5" width="0.254" layer="51"/>
  257. <wire x1="3.93" y1="-6.5" x2="3.93" y2="2" width="0.254" layer="51"/>
  258. <wire x1="3.93" y1="2" x2="-3.93" y2="2" width="0.254" layer="51"/>
  259. <wire x1="-3.93" y1="2" x2="-3.93" y2="-6.5" width="0.254" layer="21"/>
  260. <wire x1="-3.93" y1="-6.5" x2="3.93" y2="-6.5" width="0.254" layer="21"/>
  261. <wire x1="3.93" y1="-6.5" x2="3.93" y2="2" width="0.254" layer="21"/>
  262. <wire x1="3.93" y1="2" x2="-3.93" y2="2" width="0.254" layer="21"/>
  263. <wire x1="-4.18" y1="2.25" x2="4.18" y2="2.25" width="0.05" layer="39"/>
  264. <wire x1="4.18" y1="2.25" x2="4.18" y2="-6.75" width="0.05" layer="39"/>
  265. <wire x1="4.18" y1="-6.75" x2="-4.18" y2="-6.75" width="0.05" layer="39"/>
  266. <wire x1="-4.18" y1="-6.75" x2="-4.18" y2="2.25" width="0.05" layer="39"/>
  267. <circle x="-4.5" y="0.25" radius="0.1" width="0.2" layer="21"/>
  268. <text x="-3.81" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  269. <text x="-3.81" y="-8.89" size="1.27" layer="27">&gt;VALUE</text>
  270. </package>
  271. </packages>
  272. <packages3d>
  273. <package3d name="HDR-02" urn="urn:adsk.eagle:package:10989917/2" type="model" library_version="1">
  274. <packageinstances>
  275. <packageinstance name="HDR-02"/>
  276. </packageinstances>
  277. </package3d>
  278. </packages3d>
  279. <symbols>
  280. <symbol name="B2P-VH(LF)(SN)" urn="urn:adsk.eagle:symbol:10990964/1" library_version="1">
  281. <pin name="1" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" rot="R180"/>
  282. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" rot="R180"/>
  283. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  284. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  285. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  286. <wire x1="-2.54" y1="-2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  287. <wire x1="2.54" y1="-2.54" x2="2.54" y2="5.08" width="0.254" layer="94"/>
  288. <wire x1="2.54" y1="5.08" x2="-2.54" y2="5.08" width="0.254" layer="94"/>
  289. <text x="-2.54" y="5.842" size="1.778" layer="95">&gt;NAME</text>
  290. <text x="-2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  291. </symbol>
  292. </symbols>
  293. <devicesets>
  294. <deviceset name="B2P-VH(LF)(SN)" urn="urn:adsk.eagle:component:10990998/4" prefix="J" library_version="1">
  295. <description>&lt;h3&gt; CONN HEADER VERT 2POS 3.96MM &lt;/h3&gt;
  296. &lt;BR&gt;
  297. &lt;a href="http://www.jst-mfg.com/product/pdf/eng/eVH.pdf"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  298. <gates>
  299. <gate name="G$1" symbol="B2P-VH(LF)(SN)" x="0" y="-2.54"/>
  300. </gates>
  301. <devices>
  302. <device name="" package="HDR-02">
  303. <connects>
  304. <connect gate="G$1" pin="1" pad="1"/>
  305. <connect gate="G$1" pin="2" pad="2"/>
  306. </connects>
  307. <package3dinstances>
  308. <package3dinstance package3d_urn="urn:adsk.eagle:package:10989917/2"/>
  309. </package3dinstances>
  310. <technologies>
  311. <technology name="">
  312. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  313. <attribute name="DIGIKEY_PART_NUMBER" value="455-1639-ND" constant="no"/>
  314. <attribute name="MANUFACTURER" value="JST Sales America Inc." constant="no"/>
  315. <attribute name="MPN" value="B2P-VH(LF)(SN)" constant="no"/>
  316. </technology>
  317. </technologies>
  318. </device>
  319. </devices>
  320. </deviceset>
  321. </devicesets>
  322. </library>
  323. <library name="Capacitor" urn="urn:adsk.eagle:library:16290819">
  324. <description>&lt;B&gt;Capacitors - Fixed, Variable, Trimmers</description>
  325. <packages>
  326. <package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/2" library_version="4">
  327. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  328. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  329. <wire x1="0.55" y1="0.6286" x2="-0.55" y2="0.6286" width="0.127" layer="21"/>
  330. <wire x1="0.55" y1="-0.6286" x2="-0.55" y2="-0.6286" width="0.127" layer="21"/>
  331. <wire x1="0.55" y1="-0.3" x2="-0.55" y2="-0.3" width="0.12" layer="51"/>
  332. <wire x1="-0.55" y1="-0.3" x2="-0.55" y2="0.3" width="0.12" layer="51"/>
  333. <wire x1="-0.55" y1="0.3" x2="0.55" y2="0.3" width="0.12" layer="51"/>
  334. <wire x1="0.55" y1="0.3" x2="0.55" y2="-0.3" width="0.12" layer="51"/>
  335. <smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  336. <smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  337. <text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  338. <text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  339. </package>
  340. <package name="CAPC1110X102" urn="urn:adsk.eagle:footprint:16290845/2" library_version="4">
  341. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  342. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  343. <wire x1="0.66" y1="0.9552" x2="-0.66" y2="0.9552" width="0.127" layer="21"/>
  344. <wire x1="0.66" y1="-0.9552" x2="-0.66" y2="-0.9552" width="0.127" layer="21"/>
  345. <wire x1="0.66" y1="-0.635" x2="-0.66" y2="-0.635" width="0.12" layer="51"/>
  346. <wire x1="-0.66" y1="-0.635" x2="-0.66" y2="0.635" width="0.12" layer="51"/>
  347. <wire x1="-0.66" y1="0.635" x2="0.66" y2="0.635" width="0.12" layer="51"/>
  348. <wire x1="0.66" y1="0.635" x2="0.66" y2="-0.635" width="0.12" layer="51"/>
  349. <smd name="1" x="-0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  350. <smd name="2" x="0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  351. <text x="0" y="1.5902" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  352. <text x="0" y="-1.5902" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  353. </package>
  354. <package name="CAPC1608X85" urn="urn:adsk.eagle:footprint:16290847/2" library_version="4">
  355. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  356. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  357. <wire x1="0.875" y1="0.7991" x2="-0.875" y2="0.7991" width="0.127" layer="21"/>
  358. <wire x1="0.875" y1="-0.7991" x2="-0.875" y2="-0.7991" width="0.127" layer="21"/>
  359. <wire x1="0.875" y1="-0.475" x2="-0.875" y2="-0.475" width="0.12" layer="51"/>
  360. <wire x1="-0.875" y1="-0.475" x2="-0.875" y2="0.475" width="0.12" layer="51"/>
  361. <wire x1="-0.875" y1="0.475" x2="0.875" y2="0.475" width="0.12" layer="51"/>
  362. <wire x1="0.875" y1="0.475" x2="0.875" y2="-0.475" width="0.12" layer="51"/>
  363. <smd name="1" x="-0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  364. <smd name="2" x="0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  365. <text x="0" y="1.4341" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  366. <text x="0" y="-1.4341" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  367. </package>
  368. <package name="CAPC2012X110" urn="urn:adsk.eagle:footprint:16290848/2" library_version="4">
  369. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  370. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  371. <wire x1="1.1" y1="1.0467" x2="-1.1" y2="1.0467" width="0.127" layer="21"/>
  372. <wire x1="1.1" y1="-1.0467" x2="-1.1" y2="-1.0467" width="0.127" layer="21"/>
  373. <wire x1="1.1" y1="-0.725" x2="-1.1" y2="-0.725" width="0.12" layer="51"/>
  374. <wire x1="-1.1" y1="-0.725" x2="-1.1" y2="0.725" width="0.12" layer="51"/>
  375. <wire x1="-1.1" y1="0.725" x2="1.1" y2="0.725" width="0.12" layer="51"/>
  376. <wire x1="1.1" y1="0.725" x2="1.1" y2="-0.725" width="0.12" layer="51"/>
  377. <smd name="1" x="-0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  378. <smd name="2" x="0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  379. <text x="0" y="1.6817" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  380. <text x="0" y="-1.6817" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  381. </package>
  382. <package name="CAPC3216X135" urn="urn:adsk.eagle:footprint:16290836/2" library_version="4">
  383. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  384. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  385. <wire x1="1.7" y1="1.2217" x2="-1.7" y2="1.2217" width="0.127" layer="21"/>
  386. <wire x1="1.7" y1="-1.2217" x2="-1.7" y2="-1.2217" width="0.127" layer="21"/>
  387. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  388. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  389. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  390. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  391. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  392. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  393. <text x="0" y="1.8567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  394. <text x="0" y="-1.8567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  395. </package>
  396. <package name="CAPC3225X135" urn="urn:adsk.eagle:footprint:16290843/2" library_version="4">
  397. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  398. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  399. <wire x1="1.7" y1="1.6717" x2="-1.7" y2="1.6717" width="0.127" layer="21"/>
  400. <wire x1="1.7" y1="-1.6717" x2="-1.7" y2="-1.6717" width="0.12" layer="21"/>
  401. <wire x1="1.7" y1="-1.35" x2="-1.7" y2="-1.35" width="0.12" layer="51"/>
  402. <wire x1="-1.7" y1="-1.35" x2="-1.7" y2="1.35" width="0.12" layer="51"/>
  403. <wire x1="-1.7" y1="1.35" x2="1.7" y2="1.35" width="0.12" layer="51"/>
  404. <wire x1="1.7" y1="1.35" x2="1.7" y2="-1.35" width="0.12" layer="51"/>
  405. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  406. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  407. <text x="0" y="2.3067" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  408. <text x="0" y="-2.3067" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  409. </package>
  410. <package name="CAPC4532X135" urn="urn:adsk.eagle:footprint:16290841/2" library_version="4">
  411. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  412. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  413. <wire x1="2.4" y1="2.0217" x2="-2.4" y2="2.0217" width="0.127" layer="21"/>
  414. <wire x1="2.4" y1="-2.0217" x2="-2.4" y2="-2.0217" width="0.127" layer="21"/>
  415. <wire x1="2.4" y1="-1.7" x2="-2.4" y2="-1.7" width="0.12" layer="51"/>
  416. <wire x1="-2.4" y1="-1.7" x2="-2.4" y2="1.7" width="0.12" layer="51"/>
  417. <wire x1="-2.4" y1="1.7" x2="2.4" y2="1.7" width="0.12" layer="51"/>
  418. <wire x1="2.4" y1="1.7" x2="2.4" y2="-1.7" width="0.12" layer="51"/>
  419. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  420. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  421. <text x="0" y="2.6567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  422. <text x="0" y="-2.6567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  423. </package>
  424. <package name="CAPM3216X180" urn="urn:adsk.eagle:footprint:16290835/2" library_version="4">
  425. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  426. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  427. <wire x1="-1.7" y1="0.9084" x2="1.7" y2="0.9084" width="0.127" layer="21"/>
  428. <wire x1="-1.7" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.127" layer="21"/>
  429. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  430. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  431. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  432. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  433. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  434. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  435. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  436. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  437. </package>
  438. <package name="CAPM3528X210" urn="urn:adsk.eagle:footprint:16290844/2" library_version="4">
  439. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  440. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  441. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.127" layer="21"/>
  442. <wire x1="-1.85" y1="-1.5" x2="1.85" y2="-1.5" width="0.127" layer="21"/>
  443. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  444. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  445. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  446. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  447. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  448. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  449. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  450. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  451. </package>
  452. <package name="CAPM6032X280" urn="urn:adsk.eagle:footprint:16290839/2" library_version="4">
  453. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  454. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  455. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.127" layer="21"/>
  456. <wire x1="-3.15" y1="-1.75" x2="3.15" y2="-1.75" width="0.127" layer="21"/>
  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. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  460. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  461. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  462. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  463. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  464. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  465. </package>
  466. <package name="CAPM7343X310" urn="urn:adsk.eagle:footprint:16290840/2" library_version="4">
  467. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  468. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  469. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.127" layer="21"/>
  470. <wire x1="-3.8" y1="-2.3" x2="3.8" y2="-2.3" width="0.127" layer="21"/>
  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. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  475. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  476. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  477. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  478. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  479. </package>
  480. <package name="CAPC4564X110" urn="urn:adsk.eagle:footprint:16290837/2" library_version="4">
  481. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  482. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  483. <wire x1="2.4" y1="3.7179" x2="-2.4" y2="3.7179" width="0.127" layer="21"/>
  484. <wire x1="2.4" y1="-3.7179" x2="-2.4" y2="-3.7179" width="0.127" layer="21"/>
  485. <wire x1="2.4" y1="-3.4" x2="-2.4" y2="-3.4" width="0.12" layer="51"/>
  486. <wire x1="-2.4" y1="-3.4" x2="-2.4" y2="3.4" width="0.12" layer="51"/>
  487. <wire x1="-2.4" y1="3.4" x2="2.4" y2="3.4" width="0.12" layer="51"/>
  488. <wire x1="2.4" y1="3.4" x2="2.4" y2="-3.4" width="0.12" layer="51"/>
  489. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  490. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  491. <text x="0" y="4.3529" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  492. <text x="0" y="-4.3529" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  493. </package>
  494. <package name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:footprint:16290829/2" library_version="4">
  495. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  496. &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>
  497. <circle x="0" y="0" radius="5.25" width="0.127" layer="21"/>
  498. <circle x="0" y="0" radius="5.25" width="0.12" layer="51"/>
  499. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  500. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  501. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  502. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  503. </package>
  504. <package name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:footprint:16290850/2" library_version="4">
  505. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  506. &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>
  507. <circle x="0" y="0" radius="25.79" width="0.127" layer="21"/>
  508. <circle x="0" y="0" radius="25.79" width="0.12" layer="51"/>
  509. <pad name="1" x="-11.305" y="0" drill="2.6" diameter="3.9"/>
  510. <pad name="2" x="11.305" y="0" drill="2.6" diameter="3.9"/>
  511. <text x="0" y="26.425" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  512. <text x="0" y="-26.425" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  513. </package>
  514. <package name="CAPMP3216X180N" urn="urn:adsk.eagle:footprint:16290838/1" library_version="4">
  515. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  516. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  517. <wire x1="1.7" y1="0.9084" x2="-2.5217" y2="0.9084" width="0.12" layer="21"/>
  518. <wire x1="-2.5217" y1="0.9084" x2="-2.5217" y2="-0.9084" width="0.12" layer="21"/>
  519. <wire x1="-2.5217" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.12" layer="21"/>
  520. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  521. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  522. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  523. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  524. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  525. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  526. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  527. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  528. </package>
  529. <package name="CAPMP3528X210N" urn="urn:adsk.eagle:footprint:16290842/1" library_version="4">
  530. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  531. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  532. <wire x1="1.85" y1="1.5" x2="-2.6717" y2="1.5" width="0.12" layer="21"/>
  533. <wire x1="-2.6717" y1="1.5" x2="-2.6717" y2="-1.5" width="0.12" layer="21"/>
  534. <wire x1="-2.6717" y1="-1.5" x2="1.85" y2="-1.5" width="0.12" layer="21"/>
  535. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  536. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  537. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  538. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  539. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  540. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  541. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  542. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  543. </package>
  544. <package name="CAPMP6032X280N" urn="urn:adsk.eagle:footprint:16290825/1" library_version="4">
  545. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  546. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  547. <wire x1="3.15" y1="1.75" x2="-3.9692" y2="1.75" width="0.12" layer="21"/>
  548. <wire x1="-3.9692" y1="1.75" x2="-3.9692" y2="-1.75" width="0.12" layer="21"/>
  549. <wire x1="-3.9692" y1="-1.75" x2="3.15" y2="-1.75" width="0.12" layer="21"/>
  550. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  551. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  552. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  553. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  554. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  555. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  556. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  557. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  558. </package>
  559. <package name="CAPMP7343X310N" urn="urn:adsk.eagle:footprint:16290846/1" library_version="4">
  560. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  561. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  562. <wire x1="3.8" y1="2.3" x2="-4.6192" y2="2.3" width="0.12" layer="21"/>
  563. <wire x1="-4.6192" y1="2.3" x2="-4.6192" y2="-2.3" width="0.12" layer="21"/>
  564. <wire x1="-4.6192" y1="-2.3" x2="3.8" y2="-2.3" width="0.12" layer="21"/>
  565. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  566. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  567. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  568. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  569. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  570. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  571. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  572. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  573. </package>
  574. <package name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:footprint:16290830/1" library_version="4">
  575. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  576. &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>
  577. <circle x="0" y="0" radius="5" width="0.12" layer="21"/>
  578. <circle x="0" y="0" radius="5" width="0.12" layer="51"/>
  579. <wire x1="-4.1325" y1="4.1326" x2="-3.3825" y2="4.1326" width="0.12" layer="21"/>
  580. <wire x1="-3.7575" y1="4.5076" x2="-3.7575" y2="3.7576" width="0.12" layer="21"/>
  581. <pad name="1" x="-2.54" y="0" drill="0.85" diameter="1.45"/>
  582. <pad name="2" x="2.54" y="0" drill="0.85" diameter="1.45"/>
  583. <text x="0" y="5.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  584. <text x="0" y="-5.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  585. </package>
  586. <package name="CAPAE1030X1050N" urn="urn:adsk.eagle:footprint:16290833/1" library_version="4">
  587. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  588. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  589. <wire x1="-5.25" y1="1.3117" x2="-5.25" y2="3.1538" width="0.12" layer="21"/>
  590. <wire x1="-5.25" y1="3.1538" x2="-3.1538" y2="5.25" width="0.12" layer="21"/>
  591. <wire x1="-3.1538" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="21"/>
  592. <wire x1="5.25" y1="5.25" x2="5.25" y2="1.3117" width="0.12" layer="21"/>
  593. <wire x1="-5.25" y1="-1.3117" x2="-5.25" y2="-3.1538" width="0.12" layer="21"/>
  594. <wire x1="-5.25" y1="-3.1538" x2="-3.1538" y2="-5.25" width="0.12" layer="21"/>
  595. <wire x1="-3.1538" y1="-5.25" x2="5.25" y2="-5.25" width="0.12" layer="21"/>
  596. <wire x1="5.25" y1="-5.25" x2="5.25" y2="-1.3117" width="0.12" layer="21"/>
  597. <wire x1="5.25" y1="-5.25" x2="-5.25" y2="-5.25" width="0.12" layer="51"/>
  598. <wire x1="-5.25" y1="-5.25" x2="-5.25" y2="5.25" width="0.12" layer="51"/>
  599. <wire x1="-5.25" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="51"/>
  600. <wire x1="5.25" y1="5.25" x2="5.25" y2="-5.25" width="0.12" layer="51"/>
  601. <smd name="1" x="-4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  602. <smd name="2" x="4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  603. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  604. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  605. </package>
  606. <package name="CAPAE830X1050N" urn="urn:adsk.eagle:footprint:16290826/1" library_version="4">
  607. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  608. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  609. <wire x1="-4.25" y1="1.3117" x2="-4.25" y2="2.6538" width="0.12" layer="21"/>
  610. <wire x1="-4.25" y1="2.6538" x2="-2.6538" y2="4.25" width="0.12" layer="21"/>
  611. <wire x1="-2.6538" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="21"/>
  612. <wire x1="4.25" y1="4.25" x2="4.25" y2="1.3117" width="0.12" layer="21"/>
  613. <wire x1="-4.25" y1="-1.3117" x2="-4.25" y2="-2.6538" width="0.12" layer="21"/>
  614. <wire x1="-4.25" y1="-2.6538" x2="-2.6538" y2="-4.25" width="0.12" layer="21"/>
  615. <wire x1="-2.6538" y1="-4.25" x2="4.25" y2="-4.25" width="0.12" layer="21"/>
  616. <wire x1="4.25" y1="-4.25" x2="4.25" y2="-1.3117" width="0.12" layer="21"/>
  617. <wire x1="4.25" y1="-4.25" x2="-4.25" y2="-4.25" width="0.12" layer="51"/>
  618. <wire x1="-4.25" y1="-4.25" x2="-4.25" y2="4.25" width="0.12" layer="51"/>
  619. <wire x1="-4.25" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="51"/>
  620. <wire x1="4.25" y1="4.25" x2="4.25" y2="-4.25" width="0.12" layer="51"/>
  621. <smd name="1" x="-3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  622. <smd name="2" x="3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  623. <text x="0" y="4.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  624. <text x="0" y="-4.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  625. </package>
  626. <package name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:footprint:16290828/1" library_version="4">
  627. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  628. &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>
  629. <circle x="0" y="0" radius="11.75" width="0.12" layer="21"/>
  630. <circle x="0" y="0" radius="11.75" width="0.12" layer="51"/>
  631. <wire x1="-8.9055" y1="8.9056" x2="-8.1555" y2="8.9056" width="0.12" layer="21"/>
  632. <wire x1="-8.5305" y1="9.2806" x2="-8.5305" y2="8.5306" width="0.12" layer="21"/>
  633. <pad name="1" x="-5" y="0" drill="1.2" diameter="1.8"/>
  634. <pad name="2" x="5" y="0" drill="1.2" diameter="1.8"/>
  635. <text x="0" y="12.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  636. <text x="0" y="-12.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  637. </package>
  638. <package name="CAPAE1905X1660N" urn="urn:adsk.eagle:footprint:16290827/1" library_version="4">
  639. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  640. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  641. <wire x1="-9.6" y1="1.4617" x2="-9.6" y2="5.4038" width="0.12" layer="21"/>
  642. <wire x1="-9.6" y1="5.4038" x2="-5.4038" y2="9.6" width="0.12" layer="21"/>
  643. <wire x1="-5.4038" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="21"/>
  644. <wire x1="9.6" y1="9.6" x2="9.6" y2="1.4617" width="0.12" layer="21"/>
  645. <wire x1="-9.6" y1="-1.4617" x2="-9.6" y2="-5.4038" width="0.12" layer="21"/>
  646. <wire x1="-9.6" y1="-5.4038" x2="-5.4038" y2="-9.6" width="0.12" layer="21"/>
  647. <wire x1="-5.4038" y1="-9.6" x2="9.6" y2="-9.6" width="0.12" layer="21"/>
  648. <wire x1="9.6" y1="-9.6" x2="9.6" y2="-1.4617" width="0.12" layer="21"/>
  649. <wire x1="9.6" y1="-9.6" x2="-9.6" y2="-9.6" width="0.12" layer="51"/>
  650. <wire x1="-9.6" y1="-9.6" x2="-9.6" y2="9.6" width="0.12" layer="51"/>
  651. <wire x1="-9.6" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="51"/>
  652. <wire x1="9.6" y1="9.6" x2="9.6" y2="-9.6" width="0.12" layer="51"/>
  653. <smd name="1" x="-6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  654. <smd name="2" x="6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  655. <text x="0" y="10.235" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  656. <text x="0" y="-10.235" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  657. </package>
  658. <package name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:footprint:16290834/1" library_version="4">
  659. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  660. &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>
  661. <circle x="0" y="0" radius="6.25" width="0.12" layer="21"/>
  662. <circle x="0" y="0" radius="6.25" width="0.12" layer="51"/>
  663. <wire x1="-5.0164" y1="5.0165" x2="-4.2664" y2="5.0165" width="0.12" layer="21"/>
  664. <wire x1="-4.6414" y1="5.3915" x2="-4.6414" y2="4.6415" width="0.12" layer="21"/>
  665. <pad name="1" x="-2.75" y="0" drill="1.3" diameter="1.95"/>
  666. <pad name="2" x="2.75" y="0" drill="1.3" diameter="1.95"/>
  667. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  668. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  669. </package>
  670. <package name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:footprint:16290832/1" library_version="4">
  671. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  672. &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>
  673. <circle x="0" y="0" radius="6" width="0.12" layer="21"/>
  674. <circle x="0" y="0" radius="6" width="0.12" layer="51"/>
  675. <wire x1="-4.8397" y1="4.8397" x2="-4.0897" y2="4.8397" width="0.12" layer="21"/>
  676. <wire x1="-4.4647" y1="5.2147" x2="-4.4647" y2="4.4647" width="0.12" layer="21"/>
  677. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  678. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  679. <text x="0" y="6.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  680. <text x="0" y="-6.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  681. </package>
  682. <package name="CAPMP7443X430N" urn="urn:adsk.eagle:footprint:16290831/1" library_version="4">
  683. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  684. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  685. <wire x1="3.825" y1="2.25" x2="-4.6458" y2="2.25" width="0.12" layer="21"/>
  686. <wire x1="-4.6458" y1="2.25" x2="-4.6458" y2="-2.25" width="0.12" layer="21"/>
  687. <wire x1="-4.6458" y1="-2.25" x2="3.825" y2="-2.25" width="0.12" layer="21"/>
  688. <wire x1="3.825" y1="-2.25" x2="-3.825" y2="-2.25" width="0.12" layer="51"/>
  689. <wire x1="-3.825" y1="-2.25" x2="-3.825" y2="2.25" width="0.12" layer="51"/>
  690. <wire x1="-3.825" y1="2.25" x2="3.825" y2="2.25" width="0.12" layer="51"/>
  691. <wire x1="3.825" y1="2.25" x2="3.825" y2="-2.25" width="0.12" layer="51"/>
  692. <smd name="1" x="-3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  693. <smd name="2" x="3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  694. <text x="0" y="2.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  695. <text x="0" y="-2.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  696. </package>
  697. <package name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:footprint:16290824/1" library_version="4">
  698. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  699. &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>
  700. <wire x1="-15.25" y1="9.25" x2="-15.25" y2="-9.25" width="0.12" layer="21"/>
  701. <wire x1="-15.25" y1="-9.25" x2="15.25" y2="-9.25" width="0.12" layer="21"/>
  702. <wire x1="15.25" y1="-9.25" x2="15.25" y2="9.25" width="0.12" layer="21"/>
  703. <wire x1="15.25" y1="9.25" x2="-15.25" y2="9.25" width="0.12" layer="21"/>
  704. <wire x1="-11.4375" y1="9.25" x2="-11.4375" y2="-9.25" width="0.12" layer="21"/>
  705. <wire x1="-15.25" y1="0" x2="-15.996" y2="0" width="0.12" layer="21"/>
  706. <wire x1="15.25" y1="0" x2="15.996" y2="0" width="0.12" layer="21"/>
  707. <wire x1="15.25" y1="-9.25" x2="-15.25" y2="-9.25" width="0.12" layer="51"/>
  708. <wire x1="-15.25" y1="-9.25" x2="-15.25" y2="9.25" width="0.12" layer="51"/>
  709. <wire x1="-15.25" y1="9.25" x2="15.25" y2="9.25" width="0.12" layer="51"/>
  710. <wire x1="15.25" y1="9.25" x2="15.25" y2="-9.25" width="0.12" layer="51"/>
  711. <pad name="1" x="-17.05" y="0" drill="1" diameter="1.6"/>
  712. <pad name="2" x="17.05" y="0" drill="1" diameter="1.6"/>
  713. <text x="0" y="9.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  714. <text x="0" y="-9.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  715. </package>
  716. </packages>
  717. <packages3d>
  718. <package3d name="CAPC1005X60" urn="urn:adsk.eagle:package:16290895/2" type="model" library_version="4">
  719. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  720. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  721. <packageinstances>
  722. <packageinstance name="CAPC1005X60"/>
  723. </packageinstances>
  724. </package3d>
  725. <package3d name="CAPC1110X102" urn="urn:adsk.eagle:package:16290904/2" type="model" library_version="4">
  726. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  727. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  728. <packageinstances>
  729. <packageinstance name="CAPC1110X102"/>
  730. </packageinstances>
  731. </package3d>
  732. <package3d name="CAPC1608X85" urn="urn:adsk.eagle:package:16290898/2" type="model" library_version="4">
  733. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  734. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  735. <packageinstances>
  736. <packageinstance name="CAPC1608X85"/>
  737. </packageinstances>
  738. </package3d>
  739. <package3d name="CAPC2012X110" urn="urn:adsk.eagle:package:16290897/2" type="model" library_version="4">
  740. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  741. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  742. <packageinstances>
  743. <packageinstance name="CAPC2012X110"/>
  744. </packageinstances>
  745. </package3d>
  746. <package3d name="CAPC3216X135" urn="urn:adsk.eagle:package:16290893/2" type="model" library_version="4">
  747. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  748. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  749. <packageinstances>
  750. <packageinstance name="CAPC3216X135"/>
  751. </packageinstances>
  752. </package3d>
  753. <package3d name="CAPC3225X135" urn="urn:adsk.eagle:package:16290903/2" type="model" library_version="4">
  754. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  755. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  756. <packageinstances>
  757. <packageinstance name="CAPC3225X135"/>
  758. </packageinstances>
  759. </package3d>
  760. <package3d name="CAPC4532X135" urn="urn:adsk.eagle:package:16290900/2" type="model" library_version="4">
  761. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  762. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  763. <packageinstances>
  764. <packageinstance name="CAPC4532X135"/>
  765. </packageinstances>
  766. </package3d>
  767. <package3d name="CAPM3216X180" urn="urn:adsk.eagle:package:16290894/2" type="model" library_version="4">
  768. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  769. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  770. <packageinstances>
  771. <packageinstance name="CAPM3216X180"/>
  772. </packageinstances>
  773. </package3d>
  774. <package3d name="CAPM3528X210" urn="urn:adsk.eagle:package:16290902/2" type="model" library_version="4">
  775. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  776. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  777. <packageinstances>
  778. <packageinstance name="CAPM3528X210"/>
  779. </packageinstances>
  780. </package3d>
  781. <package3d name="CAPM6032X280" urn="urn:adsk.eagle:package:16290896/2" type="model" library_version="4">
  782. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  783. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  784. <packageinstances>
  785. <packageinstance name="CAPM6032X280"/>
  786. </packageinstances>
  787. </package3d>
  788. <package3d name="CAPM7343X310" urn="urn:adsk.eagle:package:16290891/2" type="model" library_version="4">
  789. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  790. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  791. <packageinstances>
  792. <packageinstance name="CAPM7343X310"/>
  793. </packageinstances>
  794. </package3d>
  795. <package3d name="CAPC4564X110L" urn="urn:adsk.eagle:package:16290887/3" type="model" library_version="4">
  796. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  797. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  798. <packageinstances>
  799. <packageinstance name="CAPC4564X110"/>
  800. </packageinstances>
  801. </package3d>
  802. <package3d name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:package:16290858/2" type="model" library_version="4">
  803. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  804. &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>
  805. <packageinstances>
  806. <packageinstance name="CAPRD550W60D1025H1250B"/>
  807. </packageinstances>
  808. </package3d>
  809. <package3d name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:package:16290864/2" type="model" library_version="4">
  810. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  811. &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>
  812. <packageinstances>
  813. <packageinstance name="CAPRD2261W240D5080H5555B"/>
  814. </packageinstances>
  815. </package3d>
  816. <package3d name="CAPMP3216X180N" urn="urn:adsk.eagle:package:16290884/1" type="model" library_version="4">
  817. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  818. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  819. <packageinstances>
  820. <packageinstance name="CAPMP3216X180N"/>
  821. </packageinstances>
  822. </package3d>
  823. <package3d name="CAPMP3528X210N" urn="urn:adsk.eagle:package:16290901/1" type="model" library_version="4">
  824. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  825. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  826. <packageinstances>
  827. <packageinstance name="CAPMP3528X210N"/>
  828. </packageinstances>
  829. </package3d>
  830. <package3d name="CAPMP6032X280N" urn="urn:adsk.eagle:package:16290892/1" type="model" library_version="4">
  831. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  832. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  833. <packageinstances>
  834. <packageinstance name="CAPMP6032X280N"/>
  835. </packageinstances>
  836. </package3d>
  837. <package3d name="CAPMP7343X310N" urn="urn:adsk.eagle:package:16290885/1" type="model" library_version="4">
  838. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  839. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  840. <packageinstances>
  841. <packageinstance name="CAPMP7343X310N"/>
  842. </packageinstances>
  843. </package3d>
  844. <package3d name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:package:16290899/1" type="model" library_version="4">
  845. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  846. &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>
  847. <packageinstances>
  848. <packageinstance name="CAPPRD508W65D1000H1100B"/>
  849. </packageinstances>
  850. </package3d>
  851. <package3d name="CAPAE1030X1050N" urn="urn:adsk.eagle:package:16290882/1" type="model" library_version="4">
  852. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  853. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  854. <packageinstances>
  855. <packageinstance name="CAPAE1030X1050N"/>
  856. </packageinstances>
  857. </package3d>
  858. <package3d name="CAPAE830X1050N" urn="urn:adsk.eagle:package:16290889/1" type="model" library_version="4">
  859. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  860. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  861. <packageinstances>
  862. <packageinstance name="CAPAE830X1050N"/>
  863. </packageinstances>
  864. </package3d>
  865. <package3d name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:package:16290888/1" type="model" library_version="4">
  866. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  867. &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>
  868. <packageinstances>
  869. <packageinstance name="CAPPRD1000W100D2275H3200B"/>
  870. </packageinstances>
  871. </package3d>
  872. <package3d name="CAPAE1905X1660N" urn="urn:adsk.eagle:package:16290872/1" type="model" library_version="4">
  873. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  874. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  875. <packageinstances>
  876. <packageinstance name="CAPAE1905X1660N"/>
  877. </packageinstances>
  878. </package3d>
  879. <package3d name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:package:16290890/1" type="model" library_version="4">
  880. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  881. &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>
  882. <packageinstances>
  883. <packageinstance name="CAPPRD550W110D1250H2500B"/>
  884. </packageinstances>
  885. </package3d>
  886. <package3d name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:package:16290874/1" type="model" library_version="4">
  887. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  888. &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>
  889. <packageinstances>
  890. <packageinstance name="CAPPRD550W60D1200H2000B"/>
  891. </packageinstances>
  892. </package3d>
  893. <package3d name="CAPMP7443X430N" urn="urn:adsk.eagle:package:16290866/1" type="model" library_version="4">
  894. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  895. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  896. <packageinstances>
  897. <packageinstance name="CAPMP7443X430N"/>
  898. </packageinstances>
  899. </package3d>
  900. <package3d name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:package:16290868/1" type="model" library_version="4">
  901. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  902. &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>
  903. <packageinstances>
  904. <packageinstance name="CAPPAD3410W80L3025D1825B"/>
  905. </packageinstances>
  906. </package3d>
  907. </packages3d>
  908. <symbols>
  909. <symbol name="C" urn="urn:adsk.eagle:symbol:16290820/1" library_version="4">
  910. <description>Capacitor</description>
  911. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  912. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  913. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  914. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  915. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  916. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  917. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  918. <text x="2.54" y="-2.54" size="1.778" layer="97">&gt;SPICEMODEL</text>
  919. <text x="2.54" y="0" size="1.778" layer="96">&gt;VALUE</text>
  920. <text x="2.54" y="-5.08" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  921. </symbol>
  922. <symbol name="CPOL" urn="urn:adsk.eagle:symbol:16290823/1" library_version="4">
  923. <wire x1="-1.524" y1="-0.889" x2="1.524" y2="-0.889" width="0.254" layer="94"/>
  924. <wire x1="1.524" y1="-0.889" x2="1.524" y2="0" width="0.254" layer="94"/>
  925. <wire x1="-1.524" y1="0" x2="-1.524" y2="-0.889" width="0.254" layer="94"/>
  926. <wire x1="-1.524" y1="0" x2="1.524" y2="0" width="0.254" layer="94"/>
  927. <text x="1.143" y="0.4826" size="1.778" layer="95">&gt;NAME</text>
  928. <text x="-0.5842" y="0.4064" size="1.27" layer="94" rot="R90">+</text>
  929. <text x="1.143" y="-4.5974" size="1.778" layer="96">&gt;VALUE</text>
  930. <rectangle x1="-1.651" y1="-2.54" x2="1.651" y2="-1.651" layer="94"/>
  931. <pin name="-" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  932. <pin name="+" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
  933. </symbol>
  934. </symbols>
  935. <devicesets>
  936. <deviceset name="C" urn="urn:adsk.eagle:component:16290909/4" prefix="C" uservalue="yes" library_version="4">
  937. <description>&lt;B&gt;Capacitor - Generic</description>
  938. <gates>
  939. <gate name="G$1" symbol="C" x="0" y="0"/>
  940. </gates>
  941. <devices>
  942. <device name="CHIP-0402(1005-METRIC)" package="CAPC1005X60">
  943. <connects>
  944. <connect gate="G$1" pin="1" pad="1"/>
  945. <connect gate="G$1" pin="2" pad="2"/>
  946. </connects>
  947. <package3dinstances>
  948. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290895/2"/>
  949. </package3dinstances>
  950. <technologies>
  951. <technology name="_">
  952. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  953. <attribute name="MANUFACTURER" value="" constant="no"/>
  954. <attribute name="MPN" value="" constant="no"/>
  955. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  956. <attribute name="PART_STATUS" value="" constant="no"/>
  957. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  958. <attribute name="SERIES" value="" constant="no"/>
  959. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  960. <attribute name="THERMALLOSS" value="" constant="no"/>
  961. <attribute name="TYPE" value="" constant="no"/>
  962. <attribute name="VALUE" value="" constant="no"/>
  963. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  964. </technology>
  965. </technologies>
  966. </device>
  967. <device name="CHIP-0504(1310-METRIC)" package="CAPC1110X102">
  968. <connects>
  969. <connect gate="G$1" pin="1" pad="1"/>
  970. <connect gate="G$1" pin="2" pad="2"/>
  971. </connects>
  972. <package3dinstances>
  973. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290904/2"/>
  974. </package3dinstances>
  975. <technologies>
  976. <technology name="_">
  977. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  978. <attribute name="MANUFACTURER" value="" constant="no"/>
  979. <attribute name="MPN" value="" constant="no"/>
  980. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  981. <attribute name="PART_STATUS" value="" constant="no"/>
  982. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  983. <attribute name="SERIES" value="" constant="no"/>
  984. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  985. <attribute name="THERMALLOSS" value="" constant="no"/>
  986. <attribute name="TYPE" value="" constant="no"/>
  987. <attribute name="VALUE" value="" constant="no"/>
  988. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  989. </technology>
  990. </technologies>
  991. </device>
  992. <device name="CHIP-0603(1608-METRIC)" package="CAPC1608X85">
  993. <connects>
  994. <connect gate="G$1" pin="1" pad="1"/>
  995. <connect gate="G$1" pin="2" pad="2"/>
  996. </connects>
  997. <package3dinstances>
  998. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290898/2"/>
  999. </package3dinstances>
  1000. <technologies>
  1001. <technology name="_">
  1002. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1003. <attribute name="MANUFACTURER" value="" constant="no"/>
  1004. <attribute name="MPN" value="" constant="no"/>
  1005. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1006. <attribute name="PART_STATUS" value="" constant="no"/>
  1007. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1008. <attribute name="SERIES" value="" constant="no"/>
  1009. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1010. <attribute name="THERMALLOSS" value="" constant="no"/>
  1011. <attribute name="TYPE" value="" constant="no"/>
  1012. <attribute name="VALUE" value="" constant="no"/>
  1013. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1014. </technology>
  1015. </technologies>
  1016. </device>
  1017. <device name="CHIP-0805(2012-METRIC)" package="CAPC2012X110">
  1018. <connects>
  1019. <connect gate="G$1" pin="1" pad="1"/>
  1020. <connect gate="G$1" pin="2" pad="2"/>
  1021. </connects>
  1022. <package3dinstances>
  1023. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290897/2"/>
  1024. </package3dinstances>
  1025. <technologies>
  1026. <technology name="_">
  1027. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1028. <attribute name="MANUFACTURER" value="" constant="no"/>
  1029. <attribute name="MPN" value="" constant="no"/>
  1030. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1031. <attribute name="PART_STATUS" value="" constant="no"/>
  1032. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1033. <attribute name="SERIES" value="" constant="no"/>
  1034. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1035. <attribute name="THERMALLOSS" value="" constant="no"/>
  1036. <attribute name="TYPE" value="" constant="no"/>
  1037. <attribute name="VALUE" value="" constant="no"/>
  1038. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1039. </technology>
  1040. </technologies>
  1041. </device>
  1042. <device name="CHIP-1206(3216-METRIC)" package="CAPC3216X135">
  1043. <connects>
  1044. <connect gate="G$1" pin="1" pad="1"/>
  1045. <connect gate="G$1" pin="2" pad="2"/>
  1046. </connects>
  1047. <package3dinstances>
  1048. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290893/2"/>
  1049. </package3dinstances>
  1050. <technologies>
  1051. <technology name="_">
  1052. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1053. <attribute name="MANUFACTURER" value="" constant="no"/>
  1054. <attribute name="MPN" value="" constant="no"/>
  1055. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1056. <attribute name="PART_STATUS" value="" constant="no"/>
  1057. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1058. <attribute name="SERIES" value="" constant="no"/>
  1059. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1060. <attribute name="THERMALLOSS" value="" constant="no"/>
  1061. <attribute name="TYPE" value="" constant="no"/>
  1062. <attribute name="VALUE" value="" constant="no"/>
  1063. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1064. </technology>
  1065. </technologies>
  1066. </device>
  1067. <device name="CHIP-1210(3225-METRIC)" package="CAPC3225X135">
  1068. <connects>
  1069. <connect gate="G$1" pin="1" pad="1"/>
  1070. <connect gate="G$1" pin="2" pad="2"/>
  1071. </connects>
  1072. <package3dinstances>
  1073. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290903/2"/>
  1074. </package3dinstances>
  1075. <technologies>
  1076. <technology name="_">
  1077. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1078. <attribute name="MANUFACTURER" value="" constant="no"/>
  1079. <attribute name="MPN" value="" constant="no"/>
  1080. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1081. <attribute name="PART_STATUS" value="" constant="no"/>
  1082. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1083. <attribute name="SERIES" value="" constant="no"/>
  1084. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1085. <attribute name="THERMALLOSS" value="" constant="no"/>
  1086. <attribute name="TYPE" value="" constant="no"/>
  1087. <attribute name="VALUE" value="" constant="no"/>
  1088. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1089. </technology>
  1090. </technologies>
  1091. </device>
  1092. <device name="CHIP-1812(4532-METRIC)" package="CAPC4532X135">
  1093. <connects>
  1094. <connect gate="G$1" pin="1" pad="1"/>
  1095. <connect gate="G$1" pin="2" pad="2"/>
  1096. </connects>
  1097. <package3dinstances>
  1098. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290900/2"/>
  1099. </package3dinstances>
  1100. <technologies>
  1101. <technology name="_">
  1102. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1103. <attribute name="MANUFACTURER" value="" constant="no"/>
  1104. <attribute name="MPN" value="" constant="no"/>
  1105. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1106. <attribute name="PART_STATUS" value="" constant="no"/>
  1107. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1108. <attribute name="SERIES" value="" constant="no"/>
  1109. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1110. <attribute name="THERMALLOSS" value="" constant="no"/>
  1111. <attribute name="TYPE" value="" constant="no"/>
  1112. <attribute name="VALUE" value="" constant="no"/>
  1113. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1114. </technology>
  1115. </technologies>
  1116. </device>
  1117. <device name="TANTALUM-1206(3216-METRIC)" package="CAPM3216X180">
  1118. <connects>
  1119. <connect gate="G$1" pin="1" pad="1"/>
  1120. <connect gate="G$1" pin="2" pad="2"/>
  1121. </connects>
  1122. <package3dinstances>
  1123. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290894/2"/>
  1124. </package3dinstances>
  1125. <technologies>
  1126. <technology name="_">
  1127. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1128. <attribute name="MANUFACTURER" value="" constant="no"/>
  1129. <attribute name="MPN" value="" constant="no"/>
  1130. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1131. <attribute name="PART_STATUS" value="" constant="no"/>
  1132. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1133. <attribute name="SERIES" value="" constant="no"/>
  1134. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1135. <attribute name="THERMALLOSS" value="" constant="no"/>
  1136. <attribute name="TYPE" value="" constant="no"/>
  1137. <attribute name="VALUE" value="" constant="no"/>
  1138. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1139. </technology>
  1140. </technologies>
  1141. </device>
  1142. <device name="TANTALUM-1411(3528-METRIC)" package="CAPM3528X210">
  1143. <connects>
  1144. <connect gate="G$1" pin="1" pad="1"/>
  1145. <connect gate="G$1" pin="2" pad="2"/>
  1146. </connects>
  1147. <package3dinstances>
  1148. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290902/2"/>
  1149. </package3dinstances>
  1150. <technologies>
  1151. <technology name="_">
  1152. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1153. <attribute name="MANUFACTURER" value="" constant="no"/>
  1154. <attribute name="MPN" value="" constant="no"/>
  1155. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1156. <attribute name="PART_STATUS" value="" constant="no"/>
  1157. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1158. <attribute name="SERIES" value="" constant="no"/>
  1159. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1160. <attribute name="THERMALLOSS" value="" constant="no"/>
  1161. <attribute name="TYPE" value="" constant="no"/>
  1162. <attribute name="VALUE" value="" constant="no"/>
  1163. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1164. </technology>
  1165. </technologies>
  1166. </device>
  1167. <device name="TANTALUM-2412(6032-METRIC)" package="CAPM6032X280">
  1168. <connects>
  1169. <connect gate="G$1" pin="1" pad="1"/>
  1170. <connect gate="G$1" pin="2" pad="2"/>
  1171. </connects>
  1172. <package3dinstances>
  1173. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290896/2"/>
  1174. </package3dinstances>
  1175. <technologies>
  1176. <technology name="_">
  1177. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1178. <attribute name="MANUFACTURER" value="" constant="no"/>
  1179. <attribute name="MPN" value="" constant="no"/>
  1180. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1181. <attribute name="PART_STATUS" value="" constant="no"/>
  1182. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1183. <attribute name="SERIES" value="" constant="no"/>
  1184. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1185. <attribute name="THERMALLOSS" value="" constant="no"/>
  1186. <attribute name="TYPE" value="" constant="no"/>
  1187. <attribute name="VALUE" value="" constant="no"/>
  1188. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1189. </technology>
  1190. </technologies>
  1191. </device>
  1192. <device name="TANTALUM-2917(7343-METRIC)" package="CAPM7343X310">
  1193. <connects>
  1194. <connect gate="G$1" pin="1" pad="1"/>
  1195. <connect gate="G$1" pin="2" pad="2"/>
  1196. </connects>
  1197. <package3dinstances>
  1198. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290891/2"/>
  1199. </package3dinstances>
  1200. <technologies>
  1201. <technology name="_">
  1202. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1203. <attribute name="MANUFACTURER" value="" constant="no"/>
  1204. <attribute name="MPN" value="" constant="no"/>
  1205. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1206. <attribute name="PART_STATUS" value="" constant="no"/>
  1207. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1208. <attribute name="SERIES" value="" constant="no"/>
  1209. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1210. <attribute name="THERMALLOSS" value="" constant="no"/>
  1211. <attribute name="TYPE" value="" constant="no"/>
  1212. <attribute name="VALUE" value="" constant="no"/>
  1213. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1214. </technology>
  1215. </technologies>
  1216. </device>
  1217. <device name="CHIP-1825(4564-METRIC)" package="CAPC4564X110">
  1218. <connects>
  1219. <connect gate="G$1" pin="1" pad="1"/>
  1220. <connect gate="G$1" pin="2" pad="2"/>
  1221. </connects>
  1222. <package3dinstances>
  1223. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290887/3"/>
  1224. </package3dinstances>
  1225. <technologies>
  1226. <technology name="_">
  1227. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1228. <attribute name="MANUFACTURER" value="" constant="no"/>
  1229. <attribute name="MPN" value="" constant="no"/>
  1230. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1231. <attribute name="PART_STATUS" value="" constant="no"/>
  1232. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1233. <attribute name="SERIES" value="" constant="no"/>
  1234. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1235. <attribute name="THERMALLOSS" value="" constant="no"/>
  1236. <attribute name="TYPE" value="" constant="no"/>
  1237. <attribute name="VALUE" value="" constant="no"/>
  1238. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1239. </technology>
  1240. </technologies>
  1241. </device>
  1242. <device name="RADIAL-12.5MM-DIA" package="CAPRD550W60D1025H1250B">
  1243. <connects>
  1244. <connect gate="G$1" pin="1" pad="1"/>
  1245. <connect gate="G$1" pin="2" pad="2"/>
  1246. </connects>
  1247. <package3dinstances>
  1248. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290858/2"/>
  1249. </package3dinstances>
  1250. <technologies>
  1251. <technology name="_">
  1252. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1253. <attribute name="MANUFACTURER" value="" constant="no"/>
  1254. <attribute name="MPN" value="" constant="no"/>
  1255. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1256. <attribute name="PART_STATUS" value="" constant="no"/>
  1257. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1258. <attribute name="SERIES" value="" constant="no"/>
  1259. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1260. <attribute name="THERMALLOSS" value="" constant="no"/>
  1261. <attribute name="TYPE" value="" constant="no"/>
  1262. <attribute name="VALUE" value="" constant="no"/>
  1263. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1264. </technology>
  1265. </technologies>
  1266. </device>
  1267. <device name="RADIAL-55.5MM-DIA" package="CAPRD2261W240D5080H5555B">
  1268. <connects>
  1269. <connect gate="G$1" pin="1" pad="1"/>
  1270. <connect gate="G$1" pin="2" pad="2"/>
  1271. </connects>
  1272. <package3dinstances>
  1273. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290864/2"/>
  1274. </package3dinstances>
  1275. <technologies>
  1276. <technology name="_">
  1277. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1278. <attribute name="MANUFACTURER" value="" constant="no"/>
  1279. <attribute name="MPN" value="" constant="no"/>
  1280. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1281. <attribute name="PART_STATUS" value="" constant="no"/>
  1282. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1283. <attribute name="SERIES" value="" constant="no"/>
  1284. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1285. <attribute name="THERMALLOSS" value="" constant="no"/>
  1286. <attribute name="TYPE" value="" constant="no"/>
  1287. <attribute name="VALUE" value="" constant="no"/>
  1288. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1289. </technology>
  1290. </technologies>
  1291. </device>
  1292. </devices>
  1293. <spice>
  1294. <pinmapping spiceprefix="C">
  1295. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1296. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1297. </pinmapping>
  1298. </spice>
  1299. </deviceset>
  1300. <deviceset name="C-POL" urn="urn:adsk.eagle:component:16290908/4" prefix="C" uservalue="yes" library_version="4">
  1301. <description>&lt;B&gt;Capacitor Polarised - Generic</description>
  1302. <gates>
  1303. <gate name="G$1" symbol="CPOL" x="0" y="0"/>
  1304. </gates>
  1305. <devices>
  1306. <device name="TANTALUM-1206(3216-METRIC)" package="CAPMP3216X180N">
  1307. <connects>
  1308. <connect gate="G$1" pin="+" pad="1"/>
  1309. <connect gate="G$1" pin="-" pad="2"/>
  1310. </connects>
  1311. <package3dinstances>
  1312. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290884/1"/>
  1313. </package3dinstances>
  1314. <technologies>
  1315. <technology name="_">
  1316. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1317. <attribute name="MANUFACTURER" value="" constant="no"/>
  1318. <attribute name="MPN" value="" constant="no"/>
  1319. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1320. <attribute name="PART_STATUS" value="" constant="no"/>
  1321. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1322. <attribute name="SERIES" value="" constant="no"/>
  1323. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1324. <attribute name="THERMALLOSS" value="" constant="no"/>
  1325. <attribute name="TYPE" value="" constant="no"/>
  1326. <attribute name="VALUE" value="" constant="no"/>
  1327. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1328. </technology>
  1329. </technologies>
  1330. </device>
  1331. <device name="TANTALUM-1411(3528-METRIC)" package="CAPMP3528X210N">
  1332. <connects>
  1333. <connect gate="G$1" pin="+" pad="1"/>
  1334. <connect gate="G$1" pin="-" pad="2"/>
  1335. </connects>
  1336. <package3dinstances>
  1337. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290901/1"/>
  1338. </package3dinstances>
  1339. <technologies>
  1340. <technology name="_">
  1341. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1342. <attribute name="MANUFACTURER" value="" constant="no"/>
  1343. <attribute name="MPN" value="" constant="no"/>
  1344. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1345. <attribute name="PART_STATUS" value="" constant="no"/>
  1346. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1347. <attribute name="SERIES" value="" constant="no"/>
  1348. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1349. <attribute name="THERMALLOSS" value="" constant="no"/>
  1350. <attribute name="TYPE" value="" constant="no"/>
  1351. <attribute name="VALUE" value="" constant="no"/>
  1352. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1353. </technology>
  1354. </technologies>
  1355. </device>
  1356. <device name="TANTALUM-2412(6032-METRIC)" package="CAPMP6032X280N">
  1357. <connects>
  1358. <connect gate="G$1" pin="+" pad="1"/>
  1359. <connect gate="G$1" pin="-" pad="2"/>
  1360. </connects>
  1361. <package3dinstances>
  1362. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290892/1"/>
  1363. </package3dinstances>
  1364. <technologies>
  1365. <technology name="_">
  1366. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1367. <attribute name="MANUFACTURER" value="" constant="no"/>
  1368. <attribute name="MPN" value="" constant="no"/>
  1369. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1370. <attribute name="PART_STATUS" value="" constant="no"/>
  1371. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1372. <attribute name="SERIES" value="" constant="no"/>
  1373. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1374. <attribute name="THERMALLOSS" value="" constant="no"/>
  1375. <attribute name="TYPE" value="" constant="no"/>
  1376. <attribute name="VALUE" value="" constant="no"/>
  1377. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1378. </technology>
  1379. </technologies>
  1380. </device>
  1381. <device name="TANTALUM-2917(7343-METRIC)" package="CAPMP7343X310N">
  1382. <connects>
  1383. <connect gate="G$1" pin="+" pad="1"/>
  1384. <connect gate="G$1" pin="-" pad="2"/>
  1385. </connects>
  1386. <package3dinstances>
  1387. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290885/1"/>
  1388. </package3dinstances>
  1389. <technologies>
  1390. <technology name="_">
  1391. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1392. <attribute name="MANUFACTURER" value="" constant="no"/>
  1393. <attribute name="MPN" value="" constant="no"/>
  1394. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1395. <attribute name="PART_STATUS" value="" constant="no"/>
  1396. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1397. <attribute name="SERIES" value="" constant="no"/>
  1398. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1399. <attribute name="THERMALLOSS" value="" constant="no"/>
  1400. <attribute name="TYPE" value="" constant="no"/>
  1401. <attribute name="VALUE" value="" constant="no"/>
  1402. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1403. </technology>
  1404. </technologies>
  1405. </device>
  1406. <device name="RADIAL-11MM-DIA" package="CAPPRD508W65D1000H1100B">
  1407. <connects>
  1408. <connect gate="G$1" pin="+" pad="1"/>
  1409. <connect gate="G$1" pin="-" pad="2"/>
  1410. </connects>
  1411. <package3dinstances>
  1412. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290899/1"/>
  1413. </package3dinstances>
  1414. <technologies>
  1415. <technology name="_">
  1416. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1417. <attribute name="MANUFACTURER" value="" constant="no"/>
  1418. <attribute name="MPN" value="" constant="no"/>
  1419. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1420. <attribute name="PART_STATUS" value="" constant="no"/>
  1421. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1422. <attribute name="SERIES" value="" constant="no"/>
  1423. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1424. <attribute name="THERMALLOSS" value="" constant="no"/>
  1425. <attribute name="TYPE" value="" constant="no"/>
  1426. <attribute name="VALUE" value="" constant="no"/>
  1427. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1428. </technology>
  1429. </technologies>
  1430. </device>
  1431. <device name="ECAP-10.5MM" package="CAPAE1030X1050N">
  1432. <connects>
  1433. <connect gate="G$1" pin="+" pad="1"/>
  1434. <connect gate="G$1" pin="-" pad="2"/>
  1435. </connects>
  1436. <package3dinstances>
  1437. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290882/1"/>
  1438. </package3dinstances>
  1439. <technologies>
  1440. <technology name="_">
  1441. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1442. <attribute name="MANUFACTURER" value="" constant="no"/>
  1443. <attribute name="MPN" value="" constant="no"/>
  1444. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1445. <attribute name="PART_STATUS" value="" constant="no"/>
  1446. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1447. <attribute name="SERIES" value="" constant="no"/>
  1448. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1449. <attribute name="THERMALLOSS" value="" constant="no"/>
  1450. <attribute name="TYPE" value="" constant="no"/>
  1451. <attribute name="VALUE" value="" constant="no"/>
  1452. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1453. </technology>
  1454. </technologies>
  1455. </device>
  1456. <device name="ECAP-8.5MM" package="CAPAE830X1050N">
  1457. <connects>
  1458. <connect gate="G$1" pin="+" pad="1"/>
  1459. <connect gate="G$1" pin="-" pad="2"/>
  1460. </connects>
  1461. <package3dinstances>
  1462. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290889/1"/>
  1463. </package3dinstances>
  1464. <technologies>
  1465. <technology name="_">
  1466. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1467. <attribute name="MANUFACTURER" value="" constant="no"/>
  1468. <attribute name="MPN" value="" constant="no"/>
  1469. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1470. <attribute name="PART_STATUS" value="" constant="no"/>
  1471. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1472. <attribute name="SERIES" value="" constant="no"/>
  1473. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1474. <attribute name="THERMALLOSS" value="" constant="no"/>
  1475. <attribute name="TYPE" value="" constant="no"/>
  1476. <attribute name="VALUE" value="" constant="no"/>
  1477. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1478. </technology>
  1479. </technologies>
  1480. </device>
  1481. <device name="RADIAL-32MM-DIA" package="CAPPRD1000W100D2275H3200B">
  1482. <connects>
  1483. <connect gate="G$1" pin="+" pad="1"/>
  1484. <connect gate="G$1" pin="-" pad="2"/>
  1485. </connects>
  1486. <package3dinstances>
  1487. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290888/1"/>
  1488. </package3dinstances>
  1489. <technologies>
  1490. <technology name="_">
  1491. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1492. <attribute name="MANUFACTURER" value="" constant="no"/>
  1493. <attribute name="MPN" value="" constant="no"/>
  1494. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1495. <attribute name="PART_STATUS" value="" constant="no"/>
  1496. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1497. <attribute name="SERIES" value="" constant="no"/>
  1498. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1499. <attribute name="THERMALLOSS" value="" constant="no"/>
  1500. <attribute name="TYPE" value="" constant="no"/>
  1501. <attribute name="VALUE" value="" constant="no"/>
  1502. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1503. </technology>
  1504. </technologies>
  1505. </device>
  1506. <device name="ECAP-19.2MM" package="CAPAE1905X1660N">
  1507. <connects>
  1508. <connect gate="G$1" pin="+" pad="1"/>
  1509. <connect gate="G$1" pin="-" pad="2"/>
  1510. </connects>
  1511. <package3dinstances>
  1512. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290872/1"/>
  1513. </package3dinstances>
  1514. <technologies>
  1515. <technology name="_">
  1516. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1517. <attribute name="MANUFACTURER" value="" constant="no"/>
  1518. <attribute name="MPN" value="" constant="no"/>
  1519. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1520. <attribute name="PART_STATUS" value="" constant="no"/>
  1521. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1522. <attribute name="SERIES" value="" constant="no"/>
  1523. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1524. <attribute name="THERMALLOSS" value="" constant="no"/>
  1525. <attribute name="TYPE" value="" constant="no"/>
  1526. <attribute name="VALUE" value="" constant="no"/>
  1527. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1528. </technology>
  1529. </technologies>
  1530. </device>
  1531. <device name="RADIAL-25MM-DIA" package="CAPPRD550W110D1250H2500B">
  1532. <connects>
  1533. <connect gate="G$1" pin="+" pad="1"/>
  1534. <connect gate="G$1" pin="-" pad="2"/>
  1535. </connects>
  1536. <package3dinstances>
  1537. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290890/1"/>
  1538. </package3dinstances>
  1539. <technologies>
  1540. <technology name="_">
  1541. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1542. <attribute name="MANUFACTURER" value="" constant="no"/>
  1543. <attribute name="MPN" value="" constant="no"/>
  1544. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1545. <attribute name="PART_STATUS" value="" constant="no"/>
  1546. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1547. <attribute name="SERIES" value="" constant="no"/>
  1548. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1549. <attribute name="THERMALLOSS" value="" constant="no"/>
  1550. <attribute name="TYPE" value="" constant="no"/>
  1551. <attribute name="VALUE" value="" constant="no"/>
  1552. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1553. </technology>
  1554. </technologies>
  1555. </device>
  1556. <device name="RADIAL-20MM-DIA" package="CAPPRD550W60D1200H2000B">
  1557. <connects>
  1558. <connect gate="G$1" pin="+" pad="1"/>
  1559. <connect gate="G$1" pin="-" pad="2"/>
  1560. </connects>
  1561. <package3dinstances>
  1562. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290874/1"/>
  1563. </package3dinstances>
  1564. <technologies>
  1565. <technology name="_">
  1566. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1567. <attribute name="MANUFACTURER" value="" constant="no"/>
  1568. <attribute name="MPN" value="" constant="no"/>
  1569. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1570. <attribute name="PART_STATUS" value="" constant="no"/>
  1571. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1572. <attribute name="SERIES" value="" constant="no"/>
  1573. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1574. <attribute name="THERMALLOSS" value="" constant="no"/>
  1575. <attribute name="TYPE" value="" constant="no"/>
  1576. <attribute name="VALUE" value="" constant="no"/>
  1577. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1578. </technology>
  1579. </technologies>
  1580. </device>
  1581. <device name="TANTALUM-2920(7443-METRIC)" package="CAPMP7443X430N">
  1582. <connects>
  1583. <connect gate="G$1" pin="+" pad="1"/>
  1584. <connect gate="G$1" pin="-" pad="2"/>
  1585. </connects>
  1586. <package3dinstances>
  1587. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290866/1"/>
  1588. </package3dinstances>
  1589. <technologies>
  1590. <technology name="_">
  1591. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1592. <attribute name="MANUFACTURER" value="" constant="no"/>
  1593. <attribute name="MPN" value="" constant="no"/>
  1594. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1595. <attribute name="PART_STATUS" value="" constant="no"/>
  1596. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1597. <attribute name="SERIES" value="" constant="no"/>
  1598. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1599. <attribute name="THERMALLOSS" value="" constant="no"/>
  1600. <attribute name="TYPE" value="" constant="no"/>
  1601. <attribute name="VALUE" value="" constant="no"/>
  1602. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1603. </technology>
  1604. </technologies>
  1605. </device>
  1606. <device name="AXIAL-34.1MM-PITCH" package="CAPPAD3410W80L3025D1825B">
  1607. <connects>
  1608. <connect gate="G$1" pin="+" pad="1"/>
  1609. <connect gate="G$1" pin="-" pad="2"/>
  1610. </connects>
  1611. <package3dinstances>
  1612. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290868/1"/>
  1613. </package3dinstances>
  1614. <technologies>
  1615. <technology name="_">
  1616. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1617. <attribute name="MANUFACTURER" value="" constant="no"/>
  1618. <attribute name="MPN" value="" constant="no"/>
  1619. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1620. <attribute name="PART_STATUS" value="" constant="no"/>
  1621. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1622. <attribute name="SERIES" value="" constant="no"/>
  1623. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1624. <attribute name="THERMALLOSS" value="" constant="no"/>
  1625. <attribute name="TYPE" value="" constant="no"/>
  1626. <attribute name="VALUE" value="" constant="no"/>
  1627. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1628. </technology>
  1629. </technologies>
  1630. </device>
  1631. </devices>
  1632. </deviceset>
  1633. </devicesets>
  1634. </library>
  1635. <library name="Diodes" urn="urn:adsk.eagle:library:11396254">
  1636. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Diodes&lt;/i&gt;&lt;/h3&gt;
  1637. 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.
  1638. &lt;BR&gt;
  1639. &lt;BR&gt;
  1640. 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;.
  1641. &lt;BR&gt;
  1642. &lt;BR&gt;
  1643. 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>
  1644. <packages>
  1645. <package name="DO201AD" urn="urn:adsk.eagle:footprint:10898376/1" library_version="1">
  1646. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1647. <wire x1="-4.2" y1="0" x2="-4.2" y2="-2.525" width="0.127" layer="51"/>
  1648. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="51"/>
  1649. <wire x1="4.2" y1="-2.525" x2="4.2" y2="0" width="0.127" layer="51"/>
  1650. <wire x1="4.2" y1="0" x2="4.2" y2="2.525" width="0.127" layer="51"/>
  1651. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="51"/>
  1652. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="-2.525" width="0.127" layer="21"/>
  1653. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="21"/>
  1654. <wire x1="4.2" y1="-2.525" x2="4.2" y2="2.525" width="0.127" layer="21"/>
  1655. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="21"/>
  1656. <wire x1="-6.2" y1="0" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1657. <wire x1="4.2" y1="0" x2="6.2" y2="0" width="0.127" layer="51"/>
  1658. <wire x1="-5" y1="0" x2="-4.25" y2="0" width="0.127" layer="21"/>
  1659. <wire x1="4.25" y1="0" x2="5" y2="0" width="0.127" layer="21"/>
  1660. <wire x1="-7.45" y1="2.775" x2="-7.45" y2="-2.775" width="0.05" layer="39"/>
  1661. <wire x1="-7.45" y1="-2.775" x2="7.4" y2="-2.775" width="0.05" layer="39"/>
  1662. <wire x1="7.4" y1="-2.775" x2="7.4" y2="2.775" width="0.05" layer="39"/>
  1663. <wire x1="7.4" y1="2.775" x2="-7.45" y2="2.775" width="0.05" layer="39"/>
  1664. <pad name="C" x="-6.2" y="0" drill="1.25" shape="square"/>
  1665. <pad name="A" x="6.2" y="0" drill="1.25"/>
  1666. <rectangle x1="-3.5" y1="-2.525" x2="-2.25" y2="2.525" layer="21"/>
  1667. <text x="-7.75" y="3" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1668. <text x="-7.5" y="-4.25" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1669. </package>
  1670. </packages>
  1671. <packages3d>
  1672. <package3d name="DO201AD" urn="urn:adsk.eagle:package:10898389/2" type="model" library_version="1">
  1673. <packageinstances>
  1674. <packageinstance name="DO201AD"/>
  1675. </packageinstances>
  1676. </package3d>
  1677. </packages3d>
  1678. <symbols>
  1679. <symbol name="SCHOTTKY" urn="urn:adsk.eagle:symbol:10898387/1" library_version="1">
  1680. <wire x1="-1.27" y1="-1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1681. <wire x1="1.27" y1="0" x2="-1.27" y2="1.27" width="0.254" layer="94"/>
  1682. <wire x1="1.905" y1="1.27" x2="1.27" y2="1.27" width="0.254" layer="94"/>
  1683. <wire x1="1.27" y1="1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1684. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.254" layer="94"/>
  1685. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.254" layer="94"/>
  1686. <wire x1="1.27" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94"/>
  1687. <wire x1="1.905" y1="1.27" x2="1.905" y2="1.016" width="0.254" layer="94"/>
  1688. <wire x1="1.27" y1="-1.27" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1689. <wire x1="0.635" y1="-1.016" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1690. <wire x1="-1.27" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  1691. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  1692. <text x="-2.286" y="1.905" size="1.778" layer="95">&gt;NAME</text>
  1693. <text x="-2.286" y="-3.429" size="1.778" layer="96">&gt;VALUE</text>
  1694. <pin name="A" x="-2.54" y="0" visible="off" length="point" direction="pas"/>
  1695. <pin name="C" x="2.54" y="0" visible="off" length="point" direction="pas" rot="R180"/>
  1696. </symbol>
  1697. </symbols>
  1698. <devicesets>
  1699. <deviceset name="MBR360G" urn="urn:adsk.eagle:component:10898397/9" prefix="D" library_version="1">
  1700. <description>&lt;h3&gt; DIODE SCHOTTKY 60V 3A DO201AD&lt;/h3&gt;
  1701. &lt;BR&gt;
  1702. &lt;a href="https://www.onsemi.com/pub/Collateral/MBR350-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  1703. <gates>
  1704. <gate name="G$1" symbol="SCHOTTKY" x="0" y="0"/>
  1705. </gates>
  1706. <devices>
  1707. <device name="" package="DO201AD">
  1708. <connects>
  1709. <connect gate="G$1" pin="A" pad="A"/>
  1710. <connect gate="G$1" pin="C" pad="C"/>
  1711. </connects>
  1712. <package3dinstances>
  1713. <package3dinstance package3d_urn="urn:adsk.eagle:package:10898389/2"/>
  1714. </package3dinstances>
  1715. <technologies>
  1716. <technology name="">
  1717. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  1718. <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" constant="no"/>
  1719. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  1720. <attribute name="MPN" value="MBR360G" constant="no"/>
  1721. <attribute name="PACKAGE" value="DO-201AD" constant="no"/>
  1722. </technology>
  1723. </technologies>
  1724. </device>
  1725. </devices>
  1726. </deviceset>
  1727. </devicesets>
  1728. </library>
  1729. <library name="inductors" urn="urn:adsk.eagle:library:243">
  1730. <description>&lt;b&gt;Inductors and Filters&lt;/b&gt;&lt;p&gt;
  1731. Based on the previous library ind-a.lbr&lt;p&gt;
  1732. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  1733. <packages>
  1734. <package name="DR127" urn="urn:adsk.eagle:footprint:15034/1" library_version="4">
  1735. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1736. Source: coiltronics_dr_series.pdf</description>
  1737. <wire x1="-6.5" y1="6.5" x2="6.525" y2="6.5" width="0.2032" layer="21"/>
  1738. <wire x1="6.525" y1="6.5" x2="6.525" y2="-6.5" width="0.2032" layer="21"/>
  1739. <wire x1="6.525" y1="-6.5" x2="-6.5" y2="-6.5" width="0.2032" layer="21"/>
  1740. <wire x1="-6.5" y1="-6.5" x2="-6.5" y2="6.5" width="0.2032" layer="21"/>
  1741. <wire x1="-4.5254" y1="3.783" x2="-3.8006" y2="4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1742. <wire x1="-3.783" y1="-4.5254" x2="-4.5431" y2="-3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1743. <wire x1="4.5254" y1="-3.783" x2="3.8006" y2="-4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1744. <wire x1="3.783" y1="4.5254" x2="4.5431" y2="3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1745. <wire x1="0" y1="5.9" x2="4.9" y2="3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1746. <wire x1="0" y1="5.9" x2="-4.95" y2="3.225" width="0.2032" layer="21" curve="56.95663"/>
  1747. <wire x1="0" y1="-5.9" x2="-4.9" y2="-3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1748. <wire x1="0" y1="-5.9" x2="4.95" y2="-3.225" width="0.2032" layer="21" curve="56.95663"/>
  1749. <circle x="0" y="0" radius="5.9" width="0.2032" layer="51"/>
  1750. <smd name="1" x="-4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1751. <smd name="2" x="4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1752. <text x="-2.5" y="3" size="1.27" layer="25">&gt;NAME</text>
  1753. <text x="-3" y="-4.5" size="1.27" layer="27">&gt;VALUE</text>
  1754. </package>
  1755. </packages>
  1756. <packages3d>
  1757. <package3d name="DR127" urn="urn:adsk.eagle:package:15117/1" type="box" library_version="4">
  1758. <description>High Power Density, High Efficiency, Shielded Inductors
  1759. Source: coiltronics_dr_series.pdf</description>
  1760. <packageinstances>
  1761. <packageinstance name="DR127"/>
  1762. </packageinstances>
  1763. </package3d>
  1764. </packages3d>
  1765. <symbols>
  1766. <symbol name="DRK" urn="urn:adsk.eagle:symbol:28107/2" library_version="4">
  1767. <wire x1="-3.81" y1="1.651" x2="3.81" y2="1.651" width="0.254" layer="94"/>
  1768. <text x="-3.81" y="2.286" size="1.778" layer="95">&gt;NAME</text>
  1769. <text x="-3.937" y="-3.048" size="1.778" layer="96">&gt;VALUE</text>
  1770. <rectangle x1="-3.81" y1="-0.889" x2="3.81" y2="0.889" layer="94"/>
  1771. <pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  1772. <pin name="1" x="-7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1"/>
  1773. </symbol>
  1774. </symbols>
  1775. <devicesets>
  1776. <deviceset name="DR127" urn="urn:adsk.eagle:component:15196/4" prefix="L" library_version="4">
  1777. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1778. Source: coiltronics_dr_series.pdf</description>
  1779. <gates>
  1780. <gate name="G$1" symbol="DRK" x="0" y="0"/>
  1781. </gates>
  1782. <devices>
  1783. <device name="" package="DR127">
  1784. <connects>
  1785. <connect gate="G$1" pin="1" pad="1"/>
  1786. <connect gate="G$1" pin="2" pad="2"/>
  1787. </connects>
  1788. <package3dinstances>
  1789. <package3dinstance package3d_urn="urn:adsk.eagle:package:15117/1"/>
  1790. </package3dinstances>
  1791. <technologies>
  1792. <technology name="">
  1793. <attribute name="POPULARITY" value="2" constant="no"/>
  1794. <attribute name="SPICEPREFIX" value="L" constant="no"/>
  1795. </technology>
  1796. </technologies>
  1797. </device>
  1798. </devices>
  1799. <spice>
  1800. <pinmapping spiceprefix="L">
  1801. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1802. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1803. </pinmapping>
  1804. </spice>
  1805. </deviceset>
  1806. </devicesets>
  1807. </library>
  1808. <library name="eagle-ltspice" urn="urn:adsk.eagle:library:217">
  1809. <description>Default symbols for import LTspice schematics&lt;p&gt;
  1810. 2012-10-29 alf@cadsoft.de&lt;br&gt;</description>
  1811. <packages>
  1812. <package name="0204/7" urn="urn:adsk.eagle:footprint:13215/1" library_version="1">
  1813. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1814. type 0204, grid 7.5 mm</description>
  1815. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  1816. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  1817. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  1818. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  1819. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  1820. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  1821. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  1822. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1823. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1824. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1825. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1826. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1827. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  1828. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1829. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  1830. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1831. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1832. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  1833. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  1834. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  1835. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  1836. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  1837. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  1838. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  1839. </package>
  1840. <package name="0207/10" urn="urn:adsk.eagle:footprint:13216/1" library_version="1">
  1841. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1842. type 0207, grid 10 mm</description>
  1843. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  1844. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  1845. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  1846. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  1847. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  1848. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  1849. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  1850. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1851. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1852. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1853. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1854. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1855. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  1856. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1857. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  1858. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1859. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1860. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  1861. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  1862. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  1863. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  1864. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  1865. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1866. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1867. </package>
  1868. <package name="R0201" urn="urn:adsk.eagle:footprint:13233/1" library_version="1">
  1869. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  1870. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1871. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  1872. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  1873. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  1874. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1875. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1876. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1877. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1878. </package>
  1879. <package name="R0402" urn="urn:adsk.eagle:footprint:13234/1" library_version="1">
  1880. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1881. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1882. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1883. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1884. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1885. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1886. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1887. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1888. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1889. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1890. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1891. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1892. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1893. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1894. </package>
  1895. <package name="R0603" urn="urn:adsk.eagle:footprint:13235/1" library_version="1">
  1896. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1897. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1898. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1899. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1900. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1901. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1902. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1903. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1904. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1905. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1906. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1907. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1908. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1909. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1910. </package>
  1911. <package name="R0805" urn="urn:adsk.eagle:footprint:13236/1" library_version="1">
  1912. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1913. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1914. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1915. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1916. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1917. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1918. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1919. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1920. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1921. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1922. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1923. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1924. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1925. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1926. </package>
  1927. <package name="R1005" urn="urn:adsk.eagle:footprint:13237/1" library_version="1">
  1928. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1929. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1930. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1931. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1932. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1933. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1934. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1935. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1936. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1937. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  1938. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1939. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1940. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1941. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1942. </package>
  1943. <package name="R1206" urn="urn:adsk.eagle:footprint:13238/1" library_version="1">
  1944. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1945. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1946. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1947. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1948. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1949. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1950. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1951. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1952. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1953. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1954. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1955. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1956. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1957. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1958. </package>
  1959. <package name="R1210" urn="urn:adsk.eagle:footprint:13239/1" library_version="1">
  1960. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1961. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1962. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1963. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1964. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1965. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1966. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1967. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1968. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1969. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1970. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1971. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1972. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1973. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1974. </package>
  1975. <package name="R1218" urn="urn:adsk.eagle:footprint:13240/1" library_version="1">
  1976. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  1977. Source: http://www.vishay.com .. dcrcw.pdf</description>
  1978. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  1979. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  1980. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  1981. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  1982. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1983. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1984. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  1985. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  1986. </package>
  1987. <package name="R2010" urn="urn:adsk.eagle:footprint:13241/1" library_version="1">
  1988. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1989. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1990. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1991. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1992. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1993. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1994. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1995. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1996. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1997. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1998. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1999. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2000. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2001. </package>
  2002. <package name="R2012" urn="urn:adsk.eagle:footprint:13242/1" library_version="1">
  2003. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2004. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  2005. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  2006. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  2007. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  2008. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  2009. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  2010. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  2011. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  2012. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  2013. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2014. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  2015. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2016. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2017. </package>
  2018. <package name="R2512" urn="urn:adsk.eagle:footprint:13243/1" library_version="1">
  2019. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2020. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2021. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2022. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2023. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2024. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2025. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2026. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2027. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2028. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2029. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2030. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  2031. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2032. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2033. </package>
  2034. <package name="R3216" urn="urn:adsk.eagle:footprint:13244/1" library_version="1">
  2035. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2036. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  2037. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  2038. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  2039. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  2040. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  2041. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  2042. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  2043. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  2044. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  2045. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2046. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  2047. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  2048. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  2049. </package>
  2050. <package name="R3225" urn="urn:adsk.eagle:footprint:13245/1" library_version="1">
  2051. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2052. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  2053. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  2054. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  2055. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  2056. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  2057. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  2058. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  2059. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  2060. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  2061. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2062. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  2063. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2064. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2065. </package>
  2066. <package name="R4527" urn="urn:adsk.eagle:footprint:13246/1" library_version="1">
  2067. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  2068. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2069. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  2070. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  2071. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  2072. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  2073. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2074. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  2075. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  2076. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  2077. </package>
  2078. <package name="R5025" urn="urn:adsk.eagle:footprint:13247/1" library_version="1">
  2079. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  2080. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  2081. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  2082. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  2083. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  2084. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  2085. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  2086. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  2087. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  2088. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2089. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2090. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  2091. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2092. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2093. </package>
  2094. <package name="R6332" urn="urn:adsk.eagle:footprint:13248/1" library_version="1">
  2095. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  2096. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2097. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  2098. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  2099. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  2100. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  2101. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  2102. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  2103. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  2104. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  2105. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  2106. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2107. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  2108. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  2109. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  2110. </package>
  2111. </packages>
  2112. <packages3d>
  2113. <package3d name="0204/7" urn="urn:adsk.eagle:package:13274/1" type="box" library_version="1">
  2114. <description>RESISTOR
  2115. type 0204, grid 7.5 mm</description>
  2116. <packageinstances>
  2117. <packageinstance name="0204/7"/>
  2118. </packageinstances>
  2119. </package3d>
  2120. <package3d name="0207/10" urn="urn:adsk.eagle:package:13275/1" type="box" library_version="1">
  2121. <description>RESISTOR
  2122. type 0207, grid 10 mm</description>
  2123. <packageinstances>
  2124. <packageinstance name="0207/10"/>
  2125. </packageinstances>
  2126. </package3d>
  2127. <package3d name="R0201" urn="urn:adsk.eagle:package:13294/1" type="box" library_version="1">
  2128. <description>RESISTOR chip
  2129. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  2130. <packageinstances>
  2131. <packageinstance name="R0201"/>
  2132. </packageinstances>
  2133. </package3d>
  2134. <package3d name="R0402" urn="urn:adsk.eagle:package:13296/1" type="box" library_version="1">
  2135. <description>RESISTOR</description>
  2136. <packageinstances>
  2137. <packageinstance name="R0402"/>
  2138. </packageinstances>
  2139. </package3d>
  2140. <package3d name="R0603" urn="urn:adsk.eagle:package:13302/1" type="box" library_version="1">
  2141. <description>RESISTOR</description>
  2142. <packageinstances>
  2143. <packageinstance name="R0603"/>
  2144. </packageinstances>
  2145. </package3d>
  2146. <package3d name="R0805" urn="urn:adsk.eagle:package:13300/1" type="box" library_version="1">
  2147. <description>RESISTOR</description>
  2148. <packageinstances>
  2149. <packageinstance name="R0805"/>
  2150. </packageinstances>
  2151. </package3d>
  2152. <package3d name="R1005" urn="urn:adsk.eagle:package:13297/1" type="box" library_version="1">
  2153. <description>RESISTOR</description>
  2154. <packageinstances>
  2155. <packageinstance name="R1005"/>
  2156. </packageinstances>
  2157. </package3d>
  2158. <package3d name="R1206" urn="urn:adsk.eagle:package:13301/1" type="box" library_version="1">
  2159. <description>RESISTOR</description>
  2160. <packageinstances>
  2161. <packageinstance name="R1206"/>
  2162. </packageinstances>
  2163. </package3d>
  2164. <package3d name="R1210" urn="urn:adsk.eagle:package:13299/1" type="box" library_version="1">
  2165. <description>RESISTOR</description>
  2166. <packageinstances>
  2167. <packageinstance name="R1210"/>
  2168. </packageinstances>
  2169. </package3d>
  2170. <package3d name="R1218" urn="urn:adsk.eagle:package:13303/1" type="box" library_version="1">
  2171. <description>CRCW1218 Thick Film, Rectangular Chip Resistors
  2172. Source: http://www.vishay.com .. dcrcw.pdf</description>
  2173. <packageinstances>
  2174. <packageinstance name="R1218"/>
  2175. </packageinstances>
  2176. </package3d>
  2177. <package3d name="R2010" urn="urn:adsk.eagle:package:13309/1" type="box" library_version="1">
  2178. <description>RESISTOR</description>
  2179. <packageinstances>
  2180. <packageinstance name="R2010"/>
  2181. </packageinstances>
  2182. </package3d>
  2183. <package3d name="R2012" urn="urn:adsk.eagle:package:13306/1" type="box" library_version="1">
  2184. <description>RESISTOR</description>
  2185. <packageinstances>
  2186. <packageinstance name="R2012"/>
  2187. </packageinstances>
  2188. </package3d>
  2189. <package3d name="R2512" urn="urn:adsk.eagle:package:13304/1" type="box" library_version="1">
  2190. <description>RESISTOR</description>
  2191. <packageinstances>
  2192. <packageinstance name="R2512"/>
  2193. </packageinstances>
  2194. </package3d>
  2195. <package3d name="R3216" urn="urn:adsk.eagle:package:13305/1" type="box" library_version="1">
  2196. <description>RESISTOR</description>
  2197. <packageinstances>
  2198. <packageinstance name="R3216"/>
  2199. </packageinstances>
  2200. </package3d>
  2201. <package3d name="R3225" urn="urn:adsk.eagle:package:13311/1" type="box" library_version="1">
  2202. <description>RESISTOR</description>
  2203. <packageinstances>
  2204. <packageinstance name="R3225"/>
  2205. </packageinstances>
  2206. </package3d>
  2207. <package3d name="R4527" urn="urn:adsk.eagle:package:13310/1" type="box" library_version="1">
  2208. <description>Package 4527
  2209. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2210. <packageinstances>
  2211. <packageinstance name="R4527"/>
  2212. </packageinstances>
  2213. </package3d>
  2214. <package3d name="R5025" urn="urn:adsk.eagle:package:13308/1" type="box" library_version="1">
  2215. <description>RESISTOR</description>
  2216. <packageinstances>
  2217. <packageinstance name="R5025"/>
  2218. </packageinstances>
  2219. </package3d>
  2220. <package3d name="R6332" urn="urn:adsk.eagle:package:13307/1" type="box" library_version="1">
  2221. <description>RESISTOR
  2222. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2223. <packageinstances>
  2224. <packageinstance name="R6332"/>
  2225. </packageinstances>
  2226. </package3d>
  2227. </packages3d>
  2228. <symbols>
  2229. <symbol name="R" urn="urn:adsk.eagle:symbol:13232/1" library_version="1">
  2230. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  2231. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2232. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  2233. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2234. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  2235. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  2236. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  2237. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  2238. <text x="-5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 1</text>
  2239. <text x="5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 2</text>
  2240. </symbol>
  2241. </symbols>
  2242. <devicesets>
  2243. <deviceset name="R" urn="urn:adsk.eagle:component:13322/1" prefix="R" uservalue="yes" library_version="1">
  2244. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  2245. <gates>
  2246. <gate name="G$1" symbol="R" x="0" y="0"/>
  2247. </gates>
  2248. <devices>
  2249. <device name="0204/7" package="0204/7">
  2250. <connects>
  2251. <connect gate="G$1" pin="1" pad="1"/>
  2252. <connect gate="G$1" pin="2" pad="2"/>
  2253. </connects>
  2254. <package3dinstances>
  2255. <package3dinstance package3d_urn="urn:adsk.eagle:package:13274/1"/>
  2256. </package3dinstances>
  2257. <technologies>
  2258. <technology name="">
  2259. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2260. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2261. </technology>
  2262. </technologies>
  2263. </device>
  2264. <device name="0207/10" package="0207/10">
  2265. <connects>
  2266. <connect gate="G$1" pin="1" pad="1"/>
  2267. <connect gate="G$1" pin="2" pad="2"/>
  2268. </connects>
  2269. <package3dinstances>
  2270. <package3dinstance package3d_urn="urn:adsk.eagle:package:13275/1"/>
  2271. </package3dinstances>
  2272. <technologies>
  2273. <technology name="">
  2274. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2275. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2276. </technology>
  2277. </technologies>
  2278. </device>
  2279. <device name="R0201" package="R0201">
  2280. <connects>
  2281. <connect gate="G$1" pin="1" pad="1"/>
  2282. <connect gate="G$1" pin="2" pad="2"/>
  2283. </connects>
  2284. <package3dinstances>
  2285. <package3dinstance package3d_urn="urn:adsk.eagle:package:13294/1"/>
  2286. </package3dinstances>
  2287. <technologies>
  2288. <technology name="">
  2289. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2290. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2291. </technology>
  2292. </technologies>
  2293. </device>
  2294. <device name="R0402" package="R0402">
  2295. <connects>
  2296. <connect gate="G$1" pin="1" pad="1"/>
  2297. <connect gate="G$1" pin="2" pad="2"/>
  2298. </connects>
  2299. <package3dinstances>
  2300. <package3dinstance package3d_urn="urn:adsk.eagle:package:13296/1"/>
  2301. </package3dinstances>
  2302. <technologies>
  2303. <technology name="">
  2304. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2305. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2306. </technology>
  2307. </technologies>
  2308. </device>
  2309. <device name="R0603" package="R0603">
  2310. <connects>
  2311. <connect gate="G$1" pin="1" pad="1"/>
  2312. <connect gate="G$1" pin="2" pad="2"/>
  2313. </connects>
  2314. <package3dinstances>
  2315. <package3dinstance package3d_urn="urn:adsk.eagle:package:13302/1"/>
  2316. </package3dinstances>
  2317. <technologies>
  2318. <technology name="">
  2319. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2320. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2321. </technology>
  2322. </technologies>
  2323. </device>
  2324. <device name="" package="R0805">
  2325. <connects>
  2326. <connect gate="G$1" pin="1" pad="1"/>
  2327. <connect gate="G$1" pin="2" pad="2"/>
  2328. </connects>
  2329. <package3dinstances>
  2330. <package3dinstance package3d_urn="urn:adsk.eagle:package:13300/1"/>
  2331. </package3dinstances>
  2332. <technologies>
  2333. <technology name="">
  2334. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2335. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2336. </technology>
  2337. </technologies>
  2338. </device>
  2339. <device name="R1005" package="R1005">
  2340. <connects>
  2341. <connect gate="G$1" pin="1" pad="1"/>
  2342. <connect gate="G$1" pin="2" pad="2"/>
  2343. </connects>
  2344. <package3dinstances>
  2345. <package3dinstance package3d_urn="urn:adsk.eagle:package:13297/1"/>
  2346. </package3dinstances>
  2347. <technologies>
  2348. <technology name="">
  2349. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2350. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2351. </technology>
  2352. </technologies>
  2353. </device>
  2354. <device name="R1206" package="R1206">
  2355. <connects>
  2356. <connect gate="G$1" pin="1" pad="1"/>
  2357. <connect gate="G$1" pin="2" pad="2"/>
  2358. </connects>
  2359. <package3dinstances>
  2360. <package3dinstance package3d_urn="urn:adsk.eagle:package:13301/1"/>
  2361. </package3dinstances>
  2362. <technologies>
  2363. <technology name="">
  2364. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2365. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2366. </technology>
  2367. </technologies>
  2368. </device>
  2369. <device name="R1210" package="R1210">
  2370. <connects>
  2371. <connect gate="G$1" pin="1" pad="1"/>
  2372. <connect gate="G$1" pin="2" pad="2"/>
  2373. </connects>
  2374. <package3dinstances>
  2375. <package3dinstance package3d_urn="urn:adsk.eagle:package:13299/1"/>
  2376. </package3dinstances>
  2377. <technologies>
  2378. <technology name="">
  2379. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2380. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2381. </technology>
  2382. </technologies>
  2383. </device>
  2384. <device name="R1218" package="R1218">
  2385. <connects>
  2386. <connect gate="G$1" pin="1" pad="1"/>
  2387. <connect gate="G$1" pin="2" pad="2"/>
  2388. </connects>
  2389. <package3dinstances>
  2390. <package3dinstance package3d_urn="urn:adsk.eagle:package:13303/1"/>
  2391. </package3dinstances>
  2392. <technologies>
  2393. <technology name="">
  2394. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2395. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2396. </technology>
  2397. </technologies>
  2398. </device>
  2399. <device name="R2010" package="R2010">
  2400. <connects>
  2401. <connect gate="G$1" pin="1" pad="1"/>
  2402. <connect gate="G$1" pin="2" pad="2"/>
  2403. </connects>
  2404. <package3dinstances>
  2405. <package3dinstance package3d_urn="urn:adsk.eagle:package:13309/1"/>
  2406. </package3dinstances>
  2407. <technologies>
  2408. <technology name="">
  2409. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2410. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2411. </technology>
  2412. </technologies>
  2413. </device>
  2414. <device name="R2012" package="R2012">
  2415. <connects>
  2416. <connect gate="G$1" pin="1" pad="1"/>
  2417. <connect gate="G$1" pin="2" pad="2"/>
  2418. </connects>
  2419. <package3dinstances>
  2420. <package3dinstance package3d_urn="urn:adsk.eagle:package:13306/1"/>
  2421. </package3dinstances>
  2422. <technologies>
  2423. <technology name="">
  2424. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2425. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2426. </technology>
  2427. </technologies>
  2428. </device>
  2429. <device name="R2512" package="R2512">
  2430. <connects>
  2431. <connect gate="G$1" pin="1" pad="1"/>
  2432. <connect gate="G$1" pin="2" pad="2"/>
  2433. </connects>
  2434. <package3dinstances>
  2435. <package3dinstance package3d_urn="urn:adsk.eagle:package:13304/1"/>
  2436. </package3dinstances>
  2437. <technologies>
  2438. <technology name="">
  2439. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2440. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2441. </technology>
  2442. </technologies>
  2443. </device>
  2444. <device name="R3216" package="R3216">
  2445. <connects>
  2446. <connect gate="G$1" pin="1" pad="1"/>
  2447. <connect gate="G$1" pin="2" pad="2"/>
  2448. </connects>
  2449. <package3dinstances>
  2450. <package3dinstance package3d_urn="urn:adsk.eagle:package:13305/1"/>
  2451. </package3dinstances>
  2452. <technologies>
  2453. <technology name="">
  2454. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2455. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2456. </technology>
  2457. </technologies>
  2458. </device>
  2459. <device name="R3225" package="R3225">
  2460. <connects>
  2461. <connect gate="G$1" pin="1" pad="1"/>
  2462. <connect gate="G$1" pin="2" pad="2"/>
  2463. </connects>
  2464. <package3dinstances>
  2465. <package3dinstance package3d_urn="urn:adsk.eagle:package:13311/1"/>
  2466. </package3dinstances>
  2467. <technologies>
  2468. <technology name="">
  2469. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2470. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2471. </technology>
  2472. </technologies>
  2473. </device>
  2474. <device name="R4527" package="R4527">
  2475. <connects>
  2476. <connect gate="G$1" pin="1" pad="1"/>
  2477. <connect gate="G$1" pin="2" pad="2"/>
  2478. </connects>
  2479. <package3dinstances>
  2480. <package3dinstance package3d_urn="urn:adsk.eagle:package:13310/1"/>
  2481. </package3dinstances>
  2482. <technologies>
  2483. <technology name="">
  2484. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2485. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2486. </technology>
  2487. </technologies>
  2488. </device>
  2489. <device name="R5025" package="R5025">
  2490. <connects>
  2491. <connect gate="G$1" pin="1" pad="1"/>
  2492. <connect gate="G$1" pin="2" pad="2"/>
  2493. </connects>
  2494. <package3dinstances>
  2495. <package3dinstance package3d_urn="urn:adsk.eagle:package:13308/1"/>
  2496. </package3dinstances>
  2497. <technologies>
  2498. <technology name="">
  2499. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2500. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2501. </technology>
  2502. </technologies>
  2503. </device>
  2504. <device name="R6332" package="R6332">
  2505. <connects>
  2506. <connect gate="G$1" pin="1" pad="1"/>
  2507. <connect gate="G$1" pin="2" pad="2"/>
  2508. </connects>
  2509. <package3dinstances>
  2510. <package3dinstance package3d_urn="urn:adsk.eagle:package:13307/1"/>
  2511. </package3dinstances>
  2512. <technologies>
  2513. <technology name="">
  2514. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2515. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2516. </technology>
  2517. </technologies>
  2518. </device>
  2519. </devices>
  2520. </deviceset>
  2521. </devicesets>
  2522. </library>
  2523. <library name="supply1" urn="urn:adsk.eagle:library:371">
  2524. <description>&lt;b&gt;Supply Symbols&lt;/b&gt;&lt;p&gt;
  2525. GND, VCC, 0V, +5V, -5V, etc.&lt;p&gt;
  2526. Please keep in mind, that these devices are necessary for the
  2527. automatic wiring of the supply signals.&lt;p&gt;
  2528. The pin name defined in the symbol is identical to the net which is to be wired automatically.&lt;p&gt;
  2529. 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;
  2530. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  2531. <packages>
  2532. </packages>
  2533. <symbols>
  2534. <symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1" library_version="1">
  2535. <wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
  2536. <text x="-2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  2537. <pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
  2538. </symbol>
  2539. </symbols>
  2540. <devicesets>
  2541. <deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND" library_version="1">
  2542. <description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>
  2543. <gates>
  2544. <gate name="1" symbol="GND" x="0" y="0"/>
  2545. </gates>
  2546. <devices>
  2547. <device name="">
  2548. <technologies>
  2549. <technology name=""/>
  2550. </technologies>
  2551. </device>
  2552. </devices>
  2553. </deviceset>
  2554. </devicesets>
  2555. </library>
  2556. <library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513">
  2557. <description>&lt;h3&gt;SparkFun Connectors&lt;/h3&gt;
  2558. This library contains electrically-functional connectors.
  2559. &lt;br&gt;
  2560. &lt;br&gt;
  2561. 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.
  2562. &lt;br&gt;
  2563. &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;.
  2564. &lt;br&gt;
  2565. &lt;br&gt;
  2566. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  2567. &lt;br&gt;
  2568. &lt;br&gt;
  2569. 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>
  2570. <packages>
  2571. <package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1">
  2572. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2573. &lt;p&gt;Specifications:
  2574. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2575. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2576. &lt;/ul&gt;&lt;/p&gt;
  2577. &lt;p&gt;Example device(s):
  2578. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2579. &lt;/ul&gt;&lt;/p&gt;</description>
  2580. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2581. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2582. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2583. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2584. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2585. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2586. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2587. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2588. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2589. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2590. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2591. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2592. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2593. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2594. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2595. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2596. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2597. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2598. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2599. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2600. </package>
  2601. <package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1">
  2602. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole&lt;/h3&gt;
  2603. &lt;p&gt;Specifications:
  2604. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2605. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2606. &lt;/ul&gt;&lt;/p&gt;
  2607. &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;
  2608. &lt;p&gt;Example device(s):
  2609. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2610. &lt;/ul&gt;&lt;/p&gt;</description>
  2611. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2612. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2613. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2614. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2615. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2616. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2617. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2618. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2619. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2620. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2621. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  2622. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2623. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2624. </package>
  2625. <package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1">
  2626. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH&lt;/h3&gt;
  2627. &lt;p&gt;Specifications:
  2628. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2629. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2630. &lt;/ul&gt;&lt;/p&gt;
  2631. &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;
  2632. &lt;p&gt;Example device(s):
  2633. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2634. &lt;/ul&gt;&lt;/p&gt;</description>
  2635. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2636. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2637. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2638. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2639. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2640. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2641. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2642. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2643. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2644. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2645. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2646. <wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/>
  2647. <wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/>
  2648. <wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2649. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2650. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2651. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2652. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2653. </package>
  2654. <package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1">
  2655. <description>&lt;h3&gt;JST-Right Angle Male Header SMT&lt;/h3&gt;
  2656. &lt;p&gt;Specifications:
  2657. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2658. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2659. &lt;/ul&gt;&lt;/p&gt;
  2660. &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;
  2661. &lt;p&gt;Example device(s):
  2662. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2663. &lt;li&gt;JST_2MM_MALE&lt;/li&gt;
  2664. &lt;/ul&gt;&lt;/p&gt;</description>
  2665. <wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/>
  2666. <wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/>
  2667. <wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/>
  2668. <wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/>
  2669. <wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/>
  2670. <wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/>
  2671. <wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/>
  2672. <wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/>
  2673. <wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/>
  2674. <smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2675. <smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2676. <smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2677. <smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2678. <text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2679. <text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2680. </package>
  2681. <package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1">
  2682. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2683. &lt;p&gt;Specifications:
  2684. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2685. &lt;li&gt;Pin pitch:0.15"&lt;/li&gt;
  2686. &lt;/ul&gt;&lt;/p&gt;
  2687. &lt;p&gt;Example device(s):
  2688. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2689. &lt;/ul&gt;&lt;/p&gt;</description>
  2690. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/>
  2691. <wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  2692. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/>
  2693. <wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/>
  2694. <pad name="P$1" x="0" y="0" drill="1.0668"/>
  2695. <pad name="P$2" x="3.81" y="0" drill="1.0668"/>
  2696. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2697. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2698. </package>
  2699. <package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1">
  2700. <description>&lt;h3&gt;JST-Vertical Male Header SMT &lt;/h3&gt;
  2701. &lt;p&gt;Specifications:
  2702. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2703. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2704. &lt;/ul&gt;&lt;/p&gt;
  2705. &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;
  2706. &lt;p&gt;Example device(s):
  2707. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2708. &lt;/ul&gt;&lt;/p&gt;</description>
  2709. <wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/>
  2710. <wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/>
  2711. <wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/>
  2712. <wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/>
  2713. <wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/>
  2714. <wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/>
  2715. <wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/>
  2716. <wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/>
  2717. <wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/>
  2718. <wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/>
  2719. <wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/>
  2720. <smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2721. <smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2722. <smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/>
  2723. <smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/>
  2724. <text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2725. <text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2726. </package>
  2727. <package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1">
  2728. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -2 Pin PTH&lt;/h3&gt;
  2729. &lt;p&gt;Specifications:
  2730. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2731. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  2732. &lt;/ul&gt;&lt;/p&gt;
  2733. &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;
  2734. &lt;p&gt;Example device(s):
  2735. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2736. &lt;/ul&gt;&lt;/p&gt;</description>
  2737. <wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/>
  2738. <wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/>
  2739. <wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/>
  2740. <wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  2741. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2742. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  2743. <wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2744. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  2745. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  2746. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  2747. <wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/>
  2748. <wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/>
  2749. <wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/>
  2750. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  2751. <pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/>
  2752. <pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/>
  2753. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2754. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2755. </package>
  2756. <package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1">
  2757. <description>&lt;h3&gt;Plated Through Hole - Locking Footprint&lt;/h3&gt;
  2758. Holes are staggered by 0.005" from center to hold pins while soldering.
  2759. &lt;p&gt;Specifications:
  2760. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2761. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2762. &lt;/ul&gt;&lt;/p&gt;
  2763. &lt;p&gt;Example device(s):
  2764. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2765. &lt;/ul&gt;&lt;/p&gt;</description>
  2766. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2767. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2768. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2769. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2770. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2771. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2772. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2773. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2774. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2775. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2776. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2777. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2778. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2779. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2780. <pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2781. <pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2782. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2783. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2784. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2785. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2786. </package>
  2787. <package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1">
  2788. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  2789. Holes are offset from center by 0.005" to hold pins in place during soldering.
  2790. &lt;p&gt;Specifications:
  2791. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2792. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2793. &lt;/ul&gt;&lt;/p&gt;
  2794. &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;
  2795. &lt;p&gt;Example device(s):
  2796. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2797. &lt;/ul&gt;&lt;/p&gt;</description>
  2798. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2799. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2800. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2801. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2802. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2803. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2804. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2805. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2806. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2807. <pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2808. <pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/>
  2809. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2810. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2811. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2812. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2813. </package>
  2814. <package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1">
  2815. <description>&lt;h3&gt;Plated Through Hole - Long Pads with Locking Footprint&lt;/h3&gt;
  2816. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  2817. &lt;p&gt;Specifications:
  2818. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2819. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2820. &lt;/ul&gt;&lt;/p&gt;
  2821. &lt;p&gt;Example device(s):
  2822. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2823. &lt;/ul&gt;&lt;/p&gt;</description>
  2824. <wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/>
  2825. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  2826. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  2827. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  2828. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  2829. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  2830. <wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  2831. <wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/>
  2832. <wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/>
  2833. <wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/>
  2834. <wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/>
  2835. <pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/>
  2836. <pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/>
  2837. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2838. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2839. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2840. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2841. </package>
  2842. <package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1">
  2843. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking&lt;/h3&gt;
  2844. Holes are offset from center 0.005" to hold pins in place during soldering.
  2845. &lt;p&gt;Specifications:
  2846. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2847. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2848. &lt;/ul&gt;&lt;/p&gt;
  2849. &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;
  2850. &lt;p&gt;Example device(s):
  2851. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2852. &lt;/ul&gt;&lt;/p&gt;</description>
  2853. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2854. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2855. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2856. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2857. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2858. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2859. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2860. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2861. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2862. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2863. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2864. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2865. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2866. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2867. <circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2868. <circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2869. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2870. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  2871. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2872. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2873. </package>
  2874. <package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1">
  2875. <description>&lt;h3&gt;Plated Through Hole - Long Pads without Silk Outline&lt;/h3&gt;
  2876. &lt;p&gt;Specifications:
  2877. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2878. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2879. &lt;/ul&gt;&lt;/p&gt;
  2880. &lt;p&gt;Example device(s):
  2881. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2882. &lt;/ul&gt;&lt;/p&gt;</description>
  2883. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2884. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2885. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2886. <text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2887. </package>
  2888. <package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1">
  2889. <description>&lt;h3&gt;Plated Through Hole - No Silk Outline&lt;/h3&gt;
  2890. &lt;p&gt;Specifications:
  2891. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2892. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2893. &lt;/ul&gt;&lt;/p&gt;
  2894. &lt;p&gt;Example device(s):
  2895. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2896. &lt;/ul&gt;&lt;/p&gt;</description>
  2897. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2898. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2899. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2900. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2901. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2902. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2903. </package>
  2904. <package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1">
  2905. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  2906. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2907. &lt;p&gt;Specifications:
  2908. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2909. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2910. &lt;/ul&gt;&lt;/p&gt;
  2911. &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;
  2912. &lt;p&gt;Example device(s):
  2913. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2914. &lt;/ul&gt;&lt;/p&gt;</description>
  2915. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2916. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2917. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2918. <text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2919. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2920. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2921. <wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/>
  2922. <wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/>
  2923. <wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/>
  2924. <wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/>
  2925. <wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/>
  2926. <wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/>
  2927. <wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/>
  2928. </package>
  2929. <package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1">
  2930. <description>&lt;h3&gt;Plated Through Hole - 0.1" holes&lt;/h3&gt;
  2931. &lt;p&gt;Specifications:
  2932. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2933. &lt;li&gt;Pin pitch:0.2"&lt;/li&gt;
  2934. &lt;/ul&gt;&lt;/p&gt;
  2935. &lt;p&gt;Example device(s):
  2936. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2937. &lt;/ul&gt;&lt;/p&gt;</description>
  2938. <wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/>
  2939. <wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2940. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/>
  2941. <wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/>
  2942. <pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/>
  2943. <pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/>
  2944. <text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2945. <text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2946. </package>
  2947. <package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1">
  2948. <description>&lt;h3&gt;Pogo Pins Connector - No Silk Outline&lt;/h3&gt;
  2949. &lt;p&gt;Specifications:
  2950. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2951. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2952. &lt;/ul&gt;&lt;/p&gt;
  2953. &lt;p&gt;Example device(s):
  2954. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2955. &lt;/ul&gt;&lt;/p&gt;</description>
  2956. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  2957. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  2958. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2959. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2960. <hole x="0" y="0" drill="1.4732"/>
  2961. <hole x="2.54" y="0" drill="1.4732"/>
  2962. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2963. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2964. </package>
  2965. <package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1">
  2966. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline&lt;/h3&gt;
  2967. &lt;p&gt;Specifications:
  2968. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2969. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2970. &lt;/ul&gt;&lt;/p&gt;
  2971. &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;
  2972. &lt;p&gt;Example device(s):
  2973. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2974. &lt;/ul&gt;&lt;/p&gt;</description>
  2975. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/>
  2976. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/>
  2977. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/>
  2978. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  2979. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2980. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  2981. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2982. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2983. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2984. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2985. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2986. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2987. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2988. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2989. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2990. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2991. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2992. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2993. </package>
  2994. <package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1">
  2995. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole- No Silk&lt;/h3&gt;
  2996. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2997. &lt;br&gt; No silk outline of connector.
  2998. &lt;p&gt;Specifications:
  2999. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  3000. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  3001. &lt;/ul&gt;&lt;/p&gt;
  3002. &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;
  3003. &lt;p&gt;Example device(s):
  3004. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3005. &lt;/ul&gt;&lt;/p&gt;</description>
  3006. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  3007. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  3008. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  3009. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  3010. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  3011. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  3012. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  3013. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  3014. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  3015. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  3016. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  3017. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  3018. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3019. </package>
  3020. <package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1">
  3021. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole - KIT&lt;/h3&gt;
  3022. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  3023. &lt;br&gt; This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  3024. &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.
  3025. &lt;p&gt;Specifications:
  3026. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  3027. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  3028. &lt;/ul&gt;&lt;/p&gt;
  3029. &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;
  3030. &lt;p&gt;Example device(s):
  3031. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3032. &lt;/ul&gt;&lt;/p&gt;</description>
  3033. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  3034. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  3035. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  3036. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  3037. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  3038. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  3039. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  3040. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  3041. <pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  3042. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  3043. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  3044. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  3045. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3046. <polygon width="0.127" layer="30">
  3047. <vertex x="-0.9975" y="-0.6604" curve="-90.025935"/>
  3048. <vertex x="-1.6604" y="0" curve="-90.017354"/>
  3049. <vertex x="-1" y="0.6604" curve="-90"/>
  3050. <vertex x="-0.3396" y="0" curve="-90.078137"/>
  3051. </polygon>
  3052. <polygon width="0.127" layer="29">
  3053. <vertex x="-1" y="-0.2865" curve="-90.08005"/>
  3054. <vertex x="-1.2865" y="0" curve="-90.040011"/>
  3055. <vertex x="-1" y="0.2865" curve="-90"/>
  3056. <vertex x="-0.7135" y="0" curve="-90"/>
  3057. </polygon>
  3058. <polygon width="0.127" layer="30">
  3059. <vertex x="1.0025" y="-0.6604" curve="-90.025935"/>
  3060. <vertex x="0.3396" y="0" curve="-90.017354"/>
  3061. <vertex x="1" y="0.6604" curve="-90"/>
  3062. <vertex x="1.6604" y="0" curve="-90.078137"/>
  3063. </polygon>
  3064. <polygon width="0.127" layer="29">
  3065. <vertex x="1" y="-0.2865" curve="-90.08005"/>
  3066. <vertex x="0.7135" y="0" curve="-90.040011"/>
  3067. <vertex x="1" y="0.2865" curve="-90"/>
  3068. <vertex x="1.2865" y="0" curve="-90"/>
  3069. </polygon>
  3070. </package>
  3071. <package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1">
  3072. <description>&lt;h3&gt;Spring Terminal- PCB Mount 2 Pin PTH&lt;/h3&gt;
  3073. tDocu marks the spring arms
  3074. &lt;p&gt;Specifications:
  3075. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3076. &lt;li&gt;Pin pitch: 0.1"&lt;/li&gt;
  3077. &lt;/ul&gt;&lt;/p&gt;
  3078. &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;
  3079. &lt;p&gt;Example device(s):
  3080. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3081. &lt;/ul&gt;&lt;/p&gt;</description>
  3082. <wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/>
  3083. <wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/>
  3084. <wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/>
  3085. <wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/>
  3086. <wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/>
  3087. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/>
  3088. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/>
  3089. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/>
  3090. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/>
  3091. <wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  3092. <wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/>
  3093. <wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/>
  3094. <wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  3095. <pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/>
  3096. <pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/>
  3097. <pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/>
  3098. <pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/>
  3099. </package>
  3100. <package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1">
  3101. <description>&lt;h3&gt;2 Pin Screw Terminal - 2.54mm&lt;/h3&gt;
  3102. &lt;p&gt;Specifications:
  3103. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  3104. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3105. &lt;/ul&gt;&lt;/p&gt;
  3106. &lt;p&gt;Example device(s):
  3107. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  3108. &lt;/ul&gt;&lt;/p&gt;</description>
  3109. <pad name="P2" x="0" y="0" drill="1.016" shape="square"/>
  3110. <pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/>
  3111. <wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/>
  3112. <wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/>
  3113. <wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/>
  3114. <wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/>
  3115. <wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/>
  3116. <wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/>
  3117. <wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
  3118. <text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3119. <text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3120. </package>
  3121. <package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1">
  3122. <description>2 pin poke-home connector
  3123. part number 2062-2P from STA</description>
  3124. <wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/>
  3125. <wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/>
  3126. <wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/>
  3127. <wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/>
  3128. <wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/>
  3129. <smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/>
  3130. <smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/>
  3131. <smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/>
  3132. <smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/>
  3133. <text x="0.635" y="-3.175" size="0.4064" layer="25">&gt;NAME</text>
  3134. <text x="0.635" y="-1.905" size="0.4064" layer="27">&gt;VALUE</text>
  3135. </package>
  3136. <package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1">
  3137. <wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/>
  3138. <wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  3139. <wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/>
  3140. <wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  3141. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3142. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3143. <pad name="2" x="-1.27" y="-5.85" drill="0.8"/>
  3144. <pad name="1" x="1.27" y="-5.85" drill="0.8"/>
  3145. </package>
  3146. <package name="1X08" urn="urn:adsk.eagle:footprint:37760/1" library_version="1">
  3147. <description>&lt;h3&gt;Plated Through Hole -8 Pin&lt;/h3&gt;
  3148. &lt;p&gt;Specifications:
  3149. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3150. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3151. &lt;/ul&gt;&lt;/p&gt;
  3152. &lt;p&gt;Example device(s):
  3153. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3154. &lt;/ul&gt;&lt;/p&gt;</description>
  3155. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3156. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3157. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3158. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3159. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3160. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3161. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3162. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3163. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3164. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3165. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3166. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3167. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3168. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3169. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3170. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3171. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3172. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3173. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3174. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3175. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3176. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3177. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3178. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3179. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3180. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3181. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3182. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3183. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3184. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3185. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3186. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3187. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3188. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3189. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3190. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3191. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3192. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3193. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3194. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3195. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3196. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3197. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3198. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3199. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3200. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3201. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3202. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3203. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3204. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3205. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3206. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3207. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3208. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3209. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3210. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3211. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3212. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3213. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3214. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3215. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3216. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3217. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3218. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3219. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3220. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3221. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3222. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3223. </package>
  3224. <package name="1X08_LOCK" urn="urn:adsk.eagle:footprint:37761/1" library_version="1">
  3225. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint&lt;/h3&gt;
  3226. Holes are offset 0.005", to hold pins in place during soldering.
  3227. &lt;p&gt;Specifications:
  3228. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3229. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3230. &lt;/ul&gt;&lt;/p&gt;
  3231. &lt;p&gt;Example device(s):
  3232. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3233. &lt;/ul&gt;&lt;/p&gt;</description>
  3234. <wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
  3235. <wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3236. <wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
  3237. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3238. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3239. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3240. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3241. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3242. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3243. <wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3244. <wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3245. <wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
  3246. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3247. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3248. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3249. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3250. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3251. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3252. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3253. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3254. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3255. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3256. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3257. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3258. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3259. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3260. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3261. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3262. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3263. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3264. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3265. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3266. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3267. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3268. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3269. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3270. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3271. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3272. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3273. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3274. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3275. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3276. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3277. <wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
  3278. <wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
  3279. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3280. <wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
  3281. <wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
  3282. <wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3283. <wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
  3284. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3285. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3286. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3287. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3288. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3289. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3290. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3291. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3292. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3293. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3294. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3295. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3296. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3297. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3298. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3299. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3300. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3301. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3302. </package>
  3303. <package name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37762/1" library_version="1">
  3304. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint with Long Pads&lt;/h3&gt;
  3305. Holes are offset 0.005", to hold pins in place during soldering.
  3306. &lt;p&gt;Specifications:
  3307. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3308. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3309. &lt;/ul&gt;&lt;/p&gt;
  3310. &lt;p&gt;Example device(s):
  3311. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3312. &lt;/ul&gt;&lt;/p&gt;</description>
  3313. <wire x1="1.524" y1="0" x2="1.016" y2="0" width="0.2032" layer="21"/>
  3314. <wire x1="4.064" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  3315. <wire x1="6.604" y1="0" x2="6.096" y2="0" width="0.2032" layer="21"/>
  3316. <wire x1="9.144" y1="0" x2="8.636" y2="0" width="0.2032" layer="21"/>
  3317. <wire x1="11.684" y1="0" x2="11.176" y2="0" width="0.2032" layer="21"/>
  3318. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  3319. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  3320. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  3321. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  3322. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  3323. <wire x1="14.224" y1="0" x2="13.716" y2="0" width="0.2032" layer="21"/>
  3324. <wire x1="16.764" y1="0" x2="16.256" y2="0" width="0.2032" layer="21"/>
  3325. <wire x1="19.05" y1="0" x2="19.05" y2="-0.9906" width="0.2032" layer="21"/>
  3326. <wire x1="19.05" y1="-0.9906" x2="18.7706" y2="-1.27" width="0.2032" layer="21"/>
  3327. <wire x1="19.05" y1="0" x2="19.05" y2="0.9906" width="0.2032" layer="21"/>
  3328. <wire x1="19.05" y1="0.9906" x2="18.7706" y2="1.27" width="0.2032" layer="21"/>
  3329. <wire x1="19.05" y1="0" x2="18.796" y2="0" width="0.2032" layer="21"/>
  3330. <pad name="1" x="0" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3331. <pad name="2" x="2.54" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3332. <pad name="3" x="5.08" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3333. <pad name="4" x="7.62" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3334. <pad name="5" x="10.16" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3335. <pad name="6" x="12.7" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3336. <pad name="7" x="15.24" y="0.127" drill="1.016" shape="long" rot="R90"/>
  3337. <pad name="8" x="17.78" y="-0.127" drill="1.016" shape="long" rot="R90"/>
  3338. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  3339. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  3340. <rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="51"/>
  3341. <rectangle x1="7.3279" y1="-0.2921" x2="7.9121" y2="0.2921" layer="51" rot="R90"/>
  3342. <rectangle x1="9.8679" y1="-0.2921" x2="10.4521" y2="0.2921" layer="51"/>
  3343. <rectangle x1="12.4079" y1="-0.2921" x2="12.9921" y2="0.2921" layer="51"/>
  3344. <rectangle x1="14.9479" y1="-0.2921" x2="15.5321" y2="0.2921" layer="51"/>
  3345. <rectangle x1="17.4879" y1="-0.2921" x2="18.0721" y2="0.2921" layer="51"/>
  3346. <text x="-0.889" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3347. <text x="-1.143" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3348. </package>
  3349. <package name="1X08_LONGPADS" urn="urn:adsk.eagle:footprint:37763/1" library_version="1">
  3350. <description>&lt;h3&gt;Plated Through Hole -8 Pin Long Pads&lt;/h3&gt;
  3351. &lt;p&gt;Specifications:
  3352. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3353. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3354. &lt;/ul&gt;&lt;/p&gt;
  3355. &lt;p&gt;Example device(s):
  3356. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3357. &lt;/ul&gt;&lt;/p&gt;</description>
  3358. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3359. <wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
  3360. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3361. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3362. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3363. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3364. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3365. <pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3366. <pad name="7" x="15.24" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3367. <pad name="8" x="17.78" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3368. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3369. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3370. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3371. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3372. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3373. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3374. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3375. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3376. <text x="-1.143" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3377. <text x="-1.016" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3378. </package>
  3379. <package name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:footprint:37764/1" library_version="1">
  3380. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -8 Pin PTH&lt;/h3&gt;
  3381. &lt;p&gt;Specifications:
  3382. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3383. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3384. &lt;/ul&gt;&lt;/p&gt;
  3385. &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;
  3386. &lt;p&gt;Example device(s):
  3387. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3388. &lt;/ul&gt;&lt;/p&gt;</description>
  3389. <wire x1="-1.75" y1="3.4" x2="26.25" y2="3.4" width="0.2032" layer="21"/>
  3390. <wire x1="26.25" y1="3.4" x2="26.25" y2="-2.8" width="0.2032" layer="21"/>
  3391. <wire x1="26.25" y1="-2.8" x2="26.25" y2="-3.6" width="0.2032" layer="21"/>
  3392. <wire x1="26.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3393. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3394. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3395. <wire x1="26.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3396. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3397. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3398. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3399. <wire x1="26.25" y1="3.15" x2="26.75" y2="3.15" width="0.2032" layer="51"/>
  3400. <wire x1="26.75" y1="3.15" x2="26.75" y2="2.15" width="0.2032" layer="51"/>
  3401. <wire x1="26.75" y1="2.15" x2="26.25" y2="2.15" width="0.2032" layer="51"/>
  3402. <wire x1="1.016" y1="-1.524" x2="-0.889" y2="-1.524" width="0.2032" layer="21"/>
  3403. <wire x1="-0.889" y1="-1.524" x2="1.016" y2="-1.524" width="0.2032" layer="22"/>
  3404. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032"/>
  3405. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3406. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3407. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3408. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  3409. <pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/>
  3410. <pad name="7" x="21" y="0" drill="1.2" diameter="2.032"/>
  3411. <pad name="8" x="24.5" y="0" drill="1.2" diameter="2.032"/>
  3412. <text x="11.049" y="2.286" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3413. <text x="10.795" y="1.397" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3414. </package>
  3415. <package name="1X08_SMD" urn="urn:adsk.eagle:footprint:37765/1" library_version="1">
  3416. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3417. &lt;p&gt;Specifications:
  3418. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3419. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3420. &lt;/ul&gt;&lt;/p&gt;
  3421. &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;
  3422. &lt;p&gt;Example device(s):
  3423. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3424. &lt;/ul&gt;&lt;/p&gt;</description>
  3425. <wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3426. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3427. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3428. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3429. <wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3430. <wire x1="-19.15" y1="-1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3431. <wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3432. <wire x1="-19.15" y1="1.25" x2="-15.963" y2="1.25" width="0.127" layer="21"/>
  3433. <wire x1="-18.63" y1="-1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3434. <wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/>
  3435. <wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/>
  3436. <wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/>
  3437. <wire x1="-14.537" y1="1.25" x2="-10.863" y2="1.25" width="0.127" layer="21"/>
  3438. <wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/>
  3439. <wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/>
  3440. <wire x1="-13.489" y1="-1.25" x2="-16.991" y2="-1.25" width="0.127" layer="21"/>
  3441. <smd name="7" x="-15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3442. <smd name="5" x="-10.16" 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="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3445. <smd name="8" x="-17.78" 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="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3448. <smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3449. <text x="-18.542" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3450. <text x="-18.542" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3451. </package>
  3452. <package name="1X08_SMD_ALT" urn="urn:adsk.eagle:footprint:37766/1" library_version="1">
  3453. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3454. Alternate pin configuration
  3455. &lt;p&gt;Specifications:
  3456. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3457. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3458. &lt;/ul&gt;&lt;/p&gt;
  3459. &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;
  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="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/>
  3464. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/>
  3465. <wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3466. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3467. <wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/>
  3468. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3469. <wire x1="-18.63" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/>
  3470. <wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/>
  3471. <wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3472. <wire x1="-19.15" y1="-1.25" x2="-15.963" y2="-1.25" width="0.127" layer="21"/>
  3473. <wire x1="-13.403" y1="1.25" x2="-17.077" y2="1.25" width="0.127" layer="21"/>
  3474. <wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/>
  3475. <wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/>
  3476. <wire x1="-14.451" y1="-1.25" x2="-10.949" y2="-1.25" width="0.127" layer="21"/>
  3477. <wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/>
  3478. <wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/>
  3479. <smd name="7" x="-15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3480. <smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3481. <smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3482. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3483. <smd name="8" x="-17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3484. <smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3485. <smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3486. <smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3487. <text x="-18.796" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3488. <text x="-18.923" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3489. </package>
  3490. <package name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:footprint:37767/1" library_version="1">
  3491. <description>&lt;h3&gt;SMD -8 Pin Vertical Female&lt;/h3&gt;
  3492. Combined footprint configuration
  3493. &lt;p&gt;Specifications:
  3494. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3495. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3496. &lt;/ul&gt;&lt;/p&gt;
  3497. &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;
  3498. &lt;p&gt;Example device(s):
  3499. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3500. &lt;/ul&gt;&lt;/p&gt;</description>
  3501. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.127" layer="21"/>
  3502. <wire x1="19.15" y1="1.25" x2="19.15" y2="-1.25" width="0.127" layer="21"/>
  3503. <wire x1="-0.85" y1="-1.25" x2="-1.37" y2="-1.25" width="0.127" layer="21"/>
  3504. <wire x1="19.15" y1="-1.25" x2="18.503" y2="-1.25" width="0.127" layer="21"/>
  3505. <wire x1="18.63" y1="1.25" x2="19.15" y2="1.25" width="0.127" layer="21"/>
  3506. <wire x1="-1.37" y1="1.25" x2="-0.723" y2="1.25" width="0.127" layer="21"/>
  3507. <wire x1="14.537" y1="-1.25" x2="13.403" y2="-1.25" width="0.127" layer="21"/>
  3508. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.127" layer="21"/>
  3509. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.127" layer="21"/>
  3510. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.127" layer="21"/>
  3511. <wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.127" layer="21"/>
  3512. <wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.127" layer="21"/>
  3513. <wire x1="13.489" y1="1.25" x2="14.451" y2="1.25" width="0.127" layer="21"/>
  3514. <wire x1="16.029" y1="1.25" x2="16.991" y2="1.25" width="0.127" layer="21"/>
  3515. <wire x1="17.077" y1="-1.25" x2="15.943" y2="-1.25" width="0.127" layer="21"/>
  3516. <wire x1="11.997" y1="-1.25" x2="10.863" y2="-1.25" width="0.127" layer="21"/>
  3517. <wire x1="9.457" y1="-1.25" x2="8.323" y2="-1.25" width="0.127" layer="21"/>
  3518. <wire x1="6.917" y1="-1.25" x2="5.783" y2="-1.25" width="0.127" layer="21"/>
  3519. <wire x1="4.377" y1="-1.25" x2="3.243" y2="-1.25" width="0.127" layer="21"/>
  3520. <wire x1="1.837" y1="-1.25" x2="0.703" y2="-1.25" width="0.127" layer="21"/>
  3521. <wire x1="17.78" y1="1.27" x2="17.78" y2="-1.27" width="0.4064" layer="1"/>
  3522. <wire x1="15.24" y1="1.27" x2="15.24" y2="-1.27" width="0.4064" layer="1"/>
  3523. <wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/>
  3524. <wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/>
  3525. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  3526. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  3527. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  3528. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  3529. <smd name="7@2" x="15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3530. <smd name="5@2" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3531. <smd name="3@2" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3532. <smd name="8@2" x="17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3533. <smd name="6@2" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3534. <smd name="4@2" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3535. <smd name="2@2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3536. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3537. <smd name="2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3538. <smd name="3" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3539. <smd name="4" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3540. <smd name="5" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3541. <smd name="6" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3542. <smd name="7" x="15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3543. <smd name="8" x="17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3544. <smd name="1@2" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3545. <text x="-0.381" y="3.048" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3546. <text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3547. </package>
  3548. <package name="BM08B-SRSS-TB" urn="urn:adsk.eagle:footprint:37768/1" library_version="1">
  3549. <description>&lt;h3&gt;JST Vertical Crimp Connect&lt;/h3&gt;
  3550. &lt;p&gt;Specifications:
  3551. &lt;ul&gt;&lt;li&gt;Pin count: 8&lt;/li&gt;
  3552. &lt;li&gt;Pin pitch:1mm&lt;/li&gt;
  3553. &lt;/ul&gt;&lt;/p&gt;
  3554. &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;
  3555. &lt;p&gt;Example device(s):
  3556. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3557. &lt;/ul&gt;&lt;/p&gt;</description>
  3558. <wire x1="-5" y1="3.3" x2="5" y2="3.3" width="0.127" layer="51"/>
  3559. <wire x1="-5" y1="0.4" x2="-5" y2="3.3" width="0.127" layer="51"/>
  3560. <wire x1="5" y1="0.4" x2="5" y2="3.3" width="0.127" layer="51"/>
  3561. <wire x1="-5" y1="0.4" x2="5" y2="0.4" width="0.127" layer="51"/>
  3562. <wire x1="-4.1" y1="0.35" x2="-5.05" y2="0.35" width="0.2032" layer="21"/>
  3563. <wire x1="-5.05" y1="0.35" x2="-5.05" y2="1.35" width="0.2032" layer="21"/>
  3564. <wire x1="5.05" y1="0.35" x2="4.15" y2="0.35" width="0.2032" layer="21"/>
  3565. <wire x1="5.05" y1="0.35" x2="5.05" y2="1.35" width="0.2032" layer="21"/>
  3566. <wire x1="-3.9" y1="3.4" x2="3.9" y2="3.4" width="0.2032" layer="21"/>
  3567. <circle x="-4.4" y="-0.35" radius="0.1118" width="0.4064" layer="21"/>
  3568. <smd name="1" x="-3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3569. <smd name="2" x="-2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3570. <smd name="3" x="-1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3571. <smd name="4" x="-0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3572. <smd name="5" x="0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3573. <smd name="6" x="1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3574. <smd name="7" x="2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3575. <smd name="8" x="3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
  3576. <smd name="P$9" x="4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3577. <smd name="P$10" x="-4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/>
  3578. <text x="-1.397" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3579. <text x="-1.651" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3580. </package>
  3581. <package name="1X08_SMD_MALE" urn="urn:adsk.eagle:footprint:37769/1" library_version="1">
  3582. <description>&lt;h3&gt;SMD -8 Pin Vertical Male&lt;/h3&gt;
  3583. &lt;p&gt;Specifications:
  3584. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3585. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3586. &lt;/ul&gt;&lt;/p&gt;
  3587. &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;
  3588. &lt;p&gt;Example device(s):
  3589. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3590. &lt;/ul&gt;&lt;/p&gt;</description>
  3591. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3592. <wire x1="-1.27" y1="-1.25" x2="19.05" y2="-1.25" width="0.127" layer="51"/>
  3593. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.127" layer="51"/>
  3594. <wire x1="19.05" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/>
  3595. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/>
  3596. <wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/>
  3597. <wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/>
  3598. <wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/>
  3599. <wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/>
  3600. <wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/>
  3601. <wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/>
  3602. <wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/>
  3603. <wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/>
  3604. <wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/>
  3605. <wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/>
  3606. <wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/>
  3607. <wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/>
  3608. <wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.1778" layer="21"/>
  3609. <wire x1="16.002" y1="1.25" x2="17.018" y2="1.25" width="0.1778" layer="21"/>
  3610. <wire x1="17.018" y1="-1.25" x2="16.002" y2="-1.25" width="0.1778" layer="21"/>
  3611. <wire x1="19.05" y1="-1.25" x2="18.415" y2="-1.25" width="0.1778" layer="21"/>
  3612. <wire x1="19.05" y1="1.25" x2="18.415" y2="1.25" width="0.1778" layer="21"/>
  3613. <wire x1="13.462" y1="1.25" x2="14.478" y2="1.25" width="0.1778" layer="21"/>
  3614. <wire x1="14.478" y1="-1.25" x2="13.462" y2="-1.25" width="0.1778" layer="21"/>
  3615. <circle x="0" y="0" radius="0.64" width="0.127" layer="51"/>
  3616. <circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/>
  3617. <circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/>
  3618. <circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/>
  3619. <circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/>
  3620. <circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/>
  3621. <circle x="15.24" y="0" radius="0.64" width="0.127" layer="51"/>
  3622. <circle x="17.78" y="0" radius="0.64" width="0.127" layer="51"/>
  3623. <rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/>
  3624. <rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/>
  3625. <rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/>
  3626. <rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/>
  3627. <rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/>
  3628. <rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/>
  3629. <rectangle x1="14.92" y1="0" x2="15.56" y2="2.75" layer="51"/>
  3630. <rectangle x1="17.46" y1="-2.75" x2="18.1" y2="0" layer="51" rot="R180"/>
  3631. <smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/>
  3632. <smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/>
  3633. <smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/>
  3634. <smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/>
  3635. <smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/>
  3636. <smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/>
  3637. <smd name="7" x="15.24" y="0" dx="1.02" dy="6" layer="1"/>
  3638. <smd name="8" x="17.78" y="0" dx="1.02" dy="6" layer="1"/>
  3639. <text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3640. <text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3641. </package>
  3642. <package name="1X08_NO_SILK" urn="urn:adsk.eagle:footprint:37770/1" library_version="1">
  3643. <description>&lt;h3&gt;Plated Through Hole -8 Pin No Silk&lt;/h3&gt;
  3644. &lt;p&gt;Specifications:
  3645. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3646. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3647. &lt;/ul&gt;&lt;/p&gt;
  3648. &lt;p&gt;Example device(s):
  3649. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3650. &lt;/ul&gt;&lt;/p&gt;</description>
  3651. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3652. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3653. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3654. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3655. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3656. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3657. <pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3658. <pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3659. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3660. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3661. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3662. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3663. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3664. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3665. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3666. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3667. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3668. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3669. </package>
  3670. <package name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:footprint:37771/1" library_version="1">
  3671. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Footprint No Silk&lt;/h3&gt;
  3672. Holes are offset 0.005", to hold pins in place during soldering.
  3673. &lt;p&gt;Specifications:
  3674. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3675. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3676. &lt;/ul&gt;&lt;/p&gt;
  3677. &lt;p&gt;Example device(s):
  3678. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3679. &lt;/ul&gt;&lt;/p&gt;</description>
  3680. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3681. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3682. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3683. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3684. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3685. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3686. <pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3687. <pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3688. <rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/>
  3689. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3690. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3691. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3692. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3693. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3694. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3695. <rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/>
  3696. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3697. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3698. </package>
  3699. <package name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:footprint:37772/1" library_version="1">
  3700. <description>&lt;h3&gt;Plated Through Hole -8 Pin Locking Female Headers&lt;/h3&gt;
  3701. Holes are offset 0.005" to hold pins in place during soldering.
  3702. &lt;p&gt;Specifications:
  3703. &lt;ul&gt;&lt;li&gt;Pin count:8&lt;/li&gt;
  3704. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3705. &lt;/ul&gt;&lt;/p&gt;
  3706. &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;
  3707. &lt;p&gt;Example device(s):
  3708. &lt;ul&gt;&lt;li&gt;CONN_08&lt;/li&gt;
  3709. &lt;/ul&gt;&lt;/p&gt;</description>
  3710. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3711. <wire x1="-1.27" y1="1.27" x2="19.05" y2="1.27" width="0.2032" layer="21"/>
  3712. <wire x1="19.05" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3713. <wire x1="19.05" y1="1.27" x2="19.05" y2="-1.27" width="0.2032" layer="21"/>
  3714. <pad name="1" x="0" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3715. <pad name="2" x="2.54" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3716. <pad name="3" x="5.08" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3717. <pad name="4" x="7.62" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3718. <pad name="5" x="10.16" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3719. <pad name="6" x="12.7" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3720. <pad name="7" x="15.24" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3721. <pad name="8" x="17.78" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/>
  3722. <rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/>
  3723. <rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/>
  3724. <rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/>
  3725. <rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/>
  3726. <rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/>
  3727. <rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/>
  3728. <rectangle x1="14.9225" y1="-0.1905" x2="15.5575" y2="0.1905" layer="51"/>
  3729. <rectangle x1="17.4625" y1="-0.1905" x2="18.0975" y2="0.1905" layer="51"/>
  3730. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3731. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3732. </package>
  3733. <package name="1X04" urn="urn:adsk.eagle:footprint:37702/1" library_version="1">
  3734. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3735. &lt;p&gt;Specifications:
  3736. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3737. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3738. &lt;/ul&gt;&lt;/p&gt;
  3739. &lt;p&gt;Example device(s):
  3740. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3741. &lt;/ul&gt;&lt;/p&gt;</description>
  3742. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3743. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3744. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3745. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3746. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3747. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3748. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3749. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3750. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3751. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3752. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3753. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3754. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3755. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3756. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3757. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3758. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3759. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3760. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3761. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3762. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3763. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3764. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3765. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3766. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3767. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3768. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3769. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3770. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3771. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3772. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3773. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3774. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3775. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3776. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3777. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3778. </package>
  3779. <package name="MOLEX-1X4" urn="urn:adsk.eagle:footprint:37703/1" library_version="1">
  3780. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole&lt;/h3&gt;
  3781. &lt;p&gt;Specifications:
  3782. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3783. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3784. &lt;/ul&gt;&lt;/p&gt;
  3785. &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;
  3786. &lt;p&gt;Example device(s):
  3787. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3788. &lt;/ul&gt;&lt;/p&gt;</description>
  3789. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3790. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3791. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3792. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3793. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3794. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3795. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3796. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3797. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3798. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  3799. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3800. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3801. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3802. <text x="2.286" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3803. <text x="2.286" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3804. </package>
  3805. <package name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:footprint:37704/1" library_version="1">
  3806. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH&lt;/h3&gt;
  3807. &lt;p&gt;Specifications:
  3808. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3809. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3810. &lt;/ul&gt;&lt;/p&gt;
  3811. &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;
  3812. &lt;p&gt;Example device(s):
  3813. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3814. &lt;/ul&gt;&lt;/p&gt;</description>
  3815. <wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/>
  3816. <wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/>
  3817. <wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/>
  3818. <wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3819. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3820. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3821. <wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3822. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3823. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3824. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3825. <wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="51"/>
  3826. <wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="51"/>
  3827. <wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="51"/>
  3828. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3829. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3830. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3831. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3832. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3833. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3834. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3835. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3836. <text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3837. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3838. </package>
  3839. <package name="1X04_1.27MM" urn="urn:adsk.eagle:footprint:37705/1" library_version="1">
  3840. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3841. &lt;p&gt;Specifications:
  3842. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3843. &lt;li&gt;Pin pitch: 1.27mm&lt;/li&gt;
  3844. &lt;/ul&gt;&lt;/p&gt;
  3845. &lt;p&gt;Example device(s):
  3846. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3847. &lt;/ul&gt;&lt;/p&gt;</description>
  3848. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  3849. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  3850. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  3851. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  3852. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  3853. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  3854. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  3855. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  3856. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  3857. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3858. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  3859. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  3860. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  3861. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  3862. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  3863. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  3864. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  3865. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  3866. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  3867. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  3868. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  3869. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  3870. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  3871. <wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/>
  3872. <wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/>
  3873. <wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3874. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  3875. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  3876. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  3877. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  3878. <text x="-0.508" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3879. <text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3880. </package>
  3881. <package name="1X04_LOCK" urn="urn:adsk.eagle:footprint:37706/1" library_version="1">
  3882. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Locking Footprint&lt;/h3&gt;
  3883. Pins are offset 0.005" from center to lock pins in place during soldering.
  3884. &lt;p&gt;Specifications:
  3885. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3886. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3887. &lt;/ul&gt;&lt;/p&gt;
  3888. &lt;p&gt;Example device(s):
  3889. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3890. &lt;/ul&gt;&lt;/p&gt;</description>
  3891. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3892. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3893. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3894. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3895. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3896. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3897. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3898. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3899. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3900. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3901. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3902. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3903. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3904. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3905. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3906. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3907. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3908. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3909. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3910. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3911. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3912. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3913. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3914. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3915. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3916. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3917. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3918. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3919. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3920. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3921. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3922. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3923. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3924. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3925. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3926. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3927. </package>
  3928. <package name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37707/1" library_version="1">
  3929. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint&lt;/h3&gt;
  3930. Holes are offset 0.005" from center to lock pins in place during soldering.
  3931. &lt;p&gt;Specifications:
  3932. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3933. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3934. &lt;/ul&gt;&lt;/p&gt;
  3935. &lt;p&gt;Example device(s):
  3936. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3937. &lt;/ul&gt;&lt;/p&gt;</description>
  3938. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  3939. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  3940. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  3941. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  3942. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  3943. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  3944. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  3945. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  3946. <wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  3947. <wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/>
  3948. <wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/>
  3949. <wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/>
  3950. <wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/>
  3951. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  3952. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3953. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  3954. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3955. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3956. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3957. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3958. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  3959. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3960. <text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3961. </package>
  3962. <package name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:footprint:37708/1" library_version="1">
  3963. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole Locking&lt;/h3&gt;
  3964. Holes are offset 0.005" from center to hold pins in place during soldering.
  3965. &lt;p&gt;Specifications:
  3966. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3967. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3968. &lt;/ul&gt;&lt;/p&gt;
  3969. &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;
  3970. &lt;p&gt;Example device(s):
  3971. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3972. &lt;/ul&gt;&lt;/p&gt;</description>
  3973. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3974. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3975. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3976. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3977. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3978. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3979. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3980. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3981. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3982. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
  3983. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  3984. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  3985. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  3986. <text x="2.667" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3987. <text x="2.032" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3988. </package>
  3989. <package name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37709/1" library_version="1">
  3990. <description>&lt;h3&gt;SMD - 4 Pin Right Angle Male Header&lt;/h3&gt;
  3991. tDocu layer shows pin locations.
  3992. &lt;p&gt;Specifications:
  3993. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3994. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3995. &lt;/ul&gt;&lt;/p&gt;
  3996. &lt;p&gt;Example device(s):
  3997. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3998. &lt;/ul&gt;&lt;/p&gt;</description>
  3999. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  4000. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  4001. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  4002. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4003. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  4004. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  4005. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  4006. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  4007. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  4008. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  4009. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  4010. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  4011. <smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4012. <smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4013. <smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4014. <smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  4015. <hole x="-2.54" y="0" drill="1.4"/>
  4016. <hole x="2.54" y="0" drill="1.4"/>
  4017. <text x="-4.318" y="6.731" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4018. <text x="-4.318" y="2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4019. </package>
  4020. <package name="1X04_LONGPADS" urn="urn:adsk.eagle:footprint:37710/1" library_version="1">
  4021. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads&lt;/h3&gt;
  4022. &lt;p&gt;Specifications:
  4023. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4024. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4025. &lt;/ul&gt;&lt;/p&gt;
  4026. &lt;p&gt;Example device(s):
  4027. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4028. &lt;/ul&gt;&lt;/p&gt;</description>
  4029. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  4030. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  4031. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4032. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4033. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4034. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  4035. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  4036. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  4037. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  4038. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  4039. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4040. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4041. </package>
  4042. <package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1">
  4043. <description>&lt;h3&gt;Plated Through Hole - 4 Pin No Silk Outline&lt;/h3&gt;
  4044. &lt;p&gt;Specifications:
  4045. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4046. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4047. &lt;/ul&gt;&lt;/p&gt;
  4048. &lt;p&gt;Example device(s):
  4049. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4050. &lt;/ul&gt;&lt;/p&gt;</description>
  4051. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4052. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4053. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4054. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4055. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  4056. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  4057. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  4058. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  4059. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4060. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4061. </package>
  4062. <package name="JST-4-PTH" urn="urn:adsk.eagle:footprint:37712/1" library_version="1">
  4063. <description>&lt;h3&gt;JST Right Angle 4 Pin Plated Through Hole&lt;/h3&gt;
  4064. &lt;p&gt;Specifications:
  4065. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4066. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  4067. &lt;/ul&gt;&lt;/p&gt;
  4068. &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;
  4069. &lt;p&gt;Example device(s):
  4070. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4071. &lt;/ul&gt;&lt;/p&gt;</description>
  4072. <pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/>
  4073. <pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/>
  4074. <pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/>
  4075. <pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/>
  4076. <text x="-3.4" y="0.7" size="1.27" layer="51">+</text>
  4077. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  4078. <text x="0.7" y="0.9" size="0.8" layer="51">S</text>
  4079. <text x="2.7" y="0.9" size="0.8" layer="51">S</text>
  4080. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4081. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4082. <wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/>
  4083. <wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/>
  4084. <wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/>
  4085. <wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/>
  4086. <wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/>
  4087. <wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/>
  4088. <wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/>
  4089. </package>
  4090. <package name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:footprint:37713/1" library_version="1">
  4091. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH Locking&lt;/h3&gt;
  4092. Holes are offset 0.005" from center to hold pins in place during soldering.
  4093. &lt;p&gt;Specifications:
  4094. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4095. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  4096. &lt;/ul&gt;&lt;/p&gt;
  4097. &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;
  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="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/>
  4102. <wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/>
  4103. <wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/>
  4104. <wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/>
  4105. <wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  4106. <wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/>
  4107. <wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  4108. <wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="51"/>
  4109. <wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="51"/>
  4110. <wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="51"/>
  4111. <wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="51"/>
  4112. <wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="51"/>
  4113. <wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="51"/>
  4114. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  4115. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  4116. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  4117. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  4118. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  4119. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  4120. <pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/>
  4121. <pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/>
  4122. <text x="3.81" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4123. <text x="3.81" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4124. </package>
  4125. <package name="1X04_1MM_RA" urn="urn:adsk.eagle:footprint:37714/1" library_version="1">
  4126. <description>&lt;h3&gt;SMD- 4 Pin Right Angle &lt;/h3&gt;
  4127. &lt;p&gt;Specifications:
  4128. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4129. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4130. &lt;/ul&gt;&lt;/p&gt;
  4131. &lt;p&gt;Example device(s):
  4132. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4133. &lt;/ul&gt;&lt;/p&gt;</description>
  4134. <wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/>
  4135. <wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/>
  4136. <wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/>
  4137. <wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/>
  4138. <wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/>
  4139. <circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  4140. <smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  4141. <smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  4142. <smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4143. <smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4144. <smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4145. <smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  4146. <text x="-1.397" y="-2.159" 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_VERTICAL_COMBO" urn="urn:adsk.eagle:footprint:37715/1" library_version="1">
  4150. <description>&lt;h3&gt;SMD - 4 Pin Vertical Connector&lt;/h3&gt;
  4151. &lt;p&gt;Specifications:
  4152. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4153. &lt;li&gt;SMD Pad count:8&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="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  4160. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  4161. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  4162. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  4163. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  4164. <wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/>
  4165. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  4166. <wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/>
  4167. <wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/>
  4168. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  4169. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  4170. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  4171. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  4172. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  4173. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  4174. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  4175. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4176. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4177. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4178. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4179. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4180. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4181. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4182. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4183. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4184. <text x="-0.508" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4185. </package>
  4186. <package name="1X04_SMD_LONG" urn="urn:adsk.eagle:footprint:37716/1" library_version="1">
  4187. <description>&lt;h3&gt;SMD - 4 Pin w/ Long Solder Pads&lt;/h3&gt;
  4188. No silk, but tDocu layer shows pin position.
  4189. &lt;p&gt;Specifications:
  4190. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4191. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4192. &lt;/ul&gt;&lt;/p&gt;
  4193. &lt;p&gt;Example device(s):
  4194. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4195. &lt;/ul&gt;&lt;/p&gt;</description>
  4196. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  4197. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  4198. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  4199. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4200. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  4201. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  4202. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  4203. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  4204. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  4205. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  4206. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  4207. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  4208. <smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4209. <smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4210. <smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4211. <smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  4212. <hole x="-2.54" y="0" drill="1.4"/>
  4213. <hole x="2.54" y="0" drill="1.4"/>
  4214. </package>
  4215. <package name="JST-4-PTH-VERT" urn="urn:adsk.eagle:footprint:37717/1" library_version="1">
  4216. <description>&lt;h3&gt;JST Vertical 4 Pin Plated Through Hole&lt;/h3&gt;
  4217. &lt;p&gt;Specifications:
  4218. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  4219. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  4220. &lt;/ul&gt;&lt;/p&gt;
  4221. &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;
  4222. &lt;p&gt;Example device(s):
  4223. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4224. &lt;/ul&gt;&lt;/p&gt;</description>
  4225. <wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/>
  4226. <wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/>
  4227. <wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4228. <wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/>
  4229. <wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
  4230. <wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  4231. <wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
  4232. <wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/>
  4233. <pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/>
  4234. <pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/>
  4235. <pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/>
  4236. <pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/>
  4237. <text x="-1.4" y="0.75" size="1.27" layer="51">+</text>
  4238. <text x="0.6" y="0.75" size="1.27" layer="51">-</text>
  4239. <text x="2.7" y="0.95" size="0.8" layer="51">Y</text>
  4240. <text x="-3.3" y="0.95" size="0.8" layer="51">B</text>
  4241. <text x="-1.143" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4242. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4243. </package>
  4244. <package name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37718/1" library_version="1">
  4245. <description>&lt;h3&gt;SMD - 4 Pin Right-Angle Female Header&lt;/h3&gt;
  4246. Silk outline shows header location.
  4247. &lt;p&gt;Specifications:
  4248. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  4249. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4250. &lt;/ul&gt;&lt;/p&gt;
  4251. &lt;p&gt;Example device(s):
  4252. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  4253. &lt;/ul&gt;&lt;/p&gt;</description>
  4254. <wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/>
  4255. <wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/>
  4256. <wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/>
  4257. <wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/>
  4258. <rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="51"/>
  4259. <rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="51"/>
  4260. <rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="51"/>
  4261. <rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="51"/>
  4262. <smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4263. <smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4264. <smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4265. <smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  4266. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4267. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4268. </package>
  4269. </packages>
  4270. <packages3d>
  4271. <package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1">
  4272. <description>Plated Through Hole
  4273. Specifications:
  4274. Pin count:2
  4275. Pin pitch:0.1"
  4276. Example device(s):
  4277. CONN_02
  4278. </description>
  4279. <packageinstances>
  4280. <packageinstance name="1X02"/>
  4281. </packageinstances>
  4282. </package3d>
  4283. <package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1">
  4284. <description>Molex 2-Pin Plated Through-Hole
  4285. Specifications:
  4286. Pin count:2
  4287. Pin pitch:0.1"
  4288. Datasheet referenced for footprint
  4289. Example device(s):
  4290. CONN_02
  4291. </description>
  4292. <packageinstances>
  4293. <packageinstance name="MOLEX-1X2"/>
  4294. </packageinstances>
  4295. </package3d>
  4296. <package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1">
  4297. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH
  4298. Specifications:
  4299. Pin count: 2
  4300. Pin pitch: 3.5mm/138mil
  4301. Datasheet referenced for footprint
  4302. Example device(s):
  4303. CONN_02
  4304. </description>
  4305. <packageinstances>
  4306. <packageinstance name="SCREWTERMINAL-3.5MM-2"/>
  4307. </packageinstances>
  4308. </package3d>
  4309. <package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1">
  4310. <description>JST-Right Angle Male Header SMT
  4311. Specifications:
  4312. Pin count: 2
  4313. Pin pitch: 2mm
  4314. Datasheet referenced for footprint
  4315. Example device(s):
  4316. CONN_02
  4317. JST_2MM_MALE
  4318. </description>
  4319. <packageinstances>
  4320. <packageinstance name="JST-2-SMD"/>
  4321. </packageinstances>
  4322. </package3d>
  4323. <package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1">
  4324. <description>Plated Through Hole
  4325. Specifications:
  4326. Pin count:2
  4327. Pin pitch:0.15"
  4328. Example device(s):
  4329. CONN_02
  4330. </description>
  4331. <packageinstances>
  4332. <packageinstance name="1X02_BIG"/>
  4333. </packageinstances>
  4334. </package3d>
  4335. <package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1">
  4336. <description>JST-Vertical Male Header SMT
  4337. Specifications:
  4338. Pin count: 2
  4339. Pin pitch: 2mm
  4340. Datasheet referenced for footprint
  4341. Example device(s):
  4342. CONN_02
  4343. </description>
  4344. <packageinstances>
  4345. <packageinstance name="JST-2-SMD-VERT"/>
  4346. </packageinstances>
  4347. </package3d>
  4348. <package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1">
  4349. <description>Screw Terminal 5mm Pitch -2 Pin PTH
  4350. Specifications:
  4351. Pin count: 2
  4352. Pin pitch: 5mm/197mil
  4353. Datasheet referenced for footprint
  4354. Example device(s):
  4355. CONN_02
  4356. </description>
  4357. <packageinstances>
  4358. <packageinstance name="SCREWTERMINAL-5MM-2"/>
  4359. </packageinstances>
  4360. </package3d>
  4361. <package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1">
  4362. <description>Plated Through Hole - Locking Footprint
  4363. Holes are staggered by 0.005" from center to hold pins while soldering.
  4364. Specifications:
  4365. Pin count:2
  4366. Pin pitch:0.1"
  4367. Example device(s):
  4368. CONN_02
  4369. </description>
  4370. <packageinstances>
  4371. <packageinstance name="1X02_LOCK"/>
  4372. </packageinstances>
  4373. </package3d>
  4374. <package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1">
  4375. <description>Molex 2-Pin Plated Through-Hole Locking Footprint
  4376. Holes are offset from center by 0.005" to hold pins in place during soldering.
  4377. Specifications:
  4378. Pin count:2
  4379. Pin pitch:0.1"
  4380. Datasheet referenced for footprint
  4381. Example device(s):
  4382. CONN_02
  4383. </description>
  4384. <packageinstances>
  4385. <packageinstance name="MOLEX-1X2_LOCK"/>
  4386. </packageinstances>
  4387. </package3d>
  4388. <package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1">
  4389. <description>Plated Through Hole - Long Pads with Locking Footprint
  4390. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  4391. Specifications:
  4392. Pin count:2
  4393. Pin pitch:0.1"
  4394. Example device(s):
  4395. CONN_02
  4396. </description>
  4397. <packageinstances>
  4398. <packageinstance name="1X02_LOCK_LONGPADS"/>
  4399. </packageinstances>
  4400. </package3d>
  4401. <package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1">
  4402. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking
  4403. Holes are offset from center 0.005" to hold pins in place during soldering.
  4404. Specifications:
  4405. Pin count: 2
  4406. Pin pitch: 3.5mm/138mil
  4407. Datasheet referenced for footprint
  4408. Example device(s):
  4409. CONN_02
  4410. </description>
  4411. <packageinstances>
  4412. <packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/>
  4413. </packageinstances>
  4414. </package3d>
  4415. <package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1">
  4416. <description>Plated Through Hole - Long Pads without Silk Outline
  4417. Specifications:
  4418. Pin count:2
  4419. Pin pitch:0.1"
  4420. Example device(s):
  4421. CONN_02
  4422. </description>
  4423. <packageinstances>
  4424. <packageinstance name="1X02_LONGPADS"/>
  4425. </packageinstances>
  4426. </package3d>
  4427. <package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1">
  4428. <description>Plated Through Hole - No Silk Outline
  4429. Specifications:
  4430. Pin count:2
  4431. Pin pitch:0.1"
  4432. Example device(s):
  4433. CONN_02
  4434. </description>
  4435. <packageinstances>
  4436. <packageinstance name="1X02_NO_SILK"/>
  4437. </packageinstances>
  4438. </package3d>
  4439. <package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1">
  4440. <description>JST 2 Pin Right Angle Plated Through Hole
  4441. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4442. Specifications:
  4443. Pin count: 2
  4444. Pin pitch:2mm
  4445. Datasheet referenced for footprint
  4446. Example device(s):
  4447. CONN_02
  4448. </description>
  4449. <packageinstances>
  4450. <packageinstance name="JST-2-PTH"/>
  4451. </packageinstances>
  4452. </package3d>
  4453. <package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1">
  4454. <description>Plated Through Hole - 0.1" holes
  4455. Specifications:
  4456. Pin count:2
  4457. Pin pitch:0.2"
  4458. Example device(s):
  4459. CONN_02
  4460. </description>
  4461. <packageinstances>
  4462. <packageinstance name="1X02_XTRA_BIG"/>
  4463. </packageinstances>
  4464. </package3d>
  4465. <package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1">
  4466. <description>Pogo Pins Connector - No Silk Outline
  4467. Specifications:
  4468. Pin count:2
  4469. Pin pitch:0.1"
  4470. Example device(s):
  4471. CONN_02
  4472. </description>
  4473. <packageinstances>
  4474. <packageinstance name="1X02_PP_HOLES_ONLY"/>
  4475. </packageinstances>
  4476. </package3d>
  4477. <package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1">
  4478. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline
  4479. Specifications:
  4480. Pin count: 2
  4481. Pin pitch: 3.5mm/138mil
  4482. Datasheet referenced for footprint
  4483. Example device(s):
  4484. CONN_02
  4485. </description>
  4486. <packageinstances>
  4487. <packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/>
  4488. </packageinstances>
  4489. </package3d>
  4490. <package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1">
  4491. <description>JST 2 Pin Right Angle Plated Through Hole- No Silk
  4492. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4493. No silk outline of connector.
  4494. Specifications:
  4495. Pin count: 2
  4496. Pin pitch:2mm
  4497. Datasheet referenced for footprint
  4498. Example device(s):
  4499. CONN_02
  4500. </description>
  4501. <packageinstances>
  4502. <packageinstance name="JST-2-PTH-NS"/>
  4503. </packageinstances>
  4504. </package3d>
  4505. <package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1">
  4506. <description>JST 2 Pin Right Angle Plated Through Hole - KIT
  4507. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4508. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  4509. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  4510. Specifications:
  4511. Pin count: 2
  4512. Pin pitch:2mm
  4513. Datasheet referenced for footprint
  4514. Example device(s):
  4515. CONN_02
  4516. </description>
  4517. <packageinstances>
  4518. <packageinstance name="JST-2-PTH-KIT"/>
  4519. </packageinstances>
  4520. </package3d>
  4521. <package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1">
  4522. <description>Spring Terminal- PCB Mount 2 Pin PTH
  4523. tDocu marks the spring arms
  4524. Specifications:
  4525. Pin count: 4
  4526. Pin pitch: 0.1"
  4527. Datasheet referenced for footprint
  4528. Example device(s):
  4529. CONN_02
  4530. </description>
  4531. <packageinstances>
  4532. <packageinstance name="SPRINGTERMINAL-2.54MM-2"/>
  4533. </packageinstances>
  4534. </package3d>
  4535. <package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1">
  4536. <description>2 Pin Screw Terminal - 2.54mm
  4537. Specifications:
  4538. Pin count:2
  4539. Pin pitch:0.1"
  4540. Example device(s):
  4541. CONN_02
  4542. </description>
  4543. <packageinstances>
  4544. <packageinstance name="1X02_2.54_SCREWTERM"/>
  4545. </packageinstances>
  4546. </package3d>
  4547. <package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1">
  4548. <description>2 pin poke-home connector
  4549. part number 2062-2P from STA</description>
  4550. <packageinstances>
  4551. <packageinstance name="1X02_POKEHOME"/>
  4552. </packageinstances>
  4553. </package3d>
  4554. <package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1">
  4555. <packageinstances>
  4556. <packageinstance name="1X02_RA_PTH_FEMALE"/>
  4557. </packageinstances>
  4558. </package3d>
  4559. <package3d name="1X08" urn="urn:adsk.eagle:package:38138/1" type="box" library_version="1">
  4560. <description>Plated Through Hole -8 Pin
  4561. Specifications:
  4562. Pin count:8
  4563. Pin pitch:0.1"
  4564. Example device(s):
  4565. CONN_08
  4566. </description>
  4567. <packageinstances>
  4568. <packageinstance name="1X08"/>
  4569. </packageinstances>
  4570. </package3d>
  4571. <package3d name="1X08_LOCK" urn="urn:adsk.eagle:package:38137/1" type="box" library_version="1">
  4572. <description>Plated Through Hole -8 Pin Locking Footprint
  4573. Holes are offset 0.005", to hold pins in place during soldering.
  4574. Specifications:
  4575. Pin count:8
  4576. Pin pitch:0.1"
  4577. Example device(s):
  4578. CONN_08
  4579. </description>
  4580. <packageinstances>
  4581. <packageinstance name="1X08_LOCK"/>
  4582. </packageinstances>
  4583. </package3d>
  4584. <package3d name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38140/1" type="box" library_version="1">
  4585. <description>Plated Through Hole -8 Pin Locking Footprint with Long Pads
  4586. Holes are offset 0.005", to hold pins in place during soldering.
  4587. Specifications:
  4588. Pin count:8
  4589. Pin pitch:0.1"
  4590. Example device(s):
  4591. CONN_08
  4592. </description>
  4593. <packageinstances>
  4594. <packageinstance name="1X08_LOCK_LONGPADS"/>
  4595. </packageinstances>
  4596. </package3d>
  4597. <package3d name="1X08_LONGPADS" urn="urn:adsk.eagle:package:38142/1" type="box" library_version="1">
  4598. <description>Plated Through Hole -8 Pin Long Pads
  4599. Specifications:
  4600. Pin count:8
  4601. Pin pitch:0.1"
  4602. Example device(s):
  4603. CONN_08
  4604. </description>
  4605. <packageinstances>
  4606. <packageinstance name="1X08_LONGPADS"/>
  4607. </packageinstances>
  4608. </package3d>
  4609. <package3d name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:package:38143/1" type="box" library_version="1">
  4610. <description>Screw Terminal 3.5mm Pitch -8 Pin PTH
  4611. Specifications:
  4612. Pin count: 8
  4613. Pin pitch: 3.5mm/138mil
  4614. Datasheet referenced for footprint
  4615. Example device(s):
  4616. CONN_08
  4617. </description>
  4618. <packageinstances>
  4619. <packageinstance name="SCREWTERMINAL-3.5MM-8"/>
  4620. </packageinstances>
  4621. </package3d>
  4622. <package3d name="1X08_SMD" urn="urn:adsk.eagle:package:38144/1" type="box" library_version="1">
  4623. <description>SMD -8 Pin Vertical Female
  4624. Specifications:
  4625. Pin count:8
  4626. Pin pitch:0.1"
  4627. Datasheet referenced for footprint
  4628. Example device(s):
  4629. CONN_08
  4630. </description>
  4631. <packageinstances>
  4632. <packageinstance name="1X08_SMD"/>
  4633. </packageinstances>
  4634. </package3d>
  4635. <package3d name="1X08_SMD_ALT" urn="urn:adsk.eagle:package:38148/1" type="box" library_version="1">
  4636. <description>SMD -8 Pin Vertical Female
  4637. Alternate pin configuration
  4638. Specifications:
  4639. Pin count:8
  4640. Pin pitch:0.1"
  4641. Datasheet referenced for footprint
  4642. Example device(s):
  4643. CONN_08
  4644. </description>
  4645. <packageinstances>
  4646. <packageinstance name="1X08_SMD_ALT"/>
  4647. </packageinstances>
  4648. </package3d>
  4649. <package3d name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:package:38146/1" type="box" library_version="1">
  4650. <description>SMD -8 Pin Vertical Female
  4651. Combined footprint configuration
  4652. Specifications:
  4653. Pin count:8
  4654. Pin pitch:0.1"
  4655. Datasheet referenced for footprint
  4656. Example device(s):
  4657. CONN_08
  4658. </description>
  4659. <packageinstances>
  4660. <packageinstance name="1X08_SMD_COMBINED"/>
  4661. </packageinstances>
  4662. </package3d>
  4663. <package3d name="BM08B-SRSS-TB" urn="urn:adsk.eagle:package:38145/1" type="box" library_version="1">
  4664. <description>JST Vertical Crimp Connect
  4665. Specifications:
  4666. Pin count: 8
  4667. Pin pitch:1mm
  4668. Datasheet referenced for footprint
  4669. Example device(s):
  4670. CONN_08
  4671. </description>
  4672. <packageinstances>
  4673. <packageinstance name="BM08B-SRSS-TB"/>
  4674. </packageinstances>
  4675. </package3d>
  4676. <package3d name="1X08_SMD_MALE" urn="urn:adsk.eagle:package:38150/1" type="box" library_version="1">
  4677. <description>SMD -8 Pin Vertical Male
  4678. Specifications:
  4679. Pin count:8
  4680. Pin pitch:0.1"
  4681. Datasheet referenced for footprint
  4682. Example device(s):
  4683. CONN_08
  4684. </description>
  4685. <packageinstances>
  4686. <packageinstance name="1X08_SMD_MALE"/>
  4687. </packageinstances>
  4688. </package3d>
  4689. <package3d name="1X08_NO_SILK" urn="urn:adsk.eagle:package:38149/1" type="box" library_version="1">
  4690. <description>Plated Through Hole -8 Pin No Silk
  4691. Specifications:
  4692. Pin count:8
  4693. Pin pitch:0.1"
  4694. Example device(s):
  4695. CONN_08
  4696. </description>
  4697. <packageinstances>
  4698. <packageinstance name="1X08_NO_SILK"/>
  4699. </packageinstances>
  4700. </package3d>
  4701. <package3d name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:package:38147/1" type="box" library_version="1">
  4702. <description>Plated Through Hole -8 Pin Locking Footprint No Silk
  4703. Holes are offset 0.005", to hold pins in place during soldering.
  4704. Specifications:
  4705. Pin count:8
  4706. Pin pitch:0.1"
  4707. Example device(s):
  4708. CONN_08
  4709. </description>
  4710. <packageinstances>
  4711. <packageinstance name="1X08_LOCK_NO_SILK"/>
  4712. </packageinstances>
  4713. </package3d>
  4714. <package3d name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:package:38151/1" type="box" library_version="1">
  4715. <description>Plated Through Hole -8 Pin Locking Female Headers
  4716. Holes are offset 0.005" to hold pins in place during soldering.
  4717. Specifications:
  4718. Pin count:8
  4719. Pin pitch:0.1"
  4720. Datasheet referenced for footprint
  4721. Example device(s):
  4722. CONN_08
  4723. </description>
  4724. <packageinstances>
  4725. <packageinstance name="1X08_FEMALE_LOCK"/>
  4726. </packageinstances>
  4727. </package3d>
  4728. <package3d name="1X04" urn="urn:adsk.eagle:package:38085/1" type="box" library_version="1">
  4729. <description>Plated Through Hole - 4 Pin
  4730. Specifications:
  4731. Pin count:4
  4732. Pin pitch:0.1"
  4733. Example device(s):
  4734. CONN_04
  4735. </description>
  4736. <packageinstances>
  4737. <packageinstance name="1X04"/>
  4738. </packageinstances>
  4739. </package3d>
  4740. <package3d name="MOLEX-1X4" urn="urn:adsk.eagle:package:38087/1" type="box" library_version="1">
  4741. <description>Molex 4-Pin Plated Through-Hole
  4742. Specifications:
  4743. Pin count:4
  4744. Pin pitch:0.1"
  4745. Datasheet referenced for footprint
  4746. Example device(s):
  4747. CONN_04
  4748. </description>
  4749. <packageinstances>
  4750. <packageinstance name="MOLEX-1X4"/>
  4751. </packageinstances>
  4752. </package3d>
  4753. <package3d name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:package:38090/1" type="box" library_version="1">
  4754. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH
  4755. Specifications:
  4756. Pin count: 4
  4757. Pin pitch: 3.5mm/138mil
  4758. Datasheet referenced for footprint
  4759. Example device(s):
  4760. CONN_04
  4761. </description>
  4762. <packageinstances>
  4763. <packageinstance name="SCREWTERMINAL-3.5MM-4"/>
  4764. </packageinstances>
  4765. </package3d>
  4766. <package3d name="1X04_1.27MM" urn="urn:adsk.eagle:package:38086/1" type="box" library_version="1">
  4767. <description>Plated Through Hole - 4 Pin
  4768. Specifications:
  4769. Pin count:4
  4770. Pin pitch: 1.27mm
  4771. Example device(s):
  4772. CONN_04
  4773. </description>
  4774. <packageinstances>
  4775. <packageinstance name="1X04_1.27MM"/>
  4776. </packageinstances>
  4777. </package3d>
  4778. <package3d name="1X04_LOCK" urn="urn:adsk.eagle:package:38089/1" type="box" library_version="1">
  4779. <description>Plated Through Hole - 4 Pin Locking Footprint
  4780. Pins are offset 0.005" from center to lock pins in place during soldering.
  4781. Specifications:
  4782. Pin count:4
  4783. Pin pitch:0.1"
  4784. Example device(s):
  4785. CONN_04
  4786. </description>
  4787. <packageinstances>
  4788. <packageinstance name="1X04_LOCK"/>
  4789. </packageinstances>
  4790. </package3d>
  4791. <package3d name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38091/1" type="box" library_version="1">
  4792. <description>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint
  4793. Holes are offset 0.005" from center to lock pins in place during soldering.
  4794. Specifications:
  4795. Pin count:4
  4796. Pin pitch:0.1"
  4797. Example device(s):
  4798. CONN_04
  4799. </description>
  4800. <packageinstances>
  4801. <packageinstance name="1X04_LOCK_LONGPADS"/>
  4802. </packageinstances>
  4803. </package3d>
  4804. <package3d name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:package:38092/1" type="box" library_version="1">
  4805. <description>Molex 4-Pin Plated Through-Hole Locking
  4806. Holes are offset 0.005" from center to hold pins in place during soldering.
  4807. Specifications:
  4808. Pin count:4
  4809. Pin pitch:0.1"
  4810. Datasheet referenced for footprint
  4811. Example device(s):
  4812. CONN_04
  4813. </description>
  4814. <packageinstances>
  4815. <packageinstance name="MOLEX-1X4_LOCK"/>
  4816. </packageinstances>
  4817. </package3d>
  4818. <package3d name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:package:38093/1" type="box" library_version="1">
  4819. <description>SMD - 4 Pin Right Angle Male Header
  4820. tDocu layer shows pin locations.
  4821. Specifications:
  4822. Pin count:4
  4823. Pin pitch:0.1"
  4824. Example device(s):
  4825. CONN_04
  4826. </description>
  4827. <packageinstances>
  4828. <packageinstance name="1X04_SMD_RA_MALE"/>
  4829. </packageinstances>
  4830. </package3d>
  4831. <package3d name="1X04_LONGPADS" urn="urn:adsk.eagle:package:38098/1" type="box" library_version="1">
  4832. <description>Plated Through Hole - 4 Pin Long Pads
  4833. Specifications:
  4834. Pin count:4
  4835. Pin pitch:0.1"
  4836. Example device(s):
  4837. CONN_04
  4838. </description>
  4839. <packageinstances>
  4840. <packageinstance name="1X04_LONGPADS"/>
  4841. </packageinstances>
  4842. </package3d>
  4843. <package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1">
  4844. <description>Plated Through Hole - 4 Pin No Silk Outline
  4845. Specifications:
  4846. Pin count:4
  4847. Pin pitch:0.1"
  4848. Example device(s):
  4849. CONN_04
  4850. </description>
  4851. <packageinstances>
  4852. <packageinstance name="1X04_NO_SILK"/>
  4853. </packageinstances>
  4854. </package3d>
  4855. <package3d name="JST-4-PTH" urn="urn:adsk.eagle:package:38101/1" type="box" library_version="1">
  4856. <description>JST Right Angle 4 Pin Plated Through Hole
  4857. Specifications:
  4858. Pin count: 4
  4859. Pin pitch: 2mm
  4860. Datasheet referenced for footprint
  4861. Example device(s):
  4862. CONN_04
  4863. </description>
  4864. <packageinstances>
  4865. <packageinstance name="JST-4-PTH"/>
  4866. </packageinstances>
  4867. </package3d>
  4868. <package3d name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:package:38095/1" type="box" library_version="1">
  4869. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking
  4870. Holes are offset 0.005" from center to hold pins in place during soldering.
  4871. Specifications:
  4872. Pin count: 4
  4873. Pin pitch: 3.5mm/138mil
  4874. Datasheet referenced for footprint
  4875. Example device(s):
  4876. CONN_04
  4877. </description>
  4878. <packageinstances>
  4879. <packageinstance name="SCREWTERMINAL-3.5MM-4_LOCK"/>
  4880. </packageinstances>
  4881. </package3d>
  4882. <package3d name="1X04_1MM_RA" urn="urn:adsk.eagle:package:38096/1" type="box" library_version="1">
  4883. <description>SMD- 4 Pin Right Angle
  4884. Specifications:
  4885. Pin count:4
  4886. Pin pitch:0.1"
  4887. Example device(s):
  4888. CONN_04
  4889. </description>
  4890. <packageinstances>
  4891. <packageinstance name="1X04_1MM_RA"/>
  4892. </packageinstances>
  4893. </package3d>
  4894. <package3d name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:package:38097/1" type="box" library_version="1">
  4895. <description>SMD - 4 Pin Vertical Connector
  4896. Specifications:
  4897. Pin count:4
  4898. SMD Pad count:8
  4899. Pin pitch:0.1"
  4900. Example device(s):
  4901. CONN_04
  4902. </description>
  4903. <packageinstances>
  4904. <packageinstance name="1X04_SMD_VERTICAL_COMBO"/>
  4905. </packageinstances>
  4906. </package3d>
  4907. <package3d name="1X04_SMD_LONG" urn="urn:adsk.eagle:package:38099/1" type="box" library_version="1">
  4908. <description>SMD - 4 Pin w/ Long Solder Pads
  4909. No silk, but tDocu layer shows pin position.
  4910. Specifications:
  4911. Pin count:4
  4912. Pin pitch:0.1"
  4913. Example device(s):
  4914. CONN_04
  4915. </description>
  4916. <packageinstances>
  4917. <packageinstance name="1X04_SMD_LONG"/>
  4918. </packageinstances>
  4919. </package3d>
  4920. <package3d name="JST-4-PTH-VERT" urn="urn:adsk.eagle:package:38102/1" type="box" library_version="1">
  4921. <description>JST Vertical 4 Pin Plated Through Hole
  4922. Specifications:
  4923. Pin count: 4
  4924. Pin pitch: 2mm
  4925. Datasheet referenced for footprint
  4926. Example device(s):
  4927. CONN_04
  4928. </description>
  4929. <packageinstances>
  4930. <packageinstance name="JST-4-PTH-VERT"/>
  4931. </packageinstances>
  4932. </package3d>
  4933. <package3d name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38100/1" type="box" library_version="1">
  4934. <description>SMD - 4 Pin Right-Angle Female Header
  4935. Silk outline shows header location.
  4936. Specifications:
  4937. Pin count:4
  4938. Pin pitch:0.1"
  4939. Example device(s):
  4940. CONN_04
  4941. </description>
  4942. <packageinstances>
  4943. <packageinstance name="1X04_SMD_RA_FEMALE"/>
  4944. </packageinstances>
  4945. </package3d>
  4946. </packages3d>
  4947. <symbols>
  4948. <symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1">
  4949. <description>&lt;h3&gt;2 Pin Connection&lt;/h3&gt;</description>
  4950. <wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  4951. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  4952. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  4953. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  4954. <wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  4955. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  4956. <text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4957. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4958. <pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4959. <pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4960. </symbol>
  4961. <symbol name="CONN_08" urn="urn:adsk.eagle:symbol:37759/1" library_version="1">
  4962. <description>&lt;h3&gt; 8 Pin Connection&lt;/h3&gt;</description>
  4963. <wire x1="1.27" y1="-10.16" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  4964. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  4965. <wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/>
  4966. <wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.6096" layer="94"/>
  4967. <wire x1="-5.08" y1="12.7" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/>
  4968. <wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  4969. <wire x1="-5.08" y1="12.7" x2="1.27" y2="12.7" width="0.4064" layer="94"/>
  4970. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  4971. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  4972. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  4973. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/>
  4974. <wire x1="-1.27" y1="10.16" x2="0" y2="10.16" width="0.6096" layer="94"/>
  4975. <text x="-5.08" y="-12.446" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4976. <text x="-5.08" y="13.208" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4977. <pin name="1" x="5.08" y="-7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4978. <pin name="2" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4979. <pin name="3" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4980. <pin name="4" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4981. <pin name="5" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4982. <pin name="6" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4983. <pin name="7" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4984. <pin name="8" x="5.08" y="10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4985. </symbol>
  4986. <symbol name="CONN_04" urn="urn:adsk.eagle:symbol:37701/1" library_version="1">
  4987. <description>&lt;h3&gt;4 Pin Connection&lt;/h3&gt;</description>
  4988. <wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  4989. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  4990. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  4991. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  4992. <wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  4993. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  4994. <wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  4995. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  4996. <text x="-5.08" y="-7.366" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  4997. <text x="-5.08" y="8.128" size="1.778" layer="95" font="vector">&gt;NAME</text>
  4998. <pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  4999. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5000. <pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5001. <pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5002. </symbol>
  5003. </symbols>
  5004. <devicesets>
  5005. <deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1">
  5006. <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;
  5007. &lt;p&gt;&lt;/p&gt;
  5008. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5009. &lt;ul&gt;
  5010. &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;
  5011. &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;
  5012. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5013. &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;
  5014. &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;
  5015. &lt;/ul&gt;
  5016. &lt;p&gt;&lt;/p&gt;
  5017. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5018. &lt;ul&gt;
  5019. &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;
  5020. &lt;/ul&gt;
  5021. &lt;p&gt;&lt;/p&gt;
  5022. &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;
  5023. &lt;ul&gt;
  5024. &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;
  5025. &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;
  5026. &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;
  5027. &lt;p&gt;&lt;/p&gt;
  5028. &lt;/ul&gt;
  5029. &lt;p&gt;&lt;/p&gt;
  5030. &lt;b&gt;Special notes:&lt;/b&gt;
  5031. Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.&lt;br&gt;&lt;br&gt;
  5032. 2.54_SCREWTERM for use with PRT-10571.&lt;br&gt;&lt;br&gt;
  5033. 3.5mm Screw Terminal footprints for PRT-08084&lt;br&gt;&lt;br&gt;
  5034. 5mm Screw Terminal footprints for use with PRT-08432</description>
  5035. <gates>
  5036. <gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/>
  5037. </gates>
  5038. <devices>
  5039. <device name="" package="1X02">
  5040. <connects>
  5041. <connect gate="G$1" pin="1" pad="1"/>
  5042. <connect gate="G$1" pin="2" pad="2"/>
  5043. </connects>
  5044. <package3dinstances>
  5045. <package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/>
  5046. </package3dinstances>
  5047. <technologies>
  5048. <technology name=""/>
  5049. </technologies>
  5050. </device>
  5051. <device name="POLAR" package="MOLEX-1X2">
  5052. <connects>
  5053. <connect gate="G$1" pin="1" pad="1"/>
  5054. <connect gate="G$1" pin="2" pad="2"/>
  5055. </connects>
  5056. <package3dinstances>
  5057. <package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/>
  5058. </package3dinstances>
  5059. <technologies>
  5060. <technology name="">
  5061. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5062. </technology>
  5063. </technologies>
  5064. </device>
  5065. <device name="3.5MM" package="SCREWTERMINAL-3.5MM-2">
  5066. <connects>
  5067. <connect gate="G$1" pin="1" pad="1"/>
  5068. <connect gate="G$1" pin="2" pad="2"/>
  5069. </connects>
  5070. <package3dinstances>
  5071. <package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/>
  5072. </package3dinstances>
  5073. <technologies>
  5074. <technology name="">
  5075. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5076. </technology>
  5077. </technologies>
  5078. </device>
  5079. <device name="-JST-2MM-SMT" package="JST-2-SMD">
  5080. <connects>
  5081. <connect gate="G$1" pin="1" pad="2"/>
  5082. <connect gate="G$1" pin="2" pad="1"/>
  5083. </connects>
  5084. <package3dinstances>
  5085. <package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/>
  5086. </package3dinstances>
  5087. <technologies>
  5088. <technology name="">
  5089. <attribute name="PROD_ID" value="CONN-11443"/>
  5090. </technology>
  5091. </technologies>
  5092. </device>
  5093. <device name="PTH2" package="1X02_BIG">
  5094. <connects>
  5095. <connect gate="G$1" pin="1" pad="P$1"/>
  5096. <connect gate="G$1" pin="2" pad="P$2"/>
  5097. </connects>
  5098. <package3dinstances>
  5099. <package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/>
  5100. </package3dinstances>
  5101. <technologies>
  5102. <technology name=""/>
  5103. </technologies>
  5104. </device>
  5105. <device name="4UCON-15767" package="JST-2-SMD-VERT">
  5106. <connects>
  5107. <connect gate="G$1" pin="1" pad="GND"/>
  5108. <connect gate="G$1" pin="2" pad="VCC"/>
  5109. </connects>
  5110. <package3dinstances>
  5111. <package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/>
  5112. </package3dinstances>
  5113. <technologies>
  5114. <technology name=""/>
  5115. </technologies>
  5116. </device>
  5117. <device name="5MM" package="SCREWTERMINAL-5MM-2">
  5118. <connects>
  5119. <connect gate="G$1" pin="1" pad="1"/>
  5120. <connect gate="G$1" pin="2" pad="2"/>
  5121. </connects>
  5122. <package3dinstances>
  5123. <package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/>
  5124. </package3dinstances>
  5125. <technologies>
  5126. <technology name="">
  5127. <attribute name="SF_SKU" value="PRT-08432" constant="no"/>
  5128. </technology>
  5129. </technologies>
  5130. </device>
  5131. <device name="LOCK" package="1X02_LOCK">
  5132. <connects>
  5133. <connect gate="G$1" pin="1" pad="1"/>
  5134. <connect gate="G$1" pin="2" pad="2"/>
  5135. </connects>
  5136. <package3dinstances>
  5137. <package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/>
  5138. </package3dinstances>
  5139. <technologies>
  5140. <technology name=""/>
  5141. </technologies>
  5142. </device>
  5143. <device name="POLAR_LOCK" package="MOLEX-1X2_LOCK">
  5144. <connects>
  5145. <connect gate="G$1" pin="1" pad="1"/>
  5146. <connect gate="G$1" pin="2" pad="2"/>
  5147. </connects>
  5148. <package3dinstances>
  5149. <package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/>
  5150. </package3dinstances>
  5151. <technologies>
  5152. <technology name="">
  5153. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5154. </technology>
  5155. </technologies>
  5156. </device>
  5157. <device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS">
  5158. <connects>
  5159. <connect gate="G$1" pin="1" pad="1"/>
  5160. <connect gate="G$1" pin="2" pad="2"/>
  5161. </connects>
  5162. <package3dinstances>
  5163. <package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/>
  5164. </package3dinstances>
  5165. <technologies>
  5166. <technology name=""/>
  5167. </technologies>
  5168. </device>
  5169. <device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK">
  5170. <connects>
  5171. <connect gate="G$1" pin="1" pad="1"/>
  5172. <connect gate="G$1" pin="2" pad="2"/>
  5173. </connects>
  5174. <package3dinstances>
  5175. <package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/>
  5176. </package3dinstances>
  5177. <technologies>
  5178. <technology name="">
  5179. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5180. </technology>
  5181. </technologies>
  5182. </device>
  5183. <device name="PTH3" package="1X02_LONGPADS">
  5184. <connects>
  5185. <connect gate="G$1" pin="1" pad="1"/>
  5186. <connect gate="G$1" pin="2" pad="2"/>
  5187. </connects>
  5188. <package3dinstances>
  5189. <package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/>
  5190. </package3dinstances>
  5191. <technologies>
  5192. <technology name=""/>
  5193. </technologies>
  5194. </device>
  5195. <device name="1X02_NO_SILK" package="1X02_NO_SILK">
  5196. <connects>
  5197. <connect gate="G$1" pin="1" pad="1"/>
  5198. <connect gate="G$1" pin="2" pad="2"/>
  5199. </connects>
  5200. <package3dinstances>
  5201. <package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/>
  5202. </package3dinstances>
  5203. <technologies>
  5204. <technology name=""/>
  5205. </technologies>
  5206. </device>
  5207. <device name="JST-PTH-2" package="JST-2-PTH">
  5208. <connects>
  5209. <connect gate="G$1" pin="1" pad="1"/>
  5210. <connect gate="G$1" pin="2" pad="2"/>
  5211. </connects>
  5212. <package3dinstances>
  5213. <package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/>
  5214. </package3dinstances>
  5215. <technologies>
  5216. <technology name="">
  5217. <attribute name="PROD_ID" value="CONN-09863" constant="no"/>
  5218. <attribute name="SKU" value="PRT-09914" constant="no"/>
  5219. </technology>
  5220. </technologies>
  5221. </device>
  5222. <device name="PTH4" package="1X02_XTRA_BIG">
  5223. <connects>
  5224. <connect gate="G$1" pin="1" pad="1"/>
  5225. <connect gate="G$1" pin="2" pad="2"/>
  5226. </connects>
  5227. <package3dinstances>
  5228. <package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/>
  5229. </package3dinstances>
  5230. <technologies>
  5231. <technology name=""/>
  5232. </technologies>
  5233. </device>
  5234. <device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY">
  5235. <connects>
  5236. <connect gate="G$1" pin="1" pad="1"/>
  5237. <connect gate="G$1" pin="2" pad="2"/>
  5238. </connects>
  5239. <package3dinstances>
  5240. <package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/>
  5241. </package3dinstances>
  5242. <technologies>
  5243. <technology name=""/>
  5244. </technologies>
  5245. </device>
  5246. <device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS">
  5247. <connects>
  5248. <connect gate="G$1" pin="1" pad="1"/>
  5249. <connect gate="G$1" pin="2" pad="2"/>
  5250. </connects>
  5251. <package3dinstances>
  5252. <package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/>
  5253. </package3dinstances>
  5254. <technologies>
  5255. <technology name="">
  5256. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5257. </technology>
  5258. </technologies>
  5259. </device>
  5260. <device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS">
  5261. <connects>
  5262. <connect gate="G$1" pin="1" pad="1"/>
  5263. <connect gate="G$1" pin="2" pad="2"/>
  5264. </connects>
  5265. <package3dinstances>
  5266. <package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/>
  5267. </package3dinstances>
  5268. <technologies>
  5269. <technology name=""/>
  5270. </technologies>
  5271. </device>
  5272. <device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT">
  5273. <connects>
  5274. <connect gate="G$1" pin="1" pad="1"/>
  5275. <connect gate="G$1" pin="2" pad="2"/>
  5276. </connects>
  5277. <package3dinstances>
  5278. <package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/>
  5279. </package3dinstances>
  5280. <technologies>
  5281. <technology name=""/>
  5282. </technologies>
  5283. </device>
  5284. <device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2">
  5285. <connects>
  5286. <connect gate="G$1" pin="1" pad="1"/>
  5287. <connect gate="G$1" pin="2" pad="2"/>
  5288. </connects>
  5289. <package3dinstances>
  5290. <package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/>
  5291. </package3dinstances>
  5292. <technologies>
  5293. <technology name=""/>
  5294. </technologies>
  5295. </device>
  5296. <device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM">
  5297. <connects>
  5298. <connect gate="G$1" pin="1" pad="P1"/>
  5299. <connect gate="G$1" pin="2" pad="P2"/>
  5300. </connects>
  5301. <package3dinstances>
  5302. <package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/>
  5303. </package3dinstances>
  5304. <technologies>
  5305. <technology name=""/>
  5306. </technologies>
  5307. </device>
  5308. <device name="SMALL_POKEHOME" package="1X02_POKEHOME">
  5309. <connects>
  5310. <connect gate="G$1" pin="1" pad="P1 P3"/>
  5311. <connect gate="G$1" pin="2" pad="P2 P4"/>
  5312. </connects>
  5313. <package3dinstances>
  5314. <package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/>
  5315. </package3dinstances>
  5316. <technologies>
  5317. <technology name="">
  5318. <attribute name="PROD_ID" value="CONN-13512"/>
  5319. </technology>
  5320. </technologies>
  5321. </device>
  5322. <device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE">
  5323. <connects>
  5324. <connect gate="G$1" pin="1" pad="1"/>
  5325. <connect gate="G$1" pin="2" pad="2"/>
  5326. </connects>
  5327. <package3dinstances>
  5328. <package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/>
  5329. </package3dinstances>
  5330. <technologies>
  5331. <technology name="">
  5332. <attribute name="PROD_ID" value="CONN-13700"/>
  5333. </technology>
  5334. </technologies>
  5335. </device>
  5336. </devices>
  5337. </deviceset>
  5338. <deviceset name="CONN_08" urn="urn:adsk.eagle:component:38333/1" prefix="J" uservalue="yes" library_version="1">
  5339. <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;
  5340. &lt;p&gt;&lt;/p&gt;
  5341. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5342. &lt;ul&gt;
  5343. &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;
  5344. &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;
  5345. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5346. &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;
  5347. &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;
  5348. &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;
  5349. &lt;/ul&gt;
  5350. &lt;p&gt;&lt;/p&gt;
  5351. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5352. &lt;ul&gt;
  5353. &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;
  5354. &lt;/ul&gt;
  5355. &lt;p&gt;&lt;/p&gt;
  5356. &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;
  5357. &lt;ul&gt;
  5358. &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;
  5359. &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;
  5360. &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;
  5361. &lt;p&gt;&lt;/p&gt;
  5362. &lt;/ul&gt;
  5363. &lt;p&gt;&lt;/p&gt;
  5364. &lt;b&gt;Special notes:&lt;/b&gt;
  5365. &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
  5366. &lt;p&gt;&lt;/p&gt;
  5367. NOTES ON THE VARIANTS LOCK and LOCK_LONGPADS...
  5368. 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>
  5369. <gates>
  5370. <gate name="G$1" symbol="CONN_08" x="-2.54" y="0"/>
  5371. </gates>
  5372. <devices>
  5373. <device name="&quot;" package="1X08">
  5374. <connects>
  5375. <connect gate="G$1" pin="1" pad="1"/>
  5376. <connect gate="G$1" pin="2" pad="2"/>
  5377. <connect gate="G$1" pin="3" pad="3"/>
  5378. <connect gate="G$1" pin="4" pad="4"/>
  5379. <connect gate="G$1" pin="5" pad="5"/>
  5380. <connect gate="G$1" pin="6" pad="6"/>
  5381. <connect gate="G$1" pin="7" pad="7"/>
  5382. <connect gate="G$1" pin="8" pad="8"/>
  5383. </connects>
  5384. <package3dinstances>
  5385. <package3dinstance package3d_urn="urn:adsk.eagle:package:38138/1"/>
  5386. </package3dinstances>
  5387. <technologies>
  5388. <technology name="">
  5389. <attribute name="PROD_ID" value="CONN-08438"/>
  5390. </technology>
  5391. </technologies>
  5392. </device>
  5393. <device name="LOCK" package="1X08_LOCK">
  5394. <connects>
  5395. <connect gate="G$1" pin="1" pad="1"/>
  5396. <connect gate="G$1" pin="2" pad="2"/>
  5397. <connect gate="G$1" pin="3" pad="3"/>
  5398. <connect gate="G$1" pin="4" pad="4"/>
  5399. <connect gate="G$1" pin="5" pad="5"/>
  5400. <connect gate="G$1" pin="6" pad="6"/>
  5401. <connect gate="G$1" pin="7" pad="7"/>
  5402. <connect gate="G$1" pin="8" pad="8"/>
  5403. </connects>
  5404. <package3dinstances>
  5405. <package3dinstance package3d_urn="urn:adsk.eagle:package:38137/1"/>
  5406. </package3dinstances>
  5407. <technologies>
  5408. <technology name=""/>
  5409. </technologies>
  5410. </device>
  5411. <device name="LOCK_LONGPADS" package="1X08_LOCK_LONGPADS">
  5412. <connects>
  5413. <connect gate="G$1" pin="1" pad="1"/>
  5414. <connect gate="G$1" pin="2" pad="2"/>
  5415. <connect gate="G$1" pin="3" pad="3"/>
  5416. <connect gate="G$1" pin="4" pad="4"/>
  5417. <connect gate="G$1" pin="5" pad="5"/>
  5418. <connect gate="G$1" pin="6" pad="6"/>
  5419. <connect gate="G$1" pin="7" pad="7"/>
  5420. <connect gate="G$1" pin="8" pad="8"/>
  5421. </connects>
  5422. <package3dinstances>
  5423. <package3dinstance package3d_urn="urn:adsk.eagle:package:38140/1"/>
  5424. </package3dinstances>
  5425. <technologies>
  5426. <technology name=""/>
  5427. </technologies>
  5428. </device>
  5429. <device name="LONGPADS" package="1X08_LONGPADS">
  5430. <connects>
  5431. <connect gate="G$1" pin="1" pad="1"/>
  5432. <connect gate="G$1" pin="2" pad="2"/>
  5433. <connect gate="G$1" pin="3" pad="3"/>
  5434. <connect gate="G$1" pin="4" pad="4"/>
  5435. <connect gate="G$1" pin="5" pad="5"/>
  5436. <connect gate="G$1" pin="6" pad="6"/>
  5437. <connect gate="G$1" pin="7" pad="7"/>
  5438. <connect gate="G$1" pin="8" pad="8"/>
  5439. </connects>
  5440. <package3dinstances>
  5441. <package3dinstance package3d_urn="urn:adsk.eagle:package:38142/1"/>
  5442. </package3dinstances>
  5443. <technologies>
  5444. <technology name=""/>
  5445. </technologies>
  5446. </device>
  5447. <device name="3.5MM-8" package="SCREWTERMINAL-3.5MM-8">
  5448. <connects>
  5449. <connect gate="G$1" pin="1" pad="1"/>
  5450. <connect gate="G$1" pin="2" pad="2"/>
  5451. <connect gate="G$1" pin="3" pad="3"/>
  5452. <connect gate="G$1" pin="4" pad="4"/>
  5453. <connect gate="G$1" pin="5" pad="5"/>
  5454. <connect gate="G$1" pin="6" pad="6"/>
  5455. <connect gate="G$1" pin="7" pad="7"/>
  5456. <connect gate="G$1" pin="8" pad="8"/>
  5457. </connects>
  5458. <package3dinstances>
  5459. <package3dinstance package3d_urn="urn:adsk.eagle:package:38143/1"/>
  5460. </package3dinstances>
  5461. <technologies>
  5462. <technology name=""/>
  5463. </technologies>
  5464. </device>
  5465. <device name="SMD-STRAIGHT-FEMALE" package="1X08_SMD">
  5466. <connects>
  5467. <connect gate="G$1" pin="1" pad="1"/>
  5468. <connect gate="G$1" pin="2" pad="2"/>
  5469. <connect gate="G$1" pin="3" pad="3"/>
  5470. <connect gate="G$1" pin="4" pad="4"/>
  5471. <connect gate="G$1" pin="5" pad="5"/>
  5472. <connect gate="G$1" pin="6" pad="6"/>
  5473. <connect gate="G$1" pin="7" pad="7"/>
  5474. <connect gate="G$1" pin="8" pad="8"/>
  5475. </connects>
  5476. <package3dinstances>
  5477. <package3dinstance package3d_urn="urn:adsk.eagle:package:38144/1"/>
  5478. </package3dinstances>
  5479. <technologies>
  5480. <technology name="">
  5481. <attribute name="PROD_ID" value="CONN-10204"/>
  5482. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5483. </technology>
  5484. </technologies>
  5485. </device>
  5486. <device name="SMD-STRAIGHT-ALT-FEMALE" package="1X08_SMD_ALT">
  5487. <connects>
  5488. <connect gate="G$1" pin="1" pad="1"/>
  5489. <connect gate="G$1" pin="2" pad="2"/>
  5490. <connect gate="G$1" pin="3" pad="3"/>
  5491. <connect gate="G$1" pin="4" pad="4"/>
  5492. <connect gate="G$1" pin="5" pad="5"/>
  5493. <connect gate="G$1" pin="6" pad="6"/>
  5494. <connect gate="G$1" pin="7" pad="7"/>
  5495. <connect gate="G$1" pin="8" pad="8"/>
  5496. </connects>
  5497. <package3dinstances>
  5498. <package3dinstance package3d_urn="urn:adsk.eagle:package:38148/1"/>
  5499. </package3dinstances>
  5500. <technologies>
  5501. <technology name="">
  5502. <attribute name="PROD_ID" value="CONN-10204"/>
  5503. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5504. </technology>
  5505. </technologies>
  5506. </device>
  5507. <device name="SMD-COMBO-FEMALE" package="1X08_SMD_COMBINED">
  5508. <connects>
  5509. <connect gate="G$1" pin="1" pad="1"/>
  5510. <connect gate="G$1" pin="2" pad="2"/>
  5511. <connect gate="G$1" pin="3" pad="3"/>
  5512. <connect gate="G$1" pin="4" pad="4"/>
  5513. <connect gate="G$1" pin="5" pad="5"/>
  5514. <connect gate="G$1" pin="6" pad="6"/>
  5515. <connect gate="G$1" pin="7" pad="7"/>
  5516. <connect gate="G$1" pin="8" pad="8"/>
  5517. </connects>
  5518. <package3dinstances>
  5519. <package3dinstance package3d_urn="urn:adsk.eagle:package:38146/1"/>
  5520. </package3dinstances>
  5521. <technologies>
  5522. <technology name="">
  5523. <attribute name="PROD_ID" value="CONN-10204"/>
  5524. <attribute name="SF_ID" value="PRT-11543" constant="no"/>
  5525. </technology>
  5526. </technologies>
  5527. </device>
  5528. <device name="BM08B-SRSS-TB" package="BM08B-SRSS-TB">
  5529. <connects>
  5530. <connect gate="G$1" pin="1" pad="1"/>
  5531. <connect gate="G$1" pin="2" pad="2"/>
  5532. <connect gate="G$1" pin="3" pad="3"/>
  5533. <connect gate="G$1" pin="4" pad="4"/>
  5534. <connect gate="G$1" pin="5" pad="5"/>
  5535. <connect gate="G$1" pin="6" pad="6"/>
  5536. <connect gate="G$1" pin="7" pad="7"/>
  5537. <connect gate="G$1" pin="8" pad="8"/>
  5538. </connects>
  5539. <package3dinstances>
  5540. <package3dinstance package3d_urn="urn:adsk.eagle:package:38145/1"/>
  5541. </package3dinstances>
  5542. <technologies>
  5543. <technology name="">
  5544. <attribute name="PROD_ID" value="CONN-10556" constant="no"/>
  5545. </technology>
  5546. </technologies>
  5547. </device>
  5548. <device name="SMD-MALE" package="1X08_SMD_MALE">
  5549. <connects>
  5550. <connect gate="G$1" pin="1" pad="1"/>
  5551. <connect gate="G$1" pin="2" pad="2"/>
  5552. <connect gate="G$1" pin="3" pad="3"/>
  5553. <connect gate="G$1" pin="4" pad="4"/>
  5554. <connect gate="G$1" pin="5" pad="5"/>
  5555. <connect gate="G$1" pin="6" pad="6"/>
  5556. <connect gate="G$1" pin="7" pad="7"/>
  5557. <connect gate="G$1" pin="8" pad="8"/>
  5558. </connects>
  5559. <package3dinstances>
  5560. <package3dinstance package3d_urn="urn:adsk.eagle:package:38150/1"/>
  5561. </package3dinstances>
  5562. <technologies>
  5563. <technology name="">
  5564. <attribute name="PROD_ID" value="CONN-11292"/>
  5565. <attribute name="SF_ID" value="PRT-11541" constant="no"/>
  5566. </technology>
  5567. </technologies>
  5568. </device>
  5569. <device name="NO_SILK_FEMALE_PTH" package="1X08_NO_SILK">
  5570. <connects>
  5571. <connect gate="G$1" pin="1" pad="1"/>
  5572. <connect gate="G$1" pin="2" pad="2"/>
  5573. <connect gate="G$1" pin="3" pad="3"/>
  5574. <connect gate="G$1" pin="4" pad="4"/>
  5575. <connect gate="G$1" pin="5" pad="5"/>
  5576. <connect gate="G$1" pin="6" pad="6"/>
  5577. <connect gate="G$1" pin="7" pad="7"/>
  5578. <connect gate="G$1" pin="8" pad="8"/>
  5579. </connects>
  5580. <package3dinstances>
  5581. <package3dinstance package3d_urn="urn:adsk.eagle:package:38149/1"/>
  5582. </package3dinstances>
  5583. <technologies>
  5584. <technology name="">
  5585. <attribute name="PROD_ID" value="CONN-08438"/>
  5586. </technology>
  5587. </technologies>
  5588. </device>
  5589. <device name="LOCK_NO_SILK" package="1X08_LOCK_NO_SILK">
  5590. <connects>
  5591. <connect gate="G$1" pin="1" pad="1"/>
  5592. <connect gate="G$1" pin="2" pad="2"/>
  5593. <connect gate="G$1" pin="3" pad="3"/>
  5594. <connect gate="G$1" pin="4" pad="4"/>
  5595. <connect gate="G$1" pin="5" pad="5"/>
  5596. <connect gate="G$1" pin="6" pad="6"/>
  5597. <connect gate="G$1" pin="7" pad="7"/>
  5598. <connect gate="G$1" pin="8" pad="8"/>
  5599. </connects>
  5600. <package3dinstances>
  5601. <package3dinstance package3d_urn="urn:adsk.eagle:package:38147/1"/>
  5602. </package3dinstances>
  5603. <technologies>
  5604. <technology name=""/>
  5605. </technologies>
  5606. </device>
  5607. <device name="FEMALE_LOCK" package="1X08_FEMALE_LOCK">
  5608. <connects>
  5609. <connect gate="G$1" pin="1" pad="1"/>
  5610. <connect gate="G$1" pin="2" pad="2"/>
  5611. <connect gate="G$1" pin="3" pad="3"/>
  5612. <connect gate="G$1" pin="4" pad="4"/>
  5613. <connect gate="G$1" pin="5" pad="5"/>
  5614. <connect gate="G$1" pin="6" pad="6"/>
  5615. <connect gate="G$1" pin="7" pad="7"/>
  5616. <connect gate="G$1" pin="8" pad="8"/>
  5617. </connects>
  5618. <package3dinstances>
  5619. <package3dinstance package3d_urn="urn:adsk.eagle:package:38151/1"/>
  5620. </package3dinstances>
  5621. <technologies>
  5622. <technology name="">
  5623. <attribute name="PROD_ID" value="CONN-09233" constant="no"/>
  5624. <attribute name="SF_ID" value="PRT-09279" constant="no"/>
  5625. </technology>
  5626. </technologies>
  5627. </device>
  5628. </devices>
  5629. </deviceset>
  5630. <deviceset name="CONN_04" urn="urn:adsk.eagle:component:38327/1" prefix="J" uservalue="yes" library_version="1">
  5631. <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;
  5632. &lt;p&gt;&lt;/p&gt;
  5633. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5634. &lt;ul&gt;
  5635. &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;
  5636. &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;
  5637. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5638. &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;
  5639. &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;
  5640. &lt;/ul&gt;
  5641. &lt;p&gt;&lt;/p&gt;
  5642. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5643. &lt;ul&gt;
  5644. &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;
  5645. &lt;/ul&gt;
  5646. &lt;p&gt;&lt;/p&gt;
  5647. &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;
  5648. &lt;ul&gt;
  5649. &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;
  5650. &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;
  5651. &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;
  5652. &lt;p&gt;&lt;/p&gt;
  5653. &lt;/ul&gt;
  5654. &lt;p&gt;&lt;/p&gt;
  5655. &lt;b&gt;Special notes:&lt;/b&gt;
  5656. &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>
  5657. <gates>
  5658. <gate name="G$1" symbol="CONN_04" x="-2.54" y="0"/>
  5659. </gates>
  5660. <devices>
  5661. <device name="" package="1X04">
  5662. <connects>
  5663. <connect gate="G$1" pin="1" pad="1"/>
  5664. <connect gate="G$1" pin="2" pad="2"/>
  5665. <connect gate="G$1" pin="3" pad="3"/>
  5666. <connect gate="G$1" pin="4" pad="4"/>
  5667. </connects>
  5668. <package3dinstances>
  5669. <package3dinstance package3d_urn="urn:adsk.eagle:package:38085/1"/>
  5670. </package3dinstances>
  5671. <technologies>
  5672. <technology name="">
  5673. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5674. </technology>
  5675. </technologies>
  5676. </device>
  5677. <device name="POLAR" package="MOLEX-1X4">
  5678. <connects>
  5679. <connect gate="G$1" pin="1" pad="1"/>
  5680. <connect gate="G$1" pin="2" pad="2"/>
  5681. <connect gate="G$1" pin="3" pad="3"/>
  5682. <connect gate="G$1" pin="4" pad="4"/>
  5683. </connects>
  5684. <package3dinstances>
  5685. <package3dinstance package3d_urn="urn:adsk.eagle:package:38087/1"/>
  5686. </package3dinstances>
  5687. <technologies>
  5688. <technology name="">
  5689. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5690. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5691. </technology>
  5692. </technologies>
  5693. </device>
  5694. <device name="SCREW" package="SCREWTERMINAL-3.5MM-4">
  5695. <connects>
  5696. <connect gate="G$1" pin="1" pad="1"/>
  5697. <connect gate="G$1" pin="2" pad="2"/>
  5698. <connect gate="G$1" pin="3" pad="3"/>
  5699. <connect gate="G$1" pin="4" pad="4"/>
  5700. </connects>
  5701. <package3dinstances>
  5702. <package3dinstance package3d_urn="urn:adsk.eagle:package:38090/1"/>
  5703. </package3dinstances>
  5704. <technologies>
  5705. <technology name="">
  5706. <attribute name="PROD_ID" value="2xCONN-08399" constant="no"/>
  5707. <attribute name="SF_ID" value="2xPRT-08084" constant="no"/>
  5708. </technology>
  5709. </technologies>
  5710. </device>
  5711. <device name="1.27MM" package="1X04_1.27MM">
  5712. <connects>
  5713. <connect gate="G$1" pin="1" pad="1"/>
  5714. <connect gate="G$1" pin="2" pad="2"/>
  5715. <connect gate="G$1" pin="3" pad="3"/>
  5716. <connect gate="G$1" pin="4" pad="4"/>
  5717. </connects>
  5718. <package3dinstances>
  5719. <package3dinstance package3d_urn="urn:adsk.eagle:package:38086/1"/>
  5720. </package3dinstances>
  5721. <technologies>
  5722. <technology name=""/>
  5723. </technologies>
  5724. </device>
  5725. <device name="LOCK" package="1X04_LOCK">
  5726. <connects>
  5727. <connect gate="G$1" pin="1" pad="1"/>
  5728. <connect gate="G$1" pin="2" pad="2"/>
  5729. <connect gate="G$1" pin="3" pad="3"/>
  5730. <connect gate="G$1" pin="4" pad="4"/>
  5731. </connects>
  5732. <package3dinstances>
  5733. <package3dinstance package3d_urn="urn:adsk.eagle:package:38089/1"/>
  5734. </package3dinstances>
  5735. <technologies>
  5736. <technology name="">
  5737. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5738. </technology>
  5739. </technologies>
  5740. </device>
  5741. <device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS">
  5742. <connects>
  5743. <connect gate="G$1" pin="1" pad="1"/>
  5744. <connect gate="G$1" pin="2" pad="2"/>
  5745. <connect gate="G$1" pin="3" pad="3"/>
  5746. <connect gate="G$1" pin="4" pad="4"/>
  5747. </connects>
  5748. <package3dinstances>
  5749. <package3dinstance package3d_urn="urn:adsk.eagle:package:38091/1"/>
  5750. </package3dinstances>
  5751. <technologies>
  5752. <technology name="">
  5753. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5754. </technology>
  5755. </technologies>
  5756. </device>
  5757. <device name="POLAR_LOCK" package="MOLEX-1X4_LOCK">
  5758. <connects>
  5759. <connect gate="G$1" pin="1" pad="1"/>
  5760. <connect gate="G$1" pin="2" pad="2"/>
  5761. <connect gate="G$1" pin="3" pad="3"/>
  5762. <connect gate="G$1" pin="4" pad="4"/>
  5763. </connects>
  5764. <package3dinstances>
  5765. <package3dinstance package3d_urn="urn:adsk.eagle:package:38092/1"/>
  5766. </package3dinstances>
  5767. <technologies>
  5768. <technology name="">
  5769. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5770. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5771. </technology>
  5772. </technologies>
  5773. </device>
  5774. <device name="SMD" package="1X04_SMD_RA_MALE">
  5775. <connects>
  5776. <connect gate="G$1" pin="1" pad="1"/>
  5777. <connect gate="G$1" pin="2" pad="2"/>
  5778. <connect gate="G$1" pin="3" pad="3"/>
  5779. <connect gate="G$1" pin="4" pad="4"/>
  5780. </connects>
  5781. <package3dinstances>
  5782. <package3dinstance package3d_urn="urn:adsk.eagle:package:38093/1"/>
  5783. </package3dinstances>
  5784. <technologies>
  5785. <technology name="">
  5786. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5787. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5788. </technology>
  5789. </technologies>
  5790. </device>
  5791. <device name="LONGPADS" package="1X04_LONGPADS">
  5792. <connects>
  5793. <connect gate="G$1" pin="1" pad="1"/>
  5794. <connect gate="G$1" pin="2" pad="2"/>
  5795. <connect gate="G$1" pin="3" pad="3"/>
  5796. <connect gate="G$1" pin="4" pad="4"/>
  5797. </connects>
  5798. <package3dinstances>
  5799. <package3dinstance package3d_urn="urn:adsk.eagle:package:38098/1"/>
  5800. </package3dinstances>
  5801. <technologies>
  5802. <technology name="">
  5803. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5804. </technology>
  5805. </technologies>
  5806. </device>
  5807. <device name="1X04_NO_SILK" package="1X04_NO_SILK">
  5808. <connects>
  5809. <connect gate="G$1" pin="1" pad="1"/>
  5810. <connect gate="G$1" pin="2" pad="2"/>
  5811. <connect gate="G$1" pin="3" pad="3"/>
  5812. <connect gate="G$1" pin="4" pad="4"/>
  5813. </connects>
  5814. <package3dinstances>
  5815. <package3dinstance package3d_urn="urn:adsk.eagle:package:38094/1"/>
  5816. </package3dinstances>
  5817. <technologies>
  5818. <technology name="">
  5819. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5820. </technology>
  5821. </technologies>
  5822. </device>
  5823. <device name="JST-PTH" package="JST-4-PTH">
  5824. <connects>
  5825. <connect gate="G$1" pin="1" pad="1"/>
  5826. <connect gate="G$1" pin="2" pad="2"/>
  5827. <connect gate="G$1" pin="3" pad="3"/>
  5828. <connect gate="G$1" pin="4" pad="4"/>
  5829. </connects>
  5830. <package3dinstances>
  5831. <package3dinstance package3d_urn="urn:adsk.eagle:package:38101/1"/>
  5832. </package3dinstances>
  5833. <technologies>
  5834. <technology name="">
  5835. <attribute name="PROD_ID" value="WIRE-13531" constant="no"/>
  5836. <attribute name="SF_ID" value="PRT-09916" constant="no"/>
  5837. </technology>
  5838. </technologies>
  5839. </device>
  5840. <device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK">
  5841. <connects>
  5842. <connect gate="G$1" pin="1" pad="1"/>
  5843. <connect gate="G$1" pin="2" pad="2"/>
  5844. <connect gate="G$1" pin="3" pad="3"/>
  5845. <connect gate="G$1" pin="4" pad="4"/>
  5846. </connects>
  5847. <package3dinstances>
  5848. <package3dinstance package3d_urn="urn:adsk.eagle:package:38095/1"/>
  5849. </package3dinstances>
  5850. <technologies>
  5851. <technology name=""/>
  5852. </technologies>
  5853. </device>
  5854. <device name="SMD2" package="1X04_1MM_RA">
  5855. <connects>
  5856. <connect gate="G$1" pin="1" pad="1"/>
  5857. <connect gate="G$1" pin="2" pad="2"/>
  5858. <connect gate="G$1" pin="3" pad="3"/>
  5859. <connect gate="G$1" pin="4" pad="4"/>
  5860. </connects>
  5861. <package3dinstances>
  5862. <package3dinstance package3d_urn="urn:adsk.eagle:package:38096/1"/>
  5863. </package3dinstances>
  5864. <technologies>
  5865. <technology name="">
  5866. <attribute name="PROD_ID" value="CONN-10310" constant="no"/>
  5867. <attribute name="SF_ID" value="PRT-10208" constant="no"/>
  5868. </technology>
  5869. </technologies>
  5870. </device>
  5871. <device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_VERTICAL_COMBO">
  5872. <connects>
  5873. <connect gate="G$1" pin="1" pad="1"/>
  5874. <connect gate="G$1" pin="2" pad="2"/>
  5875. <connect gate="G$1" pin="3" pad="3"/>
  5876. <connect gate="G$1" pin="4" pad="4"/>
  5877. </connects>
  5878. <package3dinstances>
  5879. <package3dinstance package3d_urn="urn:adsk.eagle:package:38097/1"/>
  5880. </package3dinstances>
  5881. <technologies>
  5882. <technology name="">
  5883. <attribute name="PROD_ID" value="CONN-08511"/>
  5884. <attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/>
  5885. </technology>
  5886. </technologies>
  5887. </device>
  5888. <device name="SMD_LONG" package="1X04_SMD_LONG">
  5889. <connects>
  5890. <connect gate="G$1" pin="1" pad="1"/>
  5891. <connect gate="G$1" pin="2" pad="2"/>
  5892. <connect gate="G$1" pin="3" pad="3"/>
  5893. <connect gate="G$1" pin="4" pad="4"/>
  5894. </connects>
  5895. <package3dinstances>
  5896. <package3dinstance package3d_urn="urn:adsk.eagle:package:38099/1"/>
  5897. </package3dinstances>
  5898. <technologies>
  5899. <technology name="">
  5900. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5901. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5902. </technology>
  5903. </technologies>
  5904. </device>
  5905. <device name="JST-PTH-VERT" package="JST-4-PTH-VERT">
  5906. <connects>
  5907. <connect gate="G$1" pin="1" pad="1"/>
  5908. <connect gate="G$1" pin="2" pad="2"/>
  5909. <connect gate="G$1" pin="3" pad="3"/>
  5910. <connect gate="G$1" pin="4" pad="4"/>
  5911. </connects>
  5912. <package3dinstances>
  5913. <package3dinstance package3d_urn="urn:adsk.eagle:package:38102/1"/>
  5914. </package3dinstances>
  5915. <technologies>
  5916. <technology name="">
  5917. <attribute name="PROD_ID" value="CONN-13251"/>
  5918. </technology>
  5919. </technologies>
  5920. </device>
  5921. <device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE">
  5922. <connects>
  5923. <connect gate="G$1" pin="1" pad="1"/>
  5924. <connect gate="G$1" pin="2" pad="2"/>
  5925. <connect gate="G$1" pin="3" pad="3"/>
  5926. <connect gate="G$1" pin="4" pad="4"/>
  5927. </connects>
  5928. <package3dinstances>
  5929. <package3dinstance package3d_urn="urn:adsk.eagle:package:38100/1"/>
  5930. </package3dinstances>
  5931. <technologies>
  5932. <technology name="">
  5933. <attribute name="PROD_ID" value="CONN-12382" constant="no"/>
  5934. </technology>
  5935. </technologies>
  5936. </device>
  5937. </devices>
  5938. </deviceset>
  5939. </devicesets>
  5940. </library>
  5941. <library name="Transistor" urn="urn:adsk.eagle:library:16378713">
  5942. <description>&lt;B&gt;BJT, JFET, MOSFET, UJT, Darlington</description>
  5943. <packages>
  5944. <package name="SOT23" urn="urn:adsk.eagle:footprint:28669/1" library_version="4">
  5945. <description>&lt;b&gt;SOT-23&lt;/b&gt;</description>
  5946. <wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  5947. <wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  5948. <wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/>
  5949. <wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/>
  5950. <smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/>
  5951. <smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  5952. <smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  5953. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  5954. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  5955. <rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/>
  5956. <rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/>
  5957. <rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/>
  5958. </package>
  5959. <package name="TO92" urn="urn:adsk.eagle:footprint:28459/1" library_version="4">
  5960. <description>&lt;b&gt;TO 92&lt;/b&gt;</description>
  5961. <wire x1="-2.0946" y1="-1.651" x2="-2.6549" y2="-0.254" width="0.127" layer="21" curve="-32.781"/>
  5962. <wire x1="-2.6549" y1="-0.254" x2="-0.7863" y2="2.5485" width="0.127" layer="21" curve="-78.3185"/>
  5963. <wire x1="0.7863" y1="2.5484" x2="2.0945" y2="-1.651" width="0.127" layer="21" curve="-111.1"/>
  5964. <wire x1="-2.0945" y1="-1.651" x2="2.0945" y2="-1.651" width="0.127" layer="21"/>
  5965. <wire x1="-2.2537" y1="-0.254" x2="-0.2863" y2="-0.254" width="0.127" layer="51"/>
  5966. <wire x1="-2.6549" y1="-0.254" x2="-2.2537" y2="-0.254" width="0.127" layer="21"/>
  5967. <wire x1="-0.2863" y1="-0.254" x2="0.2863" y2="-0.254" width="0.127" layer="21"/>
  5968. <wire x1="2.2537" y1="-0.254" x2="2.6549" y2="-0.254" width="0.127" layer="21"/>
  5969. <wire x1="0.2863" y1="-0.254" x2="2.2537" y2="-0.254" width="0.127" layer="51"/>
  5970. <wire x1="-0.7863" y1="2.5485" x2="0.7863" y2="2.5485" width="0.127" layer="51" curve="-34.2936"/>
  5971. <pad name="1" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  5972. <pad name="2" x="0" y="1.905" drill="0.8128" shape="octagon"/>
  5973. <pad name="3" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  5974. <text x="3.175" y="0.635" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5975. <text x="3.175" y="-1.27" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5976. <text x="-0.635" y="0.635" size="1.27" layer="51" ratio="10">2</text>
  5977. <text x="-2.159" y="0" size="1.27" layer="51" ratio="10">3</text>
  5978. <text x="1.143" y="0" size="1.27" layer="51" ratio="10">1</text>
  5979. </package>
  5980. <package name="TO220BV" urn="urn:adsk.eagle:footprint:29371/1" library_version="4">
  5981. <description>&lt;b&gt;Molded Package&lt;/b&gt;&lt;p&gt;
  5982. grid 2.54 mm</description>
  5983. <wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  5984. <wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  5985. <wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  5986. <wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  5987. <wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/>
  5988. <circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/>
  5989. <pad name="G" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5990. <pad name="D" x="0" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5991. <pad name="S" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  5992. <text x="-5.08" y="-6.0452" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  5993. <text x="-5.08" y="-7.62" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  5994. <rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/>
  5995. <rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/>
  5996. <rectangle x1="-1.651" y1="-1.27" x2="-0.889" y2="-0.762" layer="21"/>
  5997. <rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/>
  5998. <rectangle x1="0.889" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/>
  5999. <rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/>
  6000. <rectangle x1="-0.889" y1="-1.27" x2="0.889" y2="-0.762" layer="51"/>
  6001. <rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/>
  6002. </package>
  6003. </packages>
  6004. <packages3d>
  6005. <package3d name="SOT23" urn="urn:adsk.eagle:package:28738/2" type="model" library_version="4">
  6006. <description>SOT-23</description>
  6007. <packageinstances>
  6008. <packageinstance name="SOT23"/>
  6009. </packageinstances>
  6010. </package3d>
  6011. <package3d name="TO92" urn="urn:adsk.eagle:package:16378726/2" type="model" library_version="4">
  6012. <description>TO 92</description>
  6013. <packageinstances>
  6014. <packageinstance name="TO92"/>
  6015. </packageinstances>
  6016. </package3d>
  6017. <package3d name="TO220BV" urn="urn:adsk.eagle:package:29484/3" type="model" library_version="4">
  6018. <description>Molded Package
  6019. grid 2.54 mm</description>
  6020. <packageinstances>
  6021. <packageinstance name="TO220BV"/>
  6022. </packageinstances>
  6023. </package3d>
  6024. </packages3d>
  6025. <symbols>
  6026. <symbol name="MFNS" urn="urn:adsk.eagle:symbol:16378716/2" library_version="4">
  6027. <wire x1="-1.1176" y1="2.413" x2="-1.1176" y2="-2.54" width="0.254" layer="94"/>
  6028. <wire x1="-1.1176" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  6029. <wire x1="2.54" y1="1.905" x2="0.5334" y2="1.905" width="0.1524" layer="94"/>
  6030. <wire x1="2.54" y1="0" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6031. <wire x1="0.508" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6032. <wire x1="2.54" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6033. <wire x1="2.54" y1="1.905" x2="5.08" y2="1.905" width="0.1524" layer="94"/>
  6034. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6035. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6036. <wire x1="5.08" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6037. <wire x1="2.54" y1="-1.905" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  6038. <wire x1="5.08" y1="0.762" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  6039. <wire x1="4.445" y1="-0.635" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  6040. <wire x1="5.715" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6041. <wire x1="4.445" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6042. <wire x1="5.08" y1="0.762" x2="5.715" y2="0.762" width="0.1524" layer="94"/>
  6043. <wire x1="5.715" y1="0.762" x2="5.969" y2="1.016" width="0.1524" layer="94"/>
  6044. <wire x1="4.445" y1="0.762" x2="4.191" y2="0.508" width="0.1524" layer="94"/>
  6045. <wire x1="0.508" y1="0" x2="1.778" y2="-0.508" width="0.1524" layer="94"/>
  6046. <wire x1="1.778" y1="-0.508" x2="1.778" y2="0.508" width="0.1524" layer="94"/>
  6047. <wire x1="1.778" y1="0.508" x2="0.508" y2="0" width="0.1524" layer="94"/>
  6048. <wire x1="1.651" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6049. <wire x1="1.651" y1="0.254" x2="0.762" y2="0" width="0.3048" layer="94"/>
  6050. <wire x1="0.762" y1="0" x2="1.651" y2="-0.254" width="0.3048" layer="94"/>
  6051. <wire x1="1.651" y1="-0.254" x2="1.651" y2="0" width="0.3048" layer="94"/>
  6052. <wire x1="1.651" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  6053. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  6054. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  6055. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  6056. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  6057. <text x="1.27" y="2.54" size="0.8128" layer="93">D</text>
  6058. <text x="1.27" y="-3.175" size="0.8128" layer="93">S</text>
  6059. <text x="-2.54" y="-1.27" size="0.8128" layer="93">G</text>
  6060. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  6061. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  6062. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6063. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  6064. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6065. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6066. </symbol>
  6067. </symbols>
  6068. <devicesets>
  6069. <deviceset name="NMOSFET" urn="urn:adsk.eagle:component:16378730/3" prefix="Q" library_version="4">
  6070. <description>&lt;b&gt; N-Channel MOSFET - Generic</description>
  6071. <gates>
  6072. <gate name="G$1" symbol="MFNS" x="-2.54" y="0"/>
  6073. </gates>
  6074. <devices>
  6075. <device name="SOT23" package="SOT23">
  6076. <connects>
  6077. <connect gate="G$1" pin="D" pad="3"/>
  6078. <connect gate="G$1" pin="G" pad="1"/>
  6079. <connect gate="G$1" pin="S" pad="2"/>
  6080. </connects>
  6081. <package3dinstances>
  6082. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6083. </package3dinstances>
  6084. <technologies>
  6085. <technology name="">
  6086. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6087. <attribute name="DESCRIPTION" value="" constant="no"/>
  6088. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6089. <attribute name="MANUFACTURER" value="" constant="no"/>
  6090. <attribute name="MPN" value="" constant="no"/>
  6091. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6092. <attribute name="PART_STATUS" value="" constant="no"/>
  6093. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6094. <attribute name="SERIES" value="" constant="no"/>
  6095. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6096. <attribute name="THERMALLOSS" value="" constant="no"/>
  6097. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6098. </technology>
  6099. <technology name="_">
  6100. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6101. <attribute name="DESCRIPTION" value="" constant="no"/>
  6102. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6103. <attribute name="MANUFACTURER" value="" constant="no"/>
  6104. <attribute name="MPN" value="" constant="no"/>
  6105. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6106. <attribute name="PART_STATUS" value="" constant="no"/>
  6107. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6108. <attribute name="SERIES" value="" constant="no"/>
  6109. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6110. <attribute name="THERMALLOSS" value="" constant="no"/>
  6111. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6112. </technology>
  6113. </technologies>
  6114. </device>
  6115. <device name="TO92" package="TO92">
  6116. <connects>
  6117. <connect gate="G$1" pin="D" pad="1"/>
  6118. <connect gate="G$1" pin="G" pad="2"/>
  6119. <connect gate="G$1" pin="S" pad="3"/>
  6120. </connects>
  6121. <package3dinstances>
  6122. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  6123. </package3dinstances>
  6124. <technologies>
  6125. <technology name="_">
  6126. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6127. <attribute name="DESCRIPTION" value="" constant="no"/>
  6128. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6129. <attribute name="MANUFACTURER" value="" constant="no"/>
  6130. <attribute name="MPN" value="" constant="no"/>
  6131. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6132. <attribute name="PART_STATUS" value="" constant="no"/>
  6133. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6134. <attribute name="SERIES" value="" constant="no"/>
  6135. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6136. <attribute name="THERMALLOSS" value="" constant="no"/>
  6137. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6138. </technology>
  6139. </technologies>
  6140. </device>
  6141. <device name="TO220" package="TO220BV">
  6142. <connects>
  6143. <connect gate="G$1" pin="D" pad="D"/>
  6144. <connect gate="G$1" pin="G" pad="G"/>
  6145. <connect gate="G$1" pin="S" pad="S"/>
  6146. </connects>
  6147. <package3dinstances>
  6148. <package3dinstance package3d_urn="urn:adsk.eagle:package:29484/3"/>
  6149. </package3dinstances>
  6150. <technologies>
  6151. <technology name="_">
  6152. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6153. <attribute name="DESCRIPTION" value="" constant="no"/>
  6154. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6155. <attribute name="MANUFACTURER" value="" constant="no"/>
  6156. <attribute name="MPN" value="" constant="no"/>
  6157. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6158. <attribute name="PART_STATUS" value="" constant="no"/>
  6159. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6160. <attribute name="SERIES" value="" constant="no"/>
  6161. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6162. <attribute name="THERMALLOSS" value="" constant="no"/>
  6163. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6164. </technology>
  6165. </technologies>
  6166. </device>
  6167. </devices>
  6168. </deviceset>
  6169. </devicesets>
  6170. </library>
  6171. <library name="eScooter">
  6172. <packages>
  6173. <package name="DIOM5027X220N" urn="urn:adsk.eagle:footprint:21928331/1">
  6174. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6175. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6176. <wire x1="2.5" y1="1.35" x2="-3.3699" y2="1.35" width="0.12" layer="21"/>
  6177. <wire x1="-3.3699" y1="1.35" x2="-3.3699" y2="-1.35" width="0.12" layer="21"/>
  6178. <wire x1="-3.3699" y1="-1.35" x2="2.5" y2="-1.35" width="0.12" layer="21"/>
  6179. <wire x1="2.5" y1="-1.35" x2="-2.5" y2="-1.35" width="0.12" layer="51"/>
  6180. <wire x1="-2.5" y1="-1.35" x2="-2.5" y2="1.35" width="0.12" layer="51"/>
  6181. <wire x1="-2.5" y1="1.35" x2="2.5" y2="1.35" width="0.12" layer="51"/>
  6182. <wire x1="2.5" y1="1.35" x2="2.5" y2="-1.35" width="0.12" layer="51"/>
  6183. <smd name="1" x="-2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6184. <smd name="2" x="2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6185. <text x="0" y="1.985" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6186. <text x="0" y="-1.985" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6187. </package>
  6188. <package name="CAPAE1230X1250N" urn="urn:adsk.eagle:footprint:21812987/1">
  6189. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6190. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6191. <wire x1="-6.25" y1="1.3186" x2="-6.25" y2="3.6573" width="0.12" layer="21"/>
  6192. <wire x1="-6.25" y1="3.6573" x2="-3.6573" y2="6.25" width="0.12" layer="21"/>
  6193. <wire x1="-3.6573" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="21"/>
  6194. <wire x1="6.25" y1="6.25" x2="6.25" y2="1.3186" width="0.12" layer="21"/>
  6195. <wire x1="-6.25" y1="-1.3186" x2="-6.25" y2="-3.6573" width="0.12" layer="21"/>
  6196. <wire x1="-6.25" y1="-3.6573" x2="-3.6573" y2="-6.25" width="0.12" layer="21"/>
  6197. <wire x1="-3.6573" y1="-6.25" x2="6.25" y2="-6.25" width="0.12" layer="21"/>
  6198. <wire x1="6.25" y1="-6.25" x2="6.25" y2="-1.3186" width="0.12" layer="21"/>
  6199. <wire x1="6.25" y1="-6.25" x2="-6.25" y2="-6.25" width="0.12" layer="51"/>
  6200. <wire x1="-6.25" y1="-6.25" x2="-6.25" y2="6.25" width="0.12" layer="51"/>
  6201. <wire x1="-6.25" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="51"/>
  6202. <wire x1="6.25" y1="6.25" x2="6.25" y2="-6.25" width="0.12" layer="51"/>
  6203. <smd name="1" x="-4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6204. <smd name="2" x="4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6205. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6206. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6207. </package>
  6208. </packages>
  6209. <packages3d>
  6210. <package3d name="DIOM5027X220N" urn="urn:adsk.eagle:package:21928182/1" type="model">
  6211. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6212. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6213. <packageinstances>
  6214. <packageinstance name="DIOM5027X220N"/>
  6215. </packageinstances>
  6216. </package3d>
  6217. <package3d name="CAPAE1230X1250N" urn="urn:adsk.eagle:package:21812541/1" type="model">
  6218. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6219. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6220. <packageinstances>
  6221. <packageinstance name="CAPAE1230X1250N"/>
  6222. </packageinstances>
  6223. </package3d>
  6224. </packages3d>
  6225. <symbols>
  6226. <symbol name="TVS_DIODE">
  6227. <wire x1="0" y1="0" x2="-2.54" y2="2.54" width="0.254" layer="94"/>
  6228. <wire x1="2.54" y1="2.54" x2="0" y2="0" width="0.254" layer="94"/>
  6229. <wire x1="-5.08" y1="-2.54" x2="-2.54" y2="0" width="0.254" layer="94"/>
  6230. <wire x1="-2.54" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  6231. <wire x1="2.54" y1="0" x2="5.08" y2="2.54" width="0.254" layer="94"/>
  6232. <wire x1="0" y1="0" x2="-2.54" y2="-2.54" width="0.254" layer="94"/>
  6233. <wire x1="2.54" y1="-2.54" x2="0" y2="0" width="0.254" layer="94"/>
  6234. <wire x1="-2.54" y1="2.54" x2="2.54" y2="2.54" width="0.254" layer="94"/>
  6235. <wire x1="-2.54" y1="-2.54" x2="2.54" y2="-2.54" width="0.254" layer="94"/>
  6236. <pin name="P$1" x="0" y="7.62" visible="off" length="middle" rot="R270"/>
  6237. <pin name="P$2" x="0" y="-7.62" visible="off" length="middle" rot="R90"/>
  6238. <text x="2.54" y="5.08" size="1.778" layer="95">&gt;NAME</text>
  6239. <text x="2.54" y="-7.62" size="1.778" layer="96">&gt;VALUE</text>
  6240. </symbol>
  6241. <symbol name="C">
  6242. <wire x1="-2.54" y1="1.27" x2="2.54" y2="1.27" width="0.254" layer="94"/>
  6243. <wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.254" layer="94" curve="-90"/>
  6244. <pin name="P$1" x="0" y="6.35" visible="off" length="middle" direction="pwr" rot="R270"/>
  6245. <pin name="P$2" x="0" y="-5.08" visible="off" length="middle" direction="pwr" rot="R90"/>
  6246. <text x="-3.81" y="1.27" size="1.778" layer="94">+</text>
  6247. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  6248. <text x="2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6249. </symbol>
  6250. </symbols>
  6251. <devicesets>
  6252. <deviceset name="TVS_DIODE">
  6253. <description>TVS protective diode</description>
  6254. <gates>
  6255. <gate name="D$1" symbol="TVS_DIODE" x="0" y="0"/>
  6256. </gates>
  6257. <devices>
  6258. <device name="SMA" package="DIOM5027X220N">
  6259. <connects>
  6260. <connect gate="D$1" pin="P$1" pad="1"/>
  6261. <connect gate="D$1" pin="P$2" pad="2"/>
  6262. </connects>
  6263. <package3dinstances>
  6264. <package3dinstance package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  6265. </package3dinstances>
  6266. <technologies>
  6267. <technology name=""/>
  6268. </technologies>
  6269. </device>
  6270. </devices>
  6271. </deviceset>
  6272. <deviceset name="C">
  6273. <gates>
  6274. <gate name="G$1" symbol="C" x="-1.27" y="-1.27"/>
  6275. </gates>
  6276. <devices>
  6277. <device name="PANASONIC_H13" package="CAPAE1230X1250N">
  6278. <connects>
  6279. <connect gate="G$1" pin="P$1" pad="1"/>
  6280. <connect gate="G$1" pin="P$2" pad="2"/>
  6281. </connects>
  6282. <package3dinstances>
  6283. <package3dinstance package3d_urn="urn:adsk.eagle:package:21812541/1"/>
  6284. </package3dinstances>
  6285. <technologies>
  6286. <technology name=""/>
  6287. </technologies>
  6288. </device>
  6289. </devices>
  6290. </deviceset>
  6291. </devicesets>
  6292. </library>
  6293. </libraries>
  6294. <attributes>
  6295. </attributes>
  6296. <variantdefs>
  6297. </variantdefs>
  6298. <classes>
  6299. <class number="0" name="default" width="0" drill="0">
  6300. </class>
  6301. </classes>
  6302. <parts>
  6303. <part name="U1" library="regulator" deviceset="MAX5035" device="DIP8" package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  6304. <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"/>
  6305. <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="_"/>
  6306. <part name="D1" library="Diodes" library_urn="urn:adsk.eagle:library:11396254" deviceset="MBR360G" device="" package3d_urn="urn:adsk.eagle:package:10898389/2" value="SB 5100"/>
  6307. <part name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" deviceset="DR127" device="" package3d_urn="urn:adsk.eagle:package:15117/1"/>
  6308. <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="_"/>
  6309. <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="_"/>
  6310. <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"/>
  6311. <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"/>
  6312. <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"/>
  6313. <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"/>
  6314. <part name="Q1" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6315. <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"/>
  6316. <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"/>
  6317. <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"/>
  6318. <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"/>
  6319. <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"/>
  6320. <part name="Q2" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6321. <part name="Q3" library="Transistor" library_urn="urn:adsk.eagle:library:16378713" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6322. <part name="GND2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  6323. <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"/>
  6324. <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"/>
  6325. <part name="D2" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1" value="P4SMAJ12CA"/>
  6326. <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"/>
  6327. <part name="C4" library="eScooter" deviceset="C" device="PANASONIC_H13" package3d_urn="urn:adsk.eagle:package:21812541/1" value="68uF"/>
  6328. </parts>
  6329. <sheets>
  6330. <sheet>
  6331. <plain>
  6332. </plain>
  6333. <instances>
  6334. <instance part="U1" gate="G$1" x="132.08" y="101.6" smashed="yes">
  6335. <attribute name="NAME" x="129.54" y="116.84" size="1.778" layer="95"/>
  6336. <attribute name="VALUE" x="121.92" y="86.36" size="1.778" layer="96"/>
  6337. </instance>
  6338. <instance part="J4" gate="G$1" x="213.36" y="116.84" smashed="yes" rot="MR0">
  6339. <attribute name="NAME" x="215.9" y="122.682" size="1.778" layer="95" rot="MR0"/>
  6340. </instance>
  6341. <instance part="C1" gate="G$1" x="129.54" y="124.46" smashed="yes" rot="R90">
  6342. <attribute name="NAME" x="129.54" y="124.46" size="1.778" layer="95" rot="R90"/>
  6343. <attribute name="VALUE" x="134.62" y="124.46" size="1.778" layer="96" rot="R90"/>
  6344. </instance>
  6345. <instance part="D1" gate="G$1" x="149.86" y="132.08" smashed="yes" rot="R180">
  6346. <attribute name="NAME" x="152.146" y="130.175" size="1.778" layer="95" rot="R180"/>
  6347. <attribute name="VALUE" x="152.146" y="135.509" size="1.778" layer="96" rot="R180"/>
  6348. </instance>
  6349. <instance part="L1" gate="G$1" x="119.38" y="132.08" smashed="yes" rot="R180">
  6350. <attribute name="NAME" x="123.19" y="129.794" size="1.778" layer="95" rot="R180"/>
  6351. <attribute name="VALUE" x="123.317" y="135.128" size="1.778" layer="96" rot="R180"/>
  6352. </instance>
  6353. <instance part="C2" gate="G$1" x="106.68" y="104.14" smashed="yes" rot="R90">
  6354. <attribute name="NAME" x="106.68" y="104.14" size="1.778" layer="95" rot="R90"/>
  6355. <attribute name="VALUE" x="111.76" y="104.14" size="1.778" layer="96" rot="R90"/>
  6356. </instance>
  6357. <instance part="C3" gate="G$1" x="91.44" y="119.38" smashed="yes">
  6358. <attribute name="NAME" x="92.583" y="119.8626" size="1.778" layer="95"/>
  6359. <attribute name="VALUE" x="92.583" y="114.7826" size="1.778" layer="96"/>
  6360. </instance>
  6361. <instance part="R1" gate="G$1" x="182.88" y="101.6" smashed="yes" rot="R270">
  6362. <attribute name="NAME" x="179.2986" y="100.33" size="1.778" layer="95" rot="MR90"/>
  6363. <attribute name="VALUE" x="184.658" y="100.33" size="1.778" layer="96" rot="MR90"/>
  6364. </instance>
  6365. <instance part="R2" gate="G$1" x="182.88" y="86.36" smashed="yes" rot="R270">
  6366. <attribute name="NAME" x="179.2986" y="85.09" size="1.778" layer="95" rot="MR90"/>
  6367. <attribute name="VALUE" x="184.658" y="85.09" size="1.778" layer="96" rot="MR90"/>
  6368. </instance>
  6369. <instance part="R3" gate="G$1" x="182.88" y="73.66" smashed="yes" rot="R90">
  6370. <attribute name="NAME" x="181.3814" y="72.39" size="1.778" layer="95" rot="R90"/>
  6371. <attribute name="VALUE" x="186.182" y="72.39" size="1.778" layer="96" rot="R90"/>
  6372. </instance>
  6373. <instance part="J3" gate="G$1" x="195.58" y="93.98" smashed="yes" rot="R180">
  6374. <attribute name="VALUE" x="198.12" y="98.806" size="1.778" layer="96" font="vector" rot="R180"/>
  6375. <attribute name="NAME" x="198.12" y="88.392" size="1.778" layer="95" font="vector" rot="R180"/>
  6376. </instance>
  6377. <instance part="Q1" gate="G$1" x="17.78" y="111.76" smashed="yes" rot="R180">
  6378. <attribute name="NAME" x="11.43" y="110.49" size="1.778" layer="95" rot="R180"/>
  6379. </instance>
  6380. <instance part="J1" gate="G$1" x="55.88" y="111.76" smashed="yes" rot="R180">
  6381. <attribute name="VALUE" x="60.96" y="124.206" size="1.778" layer="96" font="vector" rot="R180"/>
  6382. <attribute name="NAME" x="60.96" y="98.552" size="1.778" layer="95" font="vector" rot="R180"/>
  6383. </instance>
  6384. <instance part="J2" gate="G$1" x="58.42" y="68.58" smashed="yes" rot="R180">
  6385. <attribute name="VALUE" x="60.96" y="73.406" size="1.778" layer="96" font="vector" rot="R180"/>
  6386. <attribute name="NAME" x="60.96" y="62.992" size="1.778" layer="95" font="vector" rot="R180"/>
  6387. </instance>
  6388. <instance part="J5" gate="G$1" x="55.88" y="86.36" smashed="yes" rot="R180">
  6389. <attribute name="VALUE" x="60.96" y="93.726" size="1.778" layer="96" font="vector" rot="R180"/>
  6390. <attribute name="NAME" x="60.96" y="78.232" size="1.778" layer="95" font="vector" rot="R180"/>
  6391. </instance>
  6392. <instance part="R4" gate="G$1" x="48.26" y="33.02" smashed="yes" rot="R90">
  6393. <attribute name="NAME" x="46.7614" y="29.21" size="1.778" layer="95" rot="R90"/>
  6394. <attribute name="VALUE" x="51.562" y="29.21" size="1.778" layer="96" rot="R90"/>
  6395. </instance>
  6396. <instance part="R5" gate="G$1" x="48.26" y="17.78" smashed="yes" rot="R90">
  6397. <attribute name="NAME" x="46.7614" y="13.97" size="1.778" layer="95" rot="R90"/>
  6398. <attribute name="VALUE" x="51.562" y="13.97" size="1.778" layer="96" rot="R90"/>
  6399. </instance>
  6400. <instance part="Q2" gate="G$1" x="45.72" y="45.72" smashed="yes">
  6401. <attribute name="NAME" x="52.07" y="46.99" size="1.778" layer="95"/>
  6402. </instance>
  6403. <instance part="Q3" gate="G$1" x="30.48" y="91.44" smashed="yes" rot="MR180">
  6404. <attribute name="NAME" x="36.83" y="90.17" size="1.778" layer="95" rot="MR180"/>
  6405. </instance>
  6406. <instance part="GND2" gate="1" x="48.26" y="2.54" smashed="yes">
  6407. <attribute name="VALUE" x="45.72" y="0" size="1.778" layer="96"/>
  6408. </instance>
  6409. <instance part="R6" gate="G$1" x="27.94" y="116.84" smashed="yes" rot="R90">
  6410. <attribute name="NAME" x="26.4414" y="113.03" size="1.778" layer="95" rot="R90"/>
  6411. <attribute name="VALUE" x="31.242" y="113.03" size="1.778" layer="96" rot="R90"/>
  6412. </instance>
  6413. <instance part="R7" gate="G$1" x="25.4" y="86.36" smashed="yes" rot="R90">
  6414. <attribute name="NAME" x="23.9014" y="82.55" size="1.778" layer="95" rot="R90"/>
  6415. <attribute name="VALUE" x="28.702" y="82.55" size="1.778" layer="96" rot="R90"/>
  6416. </instance>
  6417. <instance part="D2" gate="D$1" x="78.74" y="116.84" smashed="yes">
  6418. <attribute name="NAME" x="81.28" y="121.92" size="1.778" layer="95"/>
  6419. </instance>
  6420. <instance part="R8" gate="G$1" x="30.48" y="55.88" smashed="yes" rot="MR0">
  6421. <attribute name="NAME" x="34.29" y="57.3786" size="1.778" layer="95" rot="MR0"/>
  6422. <attribute name="VALUE" x="34.29" y="52.578" size="1.778" layer="96" rot="MR0"/>
  6423. </instance>
  6424. <instance part="C4" gate="G$1" x="160.02" y="106.68" smashed="yes">
  6425. <attribute name="NAME" x="162.56" y="109.22" size="1.778" layer="95"/>
  6426. <attribute name="VALUE" x="162.56" y="104.14" size="1.778" layer="96" rot="MR180"/>
  6427. </instance>
  6428. </instances>
  6429. <busses>
  6430. </busses>
  6431. <nets>
  6432. <net name="GND" class="0">
  6433. <segment>
  6434. <pinref part="R5" gate="G$1" pin="1"/>
  6435. <pinref part="GND2" gate="1" pin="GND"/>
  6436. <wire x1="48.26" y1="12.7" x2="48.26" y2="7.62" width="0.1524" layer="91"/>
  6437. <pinref part="J1" gate="G$1" pin="2"/>
  6438. <label x="45.72" y="116.84" size="1.778" layer="95"/>
  6439. <pinref part="Q1" gate="G$1" pin="S"/>
  6440. <wire x1="48.26" y1="7.62" x2="48.26" y2="5.08" width="0.1524" layer="91"/>
  6441. <wire x1="50.8" y1="116.84" x2="35.56" y2="116.84" width="0.1524" layer="91"/>
  6442. <wire x1="35.56" y1="116.84" x2="35.56" y2="124.46" width="0.1524" layer="91"/>
  6443. <wire x1="35.56" y1="124.46" x2="27.94" y2="124.46" width="0.1524" layer="91"/>
  6444. <wire x1="27.94" y1="124.46" x2="15.24" y2="124.46" width="0.1524" layer="91"/>
  6445. <wire x1="15.24" y1="124.46" x2="15.24" y2="116.84" width="0.1524" layer="91"/>
  6446. <wire x1="27.94" y1="121.92" x2="27.94" y2="124.46" width="0.1524" layer="91"/>
  6447. <junction x="27.94" y="124.46"/>
  6448. <wire x1="15.24" y1="124.46" x2="5.08" y2="124.46" width="0.1524" layer="91"/>
  6449. <junction x="15.24" y="124.46"/>
  6450. <wire x1="5.08" y1="124.46" x2="5.08" y2="73.66" width="0.1524" layer="91"/>
  6451. <wire x1="5.08" y1="73.66" x2="5.08" y2="55.88" width="0.1524" layer="91"/>
  6452. <wire x1="5.08" y1="55.88" x2="5.08" y2="7.62" width="0.1524" layer="91"/>
  6453. <wire x1="5.08" y1="7.62" x2="48.26" y2="7.62" width="0.1524" layer="91"/>
  6454. <junction x="48.26" y="7.62"/>
  6455. <wire x1="25.4" y1="81.28" x2="25.4" y2="73.66" width="0.1524" layer="91"/>
  6456. <label x="25.4" y="76.2" size="1.778" layer="95"/>
  6457. <wire x1="25.4" y1="73.66" x2="5.08" y2="73.66" width="0.1524" layer="91"/>
  6458. <junction x="5.08" y="73.66"/>
  6459. <pinref part="R6" gate="G$1" pin="2"/>
  6460. <pinref part="R7" gate="G$1" pin="1"/>
  6461. <pinref part="R3" gate="G$1" pin="1"/>
  6462. <wire x1="182.88" y1="68.58" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
  6463. <wire x1="182.88" y1="66.04" x2="160.02" y2="66.04" width="0.1524" layer="91"/>
  6464. <pinref part="J4" gate="G$1" pin="1"/>
  6465. <junction x="182.88" y="66.04"/>
  6466. <pinref part="C3" gate="G$1" pin="-"/>
  6467. <wire x1="187.96" y1="66.04" x2="182.88" y2="66.04" width="0.1524" layer="91"/>
  6468. <wire x1="160.02" y1="66.04" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
  6469. <wire x1="101.6" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
  6470. <wire x1="91.44" y1="66.04" x2="91.44" y2="114.3" width="0.1524" layer="91"/>
  6471. <pinref part="D1" gate="G$1" pin="A"/>
  6472. <wire x1="152.4" y1="132.08" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
  6473. <wire x1="200.66" y1="132.08" x2="223.52" y2="132.08" width="0.1524" layer="91"/>
  6474. <pinref part="J3" gate="G$1" pin="2"/>
  6475. <wire x1="187.96" y1="91.44" x2="187.96" y2="66.04" width="0.1524" layer="91"/>
  6476. <pinref part="U1" gate="G$1" pin="GND"/>
  6477. <wire x1="160.02" y1="99.06" x2="160.02" y2="101.6" width="0.1524" layer="91"/>
  6478. <wire x1="147.32" y1="99.06" x2="160.02" y2="99.06" width="0.1524" layer="91"/>
  6479. <junction x="160.02" y="99.06"/>
  6480. <label x="147.32" y="99.06" size="1.778" layer="95"/>
  6481. <wire x1="160.02" y1="99.06" x2="160.02" y2="66.04" width="0.1524" layer="91"/>
  6482. <junction x="160.02" y="66.04"/>
  6483. <label x="203.2" y="119.38" size="1.778" layer="95"/>
  6484. <pinref part="D2" gate="D$1" pin="P$2"/>
  6485. <wire x1="78.74" y1="109.22" x2="78.74" y2="66.04" width="0.1524" layer="91"/>
  6486. <wire x1="78.74" y1="66.04" x2="91.44" y2="66.04" width="0.1524" layer="91"/>
  6487. <junction x="91.44" y="66.04"/>
  6488. <wire x1="48.26" y1="7.62" x2="78.74" y2="7.62" width="0.1524" layer="91"/>
  6489. <wire x1="78.74" y1="7.62" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
  6490. <pinref part="R8" gate="G$1" pin="2"/>
  6491. <wire x1="5.08" y1="55.88" x2="25.4" y2="55.88" width="0.1524" layer="91"/>
  6492. <junction x="5.08" y="55.88"/>
  6493. <wire x1="200.66" y1="119.38" x2="200.66" y2="132.08" width="0.1524" layer="91"/>
  6494. <junction x="200.66" y="132.08"/>
  6495. <wire x1="208.28" y1="119.38" x2="200.66" y2="119.38" width="0.1524" layer="91"/>
  6496. <wire x1="223.52" y1="132.08" x2="223.52" y2="33.02" width="0.1524" layer="91"/>
  6497. <wire x1="223.52" y1="33.02" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
  6498. <pinref part="U1" gate="G$1" pin="SGND"/>
  6499. <wire x1="116.84" y1="99.06" x2="101.6" y2="99.06" width="0.1524" layer="91"/>
  6500. <wire x1="101.6" y1="99.06" x2="101.6" y2="104.14" width="0.1524" layer="91"/>
  6501. <wire x1="101.6" y1="104.14" x2="104.14" y2="104.14" width="0.1524" layer="91"/>
  6502. <pinref part="C2" gate="G$1" pin="1"/>
  6503. <wire x1="101.6" y1="99.06" x2="101.6" y2="66.04" width="0.1524" layer="91"/>
  6504. <junction x="101.6" y="99.06"/>
  6505. <junction x="101.6" y="66.04"/>
  6506. <label x="111.76" y="99.06" size="1.778" layer="95"/>
  6507. <wire x1="78.74" y1="66.04" x2="78.74" y2="33.02" width="0.1524" layer="91"/>
  6508. <junction x="78.74" y="66.04"/>
  6509. <junction x="78.74" y="33.02"/>
  6510. <pinref part="C4" gate="G$1" pin="P$2"/>
  6511. </segment>
  6512. </net>
  6513. <net name="VIN" class="0">
  6514. <segment>
  6515. <pinref part="Q2" gate="G$1" pin="D"/>
  6516. <wire x1="48.26" y1="50.8" x2="48.26" y2="58.42" width="0.1524" layer="91"/>
  6517. <label x="53.34" y="53.34" size="1.778" layer="95"/>
  6518. <pinref part="U1" gate="G$1" pin="VIN"/>
  6519. <wire x1="147.32" y1="104.14" x2="154.94" y2="104.14" width="0.1524" layer="91"/>
  6520. <wire x1="182.88" y1="116.84" x2="182.88" y2="106.68" width="0.1524" layer="91"/>
  6521. <pinref part="R1" gate="G$1" pin="1"/>
  6522. <pinref part="J4" gate="G$1" pin="2"/>
  6523. <wire x1="182.88" y1="116.84" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6524. <junction x="182.88" y="116.84"/>
  6525. <wire x1="205.74" y1="116.84" x2="208.28" y2="116.84" width="0.1524" layer="91"/>
  6526. <wire x1="154.94" y1="104.14" x2="154.94" y2="116.84" width="0.1524" layer="91"/>
  6527. <wire x1="154.94" y1="116.84" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
  6528. <wire x1="160.02" y1="116.84" x2="182.88" y2="116.84" width="0.1524" layer="91"/>
  6529. <wire x1="160.02" y1="113.03" x2="160.02" y2="116.84" width="0.1524" layer="91"/>
  6530. <junction x="160.02" y="116.84"/>
  6531. <label x="203.2" y="116.84" size="1.778" layer="95"/>
  6532. <wire x1="48.26" y1="58.42" x2="205.74" y2="58.42" width="0.1524" layer="91"/>
  6533. <wire x1="205.74" y1="58.42" x2="205.74" y2="116.84" width="0.1524" layer="91"/>
  6534. <junction x="205.74" y="116.84"/>
  6535. <pinref part="C4" gate="G$1" pin="P$1"/>
  6536. <label x="147.32" y="104.14" size="1.778" layer="95"/>
  6537. </segment>
  6538. </net>
  6539. <net name="N$1" class="0">
  6540. <segment>
  6541. <pinref part="U1" gate="G$1" pin="BST"/>
  6542. <wire x1="116.84" y1="109.22" x2="114.3" y2="109.22" width="0.1524" layer="91"/>
  6543. <wire x1="114.3" y1="109.22" x2="114.3" y2="124.46" width="0.1524" layer="91"/>
  6544. <pinref part="C1" gate="G$1" pin="1"/>
  6545. <wire x1="114.3" y1="124.46" x2="127" y2="124.46" width="0.1524" layer="91"/>
  6546. </segment>
  6547. </net>
  6548. <net name="N$2" class="0">
  6549. <segment>
  6550. <pinref part="C1" gate="G$1" pin="2"/>
  6551. <wire x1="134.62" y1="124.46" x2="137.16" y2="124.46" width="0.1524" layer="91"/>
  6552. <wire x1="137.16" y1="124.46" x2="149.86" y2="124.46" width="0.1524" layer="91"/>
  6553. <wire x1="149.86" y1="124.46" x2="149.86" y2="109.22" width="0.1524" layer="91"/>
  6554. <pinref part="U1" gate="G$1" pin="LX"/>
  6555. <wire x1="149.86" y1="109.22" x2="147.32" y2="109.22" width="0.1524" layer="91"/>
  6556. <wire x1="137.16" y1="132.08" x2="137.16" y2="124.46" width="0.1524" layer="91"/>
  6557. <junction x="137.16" y="124.46"/>
  6558. <pinref part="D1" gate="G$1" pin="C"/>
  6559. <wire x1="147.32" y1="132.08" x2="137.16" y2="132.08" width="0.1524" layer="91"/>
  6560. <wire x1="137.16" y1="132.08" x2="127" y2="132.08" width="0.1524" layer="91"/>
  6561. <junction x="137.16" y="132.08"/>
  6562. <pinref part="L1" gate="G$1" pin="1"/>
  6563. </segment>
  6564. </net>
  6565. <net name="12V" class="0">
  6566. <segment>
  6567. <pinref part="L1" gate="G$1" pin="2"/>
  6568. <wire x1="111.76" y1="132.08" x2="99.06" y2="132.08" width="0.1524" layer="91"/>
  6569. <wire x1="99.06" y1="132.08" x2="99.06" y2="93.98" width="0.1524" layer="91"/>
  6570. <pinref part="U1" gate="G$1" pin="FB"/>
  6571. <wire x1="99.06" y1="93.98" x2="116.84" y2="93.98" width="0.1524" layer="91"/>
  6572. <wire x1="99.06" y1="132.08" x2="91.44" y2="132.08" width="0.1524" layer="91"/>
  6573. <junction x="99.06" y="132.08"/>
  6574. <wire x1="91.44" y1="132.08" x2="91.44" y2="121.92" width="0.1524" layer="91"/>
  6575. <junction x="91.44" y="132.08"/>
  6576. <pinref part="C3" gate="G$1" pin="+"/>
  6577. <label x="86.36" y="132.08" size="1.778" layer="95"/>
  6578. <pinref part="J1" gate="G$1" pin="1"/>
  6579. <wire x1="50.8" y1="119.38" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
  6580. <label x="45.72" y="119.38" size="1.778" layer="95"/>
  6581. <wire x1="91.44" y1="132.08" x2="78.74" y2="132.08" width="0.1524" layer="91"/>
  6582. <wire x1="78.74" y1="132.08" x2="40.64" y2="132.08" width="0.1524" layer="91"/>
  6583. <wire x1="40.64" y1="132.08" x2="40.64" y2="119.38" width="0.1524" layer="91"/>
  6584. <pinref part="D2" gate="D$1" pin="P$1"/>
  6585. <wire x1="78.74" y1="132.08" x2="78.74" y2="124.46" width="0.1524" layer="91"/>
  6586. <junction x="78.74" y="132.08"/>
  6587. </segment>
  6588. </net>
  6589. <net name="N$4" class="0">
  6590. <segment>
  6591. <pinref part="C2" gate="G$1" pin="2"/>
  6592. <pinref part="U1" gate="G$1" pin="VD"/>
  6593. <wire x1="111.76" y1="104.14" x2="116.84" y2="104.14" width="0.1524" layer="91"/>
  6594. </segment>
  6595. </net>
  6596. <net name="N$5" class="0">
  6597. <segment>
  6598. <pinref part="U1" gate="G$1" pin="ON/OFF"/>
  6599. <wire x1="147.32" y1="93.98" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
  6600. <pinref part="R1" gate="G$1" pin="2"/>
  6601. <wire x1="182.88" y1="96.52" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
  6602. <wire x1="182.88" y1="93.98" x2="182.88" y2="91.44" width="0.1524" layer="91"/>
  6603. <junction x="182.88" y="93.98"/>
  6604. <pinref part="R2" gate="G$1" pin="1"/>
  6605. <pinref part="J3" gate="G$1" pin="1"/>
  6606. <wire x1="182.88" y1="93.98" x2="187.96" y2="93.98" width="0.1524" layer="91"/>
  6607. </segment>
  6608. </net>
  6609. <net name="N$7" class="0">
  6610. <segment>
  6611. <pinref part="R2" gate="G$1" pin="2"/>
  6612. <pinref part="R3" gate="G$1" pin="2"/>
  6613. <wire x1="182.88" y1="81.28" x2="182.88" y2="78.74" width="0.1524" layer="91"/>
  6614. </segment>
  6615. </net>
  6616. <net name="SPIN" class="0">
  6617. <segment>
  6618. <pinref part="J5" gate="G$1" pin="1"/>
  6619. <wire x1="50.8" y1="88.9" x2="43.18" y2="88.9" width="0.1524" layer="91"/>
  6620. <pinref part="J1" gate="G$1" pin="8"/>
  6621. <wire x1="43.18" y1="88.9" x2="43.18" y2="101.6" width="0.1524" layer="91"/>
  6622. <wire x1="43.18" y1="101.6" x2="50.8" y2="101.6" width="0.1524" layer="91"/>
  6623. <label x="45.72" y="88.9" size="1.778" layer="95"/>
  6624. </segment>
  6625. </net>
  6626. <net name="SPOUT" class="0">
  6627. <segment>
  6628. <pinref part="J5" gate="G$1" pin="2"/>
  6629. <wire x1="50.8" y1="86.36" x2="40.64" y2="86.36" width="0.1524" layer="91"/>
  6630. <pinref part="J1" gate="G$1" pin="7"/>
  6631. <wire x1="40.64" y1="86.36" x2="40.64" y2="104.14" width="0.1524" layer="91"/>
  6632. <wire x1="40.64" y1="104.14" x2="50.8" y2="104.14" width="0.1524" layer="91"/>
  6633. <label x="43.18" y="86.36" size="1.778" layer="95"/>
  6634. </segment>
  6635. </net>
  6636. <net name="ST" class="0">
  6637. <segment>
  6638. <pinref part="J5" gate="G$1" pin="3"/>
  6639. <wire x1="50.8" y1="83.82" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6640. <label x="48.26" y="83.82" size="1.778" layer="95"/>
  6641. <pinref part="Q3" gate="G$1" pin="S"/>
  6642. <wire x1="33.02" y1="96.52" x2="33.02" y2="99.06" width="0.1524" layer="91"/>
  6643. <wire x1="33.02" y1="99.06" x2="38.1" y2="99.06" width="0.1524" layer="91"/>
  6644. <wire x1="38.1" y1="99.06" x2="38.1" y2="83.82" width="0.1524" layer="91"/>
  6645. </segment>
  6646. </net>
  6647. <net name="5V" class="0">
  6648. <segment>
  6649. <pinref part="J5" gate="G$1" pin="4"/>
  6650. <wire x1="50.8" y1="81.28" x2="40.64" y2="81.28" width="0.1524" layer="91"/>
  6651. <wire x1="40.64" y1="81.28" x2="40.64" y2="68.58" width="0.1524" layer="91"/>
  6652. <pinref part="J2" gate="G$1" pin="1"/>
  6653. <wire x1="40.64" y1="68.58" x2="50.8" y2="68.58" width="0.1524" layer="91"/>
  6654. <label x="48.26" y="81.28" size="1.778" layer="95"/>
  6655. <pinref part="Q3" gate="G$1" pin="D"/>
  6656. <wire x1="33.02" y1="86.36" x2="33.02" y2="81.28" width="0.1524" layer="91"/>
  6657. <wire x1="33.02" y1="81.28" x2="40.64" y2="81.28" width="0.1524" layer="91"/>
  6658. <junction x="40.64" y="81.28"/>
  6659. </segment>
  6660. </net>
  6661. <net name="N$3" class="0">
  6662. <segment>
  6663. <pinref part="Q1" gate="G$1" pin="D"/>
  6664. <wire x1="15.24" y1="106.68" x2="15.24" y2="66.04" width="0.1524" layer="91"/>
  6665. <pinref part="J2" gate="G$1" pin="2"/>
  6666. <wire x1="15.24" y1="66.04" x2="50.8" y2="66.04" width="0.1524" layer="91"/>
  6667. </segment>
  6668. </net>
  6669. <net name="STLEDCTL" class="0">
  6670. <segment>
  6671. <pinref part="Q1" gate="G$1" pin="G"/>
  6672. <wire x1="20.32" y1="114.3" x2="22.86" y2="114.3" width="0.1524" layer="91"/>
  6673. <wire x1="22.86" y1="114.3" x2="22.86" y2="109.22" width="0.1524" layer="91"/>
  6674. <pinref part="J1" gate="G$1" pin="5"/>
  6675. <wire x1="22.86" y1="109.22" x2="27.94" y2="109.22" width="0.1524" layer="91"/>
  6676. <label x="38.1" y="109.22" size="1.778" layer="95"/>
  6677. <wire x1="27.94" y1="109.22" x2="50.8" y2="109.22" width="0.1524" layer="91"/>
  6678. <wire x1="27.94" y1="111.76" x2="27.94" y2="109.22" width="0.1524" layer="91"/>
  6679. <junction x="27.94" y="109.22"/>
  6680. <pinref part="R6" gate="G$1" pin="1"/>
  6681. </segment>
  6682. </net>
  6683. <net name="PWM" class="0">
  6684. <segment>
  6685. <pinref part="Q2" gate="G$1" pin="G"/>
  6686. <wire x1="43.18" y1="43.18" x2="40.64" y2="43.18" width="0.1524" layer="91"/>
  6687. <label x="30.48" y="43.18" size="1.778" layer="95"/>
  6688. <pinref part="R8" gate="G$1" pin="1"/>
  6689. <wire x1="40.64" y1="43.18" x2="30.48" y2="43.18" width="0.1524" layer="91"/>
  6690. <wire x1="40.64" y1="55.88" x2="35.56" y2="55.88" width="0.1524" layer="91"/>
  6691. <wire x1="40.64" y1="55.88" x2="40.64" y2="43.18" width="0.1524" layer="91"/>
  6692. <junction x="40.64" y="43.18"/>
  6693. </segment>
  6694. <segment>
  6695. <pinref part="J1" gate="G$1" pin="4"/>
  6696. <wire x1="50.8" y1="111.76" x2="40.64" y2="111.76" width="0.1524" layer="91"/>
  6697. <label x="45.72" y="111.76" size="1.778" layer="95"/>
  6698. </segment>
  6699. </net>
  6700. <net name="BAT" class="0">
  6701. <segment>
  6702. <wire x1="48.26" y1="25.4" x2="30.48" y2="25.4" width="0.1524" layer="91"/>
  6703. <label x="30.48" y="25.4" size="1.778" layer="95"/>
  6704. <wire x1="48.26" y1="27.94" x2="48.26" y2="25.4" width="0.1524" layer="91"/>
  6705. <wire x1="48.26" y1="25.4" x2="48.26" y2="22.86" width="0.1524" layer="91"/>
  6706. <junction x="48.26" y="25.4"/>
  6707. <pinref part="R4" gate="G$1" pin="1"/>
  6708. <pinref part="R5" gate="G$1" pin="2"/>
  6709. </segment>
  6710. <segment>
  6711. <pinref part="J1" gate="G$1" pin="3"/>
  6712. <wire x1="50.8" y1="114.3" x2="40.64" y2="114.3" width="0.1524" layer="91"/>
  6713. <label x="45.72" y="114.3" size="1.778" layer="95"/>
  6714. </segment>
  6715. </net>
  6716. <net name="N$8" class="0">
  6717. <segment>
  6718. <pinref part="Q2" gate="G$1" pin="S"/>
  6719. <pinref part="R4" gate="G$1" pin="2"/>
  6720. <wire x1="48.26" y1="40.64" x2="48.26" y2="38.1" width="0.1524" layer="91"/>
  6721. </segment>
  6722. </net>
  6723. <net name="STOUT" class="0">
  6724. <segment>
  6725. <pinref part="J1" gate="G$1" pin="6"/>
  6726. <pinref part="Q3" gate="G$1" pin="G"/>
  6727. <wire x1="50.8" y1="106.68" x2="25.4" y2="106.68" width="0.1524" layer="91"/>
  6728. <wire x1="25.4" y1="106.68" x2="25.4" y2="93.98" width="0.1524" layer="91"/>
  6729. <wire x1="25.4" y1="93.98" x2="27.94" y2="93.98" width="0.1524" layer="91"/>
  6730. <label x="43.18" y="106.68" size="1.778" layer="95"/>
  6731. <wire x1="25.4" y1="93.98" x2="25.4" y2="91.44" width="0.1524" layer="91"/>
  6732. <junction x="25.4" y="93.98"/>
  6733. <pinref part="R7" gate="G$1" pin="2"/>
  6734. </segment>
  6735. </net>
  6736. </nets>
  6737. </sheet>
  6738. </sheets>
  6739. </schematic>
  6740. </drawing>
  6741. <compatibility>
  6742. <note version="8.2" severity="warning">
  6743. Since Version 8.2, EAGLE supports online libraries. The ids
  6744. of those online libraries will not be understood (or retained)
  6745. with this version.
  6746. </note>
  6747. <note version="8.3" severity="warning">
  6748. Since Version 8.3, EAGLE supports URNs for individual library
  6749. assets (packages, symbols, and devices). The URNs of those assets
  6750. will not be understood (or retained) with this version.
  6751. </note>
  6752. <note version="8.3" severity="warning">
  6753. Since Version 8.3, EAGLE supports the association of 3D packages
  6754. with devices in libraries, schematics, and board files. Those 3D
  6755. packages will not be understood (or retained) with this version.
  6756. </note>
  6757. <note version="8.4" severity="warning">
  6758. Since Version 8.4, EAGLE supports properties for SPICE simulation.
  6759. Probes in schematics and SPICE mapping objects found in parts and library devices
  6760. will not be understood with this version. Update EAGLE to the latest version
  6761. for full support of SPICE simulation.
  6762. </note>
  6763. </compatibility>
  6764. </eagle>