regulator.s#1 377 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE eagle SYSTEM "eagle.dtd">
  3. <eagle version="9.6.2">
  4. <drawing>
  5. <settings>
  6. <setting alwaysvectorfont="no"/>
  7. <setting verticaltext="up"/>
  8. </settings>
  9. <grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
  10. <layers>
  11. <layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
  12. <layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
  13. <layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
  14. <layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
  15. <layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
  16. <layer number="20" name="Dimension" color="24" fill="1" visible="no" active="no"/>
  17. <layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
  18. <layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
  19. <layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
  20. <layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
  21. <layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
  22. <layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
  23. <layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
  24. <layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
  25. <layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
  26. <layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
  27. <layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
  28. <layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
  29. <layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
  30. <layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
  31. <layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
  32. <layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
  33. <layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
  34. <layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
  35. <layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
  36. <layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
  37. <layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
  38. <layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
  39. <layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
  40. <layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
  41. <layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
  42. <layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
  43. <layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
  44. <layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
  45. <layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
  46. <layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
  47. <layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
  48. <layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
  49. <layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
  50. <layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
  51. <layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
  52. <layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
  53. <layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
  54. <layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
  55. <layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/>
  56. <layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/>
  57. <layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
  58. <layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
  59. <layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
  60. <layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
  61. <layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
  62. <layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
  63. <layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
  64. <layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
  65. <layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
  66. <layer number="99" name="SpiceOrder" color="5" fill="1" visible="yes" active="yes"/>
  67. <layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
  68. <layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
  69. <layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
  70. <layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
  71. <layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
  72. <layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
  73. <layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
  74. <layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
  75. <layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/>
  76. <layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/>
  77. <layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
  78. <layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/>
  79. <layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
  80. <layer number="113" name="IDFDebug" color="4" fill="1" visible="yes" active="yes"/>
  81. <layer number="114" name="Badge_Outline" color="7" fill="1" visible="yes" active="yes"/>
  82. <layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/>
  83. <layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
  84. <layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
  85. <layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
  86. <layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
  87. <layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
  88. <layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
  89. <layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
  90. <layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
  91. <layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
  92. <layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
  93. <layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
  94. <layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
  95. <layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
  96. <layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
  97. <layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
  98. <layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
  99. <layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
  100. <layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
  101. <layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
  102. <layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
  103. <layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
  104. <layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
  105. <layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
  106. <layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
  107. <layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
  108. <layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
  109. <layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
  110. <layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
  111. <layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
  112. <layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
  113. <layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
  114. <layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
  115. <layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
  116. <layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
  117. <layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
  118. <layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
  119. <layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
  120. <layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
  121. <layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
  122. <layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
  123. <layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
  124. <layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
  125. <layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
  126. <layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
  127. <layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
  128. <layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
  129. <layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
  130. <layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
  131. <layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
  132. <layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
  133. <layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
  134. <layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
  135. <layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
  136. <layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="yes" active="yes"/>
  137. <layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="yes" active="yes"/>
  138. <layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
  139. <layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
  140. <layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
  141. <layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
  142. <layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
  143. <layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
  144. </layers>
  145. <schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
  146. <libraries>
  147. <library name="Capacitor" urn="urn:adsk.eagle:library:16290819">
  148. <description>&lt;B&gt;Capacitors - Fixed, Variable, Trimmers</description>
  149. <packages>
  150. <package name="CAPC1005X60" urn="urn:adsk.eagle:footprint:16290849/2" library_version="4">
  151. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  152. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  153. <wire x1="0.55" y1="0.6286" x2="-0.55" y2="0.6286" width="0.127" layer="21"/>
  154. <wire x1="0.55" y1="-0.6286" x2="-0.55" y2="-0.6286" width="0.127" layer="21"/>
  155. <wire x1="0.55" y1="-0.3" x2="-0.55" y2="-0.3" width="0.12" layer="51"/>
  156. <wire x1="-0.55" y1="-0.3" x2="-0.55" y2="0.3" width="0.12" layer="51"/>
  157. <wire x1="-0.55" y1="0.3" x2="0.55" y2="0.3" width="0.12" layer="51"/>
  158. <wire x1="0.55" y1="0.3" x2="0.55" y2="-0.3" width="0.12" layer="51"/>
  159. <smd name="1" x="-0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  160. <smd name="2" x="0.4846" y="0" dx="0.56" dy="0.6291" layer="1"/>
  161. <text x="0" y="1.2636" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  162. <text x="0" y="-1.2636" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  163. </package>
  164. <package name="CAPC1110X102" urn="urn:adsk.eagle:footprint:16290845/2" library_version="4">
  165. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  166. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  167. <wire x1="0.66" y1="0.9552" x2="-0.66" y2="0.9552" width="0.127" layer="21"/>
  168. <wire x1="0.66" y1="-0.9552" x2="-0.66" y2="-0.9552" width="0.127" layer="21"/>
  169. <wire x1="0.66" y1="-0.635" x2="-0.66" y2="-0.635" width="0.12" layer="51"/>
  170. <wire x1="-0.66" y1="-0.635" x2="-0.66" y2="0.635" width="0.12" layer="51"/>
  171. <wire x1="-0.66" y1="0.635" x2="0.66" y2="0.635" width="0.12" layer="51"/>
  172. <wire x1="0.66" y1="0.635" x2="0.66" y2="-0.635" width="0.12" layer="51"/>
  173. <smd name="1" x="-0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  174. <smd name="2" x="0.5388" y="0" dx="0.6626" dy="1.2823" layer="1"/>
  175. <text x="0" y="1.5902" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  176. <text x="0" y="-1.5902" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  177. </package>
  178. <package name="CAPC1608X85" urn="urn:adsk.eagle:footprint:16290847/2" library_version="4">
  179. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  180. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  181. <wire x1="0.875" y1="0.7991" x2="-0.875" y2="0.7991" width="0.127" layer="21"/>
  182. <wire x1="0.875" y1="-0.7991" x2="-0.875" y2="-0.7991" width="0.127" layer="21"/>
  183. <wire x1="0.875" y1="-0.475" x2="-0.875" y2="-0.475" width="0.12" layer="51"/>
  184. <wire x1="-0.875" y1="-0.475" x2="-0.875" y2="0.475" width="0.12" layer="51"/>
  185. <wire x1="-0.875" y1="0.475" x2="0.875" y2="0.475" width="0.12" layer="51"/>
  186. <wire x1="0.875" y1="0.475" x2="0.875" y2="-0.475" width="0.12" layer="51"/>
  187. <smd name="1" x="-0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  188. <smd name="2" x="0.7746" y="0" dx="0.9209" dy="0.9702" layer="1"/>
  189. <text x="0" y="1.4341" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  190. <text x="0" y="-1.4341" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  191. </package>
  192. <package name="CAPC2012X110" urn="urn:adsk.eagle:footprint:16290848/2" library_version="4">
  193. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  194. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  195. <wire x1="1.1" y1="1.0467" x2="-1.1" y2="1.0467" width="0.127" layer="21"/>
  196. <wire x1="1.1" y1="-1.0467" x2="-1.1" y2="-1.0467" width="0.127" layer="21"/>
  197. <wire x1="1.1" y1="-0.725" x2="-1.1" y2="-0.725" width="0.12" layer="51"/>
  198. <wire x1="-1.1" y1="-0.725" x2="-1.1" y2="0.725" width="0.12" layer="51"/>
  199. <wire x1="-1.1" y1="0.725" x2="1.1" y2="0.725" width="0.12" layer="51"/>
  200. <wire x1="1.1" y1="0.725" x2="1.1" y2="-0.725" width="0.12" layer="51"/>
  201. <smd name="1" x="-0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  202. <smd name="2" x="0.8754" y="0" dx="1.1646" dy="1.4653" layer="1"/>
  203. <text x="0" y="1.6817" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  204. <text x="0" y="-1.6817" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  205. </package>
  206. <package name="CAPC3216X135" urn="urn:adsk.eagle:footprint:16290836/2" library_version="4">
  207. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  208. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  209. <wire x1="1.7" y1="1.2217" x2="-1.7" y2="1.2217" width="0.127" layer="21"/>
  210. <wire x1="1.7" y1="-1.2217" x2="-1.7" y2="-1.2217" width="0.127" layer="21"/>
  211. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  212. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  213. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  214. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  215. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  216. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="1.8153" layer="1"/>
  217. <text x="0" y="1.8567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  218. <text x="0" y="-1.8567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  219. </package>
  220. <package name="CAPC3225X135" urn="urn:adsk.eagle:footprint:16290843/2" library_version="4">
  221. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  222. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  223. <wire x1="1.7" y1="1.6717" x2="-1.7" y2="1.6717" width="0.127" layer="21"/>
  224. <wire x1="1.7" y1="-1.6717" x2="-1.7" y2="-1.6717" width="0.12" layer="21"/>
  225. <wire x1="1.7" y1="-1.35" x2="-1.7" y2="-1.35" width="0.12" layer="51"/>
  226. <wire x1="-1.7" y1="-1.35" x2="-1.7" y2="1.35" width="0.12" layer="51"/>
  227. <wire x1="-1.7" y1="1.35" x2="1.7" y2="1.35" width="0.12" layer="51"/>
  228. <wire x1="1.7" y1="1.35" x2="1.7" y2="-1.35" width="0.12" layer="51"/>
  229. <smd name="1" x="-1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  230. <smd name="2" x="1.4754" y="0" dx="1.1646" dy="2.7153" layer="1"/>
  231. <text x="0" y="2.3067" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  232. <text x="0" y="-2.3067" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  233. </package>
  234. <package name="CAPC4532X135" urn="urn:adsk.eagle:footprint:16290841/2" library_version="4">
  235. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  236. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  237. <wire x1="2.4" y1="2.0217" x2="-2.4" y2="2.0217" width="0.127" layer="21"/>
  238. <wire x1="2.4" y1="-2.0217" x2="-2.4" y2="-2.0217" width="0.127" layer="21"/>
  239. <wire x1="2.4" y1="-1.7" x2="-2.4" y2="-1.7" width="0.12" layer="51"/>
  240. <wire x1="-2.4" y1="-1.7" x2="-2.4" y2="1.7" width="0.12" layer="51"/>
  241. <wire x1="-2.4" y1="1.7" x2="2.4" y2="1.7" width="0.12" layer="51"/>
  242. <wire x1="2.4" y1="1.7" x2="2.4" y2="-1.7" width="0.12" layer="51"/>
  243. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  244. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="3.4153" layer="1"/>
  245. <text x="0" y="2.6567" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  246. <text x="0" y="-2.6567" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  247. </package>
  248. <package name="CAPM3216X180" urn="urn:adsk.eagle:footprint:16290835/2" library_version="4">
  249. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  250. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  251. <wire x1="-1.7" y1="0.9084" x2="1.7" y2="0.9084" width="0.127" layer="21"/>
  252. <wire x1="-1.7" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.127" layer="21"/>
  253. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  254. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  255. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  256. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  257. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  258. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  259. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  260. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  261. </package>
  262. <package name="CAPM3528X210" urn="urn:adsk.eagle:footprint:16290844/2" library_version="4">
  263. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  264. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  265. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.127" layer="21"/>
  266. <wire x1="-1.85" y1="-1.5" x2="1.85" y2="-1.5" width="0.127" layer="21"/>
  267. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  268. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  269. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  270. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  271. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  272. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  273. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  274. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  275. </package>
  276. <package name="CAPM6032X280" urn="urn:adsk.eagle:footprint:16290839/2" library_version="4">
  277. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  278. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  279. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.127" layer="21"/>
  280. <wire x1="-3.15" y1="-1.75" x2="3.15" y2="-1.75" width="0.127" layer="21"/>
  281. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  282. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  283. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  284. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  285. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  286. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  287. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  288. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  289. </package>
  290. <package name="CAPM7343X310" urn="urn:adsk.eagle:footprint:16290840/2" library_version="4">
  291. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  292. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  293. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.127" layer="21"/>
  294. <wire x1="-3.8" y1="-2.3" x2="3.8" y2="-2.3" width="0.127" layer="21"/>
  295. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  296. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  297. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  298. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  299. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  300. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  301. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  302. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  303. </package>
  304. <package name="CAPC4564X110" urn="urn:adsk.eagle:footprint:16290837/2" library_version="4">
  305. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  306. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  307. <wire x1="2.4" y1="3.7179" x2="-2.4" y2="3.7179" width="0.127" layer="21"/>
  308. <wire x1="2.4" y1="-3.7179" x2="-2.4" y2="-3.7179" width="0.127" layer="21"/>
  309. <wire x1="2.4" y1="-3.4" x2="-2.4" y2="-3.4" width="0.12" layer="51"/>
  310. <wire x1="-2.4" y1="-3.4" x2="-2.4" y2="3.4" width="0.12" layer="51"/>
  311. <wire x1="-2.4" y1="3.4" x2="2.4" y2="3.4" width="0.12" layer="51"/>
  312. <wire x1="2.4" y1="3.4" x2="2.4" y2="-3.4" width="0.12" layer="51"/>
  313. <smd name="1" x="-2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  314. <smd name="2" x="2.0565" y="0" dx="1.3973" dy="6.8078" layer="1"/>
  315. <text x="0" y="4.3529" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  316. <text x="0" y="-4.3529" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  317. </package>
  318. <package name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:footprint:16290829/2" library_version="4">
  319. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  320. &lt;p&gt;Radial Non-Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 10.25 mm body diameter and 12.50 mm body height&lt;/p&gt;</description>
  321. <circle x="0" y="0" radius="5.25" width="0.127" layer="21"/>
  322. <circle x="0" y="0" radius="5.25" width="0.12" layer="51"/>
  323. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  324. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  325. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  326. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  327. </package>
  328. <package name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:footprint:16290850/2" library_version="4">
  329. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  330. &lt;p&gt;Radial Non-Polarized Capacitor package with 22.61 mm pitch (lead spacing), 2.40 mm lead diameter, 50.80 mm body diameter and 55.55 mm body height&lt;/p&gt;</description>
  331. <circle x="0" y="0" radius="25.79" width="0.127" layer="21"/>
  332. <circle x="0" y="0" radius="25.79" width="0.12" layer="51"/>
  333. <pad name="1" x="-11.305" y="0" drill="2.6" diameter="3.9"/>
  334. <pad name="2" x="11.305" y="0" drill="2.6" diameter="3.9"/>
  335. <text x="0" y="26.425" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  336. <text x="0" y="-26.425" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  337. </package>
  338. <package name="CAPMP3216X180N" urn="urn:adsk.eagle:footprint:16290838/1" library_version="4">
  339. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  340. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  341. <wire x1="1.7" y1="0.9084" x2="-2.5217" y2="0.9084" width="0.12" layer="21"/>
  342. <wire x1="-2.5217" y1="0.9084" x2="-2.5217" y2="-0.9084" width="0.12" layer="21"/>
  343. <wire x1="-2.5217" y1="-0.9084" x2="1.7" y2="-0.9084" width="0.12" layer="21"/>
  344. <wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.12" layer="51"/>
  345. <wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.12" layer="51"/>
  346. <wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.12" layer="51"/>
  347. <wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.12" layer="51"/>
  348. <smd name="1" x="-1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  349. <smd name="2" x="1.3099" y="0" dx="1.7955" dy="1.1887" layer="1"/>
  350. <text x="0" y="1.5434" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  351. <text x="0" y="-1.5434" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  352. </package>
  353. <package name="CAPMP3528X210N" urn="urn:adsk.eagle:footprint:16290842/1" library_version="4">
  354. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  355. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  356. <wire x1="1.85" y1="1.5" x2="-2.6717" y2="1.5" width="0.12" layer="21"/>
  357. <wire x1="-2.6717" y1="1.5" x2="-2.6717" y2="-1.5" width="0.12" layer="21"/>
  358. <wire x1="-2.6717" y1="-1.5" x2="1.85" y2="-1.5" width="0.12" layer="21"/>
  359. <wire x1="1.85" y1="-1.5" x2="-1.85" y2="-1.5" width="0.12" layer="51"/>
  360. <wire x1="-1.85" y1="-1.5" x2="-1.85" y2="1.5" width="0.12" layer="51"/>
  361. <wire x1="-1.85" y1="1.5" x2="1.85" y2="1.5" width="0.12" layer="51"/>
  362. <wire x1="1.85" y1="1.5" x2="1.85" y2="-1.5" width="0.12" layer="51"/>
  363. <smd name="1" x="-1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  364. <smd name="2" x="1.4599" y="0" dx="1.7955" dy="2.2036" layer="1"/>
  365. <text x="0" y="2.135" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  366. <text x="0" y="-2.135" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  367. </package>
  368. <package name="CAPMP6032X280N" urn="urn:adsk.eagle:footprint:16290825/1" library_version="4">
  369. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  370. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  371. <wire x1="3.15" y1="1.75" x2="-3.9692" y2="1.75" width="0.12" layer="21"/>
  372. <wire x1="-3.9692" y1="1.75" x2="-3.9692" y2="-1.75" width="0.12" layer="21"/>
  373. <wire x1="-3.9692" y1="-1.75" x2="3.15" y2="-1.75" width="0.12" layer="21"/>
  374. <wire x1="3.15" y1="-1.75" x2="-3.15" y2="-1.75" width="0.12" layer="51"/>
  375. <wire x1="-3.15" y1="-1.75" x2="-3.15" y2="1.75" width="0.12" layer="51"/>
  376. <wire x1="-3.15" y1="1.75" x2="3.15" y2="1.75" width="0.12" layer="51"/>
  377. <wire x1="3.15" y1="1.75" x2="3.15" y2="-1.75" width="0.12" layer="51"/>
  378. <smd name="1" x="-2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  379. <smd name="2" x="2.4712" y="0" dx="2.368" dy="2.2036" layer="1"/>
  380. <text x="0" y="2.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  381. <text x="0" y="-2.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  382. </package>
  383. <package name="CAPMP7343X310N" urn="urn:adsk.eagle:footprint:16290846/1" library_version="4">
  384. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  385. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  386. <wire x1="3.8" y1="2.3" x2="-4.6192" y2="2.3" width="0.12" layer="21"/>
  387. <wire x1="-4.6192" y1="2.3" x2="-4.6192" y2="-2.3" width="0.12" layer="21"/>
  388. <wire x1="-4.6192" y1="-2.3" x2="3.8" y2="-2.3" width="0.12" layer="21"/>
  389. <wire x1="3.8" y1="-2.3" x2="-3.8" y2="-2.3" width="0.12" layer="51"/>
  390. <wire x1="-3.8" y1="-2.3" x2="-3.8" y2="2.3" width="0.12" layer="51"/>
  391. <wire x1="-3.8" y1="2.3" x2="3.8" y2="2.3" width="0.12" layer="51"/>
  392. <wire x1="3.8" y1="2.3" x2="3.8" y2="-2.3" width="0.12" layer="51"/>
  393. <smd name="1" x="-3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  394. <smd name="2" x="3.1212" y="0" dx="2.368" dy="2.4036" layer="1"/>
  395. <text x="0" y="2.935" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  396. <text x="0" y="-2.935" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  397. </package>
  398. <package name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:footprint:16290830/1" library_version="4">
  399. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  400. &lt;p&gt;Radial Polarized Capacitor package with 5.08 mm pitch (lead spacing), 0.65 mm lead diameter, 10.00 mm body diameter and 11.00 mm body height&lt;/p&gt;</description>
  401. <circle x="0" y="0" radius="5" width="0.12" layer="21"/>
  402. <circle x="0" y="0" radius="5" width="0.12" layer="51"/>
  403. <wire x1="-4.1325" y1="4.1326" x2="-3.3825" y2="4.1326" width="0.12" layer="21"/>
  404. <wire x1="-3.7575" y1="4.5076" x2="-3.7575" y2="3.7576" width="0.12" layer="21"/>
  405. <pad name="1" x="-2.54" y="0" drill="0.85" diameter="1.45"/>
  406. <pad name="2" x="2.54" y="0" drill="0.85" diameter="1.45"/>
  407. <text x="0" y="5.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  408. <text x="0" y="-5.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  409. </package>
  410. <package name="CAPAE1030X1050N" urn="urn:adsk.eagle:footprint:16290833/1" library_version="4">
  411. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  412. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  413. <wire x1="-5.25" y1="1.3117" x2="-5.25" y2="3.1538" width="0.12" layer="21"/>
  414. <wire x1="-5.25" y1="3.1538" x2="-3.1538" y2="5.25" width="0.12" layer="21"/>
  415. <wire x1="-3.1538" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="21"/>
  416. <wire x1="5.25" y1="5.25" x2="5.25" y2="1.3117" width="0.12" layer="21"/>
  417. <wire x1="-5.25" y1="-1.3117" x2="-5.25" y2="-3.1538" width="0.12" layer="21"/>
  418. <wire x1="-5.25" y1="-3.1538" x2="-3.1538" y2="-5.25" width="0.12" layer="21"/>
  419. <wire x1="-3.1538" y1="-5.25" x2="5.25" y2="-5.25" width="0.12" layer="21"/>
  420. <wire x1="5.25" y1="-5.25" x2="5.25" y2="-1.3117" width="0.12" layer="21"/>
  421. <wire x1="5.25" y1="-5.25" x2="-5.25" y2="-5.25" width="0.12" layer="51"/>
  422. <wire x1="-5.25" y1="-5.25" x2="-5.25" y2="5.25" width="0.12" layer="51"/>
  423. <wire x1="-5.25" y1="5.25" x2="5.25" y2="5.25" width="0.12" layer="51"/>
  424. <wire x1="5.25" y1="5.25" x2="5.25" y2="-5.25" width="0.12" layer="51"/>
  425. <smd name="1" x="-4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  426. <smd name="2" x="4.3527" y="0" dx="4.4157" dy="2.1153" layer="1"/>
  427. <text x="0" y="5.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  428. <text x="0" y="-5.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  429. </package>
  430. <package name="CAPAE830X1050N" urn="urn:adsk.eagle:footprint:16290826/1" library_version="4">
  431. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  432. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  433. <wire x1="-4.25" y1="1.3117" x2="-4.25" y2="2.6538" width="0.12" layer="21"/>
  434. <wire x1="-4.25" y1="2.6538" x2="-2.6538" y2="4.25" width="0.12" layer="21"/>
  435. <wire x1="-2.6538" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="21"/>
  436. <wire x1="4.25" y1="4.25" x2="4.25" y2="1.3117" width="0.12" layer="21"/>
  437. <wire x1="-4.25" y1="-1.3117" x2="-4.25" y2="-2.6538" width="0.12" layer="21"/>
  438. <wire x1="-4.25" y1="-2.6538" x2="-2.6538" y2="-4.25" width="0.12" layer="21"/>
  439. <wire x1="-2.6538" y1="-4.25" x2="4.25" y2="-4.25" width="0.12" layer="21"/>
  440. <wire x1="4.25" y1="-4.25" x2="4.25" y2="-1.3117" width="0.12" layer="21"/>
  441. <wire x1="4.25" y1="-4.25" x2="-4.25" y2="-4.25" width="0.12" layer="51"/>
  442. <wire x1="-4.25" y1="-4.25" x2="-4.25" y2="4.25" width="0.12" layer="51"/>
  443. <wire x1="-4.25" y1="4.25" x2="4.25" y2="4.25" width="0.12" layer="51"/>
  444. <wire x1="4.25" y1="4.25" x2="4.25" y2="-4.25" width="0.12" layer="51"/>
  445. <smd name="1" x="-3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  446. <smd name="2" x="3.4259" y="0" dx="3.7636" dy="2.1153" layer="1"/>
  447. <text x="0" y="4.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  448. <text x="0" y="-4.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  449. </package>
  450. <package name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:footprint:16290828/1" library_version="4">
  451. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  452. &lt;p&gt;Radial Polarized Capacitor package with 10.00 mm pitch (lead spacing), 1.00 mm lead diameter, 22.75 mm body diameter and 32.00 mm body height&lt;/p&gt;</description>
  453. <circle x="0" y="0" radius="11.75" width="0.12" layer="21"/>
  454. <circle x="0" y="0" radius="11.75" width="0.12" layer="51"/>
  455. <wire x1="-8.9055" y1="8.9056" x2="-8.1555" y2="8.9056" width="0.12" layer="21"/>
  456. <wire x1="-8.5305" y1="9.2806" x2="-8.5305" y2="8.5306" width="0.12" layer="21"/>
  457. <pad name="1" x="-5" y="0" drill="1.2" diameter="1.8"/>
  458. <pad name="2" x="5" y="0" drill="1.2" diameter="1.8"/>
  459. <text x="0" y="12.385" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  460. <text x="0" y="-12.385" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  461. </package>
  462. <package name="CAPAE1905X1660N" urn="urn:adsk.eagle:footprint:16290827/1" library_version="4">
  463. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  464. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  465. <wire x1="-9.6" y1="1.4617" x2="-9.6" y2="5.4038" width="0.12" layer="21"/>
  466. <wire x1="-9.6" y1="5.4038" x2="-5.4038" y2="9.6" width="0.12" layer="21"/>
  467. <wire x1="-5.4038" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="21"/>
  468. <wire x1="9.6" y1="9.6" x2="9.6" y2="1.4617" width="0.12" layer="21"/>
  469. <wire x1="-9.6" y1="-1.4617" x2="-9.6" y2="-5.4038" width="0.12" layer="21"/>
  470. <wire x1="-9.6" y1="-5.4038" x2="-5.4038" y2="-9.6" width="0.12" layer="21"/>
  471. <wire x1="-5.4038" y1="-9.6" x2="9.6" y2="-9.6" width="0.12" layer="21"/>
  472. <wire x1="9.6" y1="-9.6" x2="9.6" y2="-1.4617" width="0.12" layer="21"/>
  473. <wire x1="9.6" y1="-9.6" x2="-9.6" y2="-9.6" width="0.12" layer="51"/>
  474. <wire x1="-9.6" y1="-9.6" x2="-9.6" y2="9.6" width="0.12" layer="51"/>
  475. <wire x1="-9.6" y1="9.6" x2="9.6" y2="9.6" width="0.12" layer="51"/>
  476. <wire x1="9.6" y1="9.6" x2="9.6" y2="-9.6" width="0.12" layer="51"/>
  477. <smd name="1" x="-6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  478. <smd name="2" x="6.9877" y="0" dx="7.6873" dy="2.4153" layer="1"/>
  479. <text x="0" y="10.235" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  480. <text x="0" y="-10.235" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  481. </package>
  482. <package name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:footprint:16290834/1" library_version="4">
  483. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  484. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 1.10 mm lead diameter, 12.50 mm body diameter and 25.00 mm body height&lt;/p&gt;</description>
  485. <circle x="0" y="0" radius="6.25" width="0.12" layer="21"/>
  486. <circle x="0" y="0" radius="6.25" width="0.12" layer="51"/>
  487. <wire x1="-5.0164" y1="5.0165" x2="-4.2664" y2="5.0165" width="0.12" layer="21"/>
  488. <wire x1="-4.6414" y1="5.3915" x2="-4.6414" y2="4.6415" width="0.12" layer="21"/>
  489. <pad name="1" x="-2.75" y="0" drill="1.3" diameter="1.95"/>
  490. <pad name="2" x="2.75" y="0" drill="1.3" diameter="1.95"/>
  491. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  492. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  493. </package>
  494. <package name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:footprint:16290832/1" library_version="4">
  495. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  496. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 12.00 mm body diameter and 20.00 mm body height&lt;/p&gt;</description>
  497. <circle x="0" y="0" radius="6" width="0.12" layer="21"/>
  498. <circle x="0" y="0" radius="6" width="0.12" layer="51"/>
  499. <wire x1="-4.8397" y1="4.8397" x2="-4.0897" y2="4.8397" width="0.12" layer="21"/>
  500. <wire x1="-4.4647" y1="5.2147" x2="-4.4647" y2="4.4647" width="0.12" layer="21"/>
  501. <pad name="1" x="-2.75" y="0" drill="0.8" diameter="1.4"/>
  502. <pad name="2" x="2.75" y="0" drill="0.8" diameter="1.4"/>
  503. <text x="0" y="6.635" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  504. <text x="0" y="-6.635" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  505. </package>
  506. <package name="CAPMP7443X430N" urn="urn:adsk.eagle:footprint:16290831/1" library_version="4">
  507. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  508. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  509. <wire x1="3.825" y1="2.25" x2="-4.6458" y2="2.25" width="0.12" layer="21"/>
  510. <wire x1="-4.6458" y1="2.25" x2="-4.6458" y2="-2.25" width="0.12" layer="21"/>
  511. <wire x1="-4.6458" y1="-2.25" x2="3.825" y2="-2.25" width="0.12" layer="21"/>
  512. <wire x1="3.825" y1="-2.25" x2="-3.825" y2="-2.25" width="0.12" layer="51"/>
  513. <wire x1="-3.825" y1="-2.25" x2="-3.825" y2="2.25" width="0.12" layer="51"/>
  514. <wire x1="-3.825" y1="2.25" x2="3.825" y2="2.25" width="0.12" layer="51"/>
  515. <wire x1="3.825" y1="2.25" x2="3.825" y2="-2.25" width="0.12" layer="51"/>
  516. <smd name="1" x="-3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  517. <smd name="2" x="3.1655" y="0" dx="2.3326" dy="2.5153" layer="1"/>
  518. <text x="0" y="2.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  519. <text x="0" y="-2.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  520. </package>
  521. <package name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:footprint:16290824/1" library_version="4">
  522. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  523. &lt;p&gt;Axial Polarized Capacitor package with 34.10 mm pitch (lead spacing), 0.80 mm lead diameter, 30.25 mm body length and 18.25 mm body diameter&lt;/p&gt;</description>
  524. <wire x1="-15.25" y1="9.25" x2="-15.25" y2="-9.25" width="0.12" layer="21"/>
  525. <wire x1="-15.25" y1="-9.25" x2="15.25" y2="-9.25" width="0.12" layer="21"/>
  526. <wire x1="15.25" y1="-9.25" x2="15.25" y2="9.25" width="0.12" layer="21"/>
  527. <wire x1="15.25" y1="9.25" x2="-15.25" y2="9.25" width="0.12" layer="21"/>
  528. <wire x1="-11.4375" y1="9.25" x2="-11.4375" y2="-9.25" width="0.12" layer="21"/>
  529. <wire x1="-15.25" y1="0" x2="-15.996" y2="0" width="0.12" layer="21"/>
  530. <wire x1="15.25" y1="0" x2="15.996" y2="0" width="0.12" layer="21"/>
  531. <wire x1="15.25" y1="-9.25" x2="-15.25" y2="-9.25" width="0.12" layer="51"/>
  532. <wire x1="-15.25" y1="-9.25" x2="-15.25" y2="9.25" width="0.12" layer="51"/>
  533. <wire x1="-15.25" y1="9.25" x2="15.25" y2="9.25" width="0.12" layer="51"/>
  534. <wire x1="15.25" y1="9.25" x2="15.25" y2="-9.25" width="0.12" layer="51"/>
  535. <pad name="1" x="-17.05" y="0" drill="1" diameter="1.6"/>
  536. <pad name="2" x="17.05" y="0" drill="1" diameter="1.6"/>
  537. <text x="0" y="9.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  538. <text x="0" y="-9.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  539. </package>
  540. </packages>
  541. <packages3d>
  542. <package3d name="CAPC1005X60" urn="urn:adsk.eagle:package:16290895/2" type="model" library_version="4">
  543. <description>Chip, 1.00 X 0.50 X 0.60 mm body
  544. &lt;p&gt;Chip package with body size 1.00 X 0.50 X 0.60 mm&lt;/p&gt;</description>
  545. <packageinstances>
  546. <packageinstance name="CAPC1005X60"/>
  547. </packageinstances>
  548. </package3d>
  549. <package3d name="CAPC1110X102" urn="urn:adsk.eagle:package:16290904/2" type="model" library_version="4">
  550. <description>Chip, 1.17 X 1.02 X 1.02 mm body
  551. &lt;p&gt;Chip package with body size 1.17 X 1.02 X 1.02 mm&lt;/p&gt;</description>
  552. <packageinstances>
  553. <packageinstance name="CAPC1110X102"/>
  554. </packageinstances>
  555. </package3d>
  556. <package3d name="CAPC1608X85" urn="urn:adsk.eagle:package:16290898/2" type="model" library_version="4">
  557. <description>Chip, 1.60 X 0.80 X 0.85 mm body
  558. &lt;p&gt;Chip package with body size 1.60 X 0.80 X 0.85 mm&lt;/p&gt;</description>
  559. <packageinstances>
  560. <packageinstance name="CAPC1608X85"/>
  561. </packageinstances>
  562. </package3d>
  563. <package3d name="CAPC2012X110" urn="urn:adsk.eagle:package:16290897/2" type="model" library_version="4">
  564. <description>Chip, 2.00 X 1.25 X 1.10 mm body
  565. &lt;p&gt;Chip package with body size 2.00 X 1.25 X 1.10 mm&lt;/p&gt;</description>
  566. <packageinstances>
  567. <packageinstance name="CAPC2012X110"/>
  568. </packageinstances>
  569. </package3d>
  570. <package3d name="CAPC3216X135" urn="urn:adsk.eagle:package:16290893/2" type="model" library_version="4">
  571. <description>Chip, 3.20 X 1.60 X 1.35 mm body
  572. &lt;p&gt;Chip package with body size 3.20 X 1.60 X 1.35 mm&lt;/p&gt;</description>
  573. <packageinstances>
  574. <packageinstance name="CAPC3216X135"/>
  575. </packageinstances>
  576. </package3d>
  577. <package3d name="CAPC3225X135" urn="urn:adsk.eagle:package:16290903/2" type="model" library_version="4">
  578. <description>Chip, 3.20 X 2.50 X 1.35 mm body
  579. &lt;p&gt;Chip package with body size 3.20 X 2.50 X 1.35 mm&lt;/p&gt;</description>
  580. <packageinstances>
  581. <packageinstance name="CAPC3225X135"/>
  582. </packageinstances>
  583. </package3d>
  584. <package3d name="CAPC4532X135" urn="urn:adsk.eagle:package:16290900/2" type="model" library_version="4">
  585. <description>Chip, 4.50 X 3.20 X 1.35 mm body
  586. &lt;p&gt;Chip package with body size 4.50 X 3.20 X 1.35 mm&lt;/p&gt;</description>
  587. <packageinstances>
  588. <packageinstance name="CAPC4532X135"/>
  589. </packageinstances>
  590. </package3d>
  591. <package3d name="CAPM3216X180" urn="urn:adsk.eagle:package:16290894/2" type="model" library_version="4">
  592. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  593. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  594. <packageinstances>
  595. <packageinstance name="CAPM3216X180"/>
  596. </packageinstances>
  597. </package3d>
  598. <package3d name="CAPM3528X210" urn="urn:adsk.eagle:package:16290902/2" type="model" library_version="4">
  599. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  600. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  601. <packageinstances>
  602. <packageinstance name="CAPM3528X210"/>
  603. </packageinstances>
  604. </package3d>
  605. <package3d name="CAPM6032X280" urn="urn:adsk.eagle:package:16290896/2" type="model" library_version="4">
  606. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  607. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  608. <packageinstances>
  609. <packageinstance name="CAPM6032X280"/>
  610. </packageinstances>
  611. </package3d>
  612. <package3d name="CAPM7343X310" urn="urn:adsk.eagle:package:16290891/2" type="model" library_version="4">
  613. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  614. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  615. <packageinstances>
  616. <packageinstance name="CAPM7343X310"/>
  617. </packageinstances>
  618. </package3d>
  619. <package3d name="CAPC4564X110L" urn="urn:adsk.eagle:package:16290887/3" type="model" library_version="4">
  620. <description>Chip, 4.50 X 6.40 X 1.10 mm body
  621. &lt;p&gt;Chip package with body size 4.50 X 6.40 X 1.10 mm&lt;/p&gt;</description>
  622. <packageinstances>
  623. <packageinstance name="CAPC4564X110"/>
  624. </packageinstances>
  625. </package3d>
  626. <package3d name="CAPRD550W60D1025H1250B" urn="urn:adsk.eagle:package:16290858/2" type="model" library_version="4">
  627. <description>Radial Non-Polarized Capacitor, 5.50 mm pitch, 10.25 mm body diameter, 12.50 mm body height
  628. &lt;p&gt;Radial Non-Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 10.25 mm body diameter and 12.50 mm body height&lt;/p&gt;</description>
  629. <packageinstances>
  630. <packageinstance name="CAPRD550W60D1025H1250B"/>
  631. </packageinstances>
  632. </package3d>
  633. <package3d name="CAPRD2261W240D5080H5555B" urn="urn:adsk.eagle:package:16290864/2" type="model" library_version="4">
  634. <description>Radial Non-Polarized Capacitor, 22.61 mm pitch, 50.80 mm body diameter, 55.55 mm body height
  635. &lt;p&gt;Radial Non-Polarized Capacitor package with 22.61 mm pitch (lead spacing), 2.40 mm lead diameter, 50.80 mm body diameter and 55.55 mm body height&lt;/p&gt;</description>
  636. <packageinstances>
  637. <packageinstance name="CAPRD2261W240D5080H5555B"/>
  638. </packageinstances>
  639. </package3d>
  640. <package3d name="CAPMP3216X180N" urn="urn:adsk.eagle:package:16290884/1" type="model" library_version="4">
  641. <description>Molded Body, 3.20 X 1.60 X 1.80 mm body
  642. &lt;p&gt;Molded Body package with body size 3.20 X 1.60 X 1.80 mm&lt;/p&gt;</description>
  643. <packageinstances>
  644. <packageinstance name="CAPMP3216X180N"/>
  645. </packageinstances>
  646. </package3d>
  647. <package3d name="CAPMP3528X210N" urn="urn:adsk.eagle:package:16290901/1" type="model" library_version="4">
  648. <description>Molded Body, 3.50 X 2.80 X 2.10 mm body
  649. &lt;p&gt;Molded Body package with body size 3.50 X 2.80 X 2.10 mm&lt;/p&gt;</description>
  650. <packageinstances>
  651. <packageinstance name="CAPMP3528X210N"/>
  652. </packageinstances>
  653. </package3d>
  654. <package3d name="CAPMP6032X280N" urn="urn:adsk.eagle:package:16290892/1" type="model" library_version="4">
  655. <description>Molded Body, 6.00 X 3.20 X 2.80 mm body
  656. &lt;p&gt;Molded Body package with body size 6.00 X 3.20 X 2.80 mm&lt;/p&gt;</description>
  657. <packageinstances>
  658. <packageinstance name="CAPMP6032X280N"/>
  659. </packageinstances>
  660. </package3d>
  661. <package3d name="CAPMP7343X310N" urn="urn:adsk.eagle:package:16290885/1" type="model" library_version="4">
  662. <description>Molded Body, 7.30 X 4.30 X 3.10 mm body
  663. &lt;p&gt;Molded Body package with body size 7.30 X 4.30 X 3.10 mm&lt;/p&gt;</description>
  664. <packageinstances>
  665. <packageinstance name="CAPMP7343X310N"/>
  666. </packageinstances>
  667. </package3d>
  668. <package3d name="CAPPRD508W65D1000H1100B" urn="urn:adsk.eagle:package:16290899/1" type="model" library_version="4">
  669. <description>Radial Polarized Capacitor, 5.08 mm pitch, 10.00 mm body diameter, 11.00 mm body height
  670. &lt;p&gt;Radial Polarized Capacitor package with 5.08 mm pitch (lead spacing), 0.65 mm lead diameter, 10.00 mm body diameter and 11.00 mm body height&lt;/p&gt;</description>
  671. <packageinstances>
  672. <packageinstance name="CAPPRD508W65D1000H1100B"/>
  673. </packageinstances>
  674. </package3d>
  675. <package3d name="CAPAE1030X1050N" urn="urn:adsk.eagle:package:16290882/1" type="model" library_version="4">
  676. <description>ECAP (Aluminum Electrolytic Capacitor), 10.30 X 10.50 mm body
  677. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 10.30 X 10.50 mm&lt;/p&gt;</description>
  678. <packageinstances>
  679. <packageinstance name="CAPAE1030X1050N"/>
  680. </packageinstances>
  681. </package3d>
  682. <package3d name="CAPAE830X1050N" urn="urn:adsk.eagle:package:16290889/1" type="model" library_version="4">
  683. <description>ECAP (Aluminum Electrolytic Capacitor), 8.30 X 10.50 mm body
  684. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 8.30 X 10.50 mm&lt;/p&gt;</description>
  685. <packageinstances>
  686. <packageinstance name="CAPAE830X1050N"/>
  687. </packageinstances>
  688. </package3d>
  689. <package3d name="CAPPRD1000W100D2275H3200B" urn="urn:adsk.eagle:package:16290888/1" type="model" library_version="4">
  690. <description>Radial Polarized Capacitor, 10.00 mm pitch, 22.75 mm body diameter, 32.00 mm body height
  691. &lt;p&gt;Radial Polarized Capacitor package with 10.00 mm pitch (lead spacing), 1.00 mm lead diameter, 22.75 mm body diameter and 32.00 mm body height&lt;/p&gt;</description>
  692. <packageinstances>
  693. <packageinstance name="CAPPRD1000W100D2275H3200B"/>
  694. </packageinstances>
  695. </package3d>
  696. <package3d name="CAPAE1905X1660N" urn="urn:adsk.eagle:package:16290872/1" type="model" library_version="4">
  697. <description>ECAP (Aluminum Electrolytic Capacitor), 19.05 X 16.60 mm body
  698. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 19.05 X 16.60 mm&lt;/p&gt;</description>
  699. <packageinstances>
  700. <packageinstance name="CAPAE1905X1660N"/>
  701. </packageinstances>
  702. </package3d>
  703. <package3d name="CAPPRD550W110D1250H2500B" urn="urn:adsk.eagle:package:16290890/1" type="model" library_version="4">
  704. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.50 mm body diameter, 25.00 mm body height
  705. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 1.10 mm lead diameter, 12.50 mm body diameter and 25.00 mm body height&lt;/p&gt;</description>
  706. <packageinstances>
  707. <packageinstance name="CAPPRD550W110D1250H2500B"/>
  708. </packageinstances>
  709. </package3d>
  710. <package3d name="CAPPRD550W60D1200H2000B" urn="urn:adsk.eagle:package:16290874/1" type="model" library_version="4">
  711. <description>Radial Polarized Capacitor, 5.50 mm pitch, 12.00 mm body diameter, 20.00 mm body height
  712. &lt;p&gt;Radial Polarized Capacitor package with 5.50 mm pitch (lead spacing), 0.60 mm lead diameter, 12.00 mm body diameter and 20.00 mm body height&lt;/p&gt;</description>
  713. <packageinstances>
  714. <packageinstance name="CAPPRD550W60D1200H2000B"/>
  715. </packageinstances>
  716. </package3d>
  717. <package3d name="CAPMP7443X430N" urn="urn:adsk.eagle:package:16290866/1" type="model" library_version="4">
  718. <description>Molded Body, 7.42 X 4.35 X 4.30 mm body
  719. &lt;p&gt;Molded Body package with body size 7.42 X 4.35 X 4.30 mm&lt;/p&gt;</description>
  720. <packageinstances>
  721. <packageinstance name="CAPMP7443X430N"/>
  722. </packageinstances>
  723. </package3d>
  724. <package3d name="CAPPAD3410W80L3025D1825B" urn="urn:adsk.eagle:package:16290868/1" type="model" library_version="4">
  725. <description>Axial Polarized Capacitor, 34.10 mm pitch, 30.25 mm body length, 18.25 mm body diameter
  726. &lt;p&gt;Axial Polarized Capacitor package with 34.10 mm pitch (lead spacing), 0.80 mm lead diameter, 30.25 mm body length and 18.25 mm body diameter&lt;/p&gt;</description>
  727. <packageinstances>
  728. <packageinstance name="CAPPAD3410W80L3025D1825B"/>
  729. </packageinstances>
  730. </package3d>
  731. </packages3d>
  732. <symbols>
  733. <symbol name="C" urn="urn:adsk.eagle:symbol:16290820/1" library_version="4">
  734. <description>Capacitor</description>
  735. <rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
  736. <rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
  737. <wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
  738. <wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
  739. <pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
  740. <pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
  741. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  742. <text x="2.54" y="-2.54" size="1.778" layer="97">&gt;SPICEMODEL</text>
  743. <text x="2.54" y="0" size="1.778" layer="96">&gt;VALUE</text>
  744. <text x="2.54" y="-5.08" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  745. </symbol>
  746. <symbol name="CPOL" urn="urn:adsk.eagle:symbol:16290823/1" library_version="4">
  747. <wire x1="-1.524" y1="-0.889" x2="1.524" y2="-0.889" width="0.254" layer="94"/>
  748. <wire x1="1.524" y1="-0.889" x2="1.524" y2="0" width="0.254" layer="94"/>
  749. <wire x1="-1.524" y1="0" x2="-1.524" y2="-0.889" width="0.254" layer="94"/>
  750. <wire x1="-1.524" y1="0" x2="1.524" y2="0" width="0.254" layer="94"/>
  751. <text x="1.143" y="0.4826" size="1.778" layer="95">&gt;NAME</text>
  752. <text x="-0.5842" y="0.4064" size="1.27" layer="94" rot="R90">+</text>
  753. <text x="1.143" y="-4.5974" size="1.778" layer="96">&gt;VALUE</text>
  754. <rectangle x1="-1.651" y1="-2.54" x2="1.651" y2="-1.651" layer="94"/>
  755. <pin name="-" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  756. <pin name="+" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
  757. </symbol>
  758. </symbols>
  759. <devicesets>
  760. <deviceset name="C" urn="urn:adsk.eagle:component:16290909/4" prefix="C" uservalue="yes" library_version="4">
  761. <description>&lt;B&gt;Capacitor - Generic</description>
  762. <gates>
  763. <gate name="G$1" symbol="C" x="0" y="0"/>
  764. </gates>
  765. <devices>
  766. <device name="CHIP-0402(1005-METRIC)" package="CAPC1005X60">
  767. <connects>
  768. <connect gate="G$1" pin="1" pad="1"/>
  769. <connect gate="G$1" pin="2" pad="2"/>
  770. </connects>
  771. <package3dinstances>
  772. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290895/2"/>
  773. </package3dinstances>
  774. <technologies>
  775. <technology name="_">
  776. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  777. <attribute name="MANUFACTURER" value="" constant="no"/>
  778. <attribute name="MPN" value="" constant="no"/>
  779. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  780. <attribute name="PART_STATUS" value="" constant="no"/>
  781. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  782. <attribute name="SERIES" value="" constant="no"/>
  783. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  784. <attribute name="THERMALLOSS" value="" constant="no"/>
  785. <attribute name="TYPE" value="" constant="no"/>
  786. <attribute name="VALUE" value="" constant="no"/>
  787. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  788. </technology>
  789. </technologies>
  790. </device>
  791. <device name="CHIP-0504(1310-METRIC)" package="CAPC1110X102">
  792. <connects>
  793. <connect gate="G$1" pin="1" pad="1"/>
  794. <connect gate="G$1" pin="2" pad="2"/>
  795. </connects>
  796. <package3dinstances>
  797. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290904/2"/>
  798. </package3dinstances>
  799. <technologies>
  800. <technology name="_">
  801. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  802. <attribute name="MANUFACTURER" value="" constant="no"/>
  803. <attribute name="MPN" value="" constant="no"/>
  804. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  805. <attribute name="PART_STATUS" value="" constant="no"/>
  806. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  807. <attribute name="SERIES" value="" constant="no"/>
  808. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  809. <attribute name="THERMALLOSS" value="" constant="no"/>
  810. <attribute name="TYPE" value="" constant="no"/>
  811. <attribute name="VALUE" value="" constant="no"/>
  812. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  813. </technology>
  814. </technologies>
  815. </device>
  816. <device name="CHIP-0603(1608-METRIC)" package="CAPC1608X85">
  817. <connects>
  818. <connect gate="G$1" pin="1" pad="1"/>
  819. <connect gate="G$1" pin="2" pad="2"/>
  820. </connects>
  821. <package3dinstances>
  822. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290898/2"/>
  823. </package3dinstances>
  824. <technologies>
  825. <technology name="_">
  826. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  827. <attribute name="MANUFACTURER" value="" constant="no"/>
  828. <attribute name="MPN" value="" constant="no"/>
  829. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  830. <attribute name="PART_STATUS" value="" constant="no"/>
  831. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  832. <attribute name="SERIES" value="" constant="no"/>
  833. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  834. <attribute name="THERMALLOSS" value="" constant="no"/>
  835. <attribute name="TYPE" value="" constant="no"/>
  836. <attribute name="VALUE" value="" constant="no"/>
  837. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  838. </technology>
  839. </technologies>
  840. </device>
  841. <device name="CHIP-0805(2012-METRIC)" package="CAPC2012X110">
  842. <connects>
  843. <connect gate="G$1" pin="1" pad="1"/>
  844. <connect gate="G$1" pin="2" pad="2"/>
  845. </connects>
  846. <package3dinstances>
  847. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290897/2"/>
  848. </package3dinstances>
  849. <technologies>
  850. <technology name="_">
  851. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  852. <attribute name="MANUFACTURER" value="" constant="no"/>
  853. <attribute name="MPN" value="" constant="no"/>
  854. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  855. <attribute name="PART_STATUS" value="" constant="no"/>
  856. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  857. <attribute name="SERIES" value="" constant="no"/>
  858. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  859. <attribute name="THERMALLOSS" value="" constant="no"/>
  860. <attribute name="TYPE" value="" constant="no"/>
  861. <attribute name="VALUE" value="" constant="no"/>
  862. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  863. </technology>
  864. </technologies>
  865. </device>
  866. <device name="CHIP-1206(3216-METRIC)" package="CAPC3216X135">
  867. <connects>
  868. <connect gate="G$1" pin="1" pad="1"/>
  869. <connect gate="G$1" pin="2" pad="2"/>
  870. </connects>
  871. <package3dinstances>
  872. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290893/2"/>
  873. </package3dinstances>
  874. <technologies>
  875. <technology name="_">
  876. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  877. <attribute name="MANUFACTURER" value="" constant="no"/>
  878. <attribute name="MPN" value="" constant="no"/>
  879. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  880. <attribute name="PART_STATUS" value="" constant="no"/>
  881. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  882. <attribute name="SERIES" value="" constant="no"/>
  883. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  884. <attribute name="THERMALLOSS" value="" constant="no"/>
  885. <attribute name="TYPE" value="" constant="no"/>
  886. <attribute name="VALUE" value="" constant="no"/>
  887. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  888. </technology>
  889. </technologies>
  890. </device>
  891. <device name="CHIP-1210(3225-METRIC)" package="CAPC3225X135">
  892. <connects>
  893. <connect gate="G$1" pin="1" pad="1"/>
  894. <connect gate="G$1" pin="2" pad="2"/>
  895. </connects>
  896. <package3dinstances>
  897. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290903/2"/>
  898. </package3dinstances>
  899. <technologies>
  900. <technology name="_">
  901. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  902. <attribute name="MANUFACTURER" value="" constant="no"/>
  903. <attribute name="MPN" value="" constant="no"/>
  904. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  905. <attribute name="PART_STATUS" value="" constant="no"/>
  906. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  907. <attribute name="SERIES" value="" constant="no"/>
  908. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  909. <attribute name="THERMALLOSS" value="" constant="no"/>
  910. <attribute name="TYPE" value="" constant="no"/>
  911. <attribute name="VALUE" value="" constant="no"/>
  912. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  913. </technology>
  914. </technologies>
  915. </device>
  916. <device name="CHIP-1812(4532-METRIC)" package="CAPC4532X135">
  917. <connects>
  918. <connect gate="G$1" pin="1" pad="1"/>
  919. <connect gate="G$1" pin="2" pad="2"/>
  920. </connects>
  921. <package3dinstances>
  922. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290900/2"/>
  923. </package3dinstances>
  924. <technologies>
  925. <technology name="_">
  926. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  927. <attribute name="MANUFACTURER" value="" constant="no"/>
  928. <attribute name="MPN" value="" constant="no"/>
  929. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  930. <attribute name="PART_STATUS" value="" constant="no"/>
  931. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  932. <attribute name="SERIES" value="" constant="no"/>
  933. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  934. <attribute name="THERMALLOSS" value="" constant="no"/>
  935. <attribute name="TYPE" value="" constant="no"/>
  936. <attribute name="VALUE" value="" constant="no"/>
  937. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  938. </technology>
  939. </technologies>
  940. </device>
  941. <device name="TANTALUM-1206(3216-METRIC)" package="CAPM3216X180">
  942. <connects>
  943. <connect gate="G$1" pin="1" pad="1"/>
  944. <connect gate="G$1" pin="2" pad="2"/>
  945. </connects>
  946. <package3dinstances>
  947. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290894/2"/>
  948. </package3dinstances>
  949. <technologies>
  950. <technology name="_">
  951. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  952. <attribute name="MANUFACTURER" value="" constant="no"/>
  953. <attribute name="MPN" value="" constant="no"/>
  954. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  955. <attribute name="PART_STATUS" value="" constant="no"/>
  956. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  957. <attribute name="SERIES" value="" constant="no"/>
  958. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  959. <attribute name="THERMALLOSS" value="" constant="no"/>
  960. <attribute name="TYPE" value="" constant="no"/>
  961. <attribute name="VALUE" value="" constant="no"/>
  962. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  963. </technology>
  964. </technologies>
  965. </device>
  966. <device name="TANTALUM-1411(3528-METRIC)" package="CAPM3528X210">
  967. <connects>
  968. <connect gate="G$1" pin="1" pad="1"/>
  969. <connect gate="G$1" pin="2" pad="2"/>
  970. </connects>
  971. <package3dinstances>
  972. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290902/2"/>
  973. </package3dinstances>
  974. <technologies>
  975. <technology name="_">
  976. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  977. <attribute name="MANUFACTURER" value="" constant="no"/>
  978. <attribute name="MPN" value="" constant="no"/>
  979. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  980. <attribute name="PART_STATUS" value="" constant="no"/>
  981. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  982. <attribute name="SERIES" value="" constant="no"/>
  983. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  984. <attribute name="THERMALLOSS" value="" constant="no"/>
  985. <attribute name="TYPE" value="" constant="no"/>
  986. <attribute name="VALUE" value="" constant="no"/>
  987. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  988. </technology>
  989. </technologies>
  990. </device>
  991. <device name="TANTALUM-2412(6032-METRIC)" package="CAPM6032X280">
  992. <connects>
  993. <connect gate="G$1" pin="1" pad="1"/>
  994. <connect gate="G$1" pin="2" pad="2"/>
  995. </connects>
  996. <package3dinstances>
  997. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290896/2"/>
  998. </package3dinstances>
  999. <technologies>
  1000. <technology name="_">
  1001. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1002. <attribute name="MANUFACTURER" value="" constant="no"/>
  1003. <attribute name="MPN" value="" constant="no"/>
  1004. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1005. <attribute name="PART_STATUS" value="" constant="no"/>
  1006. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1007. <attribute name="SERIES" value="" constant="no"/>
  1008. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1009. <attribute name="THERMALLOSS" value="" constant="no"/>
  1010. <attribute name="TYPE" value="" constant="no"/>
  1011. <attribute name="VALUE" value="" constant="no"/>
  1012. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1013. </technology>
  1014. </technologies>
  1015. </device>
  1016. <device name="TANTALUM-2917(7343-METRIC)" package="CAPM7343X310">
  1017. <connects>
  1018. <connect gate="G$1" pin="1" pad="1"/>
  1019. <connect gate="G$1" pin="2" pad="2"/>
  1020. </connects>
  1021. <package3dinstances>
  1022. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290891/2"/>
  1023. </package3dinstances>
  1024. <technologies>
  1025. <technology name="_">
  1026. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1027. <attribute name="MANUFACTURER" value="" constant="no"/>
  1028. <attribute name="MPN" value="" constant="no"/>
  1029. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1030. <attribute name="PART_STATUS" value="" constant="no"/>
  1031. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1032. <attribute name="SERIES" value="" constant="no"/>
  1033. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1034. <attribute name="THERMALLOSS" value="" constant="no"/>
  1035. <attribute name="TYPE" value="" constant="no"/>
  1036. <attribute name="VALUE" value="" constant="no"/>
  1037. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1038. </technology>
  1039. </technologies>
  1040. </device>
  1041. <device name="CHIP-1825(4564-METRIC)" package="CAPC4564X110">
  1042. <connects>
  1043. <connect gate="G$1" pin="1" pad="1"/>
  1044. <connect gate="G$1" pin="2" pad="2"/>
  1045. </connects>
  1046. <package3dinstances>
  1047. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290887/3"/>
  1048. </package3dinstances>
  1049. <technologies>
  1050. <technology name="_">
  1051. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1052. <attribute name="MANUFACTURER" value="" constant="no"/>
  1053. <attribute name="MPN" value="" constant="no"/>
  1054. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1055. <attribute name="PART_STATUS" value="" constant="no"/>
  1056. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1057. <attribute name="SERIES" value="" constant="no"/>
  1058. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1059. <attribute name="THERMALLOSS" value="" constant="no"/>
  1060. <attribute name="TYPE" value="" constant="no"/>
  1061. <attribute name="VALUE" value="" constant="no"/>
  1062. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1063. </technology>
  1064. </technologies>
  1065. </device>
  1066. <device name="RADIAL-12.5MM-DIA" package="CAPRD550W60D1025H1250B">
  1067. <connects>
  1068. <connect gate="G$1" pin="1" pad="1"/>
  1069. <connect gate="G$1" pin="2" pad="2"/>
  1070. </connects>
  1071. <package3dinstances>
  1072. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290858/2"/>
  1073. </package3dinstances>
  1074. <technologies>
  1075. <technology name="_">
  1076. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1077. <attribute name="MANUFACTURER" value="" constant="no"/>
  1078. <attribute name="MPN" value="" constant="no"/>
  1079. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1080. <attribute name="PART_STATUS" value="" constant="no"/>
  1081. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1082. <attribute name="SERIES" value="" constant="no"/>
  1083. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1084. <attribute name="THERMALLOSS" value="" constant="no"/>
  1085. <attribute name="TYPE" value="" constant="no"/>
  1086. <attribute name="VALUE" value="" constant="no"/>
  1087. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1088. </technology>
  1089. </technologies>
  1090. </device>
  1091. <device name="RADIAL-55.5MM-DIA" package="CAPRD2261W240D5080H5555B">
  1092. <connects>
  1093. <connect gate="G$1" pin="1" pad="1"/>
  1094. <connect gate="G$1" pin="2" pad="2"/>
  1095. </connects>
  1096. <package3dinstances>
  1097. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290864/2"/>
  1098. </package3dinstances>
  1099. <technologies>
  1100. <technology name="_">
  1101. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1102. <attribute name="MANUFACTURER" value="" constant="no"/>
  1103. <attribute name="MPN" value="" constant="no"/>
  1104. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1105. <attribute name="PART_STATUS" value="" constant="no"/>
  1106. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1107. <attribute name="SERIES" value="" constant="no"/>
  1108. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1109. <attribute name="THERMALLOSS" value="" constant="no"/>
  1110. <attribute name="TYPE" value="" constant="no"/>
  1111. <attribute name="VALUE" value="" constant="no"/>
  1112. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1113. </technology>
  1114. </technologies>
  1115. </device>
  1116. </devices>
  1117. <spice>
  1118. <pinmapping spiceprefix="C">
  1119. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1120. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1121. </pinmapping>
  1122. </spice>
  1123. </deviceset>
  1124. <deviceset name="C-POL" urn="urn:adsk.eagle:component:16290908/4" prefix="C" uservalue="yes" library_version="4">
  1125. <description>&lt;B&gt;Capacitor Polarised - Generic</description>
  1126. <gates>
  1127. <gate name="G$1" symbol="CPOL" x="0" y="0"/>
  1128. </gates>
  1129. <devices>
  1130. <device name="TANTALUM-1206(3216-METRIC)" package="CAPMP3216X180N">
  1131. <connects>
  1132. <connect gate="G$1" pin="+" pad="1"/>
  1133. <connect gate="G$1" pin="-" pad="2"/>
  1134. </connects>
  1135. <package3dinstances>
  1136. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290884/1"/>
  1137. </package3dinstances>
  1138. <technologies>
  1139. <technology name="_">
  1140. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1141. <attribute name="MANUFACTURER" value="" constant="no"/>
  1142. <attribute name="MPN" value="" constant="no"/>
  1143. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1144. <attribute name="PART_STATUS" value="" constant="no"/>
  1145. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1146. <attribute name="SERIES" value="" constant="no"/>
  1147. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1148. <attribute name="THERMALLOSS" value="" constant="no"/>
  1149. <attribute name="TYPE" value="" constant="no"/>
  1150. <attribute name="VALUE" value="" constant="no"/>
  1151. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1152. </technology>
  1153. </technologies>
  1154. </device>
  1155. <device name="TANTALUM-1411(3528-METRIC)" package="CAPMP3528X210N">
  1156. <connects>
  1157. <connect gate="G$1" pin="+" pad="1"/>
  1158. <connect gate="G$1" pin="-" pad="2"/>
  1159. </connects>
  1160. <package3dinstances>
  1161. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290901/1"/>
  1162. </package3dinstances>
  1163. <technologies>
  1164. <technology name="_">
  1165. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1166. <attribute name="MANUFACTURER" value="" constant="no"/>
  1167. <attribute name="MPN" value="" constant="no"/>
  1168. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1169. <attribute name="PART_STATUS" value="" constant="no"/>
  1170. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1171. <attribute name="SERIES" value="" constant="no"/>
  1172. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1173. <attribute name="THERMALLOSS" value="" constant="no"/>
  1174. <attribute name="TYPE" value="" constant="no"/>
  1175. <attribute name="VALUE" value="" constant="no"/>
  1176. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1177. </technology>
  1178. </technologies>
  1179. </device>
  1180. <device name="TANTALUM-2412(6032-METRIC)" package="CAPMP6032X280N">
  1181. <connects>
  1182. <connect gate="G$1" pin="+" pad="1"/>
  1183. <connect gate="G$1" pin="-" pad="2"/>
  1184. </connects>
  1185. <package3dinstances>
  1186. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290892/1"/>
  1187. </package3dinstances>
  1188. <technologies>
  1189. <technology name="_">
  1190. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1191. <attribute name="MANUFACTURER" value="" constant="no"/>
  1192. <attribute name="MPN" value="" constant="no"/>
  1193. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1194. <attribute name="PART_STATUS" value="" constant="no"/>
  1195. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1196. <attribute name="SERIES" value="" constant="no"/>
  1197. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1198. <attribute name="THERMALLOSS" value="" constant="no"/>
  1199. <attribute name="TYPE" value="" constant="no"/>
  1200. <attribute name="VALUE" value="" constant="no"/>
  1201. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1202. </technology>
  1203. </technologies>
  1204. </device>
  1205. <device name="TANTALUM-2917(7343-METRIC)" package="CAPMP7343X310N">
  1206. <connects>
  1207. <connect gate="G$1" pin="+" pad="1"/>
  1208. <connect gate="G$1" pin="-" pad="2"/>
  1209. </connects>
  1210. <package3dinstances>
  1211. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290885/1"/>
  1212. </package3dinstances>
  1213. <technologies>
  1214. <technology name="_">
  1215. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1216. <attribute name="MANUFACTURER" value="" constant="no"/>
  1217. <attribute name="MPN" value="" constant="no"/>
  1218. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1219. <attribute name="PART_STATUS" value="" constant="no"/>
  1220. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1221. <attribute name="SERIES" value="" constant="no"/>
  1222. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1223. <attribute name="THERMALLOSS" value="" constant="no"/>
  1224. <attribute name="TYPE" value="" constant="no"/>
  1225. <attribute name="VALUE" value="" constant="no"/>
  1226. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1227. </technology>
  1228. </technologies>
  1229. </device>
  1230. <device name="RADIAL-11MM-DIA" package="CAPPRD508W65D1000H1100B">
  1231. <connects>
  1232. <connect gate="G$1" pin="+" pad="1"/>
  1233. <connect gate="G$1" pin="-" pad="2"/>
  1234. </connects>
  1235. <package3dinstances>
  1236. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290899/1"/>
  1237. </package3dinstances>
  1238. <technologies>
  1239. <technology name="_">
  1240. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1241. <attribute name="MANUFACTURER" value="" constant="no"/>
  1242. <attribute name="MPN" value="" constant="no"/>
  1243. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1244. <attribute name="PART_STATUS" value="" constant="no"/>
  1245. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1246. <attribute name="SERIES" value="" constant="no"/>
  1247. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1248. <attribute name="THERMALLOSS" value="" constant="no"/>
  1249. <attribute name="TYPE" value="" constant="no"/>
  1250. <attribute name="VALUE" value="" constant="no"/>
  1251. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1252. </technology>
  1253. </technologies>
  1254. </device>
  1255. <device name="ECAP-10.5MM" package="CAPAE1030X1050N">
  1256. <connects>
  1257. <connect gate="G$1" pin="+" pad="1"/>
  1258. <connect gate="G$1" pin="-" pad="2"/>
  1259. </connects>
  1260. <package3dinstances>
  1261. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290882/1"/>
  1262. </package3dinstances>
  1263. <technologies>
  1264. <technology name="_">
  1265. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1266. <attribute name="MANUFACTURER" value="" constant="no"/>
  1267. <attribute name="MPN" value="" constant="no"/>
  1268. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1269. <attribute name="PART_STATUS" value="" constant="no"/>
  1270. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1271. <attribute name="SERIES" value="" constant="no"/>
  1272. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1273. <attribute name="THERMALLOSS" value="" constant="no"/>
  1274. <attribute name="TYPE" value="" constant="no"/>
  1275. <attribute name="VALUE" value="" constant="no"/>
  1276. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1277. </technology>
  1278. </technologies>
  1279. </device>
  1280. <device name="ECAP-8.5MM" package="CAPAE830X1050N">
  1281. <connects>
  1282. <connect gate="G$1" pin="+" pad="1"/>
  1283. <connect gate="G$1" pin="-" pad="2"/>
  1284. </connects>
  1285. <package3dinstances>
  1286. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290889/1"/>
  1287. </package3dinstances>
  1288. <technologies>
  1289. <technology name="_">
  1290. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1291. <attribute name="MANUFACTURER" value="" constant="no"/>
  1292. <attribute name="MPN" value="" constant="no"/>
  1293. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1294. <attribute name="PART_STATUS" value="" constant="no"/>
  1295. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1296. <attribute name="SERIES" value="" constant="no"/>
  1297. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1298. <attribute name="THERMALLOSS" value="" constant="no"/>
  1299. <attribute name="TYPE" value="" constant="no"/>
  1300. <attribute name="VALUE" value="" constant="no"/>
  1301. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1302. </technology>
  1303. </technologies>
  1304. </device>
  1305. <device name="RADIAL-32MM-DIA" package="CAPPRD1000W100D2275H3200B">
  1306. <connects>
  1307. <connect gate="G$1" pin="+" pad="1"/>
  1308. <connect gate="G$1" pin="-" pad="2"/>
  1309. </connects>
  1310. <package3dinstances>
  1311. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290888/1"/>
  1312. </package3dinstances>
  1313. <technologies>
  1314. <technology name="_">
  1315. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1316. <attribute name="MANUFACTURER" value="" constant="no"/>
  1317. <attribute name="MPN" value="" constant="no"/>
  1318. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1319. <attribute name="PART_STATUS" value="" constant="no"/>
  1320. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1321. <attribute name="SERIES" value="" constant="no"/>
  1322. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1323. <attribute name="THERMALLOSS" value="" constant="no"/>
  1324. <attribute name="TYPE" value="" constant="no"/>
  1325. <attribute name="VALUE" value="" constant="no"/>
  1326. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1327. </technology>
  1328. </technologies>
  1329. </device>
  1330. <device name="ECAP-19.2MM" package="CAPAE1905X1660N">
  1331. <connects>
  1332. <connect gate="G$1" pin="+" pad="1"/>
  1333. <connect gate="G$1" pin="-" pad="2"/>
  1334. </connects>
  1335. <package3dinstances>
  1336. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290872/1"/>
  1337. </package3dinstances>
  1338. <technologies>
  1339. <technology name="_">
  1340. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1341. <attribute name="MANUFACTURER" value="" constant="no"/>
  1342. <attribute name="MPN" value="" constant="no"/>
  1343. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1344. <attribute name="PART_STATUS" value="" constant="no"/>
  1345. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1346. <attribute name="SERIES" value="" constant="no"/>
  1347. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1348. <attribute name="THERMALLOSS" value="" constant="no"/>
  1349. <attribute name="TYPE" value="" constant="no"/>
  1350. <attribute name="VALUE" value="" constant="no"/>
  1351. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1352. </technology>
  1353. </technologies>
  1354. </device>
  1355. <device name="RADIAL-25MM-DIA" package="CAPPRD550W110D1250H2500B">
  1356. <connects>
  1357. <connect gate="G$1" pin="+" pad="1"/>
  1358. <connect gate="G$1" pin="-" pad="2"/>
  1359. </connects>
  1360. <package3dinstances>
  1361. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290890/1"/>
  1362. </package3dinstances>
  1363. <technologies>
  1364. <technology name="_">
  1365. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1366. <attribute name="MANUFACTURER" value="" constant="no"/>
  1367. <attribute name="MPN" value="" constant="no"/>
  1368. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1369. <attribute name="PART_STATUS" value="" constant="no"/>
  1370. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1371. <attribute name="SERIES" value="" constant="no"/>
  1372. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1373. <attribute name="THERMALLOSS" value="" constant="no"/>
  1374. <attribute name="TYPE" value="" constant="no"/>
  1375. <attribute name="VALUE" value="" constant="no"/>
  1376. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1377. </technology>
  1378. </technologies>
  1379. </device>
  1380. <device name="RADIAL-20MM-DIA" package="CAPPRD550W60D1200H2000B">
  1381. <connects>
  1382. <connect gate="G$1" pin="+" pad="1"/>
  1383. <connect gate="G$1" pin="-" pad="2"/>
  1384. </connects>
  1385. <package3dinstances>
  1386. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290874/1"/>
  1387. </package3dinstances>
  1388. <technologies>
  1389. <technology name="_">
  1390. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1391. <attribute name="MANUFACTURER" value="" constant="no"/>
  1392. <attribute name="MPN" value="" constant="no"/>
  1393. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1394. <attribute name="PART_STATUS" value="" constant="no"/>
  1395. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1396. <attribute name="SERIES" value="" constant="no"/>
  1397. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1398. <attribute name="THERMALLOSS" value="" constant="no"/>
  1399. <attribute name="TYPE" value="" constant="no"/>
  1400. <attribute name="VALUE" value="" constant="no"/>
  1401. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1402. </technology>
  1403. </technologies>
  1404. </device>
  1405. <device name="TANTALUM-2920(7443-METRIC)" package="CAPMP7443X430N">
  1406. <connects>
  1407. <connect gate="G$1" pin="+" pad="1"/>
  1408. <connect gate="G$1" pin="-" pad="2"/>
  1409. </connects>
  1410. <package3dinstances>
  1411. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290866/1"/>
  1412. </package3dinstances>
  1413. <technologies>
  1414. <technology name="_">
  1415. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1416. <attribute name="MANUFACTURER" value="" constant="no"/>
  1417. <attribute name="MPN" value="" constant="no"/>
  1418. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1419. <attribute name="PART_STATUS" value="" constant="no"/>
  1420. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1421. <attribute name="SERIES" value="" constant="no"/>
  1422. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1423. <attribute name="THERMALLOSS" value="" constant="no"/>
  1424. <attribute name="TYPE" value="" constant="no"/>
  1425. <attribute name="VALUE" value="" constant="no"/>
  1426. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1427. </technology>
  1428. </technologies>
  1429. </device>
  1430. <device name="AXIAL-34.1MM-PITCH" package="CAPPAD3410W80L3025D1825B">
  1431. <connects>
  1432. <connect gate="G$1" pin="+" pad="1"/>
  1433. <connect gate="G$1" pin="-" pad="2"/>
  1434. </connects>
  1435. <package3dinstances>
  1436. <package3dinstance package3d_urn="urn:adsk.eagle:package:16290868/1"/>
  1437. </package3dinstances>
  1438. <technologies>
  1439. <technology name="_">
  1440. <attribute name="CATEGORY" value="Capacitor" constant="no"/>
  1441. <attribute name="MANUFACTURER" value="" constant="no"/>
  1442. <attribute name="MPN" value="" constant="no"/>
  1443. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  1444. <attribute name="PART_STATUS" value="" constant="no"/>
  1445. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  1446. <attribute name="SERIES" value="" constant="no"/>
  1447. <attribute name="SUB-CATEGORY" value="" constant="no"/>
  1448. <attribute name="THERMALLOSS" value="" constant="no"/>
  1449. <attribute name="TYPE" value="" constant="no"/>
  1450. <attribute name="VALUE" value="" constant="no"/>
  1451. <attribute name="VOLTAGE_RATING" value="" constant="no"/>
  1452. </technology>
  1453. </technologies>
  1454. </device>
  1455. </devices>
  1456. </deviceset>
  1457. </devicesets>
  1458. </library>
  1459. <library name="Diodes" urn="urn:adsk.eagle:library:11396254">
  1460. <description>&lt;h3&gt; PCBLayout.com - Frequently Used &lt;i&gt;Diodes&lt;/i&gt;&lt;/h3&gt;
  1461. Visit us at &lt;a href="http://www.PCBLayout.com"&gt;PCBLayout.com&lt;/a&gt; for quick and hassle-free PCB Layout/Manufacturing ordering experience.
  1462. &lt;BR&gt;
  1463. &lt;BR&gt;
  1464. This library has been generated by our experienced pcb layout engineers using current IPC and/or industry standards. We &lt;b&gt;believe&lt;/b&gt; the content to be accurate, complete and current. But, this content is provided as a courtesy and &lt;u&gt;user assumes all risk and responsiblity of it's usage&lt;/u&gt;.
  1465. &lt;BR&gt;
  1466. &lt;BR&gt;
  1467. Feel free to contact us at &lt;a href="mailto:Support@PCBLayout.com"&gt;Support@PCBLayout.com&lt;/a&gt; if you have any questions/concerns regarding any of our content or services.</description>
  1468. <packages>
  1469. <package name="DO201AD" urn="urn:adsk.eagle:footprint:10898376/1" library_version="1">
  1470. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1471. <wire x1="-4.2" y1="0" x2="-4.2" y2="-2.525" width="0.127" layer="51"/>
  1472. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="51"/>
  1473. <wire x1="4.2" y1="-2.525" x2="4.2" y2="0" width="0.127" layer="51"/>
  1474. <wire x1="4.2" y1="0" x2="4.2" y2="2.525" width="0.127" layer="51"/>
  1475. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="51"/>
  1476. <wire x1="-4.2" y1="2.525" x2="-4.2" y2="-2.525" width="0.127" layer="21"/>
  1477. <wire x1="-4.2" y1="-2.525" x2="4.2" y2="-2.525" width="0.127" layer="21"/>
  1478. <wire x1="4.2" y1="-2.525" x2="4.2" y2="2.525" width="0.127" layer="21"/>
  1479. <wire x1="4.2" y1="2.525" x2="-4.2" y2="2.525" width="0.127" layer="21"/>
  1480. <wire x1="-6.2" y1="0" x2="-4.2" y2="0" width="0.127" layer="51"/>
  1481. <wire x1="4.2" y1="0" x2="6.2" y2="0" width="0.127" layer="51"/>
  1482. <wire x1="-5" y1="0" x2="-4.25" y2="0" width="0.127" layer="21"/>
  1483. <wire x1="4.25" y1="0" x2="5" y2="0" width="0.127" layer="21"/>
  1484. <wire x1="-7.45" y1="2.775" x2="-7.45" y2="-2.775" width="0.05" layer="39"/>
  1485. <wire x1="-7.45" y1="-2.775" x2="7.4" y2="-2.775" width="0.05" layer="39"/>
  1486. <wire x1="7.4" y1="-2.775" x2="7.4" y2="2.775" width="0.05" layer="39"/>
  1487. <wire x1="7.4" y1="2.775" x2="-7.45" y2="2.775" width="0.05" layer="39"/>
  1488. <pad name="C" x="-6.2" y="0" drill="1.25" shape="square"/>
  1489. <pad name="A" x="6.2" y="0" drill="1.25"/>
  1490. <rectangle x1="-3.5" y1="-2.525" x2="-2.25" y2="2.525" layer="21"/>
  1491. <text x="-7.75" y="3" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1492. <text x="-7.5" y="-4.25" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1493. </package>
  1494. </packages>
  1495. <packages3d>
  1496. <package3d name="DO201AD" urn="urn:adsk.eagle:package:10898389/2" type="model" library_version="1">
  1497. <packageinstances>
  1498. <packageinstance name="DO201AD"/>
  1499. </packageinstances>
  1500. </package3d>
  1501. </packages3d>
  1502. <symbols>
  1503. <symbol name="SCHOTTKY" urn="urn:adsk.eagle:symbol:10898387/1" library_version="1">
  1504. <wire x1="-1.27" y1="-1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1505. <wire x1="1.27" y1="0" x2="-1.27" y2="1.27" width="0.254" layer="94"/>
  1506. <wire x1="1.905" y1="1.27" x2="1.27" y2="1.27" width="0.254" layer="94"/>
  1507. <wire x1="1.27" y1="1.27" x2="1.27" y2="0" width="0.254" layer="94"/>
  1508. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.254" layer="94"/>
  1509. <wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.254" layer="94"/>
  1510. <wire x1="1.27" y1="0" x2="1.27" y2="-1.27" width="0.254" layer="94"/>
  1511. <wire x1="1.905" y1="1.27" x2="1.905" y2="1.016" width="0.254" layer="94"/>
  1512. <wire x1="1.27" y1="-1.27" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1513. <wire x1="0.635" y1="-1.016" x2="0.635" y2="-1.27" width="0.254" layer="94"/>
  1514. <wire x1="-1.27" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  1515. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.254" layer="94"/>
  1516. <text x="-2.286" y="1.905" size="1.778" layer="95">&gt;NAME</text>
  1517. <text x="-2.286" y="-3.429" size="1.778" layer="96">&gt;VALUE</text>
  1518. <pin name="A" x="-2.54" y="0" visible="off" length="point" direction="pas"/>
  1519. <pin name="C" x="2.54" y="0" visible="off" length="point" direction="pas" rot="R180"/>
  1520. </symbol>
  1521. </symbols>
  1522. <devicesets>
  1523. <deviceset name="MBR360G" urn="urn:adsk.eagle:component:10898397/9" prefix="D" library_version="1">
  1524. <description>&lt;h3&gt; DIODE SCHOTTKY 60V 3A DO201AD&lt;/h3&gt;
  1525. &lt;BR&gt;
  1526. &lt;a href="https://www.onsemi.com/pub/Collateral/MBR350-D.PDF"&gt; Manufacturer's datasheet&lt;/a&gt;</description>
  1527. <gates>
  1528. <gate name="G$1" symbol="SCHOTTKY" x="0" y="0"/>
  1529. </gates>
  1530. <devices>
  1531. <device name="" package="DO201AD">
  1532. <connects>
  1533. <connect gate="G$1" pin="A" pad="A"/>
  1534. <connect gate="G$1" pin="C" pad="C"/>
  1535. </connects>
  1536. <package3dinstances>
  1537. <package3dinstance package3d_urn="urn:adsk.eagle:package:10898389/2"/>
  1538. </package3dinstances>
  1539. <technologies>
  1540. <technology name="">
  1541. <attribute name="CREATED_BY" value="PCBLayout.com" constant="no"/>
  1542. <attribute name="DIGIKEY_PART_NUMBER" value="MBR360GOS-ND" constant="no"/>
  1543. <attribute name="MANUFACTURER" value="ON Semiconductor" constant="no"/>
  1544. <attribute name="MPN" value="MBR360G" constant="no"/>
  1545. <attribute name="PACKAGE" value="DO-201AD" constant="no"/>
  1546. </technology>
  1547. </technologies>
  1548. </device>
  1549. </devices>
  1550. </deviceset>
  1551. </devicesets>
  1552. </library>
  1553. <library name="inductors" urn="urn:adsk.eagle:library:243">
  1554. <description>&lt;b&gt;Inductors and Filters&lt;/b&gt;&lt;p&gt;
  1555. Based on the previous library ind-a.lbr&lt;p&gt;
  1556. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  1557. <packages>
  1558. <package name="DR127" urn="urn:adsk.eagle:footprint:15034/1" library_version="4">
  1559. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1560. Source: coiltronics_dr_series.pdf</description>
  1561. <wire x1="-6.5" y1="6.5" x2="6.525" y2="6.5" width="0.2032" layer="21"/>
  1562. <wire x1="6.525" y1="6.5" x2="6.525" y2="-6.5" width="0.2032" layer="21"/>
  1563. <wire x1="6.525" y1="-6.5" x2="-6.5" y2="-6.5" width="0.2032" layer="21"/>
  1564. <wire x1="-6.5" y1="-6.5" x2="-6.5" y2="6.5" width="0.2032" layer="21"/>
  1565. <wire x1="-4.5254" y1="3.783" x2="-3.8006" y2="4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1566. <wire x1="-3.783" y1="-4.5254" x2="-4.5431" y2="-3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1567. <wire x1="4.5254" y1="-3.783" x2="3.8006" y2="-4.5431" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1568. <wire x1="3.783" y1="4.5254" x2="4.5431" y2="3.8006" width="1.016" layer="21" curve="-202.065586" cap="flat"/>
  1569. <wire x1="0" y1="5.9" x2="4.9" y2="3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1570. <wire x1="0" y1="5.9" x2="-4.95" y2="3.225" width="0.2032" layer="21" curve="56.95663"/>
  1571. <wire x1="0" y1="-5.9" x2="-4.9" y2="-3.275" width="0.2032" layer="21" curve="-56.209779"/>
  1572. <wire x1="0" y1="-5.9" x2="4.95" y2="-3.225" width="0.2032" layer="21" curve="56.95663"/>
  1573. <circle x="0" y="0" radius="5.9" width="0.2032" layer="51"/>
  1574. <smd name="1" x="-4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1575. <smd name="2" x="4.975" y="0" dx="3.85" dy="5.5" layer="1"/>
  1576. <text x="-2.5" y="3" size="1.27" layer="25">&gt;NAME</text>
  1577. <text x="-3" y="-4.5" size="1.27" layer="27">&gt;VALUE</text>
  1578. </package>
  1579. </packages>
  1580. <packages3d>
  1581. <package3d name="DR127" urn="urn:adsk.eagle:package:15117/1" type="box" library_version="4">
  1582. <description>High Power Density, High Efficiency, Shielded Inductors
  1583. Source: coiltronics_dr_series.pdf</description>
  1584. <packageinstances>
  1585. <packageinstance name="DR127"/>
  1586. </packageinstances>
  1587. </package3d>
  1588. </packages3d>
  1589. <symbols>
  1590. <symbol name="DRK" urn="urn:adsk.eagle:symbol:28107/2" library_version="4">
  1591. <wire x1="-3.81" y1="1.651" x2="3.81" y2="1.651" width="0.254" layer="94"/>
  1592. <text x="-3.81" y="2.286" size="1.778" layer="95">&gt;NAME</text>
  1593. <text x="-3.937" y="-3.048" size="1.778" layer="96">&gt;VALUE</text>
  1594. <rectangle x1="-3.81" y1="-0.889" x2="3.81" y2="0.889" layer="94"/>
  1595. <pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  1596. <pin name="1" x="-7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1"/>
  1597. </symbol>
  1598. </symbols>
  1599. <devicesets>
  1600. <deviceset name="DR127" urn="urn:adsk.eagle:component:15196/4" prefix="L" library_version="4">
  1601. <description>&lt;b&gt;High Power Density, High Efficiency, Shielded Inductors&lt;/b&gt;&lt;p&gt;
  1602. Source: coiltronics_dr_series.pdf</description>
  1603. <gates>
  1604. <gate name="G$1" symbol="DRK" x="0" y="0"/>
  1605. </gates>
  1606. <devices>
  1607. <device name="" package="DR127">
  1608. <connects>
  1609. <connect gate="G$1" pin="1" pad="1"/>
  1610. <connect gate="G$1" pin="2" pad="2"/>
  1611. </connects>
  1612. <package3dinstances>
  1613. <package3dinstance package3d_urn="urn:adsk.eagle:package:15117/1"/>
  1614. </package3dinstances>
  1615. <technologies>
  1616. <technology name="">
  1617. <attribute name="POPULARITY" value="2" constant="no"/>
  1618. <attribute name="SPICEPREFIX" value="L" constant="no"/>
  1619. </technology>
  1620. </technologies>
  1621. </device>
  1622. </devices>
  1623. <spice>
  1624. <pinmapping spiceprefix="L">
  1625. <pinmap gate="G$1" pin="1" pinorder="1"/>
  1626. <pinmap gate="G$1" pin="2" pinorder="2"/>
  1627. </pinmapping>
  1628. </spice>
  1629. </deviceset>
  1630. </devicesets>
  1631. </library>
  1632. <library name="eagle-ltspice" urn="urn:adsk.eagle:library:217">
  1633. <description>Default symbols for import LTspice schematics&lt;p&gt;
  1634. 2012-10-29 alf@cadsoft.de&lt;br&gt;</description>
  1635. <packages>
  1636. <package name="0204/7" urn="urn:adsk.eagle:footprint:13215/1" library_version="1">
  1637. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1638. type 0204, grid 7.5 mm</description>
  1639. <wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="51"/>
  1640. <wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="51"/>
  1641. <wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
  1642. <wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
  1643. <wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
  1644. <wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
  1645. <wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
  1646. <wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1647. <wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
  1648. <wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1649. <wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
  1650. <wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1651. <wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
  1652. <wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1653. <wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
  1654. <wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
  1655. <wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
  1656. <wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
  1657. <rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
  1658. <rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
  1659. <pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
  1660. <pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
  1661. <text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">&gt;NAME</text>
  1662. <text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">&gt;VALUE</text>
  1663. </package>
  1664. <package name="0207/10" urn="urn:adsk.eagle:footprint:13216/1" library_version="1">
  1665. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1666. type 0207, grid 10 mm</description>
  1667. <wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="51"/>
  1668. <wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="51"/>
  1669. <wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
  1670. <wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
  1671. <wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
  1672. <wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
  1673. <wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
  1674. <wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1675. <wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
  1676. <wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1677. <wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
  1678. <wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1679. <wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
  1680. <wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1681. <wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
  1682. <wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
  1683. <wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
  1684. <wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
  1685. <rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
  1686. <rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
  1687. <pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
  1688. <pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
  1689. <text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  1690. <text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  1691. </package>
  1692. <package name="R0201" urn="urn:adsk.eagle:footprint:13233/1" library_version="1">
  1693. <description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;
  1694. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1695. <rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="51"/>
  1696. <rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="51"/>
  1697. <rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
  1698. <smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1699. <smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
  1700. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1701. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1702. </package>
  1703. <package name="R0402" urn="urn:adsk.eagle:footprint:13234/1" library_version="1">
  1704. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1705. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1706. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1707. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1708. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1709. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1710. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1711. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1712. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1713. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1714. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1715. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1716. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1717. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1718. </package>
  1719. <package name="R0603" urn="urn:adsk.eagle:footprint:13235/1" library_version="1">
  1720. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1721. <wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="51"/>
  1722. <wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="51"/>
  1723. <wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
  1724. <wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
  1725. <wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
  1726. <wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
  1727. <rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="51"/>
  1728. <rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="51"/>
  1729. <rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
  1730. <smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1731. <smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
  1732. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1733. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1734. </package>
  1735. <package name="R0805" urn="urn:adsk.eagle:footprint:13236/1" library_version="1">
  1736. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>
  1737. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1738. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1739. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1740. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1741. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1742. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1743. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1744. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1745. <rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
  1746. <smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1747. <smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
  1748. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1749. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1750. </package>
  1751. <package name="R1005" urn="urn:adsk.eagle:footprint:13237/1" library_version="1">
  1752. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1753. <wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="51"/>
  1754. <wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="51"/>
  1755. <wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
  1756. <wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
  1757. <wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
  1758. <wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
  1759. <rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="51"/>
  1760. <rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="51"/>
  1761. <rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
  1762. <smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1763. <smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
  1764. <text x="-0.635" y="0.635" size="1.27" layer="25">&gt;NAME</text>
  1765. <text x="-0.635" y="-1.905" size="1.27" layer="27">&gt;VALUE</text>
  1766. </package>
  1767. <package name="R1206" urn="urn:adsk.eagle:footprint:13238/1" library_version="1">
  1768. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1769. <wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/>
  1770. <wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/>
  1771. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1772. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1773. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1774. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1775. <rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
  1776. <rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
  1777. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1778. <smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1779. <smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
  1780. <text x="-1.27" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1781. <text x="-1.27" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1782. </package>
  1783. <package name="R1210" urn="urn:adsk.eagle:footprint:13239/1" library_version="1">
  1784. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1785. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1786. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1787. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1788. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1789. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1790. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1791. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1792. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1793. <rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
  1794. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1795. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1796. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1797. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1798. </package>
  1799. <package name="R1218" urn="urn:adsk.eagle:footprint:13240/1" library_version="1">
  1800. <description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;
  1801. Source: http://www.vishay.com .. dcrcw.pdf</description>
  1802. <wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="51"/>
  1803. <wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="51"/>
  1804. <rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="51"/>
  1805. <rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="51"/>
  1806. <smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1807. <smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
  1808. <text x="-2.54" y="2.54" size="1.27" layer="25">&gt;NAME</text>
  1809. <text x="-2.54" y="-3.81" size="1.27" layer="27">&gt;VALUE</text>
  1810. </package>
  1811. <package name="R2010" urn="urn:adsk.eagle:footprint:13241/1" library_version="1">
  1812. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1813. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1814. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1815. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1816. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1817. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1818. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1819. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1820. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1821. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1822. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1823. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1824. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1825. </package>
  1826. <package name="R2012" urn="urn:adsk.eagle:footprint:13242/1" library_version="1">
  1827. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1828. <wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="51"/>
  1829. <wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="51"/>
  1830. <wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
  1831. <wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
  1832. <wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
  1833. <wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
  1834. <rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="51"/>
  1835. <rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="51"/>
  1836. <rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
  1837. <smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1838. <smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
  1839. <text x="-0.635" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1840. <text x="-0.635" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1841. </package>
  1842. <package name="R2512" urn="urn:adsk.eagle:footprint:13243/1" library_version="1">
  1843. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1844. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1845. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1846. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1847. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1848. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1849. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1850. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1851. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1852. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1853. <smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1854. <smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
  1855. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1856. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1857. </package>
  1858. <package name="R3216" urn="urn:adsk.eagle:footprint:13244/1" library_version="1">
  1859. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1860. <wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/>
  1861. <wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/>
  1862. <wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
  1863. <wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
  1864. <wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
  1865. <wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
  1866. <rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/>
  1867. <rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/>
  1868. <rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
  1869. <smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1870. <smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
  1871. <text x="-1.905" y="1.27" size="1.27" layer="25">&gt;NAME</text>
  1872. <text x="-1.905" y="-2.54" size="1.27" layer="27">&gt;VALUE</text>
  1873. </package>
  1874. <package name="R3225" urn="urn:adsk.eagle:footprint:13245/1" library_version="1">
  1875. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1876. <wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="51"/>
  1877. <wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="51"/>
  1878. <wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
  1879. <wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
  1880. <wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
  1881. <wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
  1882. <rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="51"/>
  1883. <rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="51"/>
  1884. <rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
  1885. <smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1886. <smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
  1887. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1888. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1889. </package>
  1890. <package name="R4527" urn="urn:adsk.eagle:footprint:13246/1" library_version="1">
  1891. <description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;
  1892. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  1893. <wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
  1894. <wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="51"/>
  1895. <wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
  1896. <wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="51"/>
  1897. <smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  1898. <smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
  1899. <text x="-5.715" y="3.81" size="1.27" layer="25">&gt;NAME</text>
  1900. <text x="-5.715" y="-5.08" size="1.27" layer="27">&gt;VALUE</text>
  1901. </package>
  1902. <package name="R5025" urn="urn:adsk.eagle:footprint:13247/1" library_version="1">
  1903. <description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>
  1904. <wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="51"/>
  1905. <wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="51"/>
  1906. <wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
  1907. <wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
  1908. <wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
  1909. <wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
  1910. <rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
  1911. <rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
  1912. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1913. <smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1914. <smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
  1915. <text x="-3.175" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1916. <text x="-3.175" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1917. </package>
  1918. <package name="R6332" urn="urn:adsk.eagle:footprint:13248/1" library_version="1">
  1919. <description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;
  1920. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  1921. <wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
  1922. <wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
  1923. <wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
  1924. <wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
  1925. <wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
  1926. <wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
  1927. <rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
  1928. <rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
  1929. <rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
  1930. <smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1931. <smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
  1932. <text x="-2.54" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  1933. <text x="-2.54" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  1934. </package>
  1935. </packages>
  1936. <packages3d>
  1937. <package3d name="0204/7" urn="urn:adsk.eagle:package:13274/1" type="box" library_version="1">
  1938. <description>RESISTOR
  1939. type 0204, grid 7.5 mm</description>
  1940. <packageinstances>
  1941. <packageinstance name="0204/7"/>
  1942. </packageinstances>
  1943. </package3d>
  1944. <package3d name="0207/10" urn="urn:adsk.eagle:package:13275/1" type="box" library_version="1">
  1945. <description>RESISTOR
  1946. type 0207, grid 10 mm</description>
  1947. <packageinstances>
  1948. <packageinstance name="0207/10"/>
  1949. </packageinstances>
  1950. </package3d>
  1951. <package3d name="R0201" urn="urn:adsk.eagle:package:13294/1" type="box" library_version="1">
  1952. <description>RESISTOR chip
  1953. Source: http://www.vishay.com/docs/20008/dcrcw.pdf</description>
  1954. <packageinstances>
  1955. <packageinstance name="R0201"/>
  1956. </packageinstances>
  1957. </package3d>
  1958. <package3d name="R0402" urn="urn:adsk.eagle:package:13296/1" type="box" library_version="1">
  1959. <description>RESISTOR</description>
  1960. <packageinstances>
  1961. <packageinstance name="R0402"/>
  1962. </packageinstances>
  1963. </package3d>
  1964. <package3d name="R0603" urn="urn:adsk.eagle:package:13302/1" type="box" library_version="1">
  1965. <description>RESISTOR</description>
  1966. <packageinstances>
  1967. <packageinstance name="R0603"/>
  1968. </packageinstances>
  1969. </package3d>
  1970. <package3d name="R0805" urn="urn:adsk.eagle:package:13300/1" type="box" library_version="1">
  1971. <description>RESISTOR</description>
  1972. <packageinstances>
  1973. <packageinstance name="R0805"/>
  1974. </packageinstances>
  1975. </package3d>
  1976. <package3d name="R1005" urn="urn:adsk.eagle:package:13297/1" type="box" library_version="1">
  1977. <description>RESISTOR</description>
  1978. <packageinstances>
  1979. <packageinstance name="R1005"/>
  1980. </packageinstances>
  1981. </package3d>
  1982. <package3d name="R1206" urn="urn:adsk.eagle:package:13301/1" type="box" library_version="1">
  1983. <description>RESISTOR</description>
  1984. <packageinstances>
  1985. <packageinstance name="R1206"/>
  1986. </packageinstances>
  1987. </package3d>
  1988. <package3d name="R1210" urn="urn:adsk.eagle:package:13299/1" type="box" library_version="1">
  1989. <description>RESISTOR</description>
  1990. <packageinstances>
  1991. <packageinstance name="R1210"/>
  1992. </packageinstances>
  1993. </package3d>
  1994. <package3d name="R1218" urn="urn:adsk.eagle:package:13303/1" type="box" library_version="1">
  1995. <description>CRCW1218 Thick Film, Rectangular Chip Resistors
  1996. Source: http://www.vishay.com .. dcrcw.pdf</description>
  1997. <packageinstances>
  1998. <packageinstance name="R1218"/>
  1999. </packageinstances>
  2000. </package3d>
  2001. <package3d name="R2010" urn="urn:adsk.eagle:package:13309/1" type="box" library_version="1">
  2002. <description>RESISTOR</description>
  2003. <packageinstances>
  2004. <packageinstance name="R2010"/>
  2005. </packageinstances>
  2006. </package3d>
  2007. <package3d name="R2012" urn="urn:adsk.eagle:package:13306/1" type="box" library_version="1">
  2008. <description>RESISTOR</description>
  2009. <packageinstances>
  2010. <packageinstance name="R2012"/>
  2011. </packageinstances>
  2012. </package3d>
  2013. <package3d name="R2512" urn="urn:adsk.eagle:package:13304/1" type="box" library_version="1">
  2014. <description>RESISTOR</description>
  2015. <packageinstances>
  2016. <packageinstance name="R2512"/>
  2017. </packageinstances>
  2018. </package3d>
  2019. <package3d name="R3216" urn="urn:adsk.eagle:package:13305/1" type="box" library_version="1">
  2020. <description>RESISTOR</description>
  2021. <packageinstances>
  2022. <packageinstance name="R3216"/>
  2023. </packageinstances>
  2024. </package3d>
  2025. <package3d name="R3225" urn="urn:adsk.eagle:package:13311/1" type="box" library_version="1">
  2026. <description>RESISTOR</description>
  2027. <packageinstances>
  2028. <packageinstance name="R3225"/>
  2029. </packageinstances>
  2030. </package3d>
  2031. <package3d name="R5025" urn="urn:adsk.eagle:package:13308/1" type="box" library_version="1">
  2032. <description>RESISTOR</description>
  2033. <packageinstances>
  2034. <packageinstance name="R5025"/>
  2035. </packageinstances>
  2036. </package3d>
  2037. <package3d name="R6332" urn="urn:adsk.eagle:package:13307/1" type="box" library_version="1">
  2038. <description>RESISTOR
  2039. Source: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>
  2040. <packageinstances>
  2041. <packageinstance name="R6332"/>
  2042. </packageinstances>
  2043. </package3d>
  2044. <package3d name="R4527" urn="urn:adsk.eagle:package:13310/2" type="model" library_version="3">
  2045. <description>Package 4527
  2046. Source: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>
  2047. <packageinstances>
  2048. <packageinstance name="R4527"/>
  2049. </packageinstances>
  2050. </package3d>
  2051. </packages3d>
  2052. <symbols>
  2053. <symbol name="R" urn="urn:adsk.eagle:symbol:13232/1" library_version="1">
  2054. <wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
  2055. <wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2056. <wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
  2057. <wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
  2058. <pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  2059. <pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
  2060. <text x="-3.81" y="1.4986" size="1.778" layer="95">&gt;NAME</text>
  2061. <text x="-3.81" y="-3.302" size="1.778" layer="96">&gt;VALUE</text>
  2062. <text x="-5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 1</text>
  2063. <text x="5.08" y="0" size="0.4064" layer="99" align="center">SpiceOrder 2</text>
  2064. </symbol>
  2065. </symbols>
  2066. <devicesets>
  2067. <deviceset name="R" urn="urn:adsk.eagle:component:13322/2" prefix="R" uservalue="yes" library_version="3">
  2068. <description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>
  2069. <gates>
  2070. <gate name="G$1" symbol="R" x="0" y="0"/>
  2071. </gates>
  2072. <devices>
  2073. <device name="0204/7" package="0204/7">
  2074. <connects>
  2075. <connect gate="G$1" pin="1" pad="1"/>
  2076. <connect gate="G$1" pin="2" pad="2"/>
  2077. </connects>
  2078. <package3dinstances>
  2079. <package3dinstance package3d_urn="urn:adsk.eagle:package:13274/1"/>
  2080. </package3dinstances>
  2081. <technologies>
  2082. <technology name="">
  2083. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2084. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2085. </technology>
  2086. </technologies>
  2087. </device>
  2088. <device name="0207/10" package="0207/10">
  2089. <connects>
  2090. <connect gate="G$1" pin="1" pad="1"/>
  2091. <connect gate="G$1" pin="2" pad="2"/>
  2092. </connects>
  2093. <package3dinstances>
  2094. <package3dinstance package3d_urn="urn:adsk.eagle:package:13275/1"/>
  2095. </package3dinstances>
  2096. <technologies>
  2097. <technology name="">
  2098. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2099. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2100. </technology>
  2101. </technologies>
  2102. </device>
  2103. <device name="R0201" package="R0201">
  2104. <connects>
  2105. <connect gate="G$1" pin="1" pad="1"/>
  2106. <connect gate="G$1" pin="2" pad="2"/>
  2107. </connects>
  2108. <package3dinstances>
  2109. <package3dinstance package3d_urn="urn:adsk.eagle:package:13294/1"/>
  2110. </package3dinstances>
  2111. <technologies>
  2112. <technology name="">
  2113. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2114. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2115. </technology>
  2116. </technologies>
  2117. </device>
  2118. <device name="R0402" package="R0402">
  2119. <connects>
  2120. <connect gate="G$1" pin="1" pad="1"/>
  2121. <connect gate="G$1" pin="2" pad="2"/>
  2122. </connects>
  2123. <package3dinstances>
  2124. <package3dinstance package3d_urn="urn:adsk.eagle:package:13296/1"/>
  2125. </package3dinstances>
  2126. <technologies>
  2127. <technology name="">
  2128. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2129. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2130. </technology>
  2131. </technologies>
  2132. </device>
  2133. <device name="R0603" package="R0603">
  2134. <connects>
  2135. <connect gate="G$1" pin="1" pad="1"/>
  2136. <connect gate="G$1" pin="2" pad="2"/>
  2137. </connects>
  2138. <package3dinstances>
  2139. <package3dinstance package3d_urn="urn:adsk.eagle:package:13302/1"/>
  2140. </package3dinstances>
  2141. <technologies>
  2142. <technology name="">
  2143. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2144. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2145. </technology>
  2146. </technologies>
  2147. </device>
  2148. <device name="" package="R0805">
  2149. <connects>
  2150. <connect gate="G$1" pin="1" pad="1"/>
  2151. <connect gate="G$1" pin="2" pad="2"/>
  2152. </connects>
  2153. <package3dinstances>
  2154. <package3dinstance package3d_urn="urn:adsk.eagle:package:13300/1"/>
  2155. </package3dinstances>
  2156. <technologies>
  2157. <technology name="">
  2158. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2159. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2160. </technology>
  2161. </technologies>
  2162. </device>
  2163. <device name="R1005" package="R1005">
  2164. <connects>
  2165. <connect gate="G$1" pin="1" pad="1"/>
  2166. <connect gate="G$1" pin="2" pad="2"/>
  2167. </connects>
  2168. <package3dinstances>
  2169. <package3dinstance package3d_urn="urn:adsk.eagle:package:13297/1"/>
  2170. </package3dinstances>
  2171. <technologies>
  2172. <technology name="">
  2173. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2174. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2175. </technology>
  2176. </technologies>
  2177. </device>
  2178. <device name="R1206" package="R1206">
  2179. <connects>
  2180. <connect gate="G$1" pin="1" pad="1"/>
  2181. <connect gate="G$1" pin="2" pad="2"/>
  2182. </connects>
  2183. <package3dinstances>
  2184. <package3dinstance package3d_urn="urn:adsk.eagle:package:13301/1"/>
  2185. </package3dinstances>
  2186. <technologies>
  2187. <technology name="">
  2188. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2189. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2190. </technology>
  2191. </technologies>
  2192. </device>
  2193. <device name="R1210" package="R1210">
  2194. <connects>
  2195. <connect gate="G$1" pin="1" pad="1"/>
  2196. <connect gate="G$1" pin="2" pad="2"/>
  2197. </connects>
  2198. <package3dinstances>
  2199. <package3dinstance package3d_urn="urn:adsk.eagle:package:13299/1"/>
  2200. </package3dinstances>
  2201. <technologies>
  2202. <technology name="">
  2203. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2204. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2205. </technology>
  2206. </technologies>
  2207. </device>
  2208. <device name="R1218" package="R1218">
  2209. <connects>
  2210. <connect gate="G$1" pin="1" pad="1"/>
  2211. <connect gate="G$1" pin="2" pad="2"/>
  2212. </connects>
  2213. <package3dinstances>
  2214. <package3dinstance package3d_urn="urn:adsk.eagle:package:13303/1"/>
  2215. </package3dinstances>
  2216. <technologies>
  2217. <technology name="">
  2218. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2219. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2220. </technology>
  2221. </technologies>
  2222. </device>
  2223. <device name="R2010" package="R2010">
  2224. <connects>
  2225. <connect gate="G$1" pin="1" pad="1"/>
  2226. <connect gate="G$1" pin="2" pad="2"/>
  2227. </connects>
  2228. <package3dinstances>
  2229. <package3dinstance package3d_urn="urn:adsk.eagle:package:13309/1"/>
  2230. </package3dinstances>
  2231. <technologies>
  2232. <technology name="">
  2233. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2234. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2235. </technology>
  2236. </technologies>
  2237. </device>
  2238. <device name="R2012" package="R2012">
  2239. <connects>
  2240. <connect gate="G$1" pin="1" pad="1"/>
  2241. <connect gate="G$1" pin="2" pad="2"/>
  2242. </connects>
  2243. <package3dinstances>
  2244. <package3dinstance package3d_urn="urn:adsk.eagle:package:13306/1"/>
  2245. </package3dinstances>
  2246. <technologies>
  2247. <technology name="">
  2248. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2249. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2250. </technology>
  2251. </technologies>
  2252. </device>
  2253. <device name="R2512" package="R2512">
  2254. <connects>
  2255. <connect gate="G$1" pin="1" pad="1"/>
  2256. <connect gate="G$1" pin="2" pad="2"/>
  2257. </connects>
  2258. <package3dinstances>
  2259. <package3dinstance package3d_urn="urn:adsk.eagle:package:13304/1"/>
  2260. </package3dinstances>
  2261. <technologies>
  2262. <technology name="">
  2263. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2264. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2265. </technology>
  2266. </technologies>
  2267. </device>
  2268. <device name="R3216" package="R3216">
  2269. <connects>
  2270. <connect gate="G$1" pin="1" pad="1"/>
  2271. <connect gate="G$1" pin="2" pad="2"/>
  2272. </connects>
  2273. <package3dinstances>
  2274. <package3dinstance package3d_urn="urn:adsk.eagle:package:13305/1"/>
  2275. </package3dinstances>
  2276. <technologies>
  2277. <technology name="">
  2278. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2279. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2280. </technology>
  2281. </technologies>
  2282. </device>
  2283. <device name="R3225" package="R3225">
  2284. <connects>
  2285. <connect gate="G$1" pin="1" pad="1"/>
  2286. <connect gate="G$1" pin="2" pad="2"/>
  2287. </connects>
  2288. <package3dinstances>
  2289. <package3dinstance package3d_urn="urn:adsk.eagle:package:13311/1"/>
  2290. </package3dinstances>
  2291. <technologies>
  2292. <technology name="">
  2293. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2294. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2295. </technology>
  2296. </technologies>
  2297. </device>
  2298. <device name="R4527" package="R4527">
  2299. <connects>
  2300. <connect gate="G$1" pin="1" pad="1"/>
  2301. <connect gate="G$1" pin="2" pad="2"/>
  2302. </connects>
  2303. <package3dinstances>
  2304. <package3dinstance package3d_urn="urn:adsk.eagle:package:13310/2"/>
  2305. </package3dinstances>
  2306. <technologies>
  2307. <technology name="">
  2308. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2309. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2310. </technology>
  2311. </technologies>
  2312. </device>
  2313. <device name="R5025" package="R5025">
  2314. <connects>
  2315. <connect gate="G$1" pin="1" pad="1"/>
  2316. <connect gate="G$1" pin="2" pad="2"/>
  2317. </connects>
  2318. <package3dinstances>
  2319. <package3dinstance package3d_urn="urn:adsk.eagle:package:13308/1"/>
  2320. </package3dinstances>
  2321. <technologies>
  2322. <technology name="">
  2323. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2324. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2325. </technology>
  2326. </technologies>
  2327. </device>
  2328. <device name="R6332" package="R6332">
  2329. <connects>
  2330. <connect gate="G$1" pin="1" pad="1"/>
  2331. <connect gate="G$1" pin="2" pad="2"/>
  2332. </connects>
  2333. <package3dinstances>
  2334. <package3dinstance package3d_urn="urn:adsk.eagle:package:13307/1"/>
  2335. </package3dinstances>
  2336. <technologies>
  2337. <technology name="">
  2338. <attribute name="SPICEMODEL" value="NONE" constant="no"/>
  2339. <attribute name="SPICEPREFIX" value="R" constant="no"/>
  2340. </technology>
  2341. </technologies>
  2342. </device>
  2343. </devices>
  2344. </deviceset>
  2345. </devicesets>
  2346. </library>
  2347. <library name="supply1" urn="urn:adsk.eagle:library:371">
  2348. <description>&lt;b&gt;Supply Symbols&lt;/b&gt;&lt;p&gt;
  2349. GND, VCC, 0V, +5V, -5V, etc.&lt;p&gt;
  2350. Please keep in mind, that these devices are necessary for the
  2351. automatic wiring of the supply signals.&lt;p&gt;
  2352. The pin name defined in the symbol is identical to the net which is to be wired automatically.&lt;p&gt;
  2353. In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.&lt;p&gt;
  2354. &lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>
  2355. <packages>
  2356. </packages>
  2357. <symbols>
  2358. <symbol name="GND" urn="urn:adsk.eagle:symbol:26925/1" library_version="1">
  2359. <wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
  2360. <text x="-2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  2361. <pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
  2362. </symbol>
  2363. </symbols>
  2364. <devicesets>
  2365. <deviceset name="GND" urn="urn:adsk.eagle:component:26954/1" prefix="GND" library_version="1">
  2366. <description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>
  2367. <gates>
  2368. <gate name="1" symbol="GND" x="0" y="0"/>
  2369. </gates>
  2370. <devices>
  2371. <device name="">
  2372. <technologies>
  2373. <technology name=""/>
  2374. </technologies>
  2375. </device>
  2376. </devices>
  2377. </deviceset>
  2378. </devicesets>
  2379. </library>
  2380. <library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513">
  2381. <description>&lt;h3&gt;SparkFun Connectors&lt;/h3&gt;
  2382. This library contains electrically-functional connectors.
  2383. &lt;br&gt;
  2384. &lt;br&gt;
  2385. We've spent an enormous amount of time creating and checking these footprints and parts, but it is &lt;b&gt; the end user's responsibility&lt;/b&gt; to ensure correctness and suitablity for a given componet or application.
  2386. &lt;br&gt;
  2387. &lt;br&gt;If you enjoy using this library, please buy one of our products at &lt;a href=" www.sparkfun.com"&gt;SparkFun.com&lt;/a&gt;.
  2388. &lt;br&gt;
  2389. &lt;br&gt;
  2390. &lt;b&gt;Licensing:&lt;/b&gt; Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/
  2391. &lt;br&gt;
  2392. &lt;br&gt;
  2393. You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
  2394. <packages>
  2395. <package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1">
  2396. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2397. &lt;p&gt;Specifications:
  2398. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2399. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2400. &lt;/ul&gt;&lt;/p&gt;
  2401. &lt;p&gt;Example device(s):
  2402. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2403. &lt;/ul&gt;&lt;/p&gt;</description>
  2404. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2405. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2406. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2407. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2408. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2409. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2410. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2411. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2412. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2413. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2414. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2415. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2416. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2417. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2418. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2419. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2420. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2421. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2422. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2423. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2424. </package>
  2425. <package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1">
  2426. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole&lt;/h3&gt;
  2427. &lt;p&gt;Specifications:
  2428. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2429. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2430. &lt;/ul&gt;&lt;/p&gt;
  2431. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2432. &lt;p&gt;Example device(s):
  2433. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2434. &lt;/ul&gt;&lt;/p&gt;</description>
  2435. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2436. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2437. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2438. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2439. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2440. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2441. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2442. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2443. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2444. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2445. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  2446. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2447. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2448. </package>
  2449. <package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1">
  2450. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH&lt;/h3&gt;
  2451. &lt;p&gt;Specifications:
  2452. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2453. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2454. &lt;/ul&gt;&lt;/p&gt;
  2455. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2456. &lt;p&gt;Example device(s):
  2457. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2458. &lt;/ul&gt;&lt;/p&gt;</description>
  2459. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2460. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2461. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2462. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2463. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2464. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2465. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2466. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2467. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  2468. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  2469. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2470. <wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/>
  2471. <wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/>
  2472. <wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2473. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2474. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2475. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2476. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2477. </package>
  2478. <package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1">
  2479. <description>&lt;h3&gt;JST-Right Angle Male Header SMT&lt;/h3&gt;
  2480. &lt;p&gt;Specifications:
  2481. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2482. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2483. &lt;/ul&gt;&lt;/p&gt;
  2484. &lt;p&gt;&lt;a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2485. &lt;p&gt;Example device(s):
  2486. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2487. &lt;li&gt;JST_2MM_MALE&lt;/li&gt;
  2488. &lt;/ul&gt;&lt;/p&gt;</description>
  2489. <wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/>
  2490. <wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/>
  2491. <wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/>
  2492. <wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/>
  2493. <wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/>
  2494. <wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/>
  2495. <wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/>
  2496. <wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/>
  2497. <wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/>
  2498. <smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2499. <smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/>
  2500. <smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2501. <smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/>
  2502. <text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2503. <text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2504. </package>
  2505. <package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1">
  2506. <description>&lt;h3&gt;Plated Through Hole&lt;/h3&gt;
  2507. &lt;p&gt;Specifications:
  2508. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2509. &lt;li&gt;Pin pitch:0.15"&lt;/li&gt;
  2510. &lt;/ul&gt;&lt;/p&gt;
  2511. &lt;p&gt;Example device(s):
  2512. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2513. &lt;/ul&gt;&lt;/p&gt;</description>
  2514. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/>
  2515. <wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
  2516. <wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/>
  2517. <wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/>
  2518. <pad name="P$1" x="0" y="0" drill="1.0668"/>
  2519. <pad name="P$2" x="3.81" y="0" drill="1.0668"/>
  2520. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2521. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2522. </package>
  2523. <package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1">
  2524. <description>&lt;h3&gt;JST-Vertical Male Header SMT &lt;/h3&gt;
  2525. &lt;p&gt;Specifications:
  2526. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2527. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  2528. &lt;/ul&gt;&lt;/p&gt;
  2529. &lt;p&gt;&lt;a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2530. &lt;p&gt;Example device(s):
  2531. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2532. &lt;/ul&gt;&lt;/p&gt;</description>
  2533. <wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/>
  2534. <wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/>
  2535. <wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/>
  2536. <wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/>
  2537. <wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/>
  2538. <wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/>
  2539. <wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/>
  2540. <wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/>
  2541. <wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/>
  2542. <wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/>
  2543. <wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/>
  2544. <smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2545. <smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/>
  2546. <smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/>
  2547. <smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/>
  2548. <text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2549. <text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2550. </package>
  2551. <package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1">
  2552. <description>&lt;h3&gt;Screw Terminal 5mm Pitch -2 Pin PTH&lt;/h3&gt;
  2553. &lt;p&gt;Specifications:
  2554. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2555. &lt;li&gt;Pin pitch: 5mm/197mil&lt;/li&gt;
  2556. &lt;/ul&gt;&lt;/p&gt;
  2557. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2558. &lt;p&gt;Example device(s):
  2559. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2560. &lt;/ul&gt;&lt;/p&gt;</description>
  2561. <wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/>
  2562. <wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/>
  2563. <wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/>
  2564. <wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
  2565. <wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2566. <wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
  2567. <wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
  2568. <wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/>
  2569. <wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/>
  2570. <wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/>
  2571. <wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/>
  2572. <wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/>
  2573. <wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/>
  2574. <circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/>
  2575. <pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/>
  2576. <pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/>
  2577. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2578. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2579. </package>
  2580. <package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1">
  2581. <description>&lt;h3&gt;Plated Through Hole - Locking Footprint&lt;/h3&gt;
  2582. Holes are staggered by 0.005" from center to hold pins while soldering.
  2583. &lt;p&gt;Specifications:
  2584. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2585. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2586. &lt;/ul&gt;&lt;/p&gt;
  2587. &lt;p&gt;Example device(s):
  2588. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2589. &lt;/ul&gt;&lt;/p&gt;</description>
  2590. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2591. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2592. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2593. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2594. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2595. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2596. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2597. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2598. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  2599. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  2600. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  2601. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2602. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  2603. <wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2604. <pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2605. <pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2606. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2607. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2608. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2609. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2610. </package>
  2611. <package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1">
  2612. <description>&lt;h3&gt;Molex 2-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  2613. Holes are offset from center by 0.005" to hold pins in place during soldering.
  2614. &lt;p&gt;Specifications:
  2615. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2616. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2617. &lt;/ul&gt;&lt;/p&gt;
  2618. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2619. &lt;p&gt;Example device(s):
  2620. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2621. &lt;/ul&gt;&lt;/p&gt;</description>
  2622. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2623. <wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/>
  2624. <wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  2625. <wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2626. <wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  2627. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  2628. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  2629. <wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/>
  2630. <wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/>
  2631. <pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  2632. <pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/>
  2633. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2634. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2635. <text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2636. <text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">&gt;VALUE</text>
  2637. </package>
  2638. <package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1">
  2639. <description>&lt;h3&gt;Plated Through Hole - Long Pads with Locking Footprint&lt;/h3&gt;
  2640. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  2641. &lt;p&gt;Specifications:
  2642. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2643. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2644. &lt;/ul&gt;&lt;/p&gt;
  2645. &lt;p&gt;Example device(s):
  2646. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2647. &lt;/ul&gt;&lt;/p&gt;</description>
  2648. <wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/>
  2649. <wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
  2650. <wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
  2651. <wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
  2652. <wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
  2653. <wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
  2654. <wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
  2655. <wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/>
  2656. <wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/>
  2657. <wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/>
  2658. <wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/>
  2659. <pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/>
  2660. <pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/>
  2661. <rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/>
  2662. <rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/>
  2663. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2664. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2665. </package>
  2666. <package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1">
  2667. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking&lt;/h3&gt;
  2668. Holes are offset from center 0.005" to hold pins in place during soldering.
  2669. &lt;p&gt;Specifications:
  2670. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2671. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2672. &lt;/ul&gt;&lt;/p&gt;
  2673. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2674. &lt;p&gt;Example device(s):
  2675. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2676. &lt;/ul&gt;&lt;/p&gt;</description>
  2677. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/>
  2678. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/>
  2679. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/>
  2680. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  2681. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2682. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  2683. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  2684. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2685. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2686. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2687. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2688. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2689. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2690. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2691. <circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2692. <circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/>
  2693. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2694. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  2695. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2696. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2697. </package>
  2698. <package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1">
  2699. <description>&lt;h3&gt;Plated Through Hole - Long Pads without Silk Outline&lt;/h3&gt;
  2700. &lt;p&gt;Specifications:
  2701. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2702. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2703. &lt;/ul&gt;&lt;/p&gt;
  2704. &lt;p&gt;Example device(s):
  2705. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2706. &lt;/ul&gt;&lt;/p&gt;</description>
  2707. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2708. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  2709. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2710. <text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2711. </package>
  2712. <package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1">
  2713. <description>&lt;h3&gt;Plated Through Hole - No Silk Outline&lt;/h3&gt;
  2714. &lt;p&gt;Specifications:
  2715. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2716. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2717. &lt;/ul&gt;&lt;/p&gt;
  2718. &lt;p&gt;Example device(s):
  2719. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2720. &lt;/ul&gt;&lt;/p&gt;</description>
  2721. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2722. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  2723. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  2724. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  2725. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2726. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2727. </package>
  2728. <package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1">
  2729. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole&lt;/h3&gt;
  2730. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2731. &lt;p&gt;Specifications:
  2732. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2733. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2734. &lt;/ul&gt;&lt;/p&gt;
  2735. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2736. &lt;p&gt;Example device(s):
  2737. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2738. &lt;/ul&gt;&lt;/p&gt;</description>
  2739. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2740. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2741. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2742. <text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2743. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2744. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2745. <wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/>
  2746. <wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/>
  2747. <wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/>
  2748. <wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/>
  2749. <wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/>
  2750. <wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/>
  2751. <wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/>
  2752. </package>
  2753. <package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1">
  2754. <description>&lt;h3&gt;Plated Through Hole - 0.1" holes&lt;/h3&gt;
  2755. &lt;p&gt;Specifications:
  2756. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2757. &lt;li&gt;Pin pitch:0.2"&lt;/li&gt;
  2758. &lt;/ul&gt;&lt;/p&gt;
  2759. &lt;p&gt;Example device(s):
  2760. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2761. &lt;/ul&gt;&lt;/p&gt;</description>
  2762. <wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/>
  2763. <wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
  2764. <wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/>
  2765. <wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/>
  2766. <pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/>
  2767. <pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/>
  2768. <text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2769. <text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2770. </package>
  2771. <package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1">
  2772. <description>&lt;h3&gt;Pogo Pins Connector - No Silk Outline&lt;/h3&gt;
  2773. &lt;p&gt;Specifications:
  2774. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2775. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2776. &lt;/ul&gt;&lt;/p&gt;
  2777. &lt;p&gt;Example device(s):
  2778. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2779. &lt;/ul&gt;&lt;/p&gt;</description>
  2780. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  2781. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  2782. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2783. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  2784. <hole x="0" y="0" drill="1.4732"/>
  2785. <hole x="2.54" y="0" drill="1.4732"/>
  2786. <text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2787. <text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2788. </package>
  2789. <package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1">
  2790. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline&lt;/h3&gt;
  2791. &lt;p&gt;Specifications:
  2792. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2793. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  2794. &lt;/ul&gt;&lt;/p&gt;
  2795. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2796. &lt;p&gt;Example device(s):
  2797. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2798. &lt;/ul&gt;&lt;/p&gt;</description>
  2799. <wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/>
  2800. <wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/>
  2801. <wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/>
  2802. <wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/>
  2803. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2804. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/>
  2805. <wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/>
  2806. <wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/>
  2807. <wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/>
  2808. <wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  2809. <wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/>
  2810. <wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/>
  2811. <wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/>
  2812. <circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/>
  2813. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  2814. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  2815. <text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2816. <text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2817. </package>
  2818. <package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1">
  2819. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole- No Silk&lt;/h3&gt;
  2820. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2821. &lt;br&gt; No silk outline of connector.
  2822. &lt;p&gt;Specifications:
  2823. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2824. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2825. &lt;/ul&gt;&lt;/p&gt;
  2826. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2827. &lt;p&gt;Example device(s):
  2828. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2829. &lt;/ul&gt;&lt;/p&gt;</description>
  2830. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  2831. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  2832. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  2833. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  2834. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  2835. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  2836. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  2837. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/>
  2838. <pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/>
  2839. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2840. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2841. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2842. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2843. </package>
  2844. <package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1">
  2845. <description>&lt;h3&gt;JST 2 Pin Right Angle Plated Through Hole - KIT&lt;/h3&gt;
  2846. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  2847. &lt;br&gt; This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  2848. &lt;br&gt; This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  2849. &lt;p&gt;Specifications:
  2850. &lt;ul&gt;&lt;li&gt;Pin count: 2&lt;/li&gt;
  2851. &lt;li&gt;Pin pitch:2mm&lt;/li&gt;
  2852. &lt;/ul&gt;&lt;/p&gt;
  2853. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2854. &lt;p&gt;Example device(s):
  2855. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2856. &lt;/ul&gt;&lt;/p&gt;</description>
  2857. <wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/>
  2858. <wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/>
  2859. <wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/>
  2860. <wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/>
  2861. <wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/>
  2862. <wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/>
  2863. <wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/>
  2864. <pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  2865. <pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/>
  2866. <text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">&gt;Name</text>
  2867. <text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">&gt;Value</text>
  2868. <text x="0.6" y="0.7" size="1.27" layer="51">+</text>
  2869. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  2870. <polygon width="0.127" layer="30">
  2871. <vertex x="-0.9975" y="-0.6604" curve="-90.025935"/>
  2872. <vertex x="-1.6604" y="0" curve="-90.017354"/>
  2873. <vertex x="-1" y="0.6604" curve="-90"/>
  2874. <vertex x="-0.3396" y="0" curve="-90.078137"/>
  2875. </polygon>
  2876. <polygon width="0.127" layer="29">
  2877. <vertex x="-1" y="-0.2865" curve="-90.08005"/>
  2878. <vertex x="-1.2865" y="0" curve="-90.040011"/>
  2879. <vertex x="-1" y="0.2865" curve="-90"/>
  2880. <vertex x="-0.7135" y="0" curve="-90"/>
  2881. </polygon>
  2882. <polygon width="0.127" layer="30">
  2883. <vertex x="1.0025" y="-0.6604" curve="-90.025935"/>
  2884. <vertex x="0.3396" y="0" curve="-90.017354"/>
  2885. <vertex x="1" y="0.6604" curve="-90"/>
  2886. <vertex x="1.6604" y="0" curve="-90.078137"/>
  2887. </polygon>
  2888. <polygon width="0.127" layer="29">
  2889. <vertex x="1" y="-0.2865" curve="-90.08005"/>
  2890. <vertex x="0.7135" y="0" curve="-90.040011"/>
  2891. <vertex x="1" y="0.2865" curve="-90"/>
  2892. <vertex x="1.2865" y="0" curve="-90"/>
  2893. </polygon>
  2894. </package>
  2895. <package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1">
  2896. <description>&lt;h3&gt;Spring Terminal- PCB Mount 2 Pin PTH&lt;/h3&gt;
  2897. tDocu marks the spring arms
  2898. &lt;p&gt;Specifications:
  2899. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  2900. &lt;li&gt;Pin pitch: 0.1"&lt;/li&gt;
  2901. &lt;/ul&gt;&lt;/p&gt;
  2902. &lt;p&gt;&lt;a href=”https://www.sparkfun.com/datasheets/Prototyping/SpringTerminal.pdf”&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/p&gt;
  2903. &lt;p&gt;Example device(s):
  2904. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2905. &lt;/ul&gt;&lt;/p&gt;</description>
  2906. <wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/>
  2907. <wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/>
  2908. <wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/>
  2909. <wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/>
  2910. <wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/>
  2911. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/>
  2912. <wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/>
  2913. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/>
  2914. <wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/>
  2915. <wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  2916. <wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/>
  2917. <wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/>
  2918. <wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/>
  2919. <pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/>
  2920. <pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/>
  2921. <pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/>
  2922. <pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/>
  2923. </package>
  2924. <package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1">
  2925. <description>&lt;h3&gt;2 Pin Screw Terminal - 2.54mm&lt;/h3&gt;
  2926. &lt;p&gt;Specifications:
  2927. &lt;ul&gt;&lt;li&gt;Pin count:2&lt;/li&gt;
  2928. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2929. &lt;/ul&gt;&lt;/p&gt;
  2930. &lt;p&gt;Example device(s):
  2931. &lt;ul&gt;&lt;li&gt;CONN_02&lt;/li&gt;
  2932. &lt;/ul&gt;&lt;/p&gt;</description>
  2933. <pad name="P2" x="0" y="0" drill="1.016" shape="square"/>
  2934. <pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/>
  2935. <wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/>
  2936. <wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/>
  2937. <wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/>
  2938. <wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/>
  2939. <wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/>
  2940. <wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/>
  2941. <wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
  2942. <text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2943. <text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2944. </package>
  2945. <package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1">
  2946. <description>2 pin poke-home connector
  2947. part number 2062-2P from STA</description>
  2948. <wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/>
  2949. <wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/>
  2950. <wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/>
  2951. <wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/>
  2952. <wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/>
  2953. <smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/>
  2954. <smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/>
  2955. <smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/>
  2956. <smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/>
  2957. <text x="0.635" y="-3.175" size="0.4064" layer="25">&gt;NAME</text>
  2958. <text x="0.635" y="-1.905" size="0.4064" layer="27">&gt;VALUE</text>
  2959. </package>
  2960. <package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1">
  2961. <wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/>
  2962. <wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  2963. <wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/>
  2964. <wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/>
  2965. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  2966. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  2967. <pad name="2" x="-1.27" y="-5.85" drill="0.8"/>
  2968. <pad name="1" x="1.27" y="-5.85" drill="0.8"/>
  2969. </package>
  2970. <package name="1X04" urn="urn:adsk.eagle:footprint:37702/1" library_version="1">
  2971. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  2972. &lt;p&gt;Specifications:
  2973. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  2974. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  2975. &lt;/ul&gt;&lt;/p&gt;
  2976. &lt;p&gt;Example device(s):
  2977. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  2978. &lt;/ul&gt;&lt;/p&gt;</description>
  2979. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  2980. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  2981. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  2982. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  2983. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  2984. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  2985. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  2986. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  2987. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  2988. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  2989. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  2990. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  2991. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  2992. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  2993. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  2994. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  2995. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  2996. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  2997. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  2998. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  2999. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3000. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3001. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3002. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3003. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3004. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3005. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3006. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3007. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3008. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3009. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3010. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3011. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3012. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3013. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3014. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3015. </package>
  3016. <package name="MOLEX-1X4" urn="urn:adsk.eagle:footprint:37703/1" library_version="1">
  3017. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole&lt;/h3&gt;
  3018. &lt;p&gt;Specifications:
  3019. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3020. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3021. &lt;/ul&gt;&lt;/p&gt;
  3022. &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;
  3023. &lt;p&gt;Example device(s):
  3024. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3025. &lt;/ul&gt;&lt;/p&gt;</description>
  3026. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3027. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3028. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3029. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3030. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3031. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3032. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3033. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3034. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3035. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
  3036. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3037. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3038. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3039. <text x="2.286" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3040. <text x="2.286" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3041. </package>
  3042. <package name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:footprint:37704/1" library_version="1">
  3043. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH&lt;/h3&gt;
  3044. &lt;p&gt;Specifications:
  3045. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3046. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3047. &lt;/ul&gt;&lt;/p&gt;
  3048. &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;
  3049. &lt;p&gt;Example device(s):
  3050. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3051. &lt;/ul&gt;&lt;/p&gt;</description>
  3052. <wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/>
  3053. <wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/>
  3054. <wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/>
  3055. <wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3056. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3057. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3058. <wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3059. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3060. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3061. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3062. <wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="51"/>
  3063. <wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="51"/>
  3064. <wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="51"/>
  3065. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3066. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3067. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3068. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3069. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3070. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3071. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3072. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3073. <text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3074. <text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3075. </package>
  3076. <package name="1X04_1.27MM" urn="urn:adsk.eagle:footprint:37705/1" library_version="1">
  3077. <description>&lt;h3&gt;Plated Through Hole - 4 Pin&lt;/h3&gt;
  3078. &lt;p&gt;Specifications:
  3079. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3080. &lt;li&gt;Pin pitch: 1.27mm&lt;/li&gt;
  3081. &lt;/ul&gt;&lt;/p&gt;
  3082. &lt;p&gt;Example device(s):
  3083. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3084. &lt;/ul&gt;&lt;/p&gt;</description>
  3085. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  3086. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  3087. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  3088. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  3089. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  3090. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  3091. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  3092. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  3093. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  3094. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3095. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  3096. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  3097. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  3098. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  3099. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  3100. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  3101. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  3102. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  3103. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  3104. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  3105. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  3106. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  3107. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  3108. <wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/>
  3109. <wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/>
  3110. <wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  3111. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  3112. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  3113. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  3114. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  3115. <text x="-0.508" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3116. <text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3117. </package>
  3118. <package name="1X04_LOCK" urn="urn:adsk.eagle:footprint:37706/1" library_version="1">
  3119. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Locking Footprint&lt;/h3&gt;
  3120. Pins are offset 0.005" from center to lock pins in place during soldering.
  3121. &lt;p&gt;Specifications:
  3122. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3123. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3124. &lt;/ul&gt;&lt;/p&gt;
  3125. &lt;p&gt;Example device(s):
  3126. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3127. &lt;/ul&gt;&lt;/p&gt;</description>
  3128. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3129. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3130. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3131. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3132. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3133. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3134. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3135. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3136. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3137. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3138. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3139. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3140. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3141. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3142. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3143. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3144. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3145. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3146. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3147. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3148. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3149. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3150. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3151. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3152. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3153. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3154. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3155. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3156. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3157. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
  3158. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3159. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3160. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3161. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3162. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3163. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3164. </package>
  3165. <package name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37707/1" library_version="1">
  3166. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint&lt;/h3&gt;
  3167. Holes are offset 0.005" from center to lock pins in place during soldering.
  3168. &lt;p&gt;Specifications:
  3169. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3170. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3171. &lt;/ul&gt;&lt;/p&gt;
  3172. &lt;p&gt;Example device(s):
  3173. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3174. &lt;/ul&gt;&lt;/p&gt;</description>
  3175. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  3176. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  3177. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  3178. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  3179. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  3180. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  3181. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  3182. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  3183. <wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  3184. <wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/>
  3185. <wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/>
  3186. <wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/>
  3187. <wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/>
  3188. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  3189. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3190. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  3191. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3192. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3193. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3194. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3195. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  3196. <text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3197. <text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3198. </package>
  3199. <package name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:footprint:37708/1" library_version="1">
  3200. <description>&lt;h3&gt;Molex 4-Pin Plated Through-Hole Locking&lt;/h3&gt;
  3201. Holes are offset 0.005" from center to hold pins in place during soldering.
  3202. &lt;p&gt;Specifications:
  3203. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3204. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3205. &lt;/ul&gt;&lt;/p&gt;
  3206. &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;
  3207. &lt;p&gt;Example device(s):
  3208. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3209. &lt;/ul&gt;&lt;/p&gt;</description>
  3210. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3211. <wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
  3212. <wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3213. <wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3214. <wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3215. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3216. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3217. <wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
  3218. <wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
  3219. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
  3220. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  3221. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  3222. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  3223. <text x="2.667" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3224. <text x="2.032" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3225. </package>
  3226. <package name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37709/1" library_version="1">
  3227. <description>&lt;h3&gt;SMD - 4 Pin Right Angle Male Header&lt;/h3&gt;
  3228. tDocu layer shows pin locations.
  3229. &lt;p&gt;Specifications:
  3230. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3231. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3232. &lt;/ul&gt;&lt;/p&gt;
  3233. &lt;p&gt;Example device(s):
  3234. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3235. &lt;/ul&gt;&lt;/p&gt;</description>
  3236. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  3237. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  3238. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  3239. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3240. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  3241. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  3242. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  3243. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  3244. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  3245. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  3246. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  3247. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  3248. <smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3249. <smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3250. <smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3251. <smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3252. <hole x="-2.54" y="0" drill="1.4"/>
  3253. <hole x="2.54" y="0" drill="1.4"/>
  3254. <text x="-4.318" y="6.731" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3255. <text x="-4.318" y="2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3256. </package>
  3257. <package name="1X04_LONGPADS" urn="urn:adsk.eagle:footprint:37710/1" library_version="1">
  3258. <description>&lt;h3&gt;Plated Through Hole - 4 Pin Long Pads&lt;/h3&gt;
  3259. &lt;p&gt;Specifications:
  3260. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3261. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3262. &lt;/ul&gt;&lt;/p&gt;
  3263. &lt;p&gt;Example device(s):
  3264. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3265. &lt;/ul&gt;&lt;/p&gt;</description>
  3266. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3267. <wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3268. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3269. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3270. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3271. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3272. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3273. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3274. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3275. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3276. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3277. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3278. </package>
  3279. <package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1">
  3280. <description>&lt;h3&gt;Plated Through Hole - 4 Pin No Silk Outline&lt;/h3&gt;
  3281. &lt;p&gt;Specifications:
  3282. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3283. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3284. &lt;/ul&gt;&lt;/p&gt;
  3285. &lt;p&gt;Example device(s):
  3286. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3287. &lt;/ul&gt;&lt;/p&gt;</description>
  3288. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3289. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3290. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3291. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3292. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3293. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3294. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3295. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3296. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3297. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3298. </package>
  3299. <package name="JST-4-PTH" urn="urn:adsk.eagle:footprint:37712/1" library_version="1">
  3300. <description>&lt;h3&gt;JST Right Angle 4 Pin Plated Through Hole&lt;/h3&gt;
  3301. &lt;p&gt;Specifications:
  3302. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3303. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  3304. &lt;/ul&gt;&lt;/p&gt;
  3305. &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;
  3306. &lt;p&gt;Example device(s):
  3307. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3308. &lt;/ul&gt;&lt;/p&gt;</description>
  3309. <pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/>
  3310. <pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/>
  3311. <pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/>
  3312. <pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/>
  3313. <text x="-3.4" y="0.7" size="1.27" layer="51">+</text>
  3314. <text x="-1.4" y="0.7" size="1.27" layer="51">-</text>
  3315. <text x="0.7" y="0.9" size="0.8" layer="51">S</text>
  3316. <text x="2.7" y="0.9" size="0.8" layer="51">S</text>
  3317. <text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3318. <text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3319. <wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/>
  3320. <wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/>
  3321. <wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/>
  3322. <wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/>
  3323. <wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/>
  3324. <wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/>
  3325. <wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/>
  3326. </package>
  3327. <package name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:footprint:37713/1" library_version="1">
  3328. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -4 Pin PTH Locking&lt;/h3&gt;
  3329. Holes are offset 0.005" from center to hold pins in place during soldering.
  3330. &lt;p&gt;Specifications:
  3331. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3332. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3333. &lt;/ul&gt;&lt;/p&gt;
  3334. &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;
  3335. &lt;p&gt;Example device(s):
  3336. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3337. &lt;/ul&gt;&lt;/p&gt;</description>
  3338. <wire x1="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/>
  3339. <wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/>
  3340. <wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/>
  3341. <wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/>
  3342. <wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  3343. <wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/>
  3344. <wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
  3345. <wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="51"/>
  3346. <wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="51"/>
  3347. <wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="51"/>
  3348. <wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="51"/>
  3349. <wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="51"/>
  3350. <wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="51"/>
  3351. <circle x="0" y="0" radius="0.425" width="0.001" layer="51"/>
  3352. <circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3353. <circle x="7" y="0" radius="0.425" width="0.001" layer="51"/>
  3354. <circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/>
  3355. <pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3356. <pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
  3357. <pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/>
  3358. <pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/>
  3359. <text x="3.81" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3360. <text x="3.81" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3361. </package>
  3362. <package name="1X04_1MM_RA" urn="urn:adsk.eagle:footprint:37714/1" library_version="1">
  3363. <description>&lt;h3&gt;SMD- 4 Pin Right Angle &lt;/h3&gt;
  3364. &lt;p&gt;Specifications:
  3365. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3366. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3367. &lt;/ul&gt;&lt;/p&gt;
  3368. &lt;p&gt;Example device(s):
  3369. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3370. &lt;/ul&gt;&lt;/p&gt;</description>
  3371. <wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/>
  3372. <wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/>
  3373. <wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/>
  3374. <wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/>
  3375. <wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/>
  3376. <circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/>
  3377. <smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  3378. <smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
  3379. <smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3380. <smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3381. <smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3382. <smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
  3383. <text x="-1.397" y="-2.159" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3384. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3385. </package>
  3386. <package name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:footprint:37715/1" library_version="1">
  3387. <description>&lt;h3&gt;SMD - 4 Pin Vertical Connector&lt;/h3&gt;
  3388. &lt;p&gt;Specifications:
  3389. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3390. &lt;li&gt;SMD Pad count:8&lt;/li&gt;
  3391. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3392. &lt;/ul&gt;&lt;/p&gt;
  3393. &lt;p&gt;Example device(s):
  3394. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3395. &lt;/ul&gt;&lt;/p&gt;</description>
  3396. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  3397. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  3398. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  3399. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  3400. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  3401. <wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/>
  3402. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  3403. <wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/>
  3404. <wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/>
  3405. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  3406. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  3407. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  3408. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  3409. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  3410. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  3411. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  3412. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3413. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3414. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3415. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  3416. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3417. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3418. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3419. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  3420. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3421. <text x="-0.508" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3422. </package>
  3423. <package name="1X04_SMD_LONG" urn="urn:adsk.eagle:footprint:37716/1" library_version="1">
  3424. <description>&lt;h3&gt;SMD - 4 Pin w/ Long Solder Pads&lt;/h3&gt;
  3425. No silk, but tDocu layer shows pin position.
  3426. &lt;p&gt;Specifications:
  3427. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3428. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3429. &lt;/ul&gt;&lt;/p&gt;
  3430. &lt;p&gt;Example device(s):
  3431. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3432. &lt;/ul&gt;&lt;/p&gt;</description>
  3433. <wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/>
  3434. <wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/>
  3435. <wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  3436. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3437. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  3438. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  3439. <wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/>
  3440. <wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/>
  3441. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  3442. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  3443. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  3444. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  3445. <smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  3446. <smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  3447. <smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  3448. <smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
  3449. <hole x="-2.54" y="0" drill="1.4"/>
  3450. <hole x="2.54" y="0" drill="1.4"/>
  3451. </package>
  3452. <package name="JST-4-PTH-VERT" urn="urn:adsk.eagle:footprint:37717/1" library_version="1">
  3453. <description>&lt;h3&gt;JST Vertical 4 Pin Plated Through Hole&lt;/h3&gt;
  3454. &lt;p&gt;Specifications:
  3455. &lt;ul&gt;&lt;li&gt;Pin count: 4&lt;/li&gt;
  3456. &lt;li&gt;Pin pitch: 2mm&lt;/li&gt;
  3457. &lt;/ul&gt;&lt;/p&gt;
  3458. &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;
  3459. &lt;p&gt;Example device(s):
  3460. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3461. &lt;/ul&gt;&lt;/p&gt;</description>
  3462. <wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/>
  3463. <wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/>
  3464. <wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  3465. <wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/>
  3466. <wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
  3467. <wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
  3468. <wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
  3469. <wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/>
  3470. <pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/>
  3471. <pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/>
  3472. <pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/>
  3473. <pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/>
  3474. <text x="-1.4" y="0.75" size="1.27" layer="51">+</text>
  3475. <text x="0.6" y="0.75" size="1.27" layer="51">-</text>
  3476. <text x="2.7" y="0.95" size="0.8" layer="51">Y</text>
  3477. <text x="-3.3" y="0.95" size="0.8" layer="51">B</text>
  3478. <text x="-1.143" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3479. <text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3480. </package>
  3481. <package name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37718/1" library_version="1">
  3482. <description>&lt;h3&gt;SMD - 4 Pin Right-Angle Female Header&lt;/h3&gt;
  3483. Silk outline shows header location.
  3484. &lt;p&gt;Specifications:
  3485. &lt;ul&gt;&lt;li&gt;Pin count:4&lt;/li&gt;
  3486. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3487. &lt;/ul&gt;&lt;/p&gt;
  3488. &lt;p&gt;Example device(s):
  3489. &lt;ul&gt;&lt;li&gt;CONN_04&lt;/li&gt;
  3490. &lt;/ul&gt;&lt;/p&gt;</description>
  3491. <wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/>
  3492. <wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/>
  3493. <wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/>
  3494. <wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/>
  3495. <rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="51"/>
  3496. <rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="51"/>
  3497. <rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="51"/>
  3498. <rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="51"/>
  3499. <smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  3500. <smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  3501. <smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  3502. <smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
  3503. <text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3504. <text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3505. </package>
  3506. <package name="1X06" urn="urn:adsk.eagle:footprint:37589/1" library_version="1">
  3507. <description>&lt;h3&gt;Plated Through Hole - 6 Pin&lt;/h3&gt;
  3508. &lt;p&gt;Specifications:
  3509. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3510. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3511. &lt;/ul&gt;&lt;/p&gt;
  3512. &lt;p&gt;Example device(s):
  3513. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3514. &lt;/ul&gt;&lt;/p&gt;</description>
  3515. <wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
  3516. <wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
  3517. <wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
  3518. <wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
  3519. <wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
  3520. <wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
  3521. <wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
  3522. <wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
  3523. <wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
  3524. <wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
  3525. <wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
  3526. <wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
  3527. <wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
  3528. <wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
  3529. <wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
  3530. <wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
  3531. <wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
  3532. <wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3533. <wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
  3534. <wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
  3535. <wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
  3536. <wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
  3537. <wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3538. <wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
  3539. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3540. <wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
  3541. <wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3542. <wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
  3543. <wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
  3544. <wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
  3545. <wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
  3546. <wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
  3547. <wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
  3548. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3549. <wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
  3550. <wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3551. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3552. <wire x1="13.97" y1="0.635" x2="13.97" y2="-0.635" width="0.2032" layer="21"/>
  3553. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3554. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3555. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3556. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3557. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3558. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  3559. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3560. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3561. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3562. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3563. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3564. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3565. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3566. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3567. </package>
  3568. <package name="MOLEX-1X6" urn="urn:adsk.eagle:footprint:37738/1" library_version="1">
  3569. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole&lt;/h3&gt;
  3570. &lt;p&gt;Specifications:
  3571. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3572. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3573. &lt;/ul&gt;&lt;/p&gt;
  3574. &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;
  3575. &lt;p&gt;Example device(s):
  3576. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3577. &lt;/ul&gt;&lt;/p&gt;</description>
  3578. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3579. <wire x1="13.97" y1="3.048" x2="13.97" y2="-2.54" width="0.127" layer="21"/>
  3580. <wire x1="13.97" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3581. <wire x1="13.97" y1="-2.54" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  3582. <wire x1="12.7" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3583. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3584. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3585. <wire x1="0" y1="-1.27" x2="12.7" y2="-1.27" width="0.127" layer="21"/>
  3586. <wire x1="12.7" y1="-1.27" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  3587. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3588. <wire x1="0.635" y1="1.27" x2="-0.635" y2="1.27" width="0.2032" layer="22"/>
  3589. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  3590. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3591. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3592. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3593. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  3594. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796"/>
  3595. <text x="4.699" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3596. <text x="4.699" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3597. </package>
  3598. <package name="MOLEX-1X6-RA" urn="urn:adsk.eagle:footprint:37739/1" library_version="1">
  3599. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole Right Angle&lt;/h3&gt;
  3600. tPlace shows angle of connector.
  3601. &lt;p&gt;Specifications:
  3602. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3603. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3604. &lt;/ul&gt;&lt;/p&gt;
  3605. &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;
  3606. &lt;p&gt;Example device(s):
  3607. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3608. &lt;/ul&gt;&lt;/p&gt;</description>
  3609. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  3610. <wire x1="13.97" y1="0.635" x2="13.97" y2="3.175" width="0.127" layer="21"/>
  3611. <wire x1="13.97" y1="0.635" x2="-1.27" y2="0.635" width="0.127" layer="21"/>
  3612. <wire x1="13.97" y1="3.175" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  3613. <wire x1="12.7" y1="3.175" x2="0" y2="3.175" width="0.127" layer="21"/>
  3614. <wire x1="0" y1="3.175" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  3615. <wire x1="0" y1="3.175" x2="0" y2="7.62" width="0.127" layer="21"/>
  3616. <wire x1="0" y1="7.62" x2="12.7" y2="7.62" width="0.127" layer="21"/>
  3617. <wire x1="12.7" y1="7.62" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  3618. <wire x1="-0.635" y1="-1.27" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
  3619. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="22"/>
  3620. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  3621. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
  3622. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3623. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
  3624. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  3625. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796"/>
  3626. <text x="4.953" y="5.334" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3627. <text x="4.699" y="4.445" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3628. </package>
  3629. <package name="1X06-SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37588/1" library_version="1">
  3630. <description>&lt;h3&gt;SMD - 6 Pin Right Angle Male Header&lt;/h3&gt;
  3631. tDocu layer shows pin locations.
  3632. &lt;p&gt;Specifications:
  3633. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3634. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3635. &lt;/ul&gt;&lt;/p&gt;
  3636. &lt;p&gt;Example device(s):
  3637. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3638. &lt;/ul&gt;&lt;/p&gt;</description>
  3639. <wire x1="7.62" y1="1.25" x2="-7.62" y2="1.25" width="0.127" layer="51"/>
  3640. <wire x1="-7.62" y1="1.25" x2="-7.62" y2="-1.25" width="0.127" layer="51"/>
  3641. <wire x1="-7.62" y1="-1.25" x2="-6.35" y2="-1.25" width="0.127" layer="51"/>
  3642. <wire x1="-6.35" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/>
  3643. <wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  3644. <wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/>
  3645. <wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/>
  3646. <wire x1="3.81" y1="-1.25" x2="6.35" y2="-1.25" width="0.127" layer="51"/>
  3647. <wire x1="6.35" y1="-1.25" x2="7.62" y2="-1.25" width="0.127" layer="51"/>
  3648. <wire x1="7.62" y1="-1.25" x2="7.62" y2="1.25" width="0.127" layer="51"/>
  3649. <wire x1="6.35" y1="-1.25" x2="6.35" y2="-7.25" width="0.127" layer="51"/>
  3650. <wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/>
  3651. <wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/>
  3652. <wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/>
  3653. <wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/>
  3654. <wire x1="-6.35" y1="-1.25" x2="-6.35" y2="-7.25" width="0.127" layer="51"/>
  3655. <smd name="4" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3656. <smd name="5" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3657. <smd name="6" x="6.35" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3658. <smd name="3" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3659. <smd name="2" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3660. <smd name="1" x="-6.35" y="5" dx="3" dy="1" layer="1" rot="R90"/>
  3661. <hole x="-5.08" y="0" drill="1.4"/>
  3662. <hole x="5.08" y="0" drill="1.4"/>
  3663. <text x="-1.524" y="0.381" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3664. <text x="-1.651" y="-1.016" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3665. </package>
  3666. <package name="1X06_LOCK" urn="urn:adsk.eagle:footprint:37592/1" library_version="1">
  3667. <description>&lt;h3&gt;Plated Through Hole - 6 Pin with Locking Footprint&lt;/h3&gt;
  3668. Holes are offset 0.005" from center, locking pins in place during soldering.
  3669. &lt;p&gt;Specifications:
  3670. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3671. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3672. &lt;/ul&gt;&lt;/p&gt;
  3673. &lt;p&gt;Example device(s):
  3674. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3675. &lt;/ul&gt;&lt;/p&gt;</description>
  3676. <wire x1="-1.27" y1="0.508" x2="-0.635" y2="1.143" width="0.2032" layer="21"/>
  3677. <wire x1="-0.635" y1="1.143" x2="0.635" y2="1.143" width="0.2032" layer="21"/>
  3678. <wire x1="0.635" y1="1.143" x2="1.27" y2="0.508" width="0.2032" layer="21"/>
  3679. <wire x1="1.27" y1="0.508" x2="1.905" y2="1.143" width="0.2032" layer="21"/>
  3680. <wire x1="1.905" y1="1.143" x2="3.175" y2="1.143" width="0.2032" layer="21"/>
  3681. <wire x1="3.175" y1="1.143" x2="3.81" y2="0.508" width="0.2032" layer="21"/>
  3682. <wire x1="3.81" y1="0.508" x2="4.445" y2="1.143" width="0.2032" layer="21"/>
  3683. <wire x1="4.445" y1="1.143" x2="5.715" y2="1.143" width="0.2032" layer="21"/>
  3684. <wire x1="5.715" y1="1.143" x2="6.35" y2="0.508" width="0.2032" layer="21"/>
  3685. <wire x1="6.35" y1="0.508" x2="6.985" y2="1.143" width="0.2032" layer="21"/>
  3686. <wire x1="6.985" y1="1.143" x2="8.255" y2="1.143" width="0.2032" layer="21"/>
  3687. <wire x1="8.255" y1="1.143" x2="8.89" y2="0.508" width="0.2032" layer="21"/>
  3688. <wire x1="8.89" y1="0.508" x2="9.525" y2="1.143" width="0.2032" layer="21"/>
  3689. <wire x1="9.525" y1="1.143" x2="10.795" y2="1.143" width="0.2032" layer="21"/>
  3690. <wire x1="10.795" y1="1.143" x2="11.43" y2="0.508" width="0.2032" layer="21"/>
  3691. <wire x1="11.43" y1="0.508" x2="12.065" y2="1.143" width="0.2032" layer="21"/>
  3692. <wire x1="12.065" y1="1.143" x2="13.335" y2="1.143" width="0.2032" layer="21"/>
  3693. <wire x1="13.335" y1="1.143" x2="13.97" y2="0.508" width="0.2032" layer="21"/>
  3694. <wire x1="13.97" y1="0.508" x2="13.97" y2="-0.762" width="0.2032" layer="21"/>
  3695. <wire x1="13.97" y1="-0.762" x2="13.335" y2="-1.397" width="0.2032" layer="21"/>
  3696. <wire x1="13.335" y1="-1.397" x2="12.065" y2="-1.397" width="0.2032" layer="21"/>
  3697. <wire x1="12.065" y1="-1.397" x2="11.43" y2="-0.762" width="0.2032" layer="21"/>
  3698. <wire x1="11.43" y1="-0.762" x2="10.795" y2="-1.397" width="0.2032" layer="21"/>
  3699. <wire x1="10.795" y1="-1.397" x2="9.525" y2="-1.397" width="0.2032" layer="21"/>
  3700. <wire x1="9.525" y1="-1.397" x2="8.89" y2="-0.762" width="0.2032" layer="21"/>
  3701. <wire x1="8.89" y1="-0.762" x2="8.255" y2="-1.397" width="0.2032" layer="21"/>
  3702. <wire x1="8.255" y1="-1.397" x2="6.985" y2="-1.397" width="0.2032" layer="21"/>
  3703. <wire x1="6.985" y1="-1.397" x2="6.35" y2="-0.762" width="0.2032" layer="21"/>
  3704. <wire x1="6.35" y1="-0.762" x2="5.715" y2="-1.397" width="0.2032" layer="21"/>
  3705. <wire x1="5.715" y1="-1.397" x2="4.445" y2="-1.397" width="0.2032" layer="21"/>
  3706. <wire x1="4.445" y1="-1.397" x2="3.81" y2="-0.762" width="0.2032" layer="21"/>
  3707. <wire x1="3.81" y1="-0.762" x2="3.175" y2="-1.397" width="0.2032" layer="21"/>
  3708. <wire x1="3.175" y1="-1.397" x2="1.905" y2="-1.397" width="0.2032" layer="21"/>
  3709. <wire x1="1.905" y1="-1.397" x2="1.27" y2="-0.762" width="0.2032" layer="21"/>
  3710. <wire x1="1.27" y1="-0.762" x2="0.635" y2="-1.397" width="0.2032" layer="21"/>
  3711. <wire x1="0.635" y1="-1.397" x2="-0.635" y2="-1.397" width="0.2032" layer="21"/>
  3712. <wire x1="-0.635" y1="-1.397" x2="-1.27" y2="-0.762" width="0.2032" layer="21"/>
  3713. <wire x1="-1.27" y1="-0.762" x2="-1.27" y2="0.508" width="0.2032" layer="21"/>
  3714. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  3715. <pad name="2" x="2.54" y="-0.254" drill="1.016" diameter="1.8796"/>
  3716. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3717. <pad name="4" x="7.62" y="-0.254" drill="1.016" diameter="1.8796"/>
  3718. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  3719. <pad name="6" x="12.7" y="-0.254" drill="1.016" diameter="1.8796"/>
  3720. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3721. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3722. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3723. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51"/>
  3724. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  3725. <rectangle x1="12.4079" y1="-0.4191" x2="12.9921" y2="0.1651" layer="51"/>
  3726. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3727. <text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3728. </package>
  3729. <package name="1X06_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37740/1" library_version="1">
  3730. <description>&lt;h3&gt;Plated Through Hole - 6 Pin with Locking Footprint with Long Pads&lt;/h3&gt;
  3731. Holes are offset 0.005" from center, locking pins in place during soldering.
  3732. &lt;p&gt;Specifications:
  3733. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3734. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3735. &lt;/ul&gt;&lt;/p&gt;
  3736. &lt;p&gt;Example device(s):
  3737. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3738. &lt;/ul&gt;&lt;/p&gt;</description>
  3739. <wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
  3740. <wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
  3741. <wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
  3742. <wire x1="9.144" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
  3743. <wire x1="11.684" y1="-0.127" x2="11.176" y2="-0.127" width="0.2032" layer="21"/>
  3744. <wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
  3745. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
  3746. <wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
  3747. <wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
  3748. <wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
  3749. <wire x1="13.97" y1="-0.127" x2="13.716" y2="-0.127" width="0.2032" layer="21"/>
  3750. <wire x1="13.97" y1="-0.127" x2="13.97" y2="-1.1176" width="0.2032" layer="21"/>
  3751. <wire x1="13.97" y1="-1.1176" x2="13.6906" y2="-1.397" width="0.2032" layer="21"/>
  3752. <wire x1="13.97" y1="-0.127" x2="13.97" y2="0.8636" width="0.2032" layer="21"/>
  3753. <wire x1="13.97" y1="0.8636" x2="13.6906" y2="1.143" width="0.2032" layer="21"/>
  3754. <pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
  3755. <pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3756. <pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
  3757. <pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3758. <pad name="5" x="10.16" y="0" drill="1.016" shape="long" rot="R90"/>
  3759. <pad name="6" x="12.7" y="-0.254" drill="1.016" shape="long" rot="R90"/>
  3760. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3761. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3762. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3763. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/>
  3764. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  3765. <rectangle x1="12.4079" y1="-0.4191" x2="12.9921" y2="0.1651" layer="51"/>
  3766. <text x="-1.143" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3767. <text x="-1.143" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3768. </package>
  3769. <package name="MOLEX-1X6_LOCK" urn="urn:adsk.eagle:footprint:37741/1" library_version="1">
  3770. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole Locking Footprint&lt;/h3&gt;
  3771. Holes are offset 0.005" from center to hold pins in place during soldering.
  3772. &lt;p&gt;Specifications:
  3773. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3774. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3775. &lt;/ul&gt;&lt;/p&gt;
  3776. &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;
  3777. &lt;p&gt;Example device(s):
  3778. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3779. &lt;/ul&gt;&lt;/p&gt;</description>
  3780. <wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3781. <wire x1="13.97" y1="3.048" x2="13.97" y2="-2.54" width="0.127" layer="21"/>
  3782. <wire x1="13.97" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
  3783. <wire x1="13.97" y1="-2.54" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  3784. <wire x1="12.7" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
  3785. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
  3786. <wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
  3787. <wire x1="0" y1="-1.27" x2="12.7" y2="-1.27" width="0.127" layer="21"/>
  3788. <wire x1="12.7" y1="-1.27" x2="12.7" y2="-2.54" width="0.127" layer="21"/>
  3789. <wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
  3790. <wire x1="0.635" y1="1.27" x2="-0.635" y2="1.27" width="0.2032" layer="22"/>
  3791. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796"/>
  3792. <pad name="2" x="2.54" y="-0.254" drill="1.016" diameter="1.8796"/>
  3793. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
  3794. <pad name="4" x="7.62" y="-0.254" drill="1.016" diameter="1.8796"/>
  3795. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796"/>
  3796. <pad name="6" x="12.7" y="-0.254" drill="1.016" diameter="1.8796"/>
  3797. <rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/>
  3798. <rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/>
  3799. <rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/>
  3800. <rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51"/>
  3801. <rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="51"/>
  3802. <rectangle x1="12.4079" y1="-0.4191" x2="12.9921" y2="0.1651" layer="51"/>
  3803. <text x="4.445" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3804. <text x="4.191" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3805. </package>
  3806. <package name="MOLEX_1X6_RA_LOCK" urn="urn:adsk.eagle:footprint:37590/1" library_version="1">
  3807. <description>&lt;h3&gt;Molex 6-Pin Plated Through-Hole Right Angle Locking Footprint&lt;/h3&gt;
  3808. Holes are offset 0.005" from center to hold pins in place during soldering.
  3809. tPlace shows location of connector.
  3810. &lt;p&gt;Specifications:
  3811. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3812. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3813. &lt;/ul&gt;&lt;/p&gt;
  3814. &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;
  3815. &lt;p&gt;Example device(s):
  3816. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3817. &lt;/ul&gt;&lt;/p&gt;</description>
  3818. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  3819. <wire x1="13.97" y1="0.635" x2="13.97" y2="3.175" width="0.127" layer="21"/>
  3820. <wire x1="13.97" y1="0.635" x2="-1.27" y2="0.635" width="0.127" layer="21"/>
  3821. <wire x1="13.97" y1="3.175" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  3822. <wire x1="12.7" y1="3.175" x2="0" y2="3.175" width="0.127" layer="21"/>
  3823. <wire x1="0" y1="3.175" x2="-1.27" y2="3.175" width="0.127" layer="21"/>
  3824. <wire x1="0" y1="3.175" x2="0" y2="7.62" width="0.127" layer="21"/>
  3825. <wire x1="0" y1="7.62" x2="12.7" y2="7.62" width="0.127" layer="21"/>
  3826. <wire x1="12.7" y1="7.62" x2="12.7" y2="3.175" width="0.127" layer="21"/>
  3827. <wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
  3828. <wire x1="-0.635" y1="-1.27" x2="0.635" y2="-1.27" width="0.2032" layer="22"/>
  3829. <pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796"/>
  3830. <pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
  3831. <pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
  3832. <pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
  3833. <pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796"/>
  3834. <pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796"/>
  3835. <text x="4.826" y="5.588" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3836. <text x="4.699" y="4.318" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3837. </package>
  3838. <package name="1X06_FEMALE_LOCK.010" urn="urn:adsk.eagle:footprint:37742/1" library_version="1">
  3839. <description>&lt;h3&gt;Plated Through Hole - 6 Pin Locking Header&lt;/h3&gt;
  3840. Includes silk outline for 6 pin female header
  3841. &lt;p&gt;Specifications:
  3842. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3843. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3844. &lt;/ul&gt;&lt;/p&gt;
  3845. &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;
  3846. &lt;p&gt;Example device(s):
  3847. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3848. &lt;/ul&gt;&lt;/p&gt;</description>
  3849. <wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3850. <wire x1="-1.27" y1="1.27" x2="13.97" y2="1.27" width="0.2032" layer="21"/>
  3851. <wire x1="13.97" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/>
  3852. <wire x1="13.97" y1="1.27" x2="13.97" y2="-1.27" width="0.2032" layer="21"/>
  3853. <pad name="1" x="0" y="0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  3854. <pad name="2" x="2.54" y="-0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  3855. <pad name="3" x="5.08" y="0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  3856. <pad name="4" x="7.62" y="-0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  3857. <pad name="5" x="10.16" y="0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  3858. <pad name="6" x="12.7" y="-0.254" drill="1.016" diameter="1.8796" rot="R90"/>
  3859. <rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/>
  3860. <rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/>
  3861. <rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/>
  3862. <rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/>
  3863. <rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/>
  3864. <rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/>
  3865. <text x="-1.143" y="1.524" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3866. <text x="-1.143" y="-2.159" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3867. </package>
  3868. <package name="1X06_LONGPADS" urn="urn:adsk.eagle:footprint:37591/1" library_version="1">
  3869. <description>&lt;h3&gt;Plated Through Hole - 6 Pin with Long Pads&lt;/h3&gt;
  3870. &lt;p&gt;Specifications:
  3871. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3872. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3873. &lt;/ul&gt;&lt;/p&gt;
  3874. &lt;p&gt;Example device(s):
  3875. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3876. &lt;/ul&gt;&lt;/p&gt;</description>
  3877. <wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
  3878. <wire x1="13.97" y1="0.635" x2="13.97" y2="-0.635" width="0.2032" layer="21"/>
  3879. <pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3880. <pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3881. <pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3882. <pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3883. <pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3884. <pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
  3885. <text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3886. <text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3887. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  3888. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  3889. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  3890. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  3891. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  3892. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  3893. </package>
  3894. <package name="SCREWTERMINAL-3.5MM-6" urn="urn:adsk.eagle:footprint:37743/1" library_version="1">
  3895. <description>&lt;h3&gt;Screw Terminal 3.5mm Pitch -6 Pin PTH&lt;/h3&gt;
  3896. &lt;p&gt;Specifications:
  3897. &lt;ul&gt;&lt;li&gt;Pin count: 6&lt;/li&gt;
  3898. &lt;li&gt;Pin pitch: 3.5mm/138mil&lt;/li&gt;
  3899. &lt;/ul&gt;&lt;/p&gt;
  3900. &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;
  3901. &lt;p&gt;Example device(s):
  3902. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3903. &lt;/ul&gt;&lt;/p&gt;</description>
  3904. <wire x1="-1.75" y1="3.4" x2="19.25" y2="3.4" width="0.2032" layer="21"/>
  3905. <wire x1="19.25" y1="3.4" x2="19.25" y2="-2.8" width="0.2032" layer="21"/>
  3906. <wire x1="19.25" y1="-2.8" x2="19.25" y2="-3.6" width="0.2032" layer="21"/>
  3907. <wire x1="19.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
  3908. <wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3909. <wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
  3910. <wire x1="19.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
  3911. <wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/>
  3912. <wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/>
  3913. <wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/>
  3914. <wire x1="19.25" y1="3.15" x2="19.75" y2="3.15" width="0.2032" layer="51"/>
  3915. <wire x1="19.75" y1="3.15" x2="19.75" y2="2.15" width="0.2032" layer="51"/>
  3916. <wire x1="19.75" y1="2.15" x2="19.25" y2="2.15" width="0.2032" layer="51"/>
  3917. <pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
  3918. <pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
  3919. <pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
  3920. <pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
  3921. <pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
  3922. <pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/>
  3923. <text x="7.112" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3924. <text x="6.858" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3925. </package>
  3926. <package name="1X06-SMD-FEMALE" urn="urn:adsk.eagle:footprint:37744/1" library_version="1">
  3927. <description>&lt;h3&gt;Header - 6 pin Female SMD&lt;/h3&gt;
  3928. Right angle 0.1"
  3929. &lt;p&gt;Specifications:
  3930. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3931. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3932. &lt;/ul&gt;&lt;/p&gt;
  3933. &lt;p&gt;&lt;a href=”http://cdn.sparkfun.com/datasheets/Prototyping/19686.pdf”&gt;Datasheet referenced for footprint:&lt;/a&gt;&lt;/p&gt;
  3934. &lt;p&gt;Example device(s):
  3935. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3936. &lt;/ul&gt;&lt;/p&gt;</description>
  3937. <wire x1="-7.5" y1="0.45" x2="-7.5" y2="-8.05" width="0.127" layer="21"/>
  3938. <wire x1="7.5" y1="0.45" x2="-7.5" y2="0.45" width="0.127" layer="21"/>
  3939. <wire x1="7.5" y1="-8.05" x2="7.5" y2="0.45" width="0.127" layer="21"/>
  3940. <wire x1="-7.5" y1="-8.05" x2="7.5" y2="-8.05" width="0.127" layer="21"/>
  3941. <smd name="4" x="-1.27" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  3942. <smd name="5" x="-3.81" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  3943. <smd name="6" x="-6.35" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  3944. <smd name="3" x="1.27" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  3945. <smd name="2" x="3.81" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  3946. <smd name="1" x="6.35" y="3.425" dx="1.25" dy="3" layer="1" rot="R180"/>
  3947. <text x="-1.524" y="-3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  3948. <text x="-1.778" y="-4.826" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  3949. </package>
  3950. <package name="1X06_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37745/1" library_version="1">
  3951. <description>&lt;h3&gt; 6 Pin Holes&lt;/h3&gt;
  3952. No silk, no plating
  3953. &lt;p&gt;Specifications:
  3954. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3955. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3956. &lt;/ul&gt;&lt;/p&gt;
  3957. &lt;p&gt;Example device(s):
  3958. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3959. &lt;/ul&gt;&lt;/p&gt;</description>
  3960. <circle x="0" y="0" radius="0.635" width="0.127" layer="51"/>
  3961. <circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/>
  3962. <circle x="5.08" y="0" radius="0.635" width="0.127" layer="51"/>
  3963. <circle x="7.62" y="0" radius="0.635" width="0.127" layer="51"/>
  3964. <circle x="10.16" y="0" radius="0.635" width="0.127" layer="51"/>
  3965. <circle x="12.7" y="0" radius="0.635" width="0.127" layer="51"/>
  3966. <pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3967. <pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3968. <pad name="3" x="5.08" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3969. <pad name="4" x="7.62" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3970. <pad name="5" x="10.16" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3971. <pad name="6" x="12.7" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
  3972. <hole x="0" y="0" drill="1.4732"/>
  3973. <hole x="2.54" y="0" drill="1.4732"/>
  3974. <hole x="5.08" y="0" drill="1.4732"/>
  3975. <hole x="7.62" y="0" drill="1.4732"/>
  3976. <hole x="10.16" y="0" drill="1.4732"/>
  3977. <hole x="12.7" y="0" drill="1.4732"/>
  3978. </package>
  3979. <package name="1X06_SMD_STRAIGHT" urn="urn:adsk.eagle:footprint:37746/1" library_version="1">
  3980. <description>&lt;h3&gt; 6 Pin SMD Female Header&lt;/h3&gt;
  3981. &lt;p&gt;Specifications:
  3982. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  3983. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  3984. &lt;/ul&gt;&lt;/p&gt;
  3985. &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;
  3986. &lt;p&gt;Example device(s):
  3987. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  3988. &lt;/ul&gt;&lt;/p&gt;</description>
  3989. <wire x1="1.37" y1="1.25" x2="-14.07" y2="1.25" width="0.127" layer="51"/>
  3990. <wire x1="-14.07" y1="1.25" x2="-14.07" y2="-1.25" width="0.127" layer="51"/>
  3991. <wire x1="-14.07" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  3992. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  3993. <wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  3994. <wire x1="-14.07" y1="-1.25" x2="-14.07" y2="1.25" width="0.127" layer="21"/>
  3995. <wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  3996. <wire x1="-14.07" y1="1.25" x2="-10.883" y2="1.25" width="0.127" layer="21"/>
  3997. <wire x1="-13.55" y1="-1.25" x2="-14.07" y2="-1.25" width="0.127" layer="21"/>
  3998. <wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/>
  3999. <wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/>
  4000. <wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/>
  4001. <wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/>
  4002. <wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/>
  4003. <smd name="5" x="-10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4004. <smd name="3" x="-5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4005. <smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4006. <smd name="6" x="-12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4007. <smd name="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4008. <smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4009. <text x="-13.716" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4010. <text x="-13.843" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4011. </package>
  4012. <package name="1X06_SMD_STRAIGHT_ALT" urn="urn:adsk.eagle:footprint:37747/1" library_version="1">
  4013. <description>&lt;h3&gt; 6 Pin SMD Female Header&lt;/h3&gt;
  4014. Alternate pin configuration
  4015. &lt;p&gt;Specifications:
  4016. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  4017. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4018. &lt;/ul&gt;&lt;/p&gt;
  4019. &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;
  4020. &lt;p&gt;Example device(s):
  4021. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  4022. &lt;/ul&gt;&lt;/p&gt;</description>
  4023. <wire x1="1.37" y1="1.25" x2="-14.07" y2="1.25" width="0.127" layer="51"/>
  4024. <wire x1="-14.07" y1="1.25" x2="-14.07" y2="-1.25" width="0.127" layer="51"/>
  4025. <wire x1="-14.07" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/>
  4026. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/>
  4027. <wire x1="-14.07" y1="1.25" x2="-14.07" y2="-1.25" width="0.127" layer="21"/>
  4028. <wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/>
  4029. <wire x1="-13.55" y1="1.25" x2="-14.07" y2="1.25" width="0.127" layer="21"/>
  4030. <wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/>
  4031. <wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/>
  4032. <wire x1="-14.07" y1="-1.25" x2="-10.883" y2="-1.25" width="0.127" layer="21"/>
  4033. <wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/>
  4034. <wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/>
  4035. <wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/>
  4036. <wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/>
  4037. <smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4038. <smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4039. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4040. <smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4041. <smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4042. <smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4043. <text x="-13.716" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4044. <text x="-13.843" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4045. </package>
  4046. <package name="1X06_SMD_STRAIGHT_COMBO" urn="urn:adsk.eagle:footprint:37748/1" library_version="1">
  4047. <description>&lt;h3&gt; 6 Pin SMD Female Header - Combined Footprint&lt;/h3&gt;
  4048. &lt;p&gt;Specifications:
  4049. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  4050. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4051. &lt;/ul&gt;&lt;/p&gt;
  4052. &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;
  4053. &lt;p&gt;Example device(s):
  4054. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  4055. &lt;/ul&gt;&lt;/p&gt;</description>
  4056. <wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/>
  4057. <wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/>
  4058. <wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
  4059. <wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
  4060. <wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
  4061. <wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
  4062. <wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
  4063. <wire x1="14.07" y1="1.25" x2="14.07" y2="-1.25" width="0.1778" layer="21"/>
  4064. <wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
  4065. <wire x1="14.07" y1="-1.25" x2="13.4" y2="-1.25" width="0.1778" layer="21"/>
  4066. <wire x1="13.4" y1="1.25" x2="14.07" y2="1.25" width="0.1778" layer="21"/>
  4067. <wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
  4068. <wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.1778" layer="21"/>
  4069. <wire x1="10.949" y1="-1.29" x2="11.911" y2="-1.29" width="0.1778" layer="21"/>
  4070. <wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.1778" layer="21"/>
  4071. <wire x1="8.409" y1="-1.29" x2="9.371" y2="-1.29" width="0.1778" layer="21"/>
  4072. <wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
  4073. <wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
  4074. <wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
  4075. <wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
  4076. <wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
  4077. <wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
  4078. <smd name="5" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4079. <smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4080. <smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4081. <smd name="6" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4082. <smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4083. <smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
  4084. <smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4085. <smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4086. <smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4087. <smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4088. <smd name="5-2" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4089. <smd name="6-2" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
  4090. <text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4091. <text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4092. </package>
  4093. <package name="1X06_SMD_MALE" urn="urn:adsk.eagle:footprint:37749/1" library_version="1">
  4094. <description>&lt;h3&gt; 6 Pin SMD Male Header&lt;/h3&gt;
  4095. &lt;p&gt;Specifications:
  4096. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  4097. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4098. &lt;/ul&gt;&lt;/p&gt;
  4099. &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;
  4100. &lt;p&gt;Example device(s):
  4101. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  4102. &lt;/ul&gt;&lt;/p&gt;</description>
  4103. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/>
  4104. <wire x1="-1.27" y1="-1.25" x2="13.97" y2="-1.25" width="0.127" layer="51"/>
  4105. <wire x1="13.97" y1="-1.25" x2="13.97" y2="1.25" width="0.127" layer="51"/>
  4106. <wire x1="13.97" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/>
  4107. <wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/>
  4108. <wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/>
  4109. <wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/>
  4110. <wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/>
  4111. <wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/>
  4112. <wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/>
  4113. <wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/>
  4114. <wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/>
  4115. <wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/>
  4116. <wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/>
  4117. <wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/>
  4118. <wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/>
  4119. <wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/>
  4120. <wire x1="13.97" y1="-1.25" x2="13.97" y2="1.25" width="0.1778" layer="21"/>
  4121. <wire x1="13.97" y1="-1.25" x2="13.335" y2="-1.25" width="0.1778" layer="21"/>
  4122. <wire x1="13.97" y1="1.25" x2="13.335" y2="1.25" width="0.1778" layer="21"/>
  4123. <circle x="0" y="0" radius="0.64" width="0.127" layer="51"/>
  4124. <circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/>
  4125. <circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/>
  4126. <circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/>
  4127. <circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/>
  4128. <circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/>
  4129. <rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/>
  4130. <rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/>
  4131. <rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/>
  4132. <rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/>
  4133. <rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/>
  4134. <rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/>
  4135. <smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/>
  4136. <smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/>
  4137. <smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/>
  4138. <smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/>
  4139. <smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/>
  4140. <smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/>
  4141. <text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4142. <text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4143. </package>
  4144. <package name="1X06-1MM" urn="urn:adsk.eagle:footprint:37635/1" library_version="1">
  4145. <description>&lt;h3&gt;JST SH Vertical 6-Pin Connector -SMD&lt;/h3&gt;
  4146. &lt;p&gt;Specifications:
  4147. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  4148. &lt;li&gt;Pin pitch:1mm&lt;/li&gt;
  4149. &lt;p&gt;&lt;b&gt;&lt;a href="https://www.sparkfun.com/datasheets/GPS/EM406-SMDConnector-eSH.pdf"&gt;Datasheet referenced for footprint&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
  4150. &lt;/ul&gt;&lt;/p&gt;
  4151. &lt;p&gt;Example device(s):
  4152. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  4153. &lt;li&gt;EM-406&lt;/li&gt;
  4154. &lt;/ul&gt;&lt;/p&gt;</description>
  4155. <wire x1="-2.54" y1="-1.651" x2="2.54" y2="-1.651" width="0.254" layer="21"/>
  4156. <wire x1="-4.318" y1="0.508" x2="-4.318" y2="1.905" width="0.254" layer="21"/>
  4157. <wire x1="3.302" y1="1.905" x2="4.318" y2="1.905" width="0.254" layer="21"/>
  4158. <wire x1="4.318" y1="1.905" x2="4.318" y2="0.508" width="0.254" layer="21"/>
  4159. <wire x1="-4.318" y1="1.905" x2="-3.302" y2="1.905" width="0.254" layer="21"/>
  4160. <smd name="1" x="-2.54" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  4161. <smd name="2" x="-1.54" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  4162. <smd name="3" x="-0.54" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  4163. <smd name="4" x="0.46" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  4164. <smd name="5" x="1.46" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  4165. <smd name="6" x="2.46" y="1.27" dx="0.6" dy="1.55" layer="1"/>
  4166. <smd name="P$1" x="-3.84" y="-0.955" dx="1.2" dy="1.8" layer="1"/>
  4167. <smd name="P$2" x="3.76" y="-0.955" dx="1.2" dy="1.8" layer="1"/>
  4168. <text x="-1.397" y="-0.381" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4169. <text x="-1.651" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4170. <circle x="-3.6" y="2.47" radius="0.1047" width="0.4064" layer="21"/>
  4171. </package>
  4172. <package name="1X06_NO_SILK" urn="urn:adsk.eagle:footprint:37750/1" library_version="1">
  4173. <description>&lt;h3&gt;Plated Through Hole - 6 Pin No Silk Outline&lt;/h3&gt;
  4174. &lt;p&gt;Specifications:
  4175. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  4176. &lt;li&gt;Pin pitch:0.1"&lt;/li&gt;
  4177. &lt;/ul&gt;&lt;/p&gt;
  4178. &lt;p&gt;Example device(s):
  4179. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  4180. &lt;/ul&gt;&lt;/p&gt;</description>
  4181. <pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4182. <pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4183. <pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4184. <pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4185. <pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4186. <pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
  4187. <rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/>
  4188. <rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/>
  4189. <rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/>
  4190. <rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/>
  4191. <rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/>
  4192. <rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/>
  4193. <text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4194. <text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4195. </package>
  4196. <package name="1X06_1.27MM" urn="urn:adsk.eagle:footprint:37751/1" library_version="1">
  4197. <description>&lt;h3&gt;Plated Through Hole - 6 Pin&lt;/h3&gt;
  4198. &lt;p&gt;Specifications:
  4199. &lt;ul&gt;&lt;li&gt;Pin count:6&lt;/li&gt;
  4200. &lt;li&gt;Pin pitch:1.27mm&lt;/li&gt;
  4201. &lt;/ul&gt;&lt;/p&gt;
  4202. &lt;p&gt;Example device(s):
  4203. &lt;ul&gt;&lt;li&gt;CONN_06&lt;/li&gt;
  4204. &lt;/ul&gt;&lt;/p&gt;</description>
  4205. <wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
  4206. <wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
  4207. <wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
  4208. <wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
  4209. <wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
  4210. <wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
  4211. <wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
  4212. <wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
  4213. <wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
  4214. <wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
  4215. <wire x1="4.191" y1="-0.889" x2="4.445" y2="-0.635" width="0.127" layer="21"/>
  4216. <wire x1="4.445" y1="-0.635" x2="4.699" y2="-0.889" width="0.127" layer="21"/>
  4217. <wire x1="4.699" y1="-0.889" x2="5.461" y2="-0.889" width="0.127" layer="21"/>
  4218. <wire x1="5.461" y1="0.889" x2="4.699" y2="0.889" width="0.127" layer="21"/>
  4219. <wire x1="4.699" y1="0.889" x2="4.445" y2="0.635" width="0.127" layer="21"/>
  4220. <wire x1="4.445" y1="0.635" x2="4.191" y2="0.889" width="0.127" layer="21"/>
  4221. <wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
  4222. <wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
  4223. <wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
  4224. <wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
  4225. <wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
  4226. <wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
  4227. <wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
  4228. <wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
  4229. <wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
  4230. <wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
  4231. <wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
  4232. <wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
  4233. <wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
  4234. <wire x1="5.461" y1="-0.889" x2="5.715" y2="-0.635" width="0.127" layer="21"/>
  4235. <wire x1="5.715" y1="-0.635" x2="5.969" y2="-0.889" width="0.127" layer="21"/>
  4236. <wire x1="5.969" y1="-0.889" x2="6.731" y2="-0.889" width="0.127" layer="21"/>
  4237. <wire x1="6.731" y1="0.889" x2="5.969" y2="0.889" width="0.127" layer="21"/>
  4238. <wire x1="5.969" y1="0.889" x2="5.715" y2="0.635" width="0.127" layer="21"/>
  4239. <wire x1="5.715" y1="0.635" x2="5.461" y2="0.889" width="0.127" layer="21"/>
  4240. <wire x1="6.731" y1="0.889" x2="7.239" y2="0.381" width="0.127" layer="21"/>
  4241. <wire x1="7.239" y1="0.381" x2="7.239" y2="-0.381" width="0.127" layer="21"/>
  4242. <wire x1="7.239" y1="-0.381" x2="6.731" y2="-0.889" width="0.127" layer="21"/>
  4243. <pad name="5" x="5.08" y="0" drill="0.508" diameter="1"/>
  4244. <pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
  4245. <pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
  4246. <pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
  4247. <pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
  4248. <pad name="6" x="6.35" y="0" drill="0.508" diameter="1"/>
  4249. <text x="-0.381" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">&gt;NAME</text>
  4250. <text x="-0.381" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">&gt;VALUE</text>
  4251. </package>
  4252. </packages>
  4253. <packages3d>
  4254. <package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1">
  4255. <description>Plated Through Hole
  4256. Specifications:
  4257. Pin count:2
  4258. Pin pitch:0.1"
  4259. Example device(s):
  4260. CONN_02
  4261. </description>
  4262. <packageinstances>
  4263. <packageinstance name="1X02"/>
  4264. </packageinstances>
  4265. </package3d>
  4266. <package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1">
  4267. <description>Molex 2-Pin Plated Through-Hole
  4268. Specifications:
  4269. Pin count:2
  4270. Pin pitch:0.1"
  4271. Datasheet referenced for footprint
  4272. Example device(s):
  4273. CONN_02
  4274. </description>
  4275. <packageinstances>
  4276. <packageinstance name="MOLEX-1X2"/>
  4277. </packageinstances>
  4278. </package3d>
  4279. <package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1">
  4280. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH
  4281. Specifications:
  4282. Pin count: 2
  4283. Pin pitch: 3.5mm/138mil
  4284. Datasheet referenced for footprint
  4285. Example device(s):
  4286. CONN_02
  4287. </description>
  4288. <packageinstances>
  4289. <packageinstance name="SCREWTERMINAL-3.5MM-2"/>
  4290. </packageinstances>
  4291. </package3d>
  4292. <package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1">
  4293. <description>JST-Right Angle Male Header SMT
  4294. Specifications:
  4295. Pin count: 2
  4296. Pin pitch: 2mm
  4297. Datasheet referenced for footprint
  4298. Example device(s):
  4299. CONN_02
  4300. JST_2MM_MALE
  4301. </description>
  4302. <packageinstances>
  4303. <packageinstance name="JST-2-SMD"/>
  4304. </packageinstances>
  4305. </package3d>
  4306. <package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1">
  4307. <description>Plated Through Hole
  4308. Specifications:
  4309. Pin count:2
  4310. Pin pitch:0.15"
  4311. Example device(s):
  4312. CONN_02
  4313. </description>
  4314. <packageinstances>
  4315. <packageinstance name="1X02_BIG"/>
  4316. </packageinstances>
  4317. </package3d>
  4318. <package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1">
  4319. <description>JST-Vertical Male Header SMT
  4320. Specifications:
  4321. Pin count: 2
  4322. Pin pitch: 2mm
  4323. Datasheet referenced for footprint
  4324. Example device(s):
  4325. CONN_02
  4326. </description>
  4327. <packageinstances>
  4328. <packageinstance name="JST-2-SMD-VERT"/>
  4329. </packageinstances>
  4330. </package3d>
  4331. <package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1">
  4332. <description>Screw Terminal 5mm Pitch -2 Pin PTH
  4333. Specifications:
  4334. Pin count: 2
  4335. Pin pitch: 5mm/197mil
  4336. Datasheet referenced for footprint
  4337. Example device(s):
  4338. CONN_02
  4339. </description>
  4340. <packageinstances>
  4341. <packageinstance name="SCREWTERMINAL-5MM-2"/>
  4342. </packageinstances>
  4343. </package3d>
  4344. <package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1">
  4345. <description>Plated Through Hole - Locking Footprint
  4346. Holes are staggered by 0.005" from center to hold pins while soldering.
  4347. Specifications:
  4348. Pin count:2
  4349. Pin pitch:0.1"
  4350. Example device(s):
  4351. CONN_02
  4352. </description>
  4353. <packageinstances>
  4354. <packageinstance name="1X02_LOCK"/>
  4355. </packageinstances>
  4356. </package3d>
  4357. <package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1">
  4358. <description>Molex 2-Pin Plated Through-Hole Locking Footprint
  4359. Holes are offset from center by 0.005" to hold pins in place during soldering.
  4360. Specifications:
  4361. Pin count:2
  4362. Pin pitch:0.1"
  4363. Datasheet referenced for footprint
  4364. Example device(s):
  4365. CONN_02
  4366. </description>
  4367. <packageinstances>
  4368. <packageinstance name="MOLEX-1X2_LOCK"/>
  4369. </packageinstances>
  4370. </package3d>
  4371. <package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1">
  4372. <description>Plated Through Hole - Long Pads with Locking Footprint
  4373. Pins are staggered by 0.005" from center to hold pins in place while soldering.
  4374. Specifications:
  4375. Pin count:2
  4376. Pin pitch:0.1"
  4377. Example device(s):
  4378. CONN_02
  4379. </description>
  4380. <packageinstances>
  4381. <packageinstance name="1X02_LOCK_LONGPADS"/>
  4382. </packageinstances>
  4383. </package3d>
  4384. <package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1">
  4385. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking
  4386. Holes are offset from center 0.005" to hold pins in place during soldering.
  4387. Specifications:
  4388. Pin count: 2
  4389. Pin pitch: 3.5mm/138mil
  4390. Datasheet referenced for footprint
  4391. Example device(s):
  4392. CONN_02
  4393. </description>
  4394. <packageinstances>
  4395. <packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/>
  4396. </packageinstances>
  4397. </package3d>
  4398. <package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1">
  4399. <description>Plated Through Hole - Long Pads without Silk Outline
  4400. Specifications:
  4401. Pin count:2
  4402. Pin pitch:0.1"
  4403. Example device(s):
  4404. CONN_02
  4405. </description>
  4406. <packageinstances>
  4407. <packageinstance name="1X02_LONGPADS"/>
  4408. </packageinstances>
  4409. </package3d>
  4410. <package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1">
  4411. <description>Plated Through Hole - No Silk Outline
  4412. Specifications:
  4413. Pin count:2
  4414. Pin pitch:0.1"
  4415. Example device(s):
  4416. CONN_02
  4417. </description>
  4418. <packageinstances>
  4419. <packageinstance name="1X02_NO_SILK"/>
  4420. </packageinstances>
  4421. </package3d>
  4422. <package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1">
  4423. <description>JST 2 Pin Right Angle Plated Through Hole
  4424. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4425. Specifications:
  4426. Pin count: 2
  4427. Pin pitch:2mm
  4428. Datasheet referenced for footprint
  4429. Example device(s):
  4430. CONN_02
  4431. </description>
  4432. <packageinstances>
  4433. <packageinstance name="JST-2-PTH"/>
  4434. </packageinstances>
  4435. </package3d>
  4436. <package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1">
  4437. <description>Plated Through Hole - 0.1" holes
  4438. Specifications:
  4439. Pin count:2
  4440. Pin pitch:0.2"
  4441. Example device(s):
  4442. CONN_02
  4443. </description>
  4444. <packageinstances>
  4445. <packageinstance name="1X02_XTRA_BIG"/>
  4446. </packageinstances>
  4447. </package3d>
  4448. <package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1">
  4449. <description>Pogo Pins Connector - No Silk Outline
  4450. Specifications:
  4451. Pin count:2
  4452. Pin pitch:0.1"
  4453. Example device(s):
  4454. CONN_02
  4455. </description>
  4456. <packageinstances>
  4457. <packageinstance name="1X02_PP_HOLES_ONLY"/>
  4458. </packageinstances>
  4459. </package3d>
  4460. <package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1">
  4461. <description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline
  4462. Specifications:
  4463. Pin count: 2
  4464. Pin pitch: 3.5mm/138mil
  4465. Datasheet referenced for footprint
  4466. Example device(s):
  4467. CONN_02
  4468. </description>
  4469. <packageinstances>
  4470. <packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/>
  4471. </packageinstances>
  4472. </package3d>
  4473. <package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1">
  4474. <description>JST 2 Pin Right Angle Plated Through Hole- No Silk
  4475. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4476. No silk outline of connector.
  4477. Specifications:
  4478. Pin count: 2
  4479. Pin pitch:2mm
  4480. Datasheet referenced for footprint
  4481. Example device(s):
  4482. CONN_02
  4483. </description>
  4484. <packageinstances>
  4485. <packageinstance name="JST-2-PTH-NS"/>
  4486. </packageinstances>
  4487. </package3d>
  4488. <package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1">
  4489. <description>JST 2 Pin Right Angle Plated Through Hole - KIT
  4490. tDocu indicate polarity for connections that match SparkFun LiPo battery terminations.
  4491. This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad.
  4492. This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side.
  4493. Specifications:
  4494. Pin count: 2
  4495. Pin pitch:2mm
  4496. Datasheet referenced for footprint
  4497. Example device(s):
  4498. CONN_02
  4499. </description>
  4500. <packageinstances>
  4501. <packageinstance name="JST-2-PTH-KIT"/>
  4502. </packageinstances>
  4503. </package3d>
  4504. <package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1">
  4505. <description>Spring Terminal- PCB Mount 2 Pin PTH
  4506. tDocu marks the spring arms
  4507. Specifications:
  4508. Pin count: 4
  4509. Pin pitch: 0.1"
  4510. Datasheet referenced for footprint
  4511. Example device(s):
  4512. CONN_02
  4513. </description>
  4514. <packageinstances>
  4515. <packageinstance name="SPRINGTERMINAL-2.54MM-2"/>
  4516. </packageinstances>
  4517. </package3d>
  4518. <package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1">
  4519. <description>2 Pin Screw Terminal - 2.54mm
  4520. Specifications:
  4521. Pin count:2
  4522. Pin pitch:0.1"
  4523. Example device(s):
  4524. CONN_02
  4525. </description>
  4526. <packageinstances>
  4527. <packageinstance name="1X02_2.54_SCREWTERM"/>
  4528. </packageinstances>
  4529. </package3d>
  4530. <package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1">
  4531. <description>2 pin poke-home connector
  4532. part number 2062-2P from STA</description>
  4533. <packageinstances>
  4534. <packageinstance name="1X02_POKEHOME"/>
  4535. </packageinstances>
  4536. </package3d>
  4537. <package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1">
  4538. <packageinstances>
  4539. <packageinstance name="1X02_RA_PTH_FEMALE"/>
  4540. </packageinstances>
  4541. </package3d>
  4542. <package3d name="1X04" urn="urn:adsk.eagle:package:38085/1" type="box" library_version="1">
  4543. <description>Plated Through Hole - 4 Pin
  4544. Specifications:
  4545. Pin count:4
  4546. Pin pitch:0.1"
  4547. Example device(s):
  4548. CONN_04
  4549. </description>
  4550. <packageinstances>
  4551. <packageinstance name="1X04"/>
  4552. </packageinstances>
  4553. </package3d>
  4554. <package3d name="MOLEX-1X4" urn="urn:adsk.eagle:package:38087/1" type="box" library_version="1">
  4555. <description>Molex 4-Pin Plated Through-Hole
  4556. Specifications:
  4557. Pin count:4
  4558. Pin pitch:0.1"
  4559. Datasheet referenced for footprint
  4560. Example device(s):
  4561. CONN_04
  4562. </description>
  4563. <packageinstances>
  4564. <packageinstance name="MOLEX-1X4"/>
  4565. </packageinstances>
  4566. </package3d>
  4567. <package3d name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:package:38090/1" type="box" library_version="1">
  4568. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH
  4569. Specifications:
  4570. Pin count: 4
  4571. Pin pitch: 3.5mm/138mil
  4572. Datasheet referenced for footprint
  4573. Example device(s):
  4574. CONN_04
  4575. </description>
  4576. <packageinstances>
  4577. <packageinstance name="SCREWTERMINAL-3.5MM-4"/>
  4578. </packageinstances>
  4579. </package3d>
  4580. <package3d name="1X04_1.27MM" urn="urn:adsk.eagle:package:38086/1" type="box" library_version="1">
  4581. <description>Plated Through Hole - 4 Pin
  4582. Specifications:
  4583. Pin count:4
  4584. Pin pitch: 1.27mm
  4585. Example device(s):
  4586. CONN_04
  4587. </description>
  4588. <packageinstances>
  4589. <packageinstance name="1X04_1.27MM"/>
  4590. </packageinstances>
  4591. </package3d>
  4592. <package3d name="1X04_LOCK" urn="urn:adsk.eagle:package:38089/1" type="box" library_version="1">
  4593. <description>Plated Through Hole - 4 Pin Locking Footprint
  4594. Pins are offset 0.005" from center to lock pins in place during soldering.
  4595. Specifications:
  4596. Pin count:4
  4597. Pin pitch:0.1"
  4598. Example device(s):
  4599. CONN_04
  4600. </description>
  4601. <packageinstances>
  4602. <packageinstance name="1X04_LOCK"/>
  4603. </packageinstances>
  4604. </package3d>
  4605. <package3d name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38091/1" type="box" library_version="1">
  4606. <description>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint
  4607. Holes are offset 0.005" from center to lock pins in place during soldering.
  4608. Specifications:
  4609. Pin count:4
  4610. Pin pitch:0.1"
  4611. Example device(s):
  4612. CONN_04
  4613. </description>
  4614. <packageinstances>
  4615. <packageinstance name="1X04_LOCK_LONGPADS"/>
  4616. </packageinstances>
  4617. </package3d>
  4618. <package3d name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:package:38092/1" type="box" library_version="1">
  4619. <description>Molex 4-Pin Plated Through-Hole Locking
  4620. Holes are offset 0.005" from center to hold pins in place during soldering.
  4621. Specifications:
  4622. Pin count:4
  4623. Pin pitch:0.1"
  4624. Datasheet referenced for footprint
  4625. Example device(s):
  4626. CONN_04
  4627. </description>
  4628. <packageinstances>
  4629. <packageinstance name="MOLEX-1X4_LOCK"/>
  4630. </packageinstances>
  4631. </package3d>
  4632. <package3d name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:package:38093/1" type="box" library_version="1">
  4633. <description>SMD - 4 Pin Right Angle Male Header
  4634. tDocu layer shows pin locations.
  4635. Specifications:
  4636. Pin count:4
  4637. Pin pitch:0.1"
  4638. Example device(s):
  4639. CONN_04
  4640. </description>
  4641. <packageinstances>
  4642. <packageinstance name="1X04_SMD_RA_MALE"/>
  4643. </packageinstances>
  4644. </package3d>
  4645. <package3d name="1X04_LONGPADS" urn="urn:adsk.eagle:package:38098/1" type="box" library_version="1">
  4646. <description>Plated Through Hole - 4 Pin Long Pads
  4647. Specifications:
  4648. Pin count:4
  4649. Pin pitch:0.1"
  4650. Example device(s):
  4651. CONN_04
  4652. </description>
  4653. <packageinstances>
  4654. <packageinstance name="1X04_LONGPADS"/>
  4655. </packageinstances>
  4656. </package3d>
  4657. <package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1">
  4658. <description>Plated Through Hole - 4 Pin No Silk Outline
  4659. Specifications:
  4660. Pin count:4
  4661. Pin pitch:0.1"
  4662. Example device(s):
  4663. CONN_04
  4664. </description>
  4665. <packageinstances>
  4666. <packageinstance name="1X04_NO_SILK"/>
  4667. </packageinstances>
  4668. </package3d>
  4669. <package3d name="JST-4-PTH" urn="urn:adsk.eagle:package:38101/1" type="box" library_version="1">
  4670. <description>JST Right Angle 4 Pin Plated Through Hole
  4671. Specifications:
  4672. Pin count: 4
  4673. Pin pitch: 2mm
  4674. Datasheet referenced for footprint
  4675. Example device(s):
  4676. CONN_04
  4677. </description>
  4678. <packageinstances>
  4679. <packageinstance name="JST-4-PTH"/>
  4680. </packageinstances>
  4681. </package3d>
  4682. <package3d name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:package:38095/1" type="box" library_version="1">
  4683. <description>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking
  4684. Holes are offset 0.005" from center to hold pins in place during soldering.
  4685. Specifications:
  4686. Pin count: 4
  4687. Pin pitch: 3.5mm/138mil
  4688. Datasheet referenced for footprint
  4689. Example device(s):
  4690. CONN_04
  4691. </description>
  4692. <packageinstances>
  4693. <packageinstance name="SCREWTERMINAL-3.5MM-4_LOCK"/>
  4694. </packageinstances>
  4695. </package3d>
  4696. <package3d name="1X04_1MM_RA" urn="urn:adsk.eagle:package:38096/1" type="box" library_version="1">
  4697. <description>SMD- 4 Pin Right Angle
  4698. Specifications:
  4699. Pin count:4
  4700. Pin pitch:0.1"
  4701. Example device(s):
  4702. CONN_04
  4703. </description>
  4704. <packageinstances>
  4705. <packageinstance name="1X04_1MM_RA"/>
  4706. </packageinstances>
  4707. </package3d>
  4708. <package3d name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:package:38097/1" type="box" library_version="1">
  4709. <description>SMD - 4 Pin Vertical Connector
  4710. Specifications:
  4711. Pin count:4
  4712. SMD Pad count:8
  4713. Pin pitch:0.1"
  4714. Example device(s):
  4715. CONN_04
  4716. </description>
  4717. <packageinstances>
  4718. <packageinstance name="1X04_SMD_VERTICAL_COMBO"/>
  4719. </packageinstances>
  4720. </package3d>
  4721. <package3d name="1X04_SMD_LONG" urn="urn:adsk.eagle:package:38099/1" type="box" library_version="1">
  4722. <description>SMD - 4 Pin w/ Long Solder Pads
  4723. No silk, but tDocu layer shows pin position.
  4724. Specifications:
  4725. Pin count:4
  4726. Pin pitch:0.1"
  4727. Example device(s):
  4728. CONN_04
  4729. </description>
  4730. <packageinstances>
  4731. <packageinstance name="1X04_SMD_LONG"/>
  4732. </packageinstances>
  4733. </package3d>
  4734. <package3d name="JST-4-PTH-VERT" urn="urn:adsk.eagle:package:38102/1" type="box" library_version="1">
  4735. <description>JST Vertical 4 Pin Plated Through Hole
  4736. Specifications:
  4737. Pin count: 4
  4738. Pin pitch: 2mm
  4739. Datasheet referenced for footprint
  4740. Example device(s):
  4741. CONN_04
  4742. </description>
  4743. <packageinstances>
  4744. <packageinstance name="JST-4-PTH-VERT"/>
  4745. </packageinstances>
  4746. </package3d>
  4747. <package3d name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38100/1" type="box" library_version="1">
  4748. <description>SMD - 4 Pin Right-Angle Female Header
  4749. Silk outline shows header location.
  4750. Specifications:
  4751. Pin count:4
  4752. Pin pitch:0.1"
  4753. Example device(s):
  4754. CONN_04
  4755. </description>
  4756. <packageinstances>
  4757. <packageinstance name="1X04_SMD_RA_FEMALE"/>
  4758. </packageinstances>
  4759. </package3d>
  4760. <package3d name="1X06" urn="urn:adsk.eagle:package:38009/1" type="box" library_version="1">
  4761. <description>Plated Through Hole - 6 Pin
  4762. Specifications:
  4763. Pin count:6
  4764. Pin pitch:0.1"
  4765. Example device(s):
  4766. CONN_06
  4767. </description>
  4768. <packageinstances>
  4769. <packageinstance name="1X06"/>
  4770. </packageinstances>
  4771. </package3d>
  4772. <package3d name="MOLEX-1X6" urn="urn:adsk.eagle:package:38117/1" type="box" library_version="1">
  4773. <description>Molex 6-Pin Plated Through-Hole
  4774. Specifications:
  4775. Pin count:6
  4776. Pin pitch:0.1"
  4777. Datasheet referenced for footprint
  4778. Example device(s):
  4779. CONN_06
  4780. </description>
  4781. <packageinstances>
  4782. <packageinstance name="MOLEX-1X6"/>
  4783. </packageinstances>
  4784. </package3d>
  4785. <package3d name="MOLEX-1X6-RA" urn="urn:adsk.eagle:package:38118/1" type="box" library_version="1">
  4786. <description>Molex 6-Pin Plated Through-Hole Right Angle
  4787. tPlace shows angle of connector.
  4788. Specifications:
  4789. Pin count:6
  4790. Pin pitch:0.1"
  4791. Datasheet referenced for footprint
  4792. Example device(s):
  4793. CONN_06
  4794. </description>
  4795. <packageinstances>
  4796. <packageinstance name="MOLEX-1X6-RA"/>
  4797. </packageinstances>
  4798. </package3d>
  4799. <package3d name="1X06-SMD_RA_MALE" urn="urn:adsk.eagle:package:38004/1" type="box" library_version="1">
  4800. <description>SMD - 6 Pin Right Angle Male Header
  4801. tDocu layer shows pin locations.
  4802. Specifications:
  4803. Pin count:6
  4804. Pin pitch:0.1"
  4805. Example device(s):
  4806. CONN_06
  4807. </description>
  4808. <packageinstances>
  4809. <packageinstance name="1X06-SMD_RA_MALE"/>
  4810. </packageinstances>
  4811. </package3d>
  4812. <package3d name="1X06_LOCK" urn="urn:adsk.eagle:package:38002/1" type="box" library_version="1">
  4813. <description>Plated Through Hole - 6 Pin with Locking Footprint
  4814. Holes are offset 0.005" from center, locking pins in place during soldering.
  4815. Specifications:
  4816. Pin count:6
  4817. Pin pitch:0.1"
  4818. Example device(s):
  4819. CONN_06
  4820. </description>
  4821. <packageinstances>
  4822. <packageinstance name="1X06_LOCK"/>
  4823. </packageinstances>
  4824. </package3d>
  4825. <package3d name="1X06_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38121/1" type="box" library_version="1">
  4826. <description>Plated Through Hole - 6 Pin with Locking Footprint with Long Pads
  4827. Holes are offset 0.005" from center, locking pins in place during soldering.
  4828. Specifications:
  4829. Pin count:6
  4830. Pin pitch:0.1"
  4831. Example device(s):
  4832. CONN_06
  4833. </description>
  4834. <packageinstances>
  4835. <packageinstance name="1X06_LOCK_LONGPADS"/>
  4836. </packageinstances>
  4837. </package3d>
  4838. <package3d name="MOLEX-1X6_LOCK" urn="urn:adsk.eagle:package:38123/1" type="box" library_version="1">
  4839. <description>Molex 6-Pin Plated Through-Hole Locking Footprint
  4840. Holes are offset 0.005" from center to hold pins in place during soldering.
  4841. Specifications:
  4842. Pin count:6
  4843. Pin pitch:0.1"
  4844. Datasheet referenced for footprint
  4845. Example device(s):
  4846. CONN_06
  4847. </description>
  4848. <packageinstances>
  4849. <packageinstance name="MOLEX-1X6_LOCK"/>
  4850. </packageinstances>
  4851. </package3d>
  4852. <package3d name="MOLEX_1X6_RA_LOCK" urn="urn:adsk.eagle:package:37992/1" type="box" library_version="1">
  4853. <description>Molex 6-Pin Plated Through-Hole Right Angle Locking Footprint
  4854. Holes are offset 0.005" from center to hold pins in place during soldering.
  4855. tPlace shows location of connector.
  4856. Specifications:
  4857. Pin count:6
  4858. Pin pitch:0.1"
  4859. Datasheet referenced for footprint
  4860. Example device(s):
  4861. CONN_06
  4862. </description>
  4863. <packageinstances>
  4864. <packageinstance name="MOLEX_1X6_RA_LOCK"/>
  4865. </packageinstances>
  4866. </package3d>
  4867. <package3d name="1X06_FEMALE_LOCK.010" urn="urn:adsk.eagle:package:38124/1" type="box" library_version="1">
  4868. <description>Plated Through Hole - 6 Pin Locking Header
  4869. Includes silk outline for 6 pin female header
  4870. Specifications:
  4871. Pin count:6
  4872. Pin pitch:0.1"
  4873. Datasheet referenced for footprint:
  4874. Example device(s):
  4875. CONN_06
  4876. </description>
  4877. <packageinstances>
  4878. <packageinstance name="1X06_FEMALE_LOCK.010"/>
  4879. </packageinstances>
  4880. </package3d>
  4881. <package3d name="1X06_LONGPADS" urn="urn:adsk.eagle:package:37991/1" type="box" library_version="1">
  4882. <description>Plated Through Hole - 6 Pin with Long Pads
  4883. Specifications:
  4884. Pin count:6
  4885. Pin pitch:0.1"
  4886. Example device(s):
  4887. CONN_06
  4888. </description>
  4889. <packageinstances>
  4890. <packageinstance name="1X06_LONGPADS"/>
  4891. </packageinstances>
  4892. </package3d>
  4893. <package3d name="SCREWTERMINAL-3.5MM-6" urn="urn:adsk.eagle:package:38122/1" type="box" library_version="1">
  4894. <description>Screw Terminal 3.5mm Pitch -6 Pin PTH
  4895. Specifications:
  4896. Pin count: 6
  4897. Pin pitch: 3.5mm/138mil
  4898. Datasheet referenced for footprint
  4899. Example device(s):
  4900. CONN_06
  4901. </description>
  4902. <packageinstances>
  4903. <packageinstance name="SCREWTERMINAL-3.5MM-6"/>
  4904. </packageinstances>
  4905. </package3d>
  4906. <package3d name="1X06-SMD-FEMALE" urn="urn:adsk.eagle:package:38125/1" type="box" library_version="1">
  4907. <description>Header - 6 pin Female SMD
  4908. Right angle 0.1"
  4909. Specifications:
  4910. Pin count:6
  4911. Pin pitch:0.1"
  4912. Datasheet referenced for footprint:
  4913. Example device(s):
  4914. CONN_06
  4915. </description>
  4916. <packageinstances>
  4917. <packageinstance name="1X06-SMD-FEMALE"/>
  4918. </packageinstances>
  4919. </package3d>
  4920. <package3d name="1X06_HOLES_ONLY" urn="urn:adsk.eagle:package:38126/1" type="box" library_version="1">
  4921. <description> 6 Pin Holes
  4922. No silk, no plating
  4923. Specifications:
  4924. Pin count:6
  4925. Pin pitch:0.1"
  4926. Example device(s):
  4927. CONN_06
  4928. </description>
  4929. <packageinstances>
  4930. <packageinstance name="1X06_HOLES_ONLY"/>
  4931. </packageinstances>
  4932. </package3d>
  4933. <package3d name="1X06_SMD_STRAIGHT" urn="urn:adsk.eagle:package:38139/1" type="box" library_version="1">
  4934. <description> 6 Pin SMD Female Header
  4935. Specifications:
  4936. Pin count:6
  4937. Pin pitch:0.1"
  4938. Datasheet referenced for footprint:
  4939. Example device(s):
  4940. CONN_06
  4941. </description>
  4942. <packageinstances>
  4943. <packageinstance name="1X06_SMD_STRAIGHT"/>
  4944. </packageinstances>
  4945. </package3d>
  4946. <package3d name="1X06_SMD_STRAIGHT_ALT" urn="urn:adsk.eagle:package:38141/1" type="box" library_version="1">
  4947. <description> 6 Pin SMD Female Header
  4948. Alternate pin configuration
  4949. Specifications:
  4950. Pin count:6
  4951. Pin pitch:0.1"
  4952. Datasheet referenced for footprint:
  4953. Example device(s):
  4954. CONN_06
  4955. </description>
  4956. <packageinstances>
  4957. <packageinstance name="1X06_SMD_STRAIGHT_ALT"/>
  4958. </packageinstances>
  4959. </package3d>
  4960. <package3d name="1X06_SMD_STRAIGHT_COMBO" urn="urn:adsk.eagle:package:38127/1" type="box" library_version="1">
  4961. <description> 6 Pin SMD Female Header - Combined Footprint
  4962. Specifications:
  4963. Pin count:6
  4964. Pin pitch:0.1"
  4965. Datasheet referenced for footprint:
  4966. Example device(s):
  4967. CONN_06
  4968. </description>
  4969. <packageinstances>
  4970. <packageinstance name="1X06_SMD_STRAIGHT_COMBO"/>
  4971. </packageinstances>
  4972. </package3d>
  4973. <package3d name="1X06_SMD_MALE" urn="urn:adsk.eagle:package:38128/1" type="box" library_version="1">
  4974. <description> 6 Pin SMD Male Header
  4975. Specifications:
  4976. Pin count:6
  4977. Pin pitch:0.1"
  4978. Datasheet referenced for footprint:
  4979. Example device(s):
  4980. CONN_06
  4981. </description>
  4982. <packageinstances>
  4983. <packageinstance name="1X06_SMD_MALE"/>
  4984. </packageinstances>
  4985. </package3d>
  4986. <package3d name="1X06-1MM" urn="urn:adsk.eagle:package:38023/1" type="box" library_version="1">
  4987. <description>JST SH Vertical 6-Pin Connector -SMD
  4988. Specifications:
  4989. Pin count:6
  4990. Pin pitch:1mm
  4991. Datasheet referenced for footprint
  4992. Example device(s):
  4993. CONN_06
  4994. EM-406
  4995. </description>
  4996. <packageinstances>
  4997. <packageinstance name="1X06-1MM"/>
  4998. </packageinstances>
  4999. </package3d>
  5000. <package3d name="1X06_NO_SILK" urn="urn:adsk.eagle:package:38130/1" type="box" library_version="1">
  5001. <description>Plated Through Hole - 6 Pin No Silk Outline
  5002. Specifications:
  5003. Pin count:6
  5004. Pin pitch:0.1"
  5005. Example device(s):
  5006. CONN_06
  5007. </description>
  5008. <packageinstances>
  5009. <packageinstance name="1X06_NO_SILK"/>
  5010. </packageinstances>
  5011. </package3d>
  5012. <package3d name="1X06_1.27MM" urn="urn:adsk.eagle:package:38131/1" type="box" library_version="1">
  5013. <description>Plated Through Hole - 6 Pin
  5014. Specifications:
  5015. Pin count:6
  5016. Pin pitch:1.27mm
  5017. Example device(s):
  5018. CONN_06
  5019. </description>
  5020. <packageinstances>
  5021. <packageinstance name="1X06_1.27MM"/>
  5022. </packageinstances>
  5023. </package3d>
  5024. </packages3d>
  5025. <symbols>
  5026. <symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1">
  5027. <description>&lt;h3&gt;2 Pin Connection&lt;/h3&gt;</description>
  5028. <wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  5029. <wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
  5030. <wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
  5031. <wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/>
  5032. <wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  5033. <wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
  5034. <text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  5035. <text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">&gt;NAME</text>
  5036. <pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5037. <pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5038. </symbol>
  5039. <symbol name="CONN_04" urn="urn:adsk.eagle:symbol:37701/1" library_version="1">
  5040. <description>&lt;h3&gt;4 Pin Connection&lt;/h3&gt;</description>
  5041. <wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  5042. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  5043. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  5044. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  5045. <wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
  5046. <wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  5047. <wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
  5048. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  5049. <text x="-5.08" y="-7.366" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  5050. <text x="-5.08" y="8.128" size="1.778" layer="95" font="vector">&gt;NAME</text>
  5051. <pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5052. <pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5053. <pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5054. <pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5055. </symbol>
  5056. <symbol name="CONN_06" urn="urn:adsk.eagle:symbol:37638/1" library_version="1">
  5057. <description>&lt;h3&gt;6 Pin Connection&lt;/h3&gt;</description>
  5058. <wire x1="1.27" y1="-7.62" x2="-5.08" y2="-7.62" width="0.4064" layer="94"/>
  5059. <wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
  5060. <wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
  5061. <wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/>
  5062. <wire x1="-5.08" y1="10.16" x2="-5.08" y2="-7.62" width="0.4064" layer="94"/>
  5063. <wire x1="1.27" y1="-7.62" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  5064. <wire x1="-5.08" y1="10.16" x2="1.27" y2="10.16" width="0.4064" layer="94"/>
  5065. <wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
  5066. <wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
  5067. <wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/>
  5068. <text x="-5.08" y="-9.906" size="1.778" layer="96" font="vector">&gt;VALUE</text>
  5069. <text x="-5.08" y="10.668" size="1.778" layer="95" font="vector">&gt;NAME</text>
  5070. <pin name="1" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5071. <pin name="2" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5072. <pin name="3" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5073. <pin name="4" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5074. <pin name="5" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5075. <pin name="6" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
  5076. </symbol>
  5077. </symbols>
  5078. <devicesets>
  5079. <deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1">
  5080. <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;
  5081. &lt;p&gt;&lt;/p&gt;
  5082. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5083. &lt;ul&gt;
  5084. &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;
  5085. &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;
  5086. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5087. &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;
  5088. &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;
  5089. &lt;/ul&gt;
  5090. &lt;p&gt;&lt;/p&gt;
  5091. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5092. &lt;ul&gt;
  5093. &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;
  5094. &lt;/ul&gt;
  5095. &lt;p&gt;&lt;/p&gt;
  5096. &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;
  5097. &lt;ul&gt;
  5098. &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;
  5099. &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;
  5100. &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;
  5101. &lt;p&gt;&lt;/p&gt;
  5102. &lt;/ul&gt;
  5103. &lt;p&gt;&lt;/p&gt;
  5104. &lt;b&gt;Special notes:&lt;/b&gt;
  5105. Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.&lt;br&gt;&lt;br&gt;
  5106. 2.54_SCREWTERM for use with PRT-10571.&lt;br&gt;&lt;br&gt;
  5107. 3.5mm Screw Terminal footprints for PRT-08084&lt;br&gt;&lt;br&gt;
  5108. 5mm Screw Terminal footprints for use with PRT-08432</description>
  5109. <gates>
  5110. <gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/>
  5111. </gates>
  5112. <devices>
  5113. <device name="" package="1X02">
  5114. <connects>
  5115. <connect gate="G$1" pin="1" pad="1"/>
  5116. <connect gate="G$1" pin="2" pad="2"/>
  5117. </connects>
  5118. <package3dinstances>
  5119. <package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/>
  5120. </package3dinstances>
  5121. <technologies>
  5122. <technology name=""/>
  5123. </technologies>
  5124. </device>
  5125. <device name="POLAR" package="MOLEX-1X2">
  5126. <connects>
  5127. <connect gate="G$1" pin="1" pad="1"/>
  5128. <connect gate="G$1" pin="2" pad="2"/>
  5129. </connects>
  5130. <package3dinstances>
  5131. <package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/>
  5132. </package3dinstances>
  5133. <technologies>
  5134. <technology name="">
  5135. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5136. </technology>
  5137. </technologies>
  5138. </device>
  5139. <device name="3.5MM" package="SCREWTERMINAL-3.5MM-2">
  5140. <connects>
  5141. <connect gate="G$1" pin="1" pad="1"/>
  5142. <connect gate="G$1" pin="2" pad="2"/>
  5143. </connects>
  5144. <package3dinstances>
  5145. <package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/>
  5146. </package3dinstances>
  5147. <technologies>
  5148. <technology name="">
  5149. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5150. </technology>
  5151. </technologies>
  5152. </device>
  5153. <device name="-JST-2MM-SMT" package="JST-2-SMD">
  5154. <connects>
  5155. <connect gate="G$1" pin="1" pad="2"/>
  5156. <connect gate="G$1" pin="2" pad="1"/>
  5157. </connects>
  5158. <package3dinstances>
  5159. <package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/>
  5160. </package3dinstances>
  5161. <technologies>
  5162. <technology name="">
  5163. <attribute name="PROD_ID" value="CONN-11443"/>
  5164. </technology>
  5165. </technologies>
  5166. </device>
  5167. <device name="PTH2" package="1X02_BIG">
  5168. <connects>
  5169. <connect gate="G$1" pin="1" pad="P$1"/>
  5170. <connect gate="G$1" pin="2" pad="P$2"/>
  5171. </connects>
  5172. <package3dinstances>
  5173. <package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/>
  5174. </package3dinstances>
  5175. <technologies>
  5176. <technology name=""/>
  5177. </technologies>
  5178. </device>
  5179. <device name="4UCON-15767" package="JST-2-SMD-VERT">
  5180. <connects>
  5181. <connect gate="G$1" pin="1" pad="GND"/>
  5182. <connect gate="G$1" pin="2" pad="VCC"/>
  5183. </connects>
  5184. <package3dinstances>
  5185. <package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/>
  5186. </package3dinstances>
  5187. <technologies>
  5188. <technology name=""/>
  5189. </technologies>
  5190. </device>
  5191. <device name="5MM" package="SCREWTERMINAL-5MM-2">
  5192. <connects>
  5193. <connect gate="G$1" pin="1" pad="1"/>
  5194. <connect gate="G$1" pin="2" pad="2"/>
  5195. </connects>
  5196. <package3dinstances>
  5197. <package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/>
  5198. </package3dinstances>
  5199. <technologies>
  5200. <technology name="">
  5201. <attribute name="SF_SKU" value="PRT-08432" constant="no"/>
  5202. </technology>
  5203. </technologies>
  5204. </device>
  5205. <device name="LOCK" package="1X02_LOCK">
  5206. <connects>
  5207. <connect gate="G$1" pin="1" pad="1"/>
  5208. <connect gate="G$1" pin="2" pad="2"/>
  5209. </connects>
  5210. <package3dinstances>
  5211. <package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/>
  5212. </package3dinstances>
  5213. <technologies>
  5214. <technology name=""/>
  5215. </technologies>
  5216. </device>
  5217. <device name="POLAR_LOCK" package="MOLEX-1X2_LOCK">
  5218. <connects>
  5219. <connect gate="G$1" pin="1" pad="1"/>
  5220. <connect gate="G$1" pin="2" pad="2"/>
  5221. </connects>
  5222. <package3dinstances>
  5223. <package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/>
  5224. </package3dinstances>
  5225. <technologies>
  5226. <technology name="">
  5227. <attribute name="SF_ID" value="PRT-09918" constant="no"/>
  5228. </technology>
  5229. </technologies>
  5230. </device>
  5231. <device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS">
  5232. <connects>
  5233. <connect gate="G$1" pin="1" pad="1"/>
  5234. <connect gate="G$1" pin="2" pad="2"/>
  5235. </connects>
  5236. <package3dinstances>
  5237. <package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/>
  5238. </package3dinstances>
  5239. <technologies>
  5240. <technology name=""/>
  5241. </technologies>
  5242. </device>
  5243. <device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK">
  5244. <connects>
  5245. <connect gate="G$1" pin="1" pad="1"/>
  5246. <connect gate="G$1" pin="2" pad="2"/>
  5247. </connects>
  5248. <package3dinstances>
  5249. <package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/>
  5250. </package3dinstances>
  5251. <technologies>
  5252. <technology name="">
  5253. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5254. </technology>
  5255. </technologies>
  5256. </device>
  5257. <device name="PTH3" package="1X02_LONGPADS">
  5258. <connects>
  5259. <connect gate="G$1" pin="1" pad="1"/>
  5260. <connect gate="G$1" pin="2" pad="2"/>
  5261. </connects>
  5262. <package3dinstances>
  5263. <package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/>
  5264. </package3dinstances>
  5265. <technologies>
  5266. <technology name=""/>
  5267. </technologies>
  5268. </device>
  5269. <device name="1X02_NO_SILK" package="1X02_NO_SILK">
  5270. <connects>
  5271. <connect gate="G$1" pin="1" pad="1"/>
  5272. <connect gate="G$1" pin="2" pad="2"/>
  5273. </connects>
  5274. <package3dinstances>
  5275. <package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/>
  5276. </package3dinstances>
  5277. <technologies>
  5278. <technology name=""/>
  5279. </technologies>
  5280. </device>
  5281. <device name="JST-PTH-2" package="JST-2-PTH">
  5282. <connects>
  5283. <connect gate="G$1" pin="1" pad="1"/>
  5284. <connect gate="G$1" pin="2" pad="2"/>
  5285. </connects>
  5286. <package3dinstances>
  5287. <package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/>
  5288. </package3dinstances>
  5289. <technologies>
  5290. <technology name="">
  5291. <attribute name="PROD_ID" value="CONN-09863" constant="no"/>
  5292. <attribute name="SKU" value="PRT-09914" constant="no"/>
  5293. </technology>
  5294. </technologies>
  5295. </device>
  5296. <device name="PTH4" package="1X02_XTRA_BIG">
  5297. <connects>
  5298. <connect gate="G$1" pin="1" pad="1"/>
  5299. <connect gate="G$1" pin="2" pad="2"/>
  5300. </connects>
  5301. <package3dinstances>
  5302. <package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/>
  5303. </package3dinstances>
  5304. <technologies>
  5305. <technology name=""/>
  5306. </technologies>
  5307. </device>
  5308. <device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY">
  5309. <connects>
  5310. <connect gate="G$1" pin="1" pad="1"/>
  5311. <connect gate="G$1" pin="2" pad="2"/>
  5312. </connects>
  5313. <package3dinstances>
  5314. <package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/>
  5315. </package3dinstances>
  5316. <technologies>
  5317. <technology name=""/>
  5318. </technologies>
  5319. </device>
  5320. <device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS">
  5321. <connects>
  5322. <connect gate="G$1" pin="1" pad="1"/>
  5323. <connect gate="G$1" pin="2" pad="2"/>
  5324. </connects>
  5325. <package3dinstances>
  5326. <package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/>
  5327. </package3dinstances>
  5328. <technologies>
  5329. <technology name="">
  5330. <attribute name="PROD_ID" value="CONN-08399" constant="no"/>
  5331. </technology>
  5332. </technologies>
  5333. </device>
  5334. <device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS">
  5335. <connects>
  5336. <connect gate="G$1" pin="1" pad="1"/>
  5337. <connect gate="G$1" pin="2" pad="2"/>
  5338. </connects>
  5339. <package3dinstances>
  5340. <package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/>
  5341. </package3dinstances>
  5342. <technologies>
  5343. <technology name=""/>
  5344. </technologies>
  5345. </device>
  5346. <device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT">
  5347. <connects>
  5348. <connect gate="G$1" pin="1" pad="1"/>
  5349. <connect gate="G$1" pin="2" pad="2"/>
  5350. </connects>
  5351. <package3dinstances>
  5352. <package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/>
  5353. </package3dinstances>
  5354. <technologies>
  5355. <technology name=""/>
  5356. </technologies>
  5357. </device>
  5358. <device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2">
  5359. <connects>
  5360. <connect gate="G$1" pin="1" pad="1"/>
  5361. <connect gate="G$1" pin="2" pad="2"/>
  5362. </connects>
  5363. <package3dinstances>
  5364. <package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/>
  5365. </package3dinstances>
  5366. <technologies>
  5367. <technology name=""/>
  5368. </technologies>
  5369. </device>
  5370. <device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM">
  5371. <connects>
  5372. <connect gate="G$1" pin="1" pad="P1"/>
  5373. <connect gate="G$1" pin="2" pad="P2"/>
  5374. </connects>
  5375. <package3dinstances>
  5376. <package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/>
  5377. </package3dinstances>
  5378. <technologies>
  5379. <technology name=""/>
  5380. </technologies>
  5381. </device>
  5382. <device name="SMALL_POKEHOME" package="1X02_POKEHOME">
  5383. <connects>
  5384. <connect gate="G$1" pin="1" pad="P1 P3"/>
  5385. <connect gate="G$1" pin="2" pad="P2 P4"/>
  5386. </connects>
  5387. <package3dinstances>
  5388. <package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/>
  5389. </package3dinstances>
  5390. <technologies>
  5391. <technology name="">
  5392. <attribute name="PROD_ID" value="CONN-13512"/>
  5393. </technology>
  5394. </technologies>
  5395. </device>
  5396. <device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE">
  5397. <connects>
  5398. <connect gate="G$1" pin="1" pad="1"/>
  5399. <connect gate="G$1" pin="2" pad="2"/>
  5400. </connects>
  5401. <package3dinstances>
  5402. <package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/>
  5403. </package3dinstances>
  5404. <technologies>
  5405. <technology name="">
  5406. <attribute name="PROD_ID" value="CONN-13700"/>
  5407. </technology>
  5408. </technologies>
  5409. </device>
  5410. </devices>
  5411. </deviceset>
  5412. <deviceset name="CONN_04" urn="urn:adsk.eagle:component:38327/1" prefix="J" uservalue="yes" library_version="1">
  5413. <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;
  5414. &lt;p&gt;&lt;/p&gt;
  5415. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5416. &lt;ul&gt;
  5417. &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;
  5418. &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;
  5419. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5420. &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;
  5421. &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;
  5422. &lt;/ul&gt;
  5423. &lt;p&gt;&lt;/p&gt;
  5424. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5425. &lt;ul&gt;
  5426. &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;
  5427. &lt;/ul&gt;
  5428. &lt;p&gt;&lt;/p&gt;
  5429. &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;
  5430. &lt;ul&gt;
  5431. &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;
  5432. &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;
  5433. &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;
  5434. &lt;p&gt;&lt;/p&gt;
  5435. &lt;/ul&gt;
  5436. &lt;p&gt;&lt;/p&gt;
  5437. &lt;b&gt;Special notes:&lt;/b&gt;
  5438. &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>
  5439. <gates>
  5440. <gate name="G$1" symbol="CONN_04" x="-2.54" y="0"/>
  5441. </gates>
  5442. <devices>
  5443. <device name="" package="1X04">
  5444. <connects>
  5445. <connect gate="G$1" pin="1" pad="1"/>
  5446. <connect gate="G$1" pin="2" pad="2"/>
  5447. <connect gate="G$1" pin="3" pad="3"/>
  5448. <connect gate="G$1" pin="4" pad="4"/>
  5449. </connects>
  5450. <package3dinstances>
  5451. <package3dinstance package3d_urn="urn:adsk.eagle:package:38085/1"/>
  5452. </package3dinstances>
  5453. <technologies>
  5454. <technology name="">
  5455. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5456. </technology>
  5457. </technologies>
  5458. </device>
  5459. <device name="POLAR" package="MOLEX-1X4">
  5460. <connects>
  5461. <connect gate="G$1" pin="1" pad="1"/>
  5462. <connect gate="G$1" pin="2" pad="2"/>
  5463. <connect gate="G$1" pin="3" pad="3"/>
  5464. <connect gate="G$1" pin="4" pad="4"/>
  5465. </connects>
  5466. <package3dinstances>
  5467. <package3dinstance package3d_urn="urn:adsk.eagle:package:38087/1"/>
  5468. </package3dinstances>
  5469. <technologies>
  5470. <technology name="">
  5471. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5472. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5473. </technology>
  5474. </technologies>
  5475. </device>
  5476. <device name="SCREW" package="SCREWTERMINAL-3.5MM-4">
  5477. <connects>
  5478. <connect gate="G$1" pin="1" pad="1"/>
  5479. <connect gate="G$1" pin="2" pad="2"/>
  5480. <connect gate="G$1" pin="3" pad="3"/>
  5481. <connect gate="G$1" pin="4" pad="4"/>
  5482. </connects>
  5483. <package3dinstances>
  5484. <package3dinstance package3d_urn="urn:adsk.eagle:package:38090/1"/>
  5485. </package3dinstances>
  5486. <technologies>
  5487. <technology name="">
  5488. <attribute name="PROD_ID" value="2xCONN-08399" constant="no"/>
  5489. <attribute name="SF_ID" value="2xPRT-08084" constant="no"/>
  5490. </technology>
  5491. </technologies>
  5492. </device>
  5493. <device name="1.27MM" package="1X04_1.27MM">
  5494. <connects>
  5495. <connect gate="G$1" pin="1" pad="1"/>
  5496. <connect gate="G$1" pin="2" pad="2"/>
  5497. <connect gate="G$1" pin="3" pad="3"/>
  5498. <connect gate="G$1" pin="4" pad="4"/>
  5499. </connects>
  5500. <package3dinstances>
  5501. <package3dinstance package3d_urn="urn:adsk.eagle:package:38086/1"/>
  5502. </package3dinstances>
  5503. <technologies>
  5504. <technology name=""/>
  5505. </technologies>
  5506. </device>
  5507. <device name="LOCK" package="1X04_LOCK">
  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. </connects>
  5514. <package3dinstances>
  5515. <package3dinstance package3d_urn="urn:adsk.eagle:package:38089/1"/>
  5516. </package3dinstances>
  5517. <technologies>
  5518. <technology name="">
  5519. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5520. </technology>
  5521. </technologies>
  5522. </device>
  5523. <device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS">
  5524. <connects>
  5525. <connect gate="G$1" pin="1" pad="1"/>
  5526. <connect gate="G$1" pin="2" pad="2"/>
  5527. <connect gate="G$1" pin="3" pad="3"/>
  5528. <connect gate="G$1" pin="4" pad="4"/>
  5529. </connects>
  5530. <package3dinstances>
  5531. <package3dinstance package3d_urn="urn:adsk.eagle:package:38091/1"/>
  5532. </package3dinstances>
  5533. <technologies>
  5534. <technology name="">
  5535. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5536. </technology>
  5537. </technologies>
  5538. </device>
  5539. <device name="POLAR_LOCK" package="MOLEX-1X4_LOCK">
  5540. <connects>
  5541. <connect gate="G$1" pin="1" pad="1"/>
  5542. <connect gate="G$1" pin="2" pad="2"/>
  5543. <connect gate="G$1" pin="3" pad="3"/>
  5544. <connect gate="G$1" pin="4" pad="4"/>
  5545. </connects>
  5546. <package3dinstances>
  5547. <package3dinstance package3d_urn="urn:adsk.eagle:package:38092/1"/>
  5548. </package3dinstances>
  5549. <technologies>
  5550. <technology name="">
  5551. <attribute name="PROD_ID" value="CONN-08186" constant="no"/>
  5552. <attribute name="SF_ID" value="PRT-08231" constant="no"/>
  5553. </technology>
  5554. </technologies>
  5555. </device>
  5556. <device name="SMD" package="1X04_SMD_RA_MALE">
  5557. <connects>
  5558. <connect gate="G$1" pin="1" pad="1"/>
  5559. <connect gate="G$1" pin="2" pad="2"/>
  5560. <connect gate="G$1" pin="3" pad="3"/>
  5561. <connect gate="G$1" pin="4" pad="4"/>
  5562. </connects>
  5563. <package3dinstances>
  5564. <package3dinstance package3d_urn="urn:adsk.eagle:package:38093/1"/>
  5565. </package3dinstances>
  5566. <technologies>
  5567. <technology name="">
  5568. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5569. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5570. </technology>
  5571. </technologies>
  5572. </device>
  5573. <device name="LONGPADS" package="1X04_LONGPADS">
  5574. <connects>
  5575. <connect gate="G$1" pin="1" pad="1"/>
  5576. <connect gate="G$1" pin="2" pad="2"/>
  5577. <connect gate="G$1" pin="3" pad="3"/>
  5578. <connect gate="G$1" pin="4" pad="4"/>
  5579. </connects>
  5580. <package3dinstances>
  5581. <package3dinstance package3d_urn="urn:adsk.eagle:package:38098/1"/>
  5582. </package3dinstances>
  5583. <technologies>
  5584. <technology name="">
  5585. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5586. </technology>
  5587. </technologies>
  5588. </device>
  5589. <device name="1X04_NO_SILK" package="1X04_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. </connects>
  5596. <package3dinstances>
  5597. <package3dinstance package3d_urn="urn:adsk.eagle:package:38094/1"/>
  5598. </package3dinstances>
  5599. <technologies>
  5600. <technology name="">
  5601. <attribute name="PROD_ID" value="CONN-09696" constant="no"/>
  5602. </technology>
  5603. </technologies>
  5604. </device>
  5605. <device name="JST-PTH" package="JST-4-PTH">
  5606. <connects>
  5607. <connect gate="G$1" pin="1" pad="1"/>
  5608. <connect gate="G$1" pin="2" pad="2"/>
  5609. <connect gate="G$1" pin="3" pad="3"/>
  5610. <connect gate="G$1" pin="4" pad="4"/>
  5611. </connects>
  5612. <package3dinstances>
  5613. <package3dinstance package3d_urn="urn:adsk.eagle:package:38101/1"/>
  5614. </package3dinstances>
  5615. <technologies>
  5616. <technology name="">
  5617. <attribute name="PROD_ID" value="WIRE-13531" constant="no"/>
  5618. <attribute name="SF_ID" value="PRT-09916" constant="no"/>
  5619. </technology>
  5620. </technologies>
  5621. </device>
  5622. <device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK">
  5623. <connects>
  5624. <connect gate="G$1" pin="1" pad="1"/>
  5625. <connect gate="G$1" pin="2" pad="2"/>
  5626. <connect gate="G$1" pin="3" pad="3"/>
  5627. <connect gate="G$1" pin="4" pad="4"/>
  5628. </connects>
  5629. <package3dinstances>
  5630. <package3dinstance package3d_urn="urn:adsk.eagle:package:38095/1"/>
  5631. </package3dinstances>
  5632. <technologies>
  5633. <technology name=""/>
  5634. </technologies>
  5635. </device>
  5636. <device name="SMD2" package="1X04_1MM_RA">
  5637. <connects>
  5638. <connect gate="G$1" pin="1" pad="1"/>
  5639. <connect gate="G$1" pin="2" pad="2"/>
  5640. <connect gate="G$1" pin="3" pad="3"/>
  5641. <connect gate="G$1" pin="4" pad="4"/>
  5642. </connects>
  5643. <package3dinstances>
  5644. <package3dinstance package3d_urn="urn:adsk.eagle:package:38096/1"/>
  5645. </package3dinstances>
  5646. <technologies>
  5647. <technology name="">
  5648. <attribute name="PROD_ID" value="CONN-10310" constant="no"/>
  5649. <attribute name="SF_ID" value="PRT-10208" constant="no"/>
  5650. </technology>
  5651. </technologies>
  5652. </device>
  5653. <device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_VERTICAL_COMBO">
  5654. <connects>
  5655. <connect gate="G$1" pin="1" pad="1"/>
  5656. <connect gate="G$1" pin="2" pad="2"/>
  5657. <connect gate="G$1" pin="3" pad="3"/>
  5658. <connect gate="G$1" pin="4" pad="4"/>
  5659. </connects>
  5660. <package3dinstances>
  5661. <package3dinstance package3d_urn="urn:adsk.eagle:package:38097/1"/>
  5662. </package3dinstances>
  5663. <technologies>
  5664. <technology name="">
  5665. <attribute name="PROD_ID" value="CONN-08511"/>
  5666. <attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/>
  5667. </technology>
  5668. </technologies>
  5669. </device>
  5670. <device name="SMD_LONG" package="1X04_SMD_LONG">
  5671. <connects>
  5672. <connect gate="G$1" pin="1" pad="1"/>
  5673. <connect gate="G$1" pin="2" pad="2"/>
  5674. <connect gate="G$1" pin="3" pad="3"/>
  5675. <connect gate="G$1" pin="4" pad="4"/>
  5676. </connects>
  5677. <package3dinstances>
  5678. <package3dinstance package3d_urn="urn:adsk.eagle:package:38099/1"/>
  5679. </package3dinstances>
  5680. <technologies>
  5681. <technology name="">
  5682. <attribute name="PROD_ID" value="CONN-09140" constant="no"/>
  5683. <attribute name="SF_ID" value="PRT-12638" constant="no"/>
  5684. </technology>
  5685. </technologies>
  5686. </device>
  5687. <device name="JST-PTH-VERT" package="JST-4-PTH-VERT">
  5688. <connects>
  5689. <connect gate="G$1" pin="1" pad="1"/>
  5690. <connect gate="G$1" pin="2" pad="2"/>
  5691. <connect gate="G$1" pin="3" pad="3"/>
  5692. <connect gate="G$1" pin="4" pad="4"/>
  5693. </connects>
  5694. <package3dinstances>
  5695. <package3dinstance package3d_urn="urn:adsk.eagle:package:38102/1"/>
  5696. </package3dinstances>
  5697. <technologies>
  5698. <technology name="">
  5699. <attribute name="PROD_ID" value="CONN-13251"/>
  5700. </technology>
  5701. </technologies>
  5702. </device>
  5703. <device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE">
  5704. <connects>
  5705. <connect gate="G$1" pin="1" pad="1"/>
  5706. <connect gate="G$1" pin="2" pad="2"/>
  5707. <connect gate="G$1" pin="3" pad="3"/>
  5708. <connect gate="G$1" pin="4" pad="4"/>
  5709. </connects>
  5710. <package3dinstances>
  5711. <package3dinstance package3d_urn="urn:adsk.eagle:package:38100/1"/>
  5712. </package3dinstances>
  5713. <technologies>
  5714. <technology name="">
  5715. <attribute name="PROD_ID" value="CONN-12382" constant="no"/>
  5716. </technology>
  5717. </technologies>
  5718. </device>
  5719. </devices>
  5720. </deviceset>
  5721. <deviceset name="CONN_06" urn="urn:adsk.eagle:component:38332/1" prefix="J" uservalue="yes" library_version="1">
  5722. <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;
  5723. &lt;p&gt;&lt;/p&gt;
  5724. &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;
  5725. &lt;ul&gt;
  5726. &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;
  5727. &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;
  5728. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;
  5729. &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;
  5730. &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;
  5731. &lt;li&gt;&lt;a href="https://www.sparkfun.com/products/9280"&gt; Arduino Stackable Header - 6 Pin&lt;/a&gt; (PRT-09280)&lt;/li&gt;
  5732. &lt;/ul&gt;
  5733. &lt;p&gt;&lt;/p&gt;
  5734. &lt;b&gt; For SCREWTERMINALS and SPRING TERMINALS visit here:&lt;/b&gt;
  5735. &lt;ul&gt;
  5736. &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;
  5737. &lt;/ul&gt;
  5738. &lt;p&gt;&lt;/p&gt;
  5739. &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;
  5740. &lt;ul&gt;
  5741. &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;
  5742. &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;
  5743. &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;
  5744. &lt;p&gt;&lt;/p&gt;
  5745. &lt;/ul&gt;</description>
  5746. <gates>
  5747. <gate name="G$1" symbol="CONN_06" x="-2.54" y="0"/>
  5748. </gates>
  5749. <devices>
  5750. <device name="SILK_FEMALE_PTH" package="1X06">
  5751. <connects>
  5752. <connect gate="G$1" pin="1" pad="1"/>
  5753. <connect gate="G$1" pin="2" pad="2"/>
  5754. <connect gate="G$1" pin="3" pad="3"/>
  5755. <connect gate="G$1" pin="4" pad="4"/>
  5756. <connect gate="G$1" pin="5" pad="5"/>
  5757. <connect gate="G$1" pin="6" pad="6"/>
  5758. </connects>
  5759. <package3dinstances>
  5760. <package3dinstance package3d_urn="urn:adsk.eagle:package:38009/1"/>
  5761. </package3dinstances>
  5762. <technologies>
  5763. <technology name="">
  5764. <attribute name="PROD_ID" value="CONN-08437"/>
  5765. </technology>
  5766. </technologies>
  5767. </device>
  5768. <device name="POLAR" package="MOLEX-1X6">
  5769. <connects>
  5770. <connect gate="G$1" pin="1" pad="1"/>
  5771. <connect gate="G$1" pin="2" pad="2"/>
  5772. <connect gate="G$1" pin="3" pad="3"/>
  5773. <connect gate="G$1" pin="4" pad="4"/>
  5774. <connect gate="G$1" pin="5" pad="5"/>
  5775. <connect gate="G$1" pin="6" pad="6"/>
  5776. </connects>
  5777. <package3dinstances>
  5778. <package3dinstance package3d_urn="urn:adsk.eagle:package:38117/1"/>
  5779. </package3dinstances>
  5780. <technologies>
  5781. <technology name=""/>
  5782. </technologies>
  5783. </device>
  5784. <device name="RA" package="MOLEX-1X6-RA">
  5785. <connects>
  5786. <connect gate="G$1" pin="1" pad="1"/>
  5787. <connect gate="G$1" pin="2" pad="2"/>
  5788. <connect gate="G$1" pin="3" pad="3"/>
  5789. <connect gate="G$1" pin="4" pad="4"/>
  5790. <connect gate="G$1" pin="5" pad="5"/>
  5791. <connect gate="G$1" pin="6" pad="6"/>
  5792. </connects>
  5793. <package3dinstances>
  5794. <package3dinstance package3d_urn="urn:adsk.eagle:package:38118/1"/>
  5795. </package3dinstances>
  5796. <technologies>
  5797. <technology name=""/>
  5798. </technologies>
  5799. </device>
  5800. <device name="SMD" package="1X06-SMD_RA_MALE">
  5801. <connects>
  5802. <connect gate="G$1" pin="1" pad="1"/>
  5803. <connect gate="G$1" pin="2" pad="2"/>
  5804. <connect gate="G$1" pin="3" pad="3"/>
  5805. <connect gate="G$1" pin="4" pad="4"/>
  5806. <connect gate="G$1" pin="5" pad="5"/>
  5807. <connect gate="G$1" pin="6" pad="6"/>
  5808. </connects>
  5809. <package3dinstances>
  5810. <package3dinstance package3d_urn="urn:adsk.eagle:package:38004/1"/>
  5811. </package3dinstances>
  5812. <technologies>
  5813. <technology name="">
  5814. <attribute name="PROD_ID" value="CONN-08971" constant="no"/>
  5815. <attribute name="VALUE" value="RA 6Pin SMD" constant="no"/>
  5816. </technology>
  5817. </technologies>
  5818. </device>
  5819. <device name="LOCK" package="1X06_LOCK">
  5820. <connects>
  5821. <connect gate="G$1" pin="1" pad="1"/>
  5822. <connect gate="G$1" pin="2" pad="2"/>
  5823. <connect gate="G$1" pin="3" pad="3"/>
  5824. <connect gate="G$1" pin="4" pad="4"/>
  5825. <connect gate="G$1" pin="5" pad="5"/>
  5826. <connect gate="G$1" pin="6" pad="6"/>
  5827. </connects>
  5828. <package3dinstances>
  5829. <package3dinstance package3d_urn="urn:adsk.eagle:package:38002/1"/>
  5830. </package3dinstances>
  5831. <technologies>
  5832. <technology name=""/>
  5833. </technologies>
  5834. </device>
  5835. <device name="LOCK_LONGPADS" package="1X06_LOCK_LONGPADS">
  5836. <connects>
  5837. <connect gate="G$1" pin="1" pad="1"/>
  5838. <connect gate="G$1" pin="2" pad="2"/>
  5839. <connect gate="G$1" pin="3" pad="3"/>
  5840. <connect gate="G$1" pin="4" pad="4"/>
  5841. <connect gate="G$1" pin="5" pad="5"/>
  5842. <connect gate="G$1" pin="6" pad="6"/>
  5843. </connects>
  5844. <package3dinstances>
  5845. <package3dinstance package3d_urn="urn:adsk.eagle:package:38121/1"/>
  5846. </package3dinstances>
  5847. <technologies>
  5848. <technology name=""/>
  5849. </technologies>
  5850. </device>
  5851. <device name="POLAR_LOCK" package="MOLEX-1X6_LOCK">
  5852. <connects>
  5853. <connect gate="G$1" pin="1" pad="1"/>
  5854. <connect gate="G$1" pin="2" pad="2"/>
  5855. <connect gate="G$1" pin="3" pad="3"/>
  5856. <connect gate="G$1" pin="4" pad="4"/>
  5857. <connect gate="G$1" pin="5" pad="5"/>
  5858. <connect gate="G$1" pin="6" pad="6"/>
  5859. </connects>
  5860. <package3dinstances>
  5861. <package3dinstance package3d_urn="urn:adsk.eagle:package:38123/1"/>
  5862. </package3dinstances>
  5863. <technologies>
  5864. <technology name=""/>
  5865. </technologies>
  5866. </device>
  5867. <device name="RA_LOCK" package="MOLEX_1X6_RA_LOCK">
  5868. <connects>
  5869. <connect gate="G$1" pin="1" pad="1"/>
  5870. <connect gate="G$1" pin="2" pad="2"/>
  5871. <connect gate="G$1" pin="3" pad="3"/>
  5872. <connect gate="G$1" pin="4" pad="4"/>
  5873. <connect gate="G$1" pin="5" pad="5"/>
  5874. <connect gate="G$1" pin="6" pad="6"/>
  5875. </connects>
  5876. <package3dinstances>
  5877. <package3dinstance package3d_urn="urn:adsk.eagle:package:37992/1"/>
  5878. </package3dinstances>
  5879. <technologies>
  5880. <technology name=""/>
  5881. </technologies>
  5882. </device>
  5883. <device name="FEMALE_LOCK" package="1X06_FEMALE_LOCK.010">
  5884. <connects>
  5885. <connect gate="G$1" pin="1" pad="1"/>
  5886. <connect gate="G$1" pin="2" pad="2"/>
  5887. <connect gate="G$1" pin="3" pad="3"/>
  5888. <connect gate="G$1" pin="4" pad="4"/>
  5889. <connect gate="G$1" pin="5" pad="5"/>
  5890. <connect gate="G$1" pin="6" pad="6"/>
  5891. </connects>
  5892. <package3dinstances>
  5893. <package3dinstance package3d_urn="urn:adsk.eagle:package:38124/1"/>
  5894. </package3dinstances>
  5895. <technologies>
  5896. <technology name=""/>
  5897. </technologies>
  5898. </device>
  5899. <device name="LONGPADS" package="1X06_LONGPADS">
  5900. <connects>
  5901. <connect gate="G$1" pin="1" pad="1"/>
  5902. <connect gate="G$1" pin="2" pad="2"/>
  5903. <connect gate="G$1" pin="3" pad="3"/>
  5904. <connect gate="G$1" pin="4" pad="4"/>
  5905. <connect gate="G$1" pin="5" pad="5"/>
  5906. <connect gate="G$1" pin="6" pad="6"/>
  5907. </connects>
  5908. <package3dinstances>
  5909. <package3dinstance package3d_urn="urn:adsk.eagle:package:37991/1"/>
  5910. </package3dinstances>
  5911. <technologies>
  5912. <technology name=""/>
  5913. </technologies>
  5914. </device>
  5915. <device name="3.5MM-6" package="SCREWTERMINAL-3.5MM-6">
  5916. <connects>
  5917. <connect gate="G$1" pin="1" pad="1"/>
  5918. <connect gate="G$1" pin="2" pad="2"/>
  5919. <connect gate="G$1" pin="3" pad="3"/>
  5920. <connect gate="G$1" pin="4" pad="4"/>
  5921. <connect gate="G$1" pin="5" pad="5"/>
  5922. <connect gate="G$1" pin="6" pad="6"/>
  5923. </connects>
  5924. <package3dinstances>
  5925. <package3dinstance package3d_urn="urn:adsk.eagle:package:38122/1"/>
  5926. </package3dinstances>
  5927. <technologies>
  5928. <technology name=""/>
  5929. </technologies>
  5930. </device>
  5931. <device name="SMD-FEMALE-V2" package="1X06-SMD-FEMALE">
  5932. <connects>
  5933. <connect gate="G$1" pin="1" pad="1"/>
  5934. <connect gate="G$1" pin="2" pad="2"/>
  5935. <connect gate="G$1" pin="3" pad="3"/>
  5936. <connect gate="G$1" pin="4" pad="4"/>
  5937. <connect gate="G$1" pin="5" pad="5"/>
  5938. <connect gate="G$1" pin="6" pad="6"/>
  5939. </connects>
  5940. <package3dinstances>
  5941. <package3dinstance package3d_urn="urn:adsk.eagle:package:38125/1"/>
  5942. </package3dinstances>
  5943. <technologies>
  5944. <technology name="">
  5945. <attribute name="PROD_ID" value="CONN-09668"/>
  5946. </technology>
  5947. </technologies>
  5948. </device>
  5949. <device name="POGOPIN_HOLES_ONLY" package="1X06_HOLES_ONLY">
  5950. <connects>
  5951. <connect gate="G$1" pin="1" pad="1"/>
  5952. <connect gate="G$1" pin="2" pad="2"/>
  5953. <connect gate="G$1" pin="3" pad="3"/>
  5954. <connect gate="G$1" pin="4" pad="4"/>
  5955. <connect gate="G$1" pin="5" pad="5"/>
  5956. <connect gate="G$1" pin="6" pad="6"/>
  5957. </connects>
  5958. <package3dinstances>
  5959. <package3dinstance package3d_urn="urn:adsk.eagle:package:38126/1"/>
  5960. </package3dinstances>
  5961. <technologies>
  5962. <technology name="">
  5963. <attribute name="PROD_ID" value="CONN-08437"/>
  5964. </technology>
  5965. </technologies>
  5966. </device>
  5967. <device name="SMD-STRAIGHT-FEMALE" package="1X06_SMD_STRAIGHT">
  5968. <connects>
  5969. <connect gate="G$1" pin="1" pad="1"/>
  5970. <connect gate="G$1" pin="2" pad="2"/>
  5971. <connect gate="G$1" pin="3" pad="3"/>
  5972. <connect gate="G$1" pin="4" pad="4"/>
  5973. <connect gate="G$1" pin="5" pad="5"/>
  5974. <connect gate="G$1" pin="6" pad="6"/>
  5975. </connects>
  5976. <package3dinstances>
  5977. <package3dinstance package3d_urn="urn:adsk.eagle:package:38139/1"/>
  5978. </package3dinstances>
  5979. <technologies>
  5980. <technology name="">
  5981. <attribute name="PROD_ID" value="CONN-10203"/>
  5982. </technology>
  5983. </technologies>
  5984. </device>
  5985. <device name="SMD-STRAIGHT-ALT-FEMALE" package="1X06_SMD_STRAIGHT_ALT">
  5986. <connects>
  5987. <connect gate="G$1" pin="1" pad="1"/>
  5988. <connect gate="G$1" pin="2" pad="2"/>
  5989. <connect gate="G$1" pin="3" pad="3"/>
  5990. <connect gate="G$1" pin="4" pad="4"/>
  5991. <connect gate="G$1" pin="5" pad="5"/>
  5992. <connect gate="G$1" pin="6" pad="6"/>
  5993. </connects>
  5994. <package3dinstances>
  5995. <package3dinstance package3d_urn="urn:adsk.eagle:package:38141/1"/>
  5996. </package3dinstances>
  5997. <technologies>
  5998. <technology name="">
  5999. <attribute name="PROD_ID" value="CONN-10203"/>
  6000. </technology>
  6001. </technologies>
  6002. </device>
  6003. <device name="SMD-STRAIGHT-COMBO-FEMALE" package="1X06_SMD_STRAIGHT_COMBO">
  6004. <connects>
  6005. <connect gate="G$1" pin="1" pad="1"/>
  6006. <connect gate="G$1" pin="2" pad="2"/>
  6007. <connect gate="G$1" pin="3" pad="3"/>
  6008. <connect gate="G$1" pin="4" pad="4"/>
  6009. <connect gate="G$1" pin="5" pad="5"/>
  6010. <connect gate="G$1" pin="6" pad="6"/>
  6011. </connects>
  6012. <package3dinstances>
  6013. <package3dinstance package3d_urn="urn:adsk.eagle:package:38127/1"/>
  6014. </package3dinstances>
  6015. <technologies>
  6016. <technology name="">
  6017. <attribute name="PROD_ID" value="CONN-10203"/>
  6018. </technology>
  6019. </technologies>
  6020. </device>
  6021. <device name="SMD_MALE" package="1X06_SMD_MALE">
  6022. <connects>
  6023. <connect gate="G$1" pin="1" pad="1"/>
  6024. <connect gate="G$1" pin="2" pad="2"/>
  6025. <connect gate="G$1" pin="3" pad="3"/>
  6026. <connect gate="G$1" pin="4" pad="4"/>
  6027. <connect gate="G$1" pin="5" pad="5"/>
  6028. <connect gate="G$1" pin="6" pad="6"/>
  6029. </connects>
  6030. <package3dinstances>
  6031. <package3dinstance package3d_urn="urn:adsk.eagle:package:38128/1"/>
  6032. </package3dinstances>
  6033. <technologies>
  6034. <technology name="">
  6035. <attribute name="PROD_ID" value="CONN-11293"/>
  6036. </technology>
  6037. </technologies>
  6038. </device>
  6039. <device name="SMD-1MM" package="1X06-1MM">
  6040. <connects>
  6041. <connect gate="G$1" pin="1" pad="1"/>
  6042. <connect gate="G$1" pin="2" pad="2"/>
  6043. <connect gate="G$1" pin="3" pad="3"/>
  6044. <connect gate="G$1" pin="4" pad="4"/>
  6045. <connect gate="G$1" pin="5" pad="5"/>
  6046. <connect gate="G$1" pin="6" pad="6"/>
  6047. </connects>
  6048. <package3dinstances>
  6049. <package3dinstance package3d_urn="urn:adsk.eagle:package:38023/1"/>
  6050. </package3dinstances>
  6051. <technologies>
  6052. <technology name="">
  6053. <attribute name="PROD_ID" value="CONN-08249" constant="no"/>
  6054. <attribute name="SF_ID" value="GPS-00579" constant="no"/>
  6055. </technology>
  6056. </technologies>
  6057. </device>
  6058. <device name="NO_SILK_FEMALE_PTH" package="1X06_NO_SILK">
  6059. <connects>
  6060. <connect gate="G$1" pin="1" pad="1"/>
  6061. <connect gate="G$1" pin="2" pad="2"/>
  6062. <connect gate="G$1" pin="3" pad="3"/>
  6063. <connect gate="G$1" pin="4" pad="4"/>
  6064. <connect gate="G$1" pin="5" pad="5"/>
  6065. <connect gate="G$1" pin="6" pad="6"/>
  6066. </connects>
  6067. <package3dinstances>
  6068. <package3dinstance package3d_urn="urn:adsk.eagle:package:38130/1"/>
  6069. </package3dinstances>
  6070. <technologies>
  6071. <technology name="">
  6072. <attribute name="PROD_ID" value="CONN-08437"/>
  6073. </technology>
  6074. </technologies>
  6075. </device>
  6076. <device name="1.27MM" package="1X06_1.27MM">
  6077. <connects>
  6078. <connect gate="G$1" pin="1" pad="1"/>
  6079. <connect gate="G$1" pin="2" pad="2"/>
  6080. <connect gate="G$1" pin="3" pad="3"/>
  6081. <connect gate="G$1" pin="4" pad="4"/>
  6082. <connect gate="G$1" pin="5" pad="5"/>
  6083. <connect gate="G$1" pin="6" pad="6"/>
  6084. </connects>
  6085. <package3dinstances>
  6086. <package3dinstance package3d_urn="urn:adsk.eagle:package:38131/1"/>
  6087. </package3dinstances>
  6088. <technologies>
  6089. <technology name=""/>
  6090. </technologies>
  6091. </device>
  6092. <device name="NO_SILK_NO_POP" package="1X06_NO_SILK">
  6093. <connects>
  6094. <connect gate="G$1" pin="1" pad="1"/>
  6095. <connect gate="G$1" pin="2" pad="2"/>
  6096. <connect gate="G$1" pin="3" pad="3"/>
  6097. <connect gate="G$1" pin="4" pad="4"/>
  6098. <connect gate="G$1" pin="5" pad="5"/>
  6099. <connect gate="G$1" pin="6" pad="6"/>
  6100. </connects>
  6101. <package3dinstances>
  6102. <package3dinstance package3d_urn="urn:adsk.eagle:package:38130/1"/>
  6103. </package3dinstances>
  6104. <technologies>
  6105. <technology name=""/>
  6106. </technologies>
  6107. </device>
  6108. </devices>
  6109. </deviceset>
  6110. </devicesets>
  6111. </library>
  6112. <library name="eScooter">
  6113. <packages>
  6114. <package name="DIOM5027X220N" urn="urn:adsk.eagle:footprint:21928331/1">
  6115. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6116. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6117. <wire x1="2.5" y1="1.35" x2="-3.3699" y2="1.35" width="0.12" layer="21"/>
  6118. <wire x1="-3.3699" y1="1.35" x2="-3.3699" y2="-1.35" width="0.12" layer="21"/>
  6119. <wire x1="-3.3699" y1="-1.35" x2="2.5" y2="-1.35" width="0.12" layer="21"/>
  6120. <wire x1="2.5" y1="-1.35" x2="-2.5" y2="-1.35" width="0.12" layer="51"/>
  6121. <wire x1="-2.5" y1="-1.35" x2="-2.5" y2="1.35" width="0.12" layer="51"/>
  6122. <wire x1="-2.5" y1="1.35" x2="2.5" y2="1.35" width="0.12" layer="51"/>
  6123. <wire x1="2.5" y1="1.35" x2="2.5" y2="-1.35" width="0.12" layer="51"/>
  6124. <smd name="1" x="-2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6125. <smd name="2" x="2.1" y="0" dx="1.9118" dy="1.5118" layer="1"/>
  6126. <text x="0" y="1.985" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6127. <text x="0" y="-1.985" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6128. </package>
  6129. <package name="CAPAE1230X1250N" urn="urn:adsk.eagle:footprint:21812987/1">
  6130. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6131. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6132. <wire x1="-6.25" y1="1.3186" x2="-6.25" y2="3.6573" width="0.12" layer="21"/>
  6133. <wire x1="-6.25" y1="3.6573" x2="-3.6573" y2="6.25" width="0.12" layer="21"/>
  6134. <wire x1="-3.6573" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="21"/>
  6135. <wire x1="6.25" y1="6.25" x2="6.25" y2="1.3186" width="0.12" layer="21"/>
  6136. <wire x1="-6.25" y1="-1.3186" x2="-6.25" y2="-3.6573" width="0.12" layer="21"/>
  6137. <wire x1="-6.25" y1="-3.6573" x2="-3.6573" y2="-6.25" width="0.12" layer="21"/>
  6138. <wire x1="-3.6573" y1="-6.25" x2="6.25" y2="-6.25" width="0.12" layer="21"/>
  6139. <wire x1="6.25" y1="-6.25" x2="6.25" y2="-1.3186" width="0.12" layer="21"/>
  6140. <wire x1="6.25" y1="-6.25" x2="-6.25" y2="-6.25" width="0.12" layer="51"/>
  6141. <wire x1="-6.25" y1="-6.25" x2="-6.25" y2="6.25" width="0.12" layer="51"/>
  6142. <wire x1="-6.25" y1="6.25" x2="6.25" y2="6.25" width="0.12" layer="51"/>
  6143. <wire x1="6.25" y1="6.25" x2="6.25" y2="-6.25" width="0.12" layer="51"/>
  6144. <smd name="1" x="-4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6145. <smd name="2" x="4.925" y="0" dx="5.4618" dy="2.1291" layer="1"/>
  6146. <text x="0" y="6.885" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6147. <text x="0" y="-6.885" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6148. </package>
  6149. <package name="DIP8" urn="urn:adsk.eagle:footprint:4470/1">
  6150. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; Gull Wing Surface Mount Optioon 300&lt;p&gt;
  6151. Source: http://www.avagotech.com/docs/AV02-0410EN</description>
  6152. <wire x1="-4.81" y1="-3.075" x2="4.81" y2="-3.075" width="0.2032" layer="51"/>
  6153. <wire x1="4.81" y1="-3.075" x2="4.81" y2="3.075" width="0.2032" layer="21"/>
  6154. <wire x1="4.81" y1="3.075" x2="-4.81" y2="3.075" width="0.2032" layer="51"/>
  6155. <wire x1="-4.81" y1="3.075" x2="-4.81" y2="-3.075" width="0.2032" layer="21"/>
  6156. <circle x="-3.81" y="-2.159" radius="0.3667" width="0" layer="21"/>
  6157. <smd name="1" x="-3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  6158. <smd name="2" x="-1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  6159. <smd name="3" x="1.27" y="-4.45" dx="1.27" dy="2" layer="1"/>
  6160. <smd name="4" x="3.81" y="-4.45" dx="1.16" dy="2" layer="1"/>
  6161. <smd name="5" x="3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  6162. <smd name="6" x="1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  6163. <smd name="7" x="-1.27" y="4.45" dx="1.27" dy="2" layer="1"/>
  6164. <smd name="8" x="-3.81" y="4.45" dx="1.16" dy="2" layer="1"/>
  6165. <text x="-5.635" y="-3.1351" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6166. <text x="6.905" y="-4.4051" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6167. <rectangle x1="-4.0899" y1="-4.825" x2="-3.5301" y2="-3.81" layer="51"/>
  6168. <rectangle x1="-1.5499" y1="-4.825" x2="-0.9901" y2="-3.81" layer="51"/>
  6169. <rectangle x1="0.9901" y1="-4.825" x2="1.5499" y2="-3.81" layer="51"/>
  6170. <rectangle x1="3.5301" y1="-4.825" x2="4.0899" y2="-3.81" layer="51"/>
  6171. <rectangle x1="3.5301" y1="3.81" x2="4.0899" y2="4.825" layer="51"/>
  6172. <rectangle x1="0.9901" y1="3.81" x2="1.5499" y2="4.825" layer="51"/>
  6173. <rectangle x1="-1.5499" y1="3.81" x2="-0.9901" y2="4.825" layer="51"/>
  6174. <rectangle x1="-4.0899" y1="3.81" x2="-3.5301" y2="4.825" layer="51"/>
  6175. <rectangle x1="-2.15" y1="3.1" x2="-0.4" y2="3.81" layer="51" rot="R180"/>
  6176. <rectangle x1="-4.1" y1="3.1" x2="-2.94" y2="3.81" layer="51" rot="R180"/>
  6177. <rectangle x1="0.39" y1="3.1" x2="2.14" y2="3.81" layer="51" rot="R180"/>
  6178. <rectangle x1="2.93" y1="3.1" x2="4.1" y2="3.81" layer="51" rot="R180"/>
  6179. <rectangle x1="-4.075" y1="-3.81" x2="-2.93" y2="-3.1" layer="51"/>
  6180. <rectangle x1="-2.14" y1="-3.81" x2="-0.39" y2="-3.1" layer="51"/>
  6181. <rectangle x1="0.4" y1="-3.81" x2="2.15" y2="-3.1" layer="51"/>
  6182. <rectangle x1="2.94" y1="-3.81" x2="4.1" y2="-3.1" layer="51"/>
  6183. </package>
  6184. <package name="DIP826W56P254L937H458Q8B" urn="urn:adsk.eagle:footprint:22059849/1">
  6185. <description>8-DIP, 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span, 9.38 X 6.99 X 4.58 mm body
  6186. &lt;p&gt;8-pin DIP package with 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span with body size 9.38 X 6.99 X 4.58 mm&lt;/p&gt;</description>
  6187. <circle x="-5.3669" y="3.81" radius="0.25" width="0" layer="21"/>
  6188. <wire x1="-3.935" y1="4.7969" x2="-3.935" y2="4.955" width="0.12" layer="21"/>
  6189. <wire x1="-3.935" y1="4.955" x2="3.935" y2="4.955" width="0.12" layer="21"/>
  6190. <wire x1="3.935" y1="4.955" x2="3.935" y2="4.7969" width="0.12" layer="21"/>
  6191. <wire x1="-3.935" y1="-4.7969" x2="-3.935" y2="-4.955" width="0.12" layer="21"/>
  6192. <wire x1="-3.935" y1="-4.955" x2="3.935" y2="-4.955" width="0.12" layer="21"/>
  6193. <wire x1="3.935" y1="-4.955" x2="3.935" y2="-4.7969" width="0.12" layer="21"/>
  6194. <wire x1="3.935" y1="-4.955" x2="-3.935" y2="-4.955" width="0.12" layer="51"/>
  6195. <wire x1="-3.935" y1="-4.955" x2="-3.935" y2="4.955" width="0.12" layer="51"/>
  6196. <wire x1="-3.935" y1="4.955" x2="3.935" y2="4.955" width="0.12" layer="51"/>
  6197. <wire x1="3.935" y1="4.955" x2="3.935" y2="-4.955" width="0.12" layer="51"/>
  6198. <pad name="1" x="-4.13" y="3.81" drill="0.8657" diameter="1.4657"/>
  6199. <pad name="2" x="-4.13" y="1.27" drill="0.8657" diameter="1.4657"/>
  6200. <pad name="3" x="-4.13" y="-1.27" drill="0.8657" diameter="1.4657"/>
  6201. <pad name="4" x="-4.13" y="-3.81" drill="0.8657" diameter="1.4657"/>
  6202. <pad name="5" x="4.13" y="-3.81" drill="0.8657" diameter="1.4657"/>
  6203. <pad name="6" x="4.13" y="-1.27" drill="0.8657" diameter="1.4657"/>
  6204. <pad name="7" x="4.13" y="1.27" drill="0.8657" diameter="1.4657"/>
  6205. <pad name="8" x="4.13" y="3.81" drill="0.8657" diameter="1.4657"/>
  6206. <text x="0" y="5.59" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6207. <text x="0" y="-5.59" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6208. </package>
  6209. <package name="XT60">
  6210. <pad name="GND" x="-3.6" y="0" drill="2.6" diameter="4" shape="square"/>
  6211. <pad name="VCC" x="3.6" y="0" drill="2.6" diameter="4"/>
  6212. <text x="-2.9" y="3.5" size="1.27" layer="25">&gt;NAME</text>
  6213. <text x="-3.1" y="-4.1" size="1.27" layer="27">&gt;VALUE</text>
  6214. </package>
  6215. </packages>
  6216. <packages3d>
  6217. <package3d name="DIOM5027X220N" urn="urn:adsk.eagle:package:21928182/1" type="model">
  6218. <description>Molded Body, 5.00 X 2.70 X 2.20 mm body
  6219. &lt;p&gt;Molded Body package with body size 5.00 X 2.70 X 2.20 mm&lt;/p&gt;</description>
  6220. <packageinstances>
  6221. <packageinstance name="DIOM5027X220N"/>
  6222. </packageinstances>
  6223. </package3d>
  6224. <package3d name="CAPAE1230X1250N" urn="urn:adsk.eagle:package:21812541/1" type="model">
  6225. <description>ECAP (Aluminum Electrolytic Capacitor), 12.30 X 12.50 mm body
  6226. &lt;p&gt;ECAP (Aluminum Electrolytic Capacitor) package with body size 12.30 X 12.50 mm&lt;/p&gt;</description>
  6227. <packageinstances>
  6228. <packageinstance name="CAPAE1230X1250N"/>
  6229. </packageinstances>
  6230. </package3d>
  6231. <package3d name="DIP8" urn="urn:adsk.eagle:package:8089856/1" locally_modified="yes" type="box">
  6232. <description>&lt;b&gt;SMD DIL08&lt;/b&gt; &lt;p&gt;
  6233. dual in line package'</description>
  6234. <packageinstances>
  6235. <packageinstance name="DIP8"/>
  6236. </packageinstances>
  6237. </package3d>
  6238. <package3d name="DIP826W56P254L937H458Q8B" urn="urn:adsk.eagle:package:22059831/1" type="model">
  6239. <description>8-DIP, 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span, 9.38 X 6.99 X 4.58 mm body
  6240. &lt;p&gt;8-pin DIP package with 2.54 mm (0.10 in) pitch, 8.26 mm (0.33 in) span with body size 9.38 X 6.99 X 4.58 mm&lt;/p&gt;</description>
  6241. <packageinstances>
  6242. <packageinstance name="DIP826W56P254L937H458Q8B"/>
  6243. </packageinstances>
  6244. </package3d>
  6245. </packages3d>
  6246. <symbols>
  6247. <symbol name="TVS_DIODE">
  6248. <wire x1="0" y1="0" x2="-1.27" y2="1.524" width="0.254" layer="94"/>
  6249. <wire x1="1.27" y1="1.524" x2="0" y2="0" width="0.254" layer="94"/>
  6250. <wire x1="-1.778" y1="-0.508" x2="-1.27" y2="0" width="0.254" layer="94"/>
  6251. <wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.254" layer="94"/>
  6252. <wire x1="1.27" y1="0" x2="1.778" y2="0.508" width="0.254" layer="94"/>
  6253. <wire x1="0" y1="0" x2="-1.27" y2="-1.524" width="0.254" layer="94"/>
  6254. <wire x1="1.27" y1="-1.524" x2="0" y2="0" width="0.254" layer="94"/>
  6255. <wire x1="-1.27" y1="1.524" x2="1.27" y2="1.524" width="0.254" layer="94"/>
  6256. <wire x1="-1.27" y1="-1.524" x2="1.27" y2="-1.524" width="0.254" layer="94"/>
  6257. <pin name="P$1" x="0" y="4.064" visible="off" length="short" rot="R270"/>
  6258. <pin name="P$2" x="0" y="-4.064" visible="off" length="short" rot="R90"/>
  6259. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  6260. <text x="2.54" y="-2.54" size="1.778" layer="96">&gt;VALUE</text>
  6261. </symbol>
  6262. <symbol name="C">
  6263. <wire x1="-2.54" y1="1.27" x2="2.54" y2="1.27" width="0.254" layer="94"/>
  6264. <wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.254" layer="94" curve="-90"/>
  6265. <pin name="P$1" x="0" y="6.35" visible="off" length="middle" direction="pwr" rot="R270"/>
  6266. <pin name="P$2" x="0" y="-5.08" visible="off" length="middle" direction="pwr" rot="R90"/>
  6267. <text x="-3.81" y="1.27" size="1.778" layer="94">+</text>
  6268. <text x="2.54" y="2.54" size="1.778" layer="95">&gt;NAME</text>
  6269. <text x="2.54" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6270. </symbol>
  6271. <symbol name="MX5035">
  6272. <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>
  6273. <wire x1="-10.16" y1="12.7" x2="10.16" y2="12.7" width="0.254" layer="94"/>
  6274. <wire x1="10.16" y1="12.7" x2="10.16" y2="-12.7" width="0.254" layer="94"/>
  6275. <wire x1="10.16" y1="-12.7" x2="-10.16" y2="-12.7" width="0.254" layer="94"/>
  6276. <wire x1="-10.16" y1="-12.7" x2="-10.16" y2="12.7" width="0.254" layer="94"/>
  6277. <pin name="BST" x="-15.24" y="7.62" length="middle" direction="in"/>
  6278. <pin name="VD" x="-15.24" y="2.54" length="middle" direction="in"/>
  6279. <pin name="SGND" x="-15.24" y="-2.54" length="middle" direction="in"/>
  6280. <pin name="FB" x="-15.24" y="-7.62" length="middle" direction="in"/>
  6281. <pin name="ON/OFF" x="15.24" y="-7.62" length="middle" direction="in" rot="R180"/>
  6282. <pin name="GND" x="15.24" y="-2.54" length="middle" direction="pwr" rot="R180"/>
  6283. <pin name="VIN" x="15.24" y="2.54" length="middle" direction="pwr" rot="R180"/>
  6284. <pin name="LX" x="15.24" y="7.62" length="middle" direction="pwr" rot="R180"/>
  6285. <text x="-10.16" y="15.24" size="1.778" layer="95">&gt;NAME</text>
  6286. <text x="-10.16" y="-17.78" size="1.778" layer="96">&gt;VALUE</text>
  6287. </symbol>
  6288. <symbol name="XT60">
  6289. <description>XT60 connector</description>
  6290. <pin name="P$1" x="-5.08" y="5.08" visible="off" length="middle" direction="sup"/>
  6291. <pin name="P$2" x="-5.08" y="2.54" visible="off" length="middle" direction="sup"/>
  6292. <wire x1="-2.54" y1="7.62" x2="2.54" y2="7.62" width="0.254" layer="94"/>
  6293. <wire x1="2.54" y1="7.62" x2="2.54" y2="0" width="0.254" layer="94"/>
  6294. <wire x1="2.54" y1="0" x2="-2.54" y2="0" width="0.254" layer="94"/>
  6295. <wire x1="-2.54" y1="0" x2="-2.54" y2="7.62" width="0.254" layer="94"/>
  6296. <text x="-5.08" y="10.16" size="1.778" layer="95">&gt;NAME</text>
  6297. <text x="-5.08" y="-5.08" size="1.778" layer="96">&gt;VALUE</text>
  6298. </symbol>
  6299. </symbols>
  6300. <devicesets>
  6301. <deviceset name="TVS_DIODE">
  6302. <description>TVS protective diode</description>
  6303. <gates>
  6304. <gate name="D$1" symbol="TVS_DIODE" x="0" y="0"/>
  6305. </gates>
  6306. <devices>
  6307. <device name="SMA" package="DIOM5027X220N">
  6308. <connects>
  6309. <connect gate="D$1" pin="P$1" pad="1"/>
  6310. <connect gate="D$1" pin="P$2" pad="2"/>
  6311. </connects>
  6312. <package3dinstances>
  6313. <package3dinstance package3d_urn="urn:adsk.eagle:package:21928182/1"/>
  6314. </package3dinstances>
  6315. <technologies>
  6316. <technology name=""/>
  6317. </technologies>
  6318. </device>
  6319. </devices>
  6320. </deviceset>
  6321. <deviceset name="C">
  6322. <gates>
  6323. <gate name="G$1" symbol="C" x="-1.27" y="-1.27"/>
  6324. </gates>
  6325. <devices>
  6326. <device name="PANASONIC_H13" package="CAPAE1230X1250N">
  6327. <connects>
  6328. <connect gate="G$1" pin="P$1" pad="1"/>
  6329. <connect gate="G$1" pin="P$2" pad="2"/>
  6330. </connects>
  6331. <package3dinstances>
  6332. <package3dinstance package3d_urn="urn:adsk.eagle:package:21812541/1"/>
  6333. </package3dinstances>
  6334. <technologies>
  6335. <technology name=""/>
  6336. </technologies>
  6337. </device>
  6338. </devices>
  6339. </deviceset>
  6340. <deviceset name="MAX5035">
  6341. <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>
  6342. <gates>
  6343. <gate name="G$1" symbol="MX5035" x="0" y="0"/>
  6344. </gates>
  6345. <devices>
  6346. <device name="DIP8" package="DIP8">
  6347. <connects>
  6348. <connect gate="G$1" pin="BST" pad="1"/>
  6349. <connect gate="G$1" pin="FB" pad="4"/>
  6350. <connect gate="G$1" pin="GND" pad="6"/>
  6351. <connect gate="G$1" pin="LX" pad="8"/>
  6352. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  6353. <connect gate="G$1" pin="SGND" pad="3"/>
  6354. <connect gate="G$1" pin="VD" pad="2"/>
  6355. <connect gate="G$1" pin="VIN" pad="7"/>
  6356. </connects>
  6357. <package3dinstances>
  6358. <package3dinstance package3d_urn="urn:adsk.eagle:package:8089856/1"/>
  6359. </package3dinstances>
  6360. <technologies>
  6361. <technology name=""/>
  6362. </technologies>
  6363. </device>
  6364. <device name="PDIP8" package="DIP826W56P254L937H458Q8B">
  6365. <connects>
  6366. <connect gate="G$1" pin="BST" pad="1"/>
  6367. <connect gate="G$1" pin="FB" pad="4"/>
  6368. <connect gate="G$1" pin="GND" pad="6"/>
  6369. <connect gate="G$1" pin="LX" pad="8"/>
  6370. <connect gate="G$1" pin="ON/OFF" pad="5"/>
  6371. <connect gate="G$1" pin="SGND" pad="3"/>
  6372. <connect gate="G$1" pin="VD" pad="2"/>
  6373. <connect gate="G$1" pin="VIN" pad="7"/>
  6374. </connects>
  6375. <package3dinstances>
  6376. <package3dinstance package3d_urn="urn:adsk.eagle:package:22059831/1"/>
  6377. </package3dinstances>
  6378. <technologies>
  6379. <technology name=""/>
  6380. </technologies>
  6381. </device>
  6382. </devices>
  6383. </deviceset>
  6384. <deviceset name="XT60">
  6385. <gates>
  6386. <gate name="G$1" symbol="XT60" x="0" y="0"/>
  6387. </gates>
  6388. <devices>
  6389. <device name="" package="XT60">
  6390. <connects>
  6391. <connect gate="G$1" pin="P$1" pad="GND"/>
  6392. <connect gate="G$1" pin="P$2" pad="VCC"/>
  6393. </connects>
  6394. <technologies>
  6395. <technology name=""/>
  6396. </technologies>
  6397. </device>
  6398. </devices>
  6399. </deviceset>
  6400. </devicesets>
  6401. </library>
  6402. <library name="Transistor">
  6403. <description>&lt;B&gt;BJT, JFET, MOSFET, UJT, Darlington</description>
  6404. <packages>
  6405. <package name="SOT23" urn="urn:adsk.eagle:footprint:28669/1">
  6406. <description>&lt;b&gt;SOT-23&lt;/b&gt;</description>
  6407. <wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  6408. <wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/>
  6409. <wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/>
  6410. <wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/>
  6411. <smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/>
  6412. <smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  6413. <smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/>
  6414. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6415. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6416. <rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/>
  6417. <rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/>
  6418. <rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/>
  6419. </package>
  6420. <package name="TO92" urn="urn:adsk.eagle:footprint:28459/1">
  6421. <description>&lt;b&gt;TO 92&lt;/b&gt;</description>
  6422. <wire x1="-2.0946" y1="-1.651" x2="-2.6549" y2="-0.254" width="0.127" layer="21" curve="-32.781"/>
  6423. <wire x1="-2.6549" y1="-0.254" x2="-0.7863" y2="2.5485" width="0.127" layer="21" curve="-78.3185"/>
  6424. <wire x1="0.7863" y1="2.5484" x2="2.0945" y2="-1.651" width="0.127" layer="21" curve="-111.1"/>
  6425. <wire x1="-2.0945" y1="-1.651" x2="2.0945" y2="-1.651" width="0.127" layer="21"/>
  6426. <wire x1="-2.2537" y1="-0.254" x2="-0.2863" y2="-0.254" width="0.127" layer="51"/>
  6427. <wire x1="-2.6549" y1="-0.254" x2="-2.2537" y2="-0.254" width="0.127" layer="21"/>
  6428. <wire x1="-0.2863" y1="-0.254" x2="0.2863" y2="-0.254" width="0.127" layer="21"/>
  6429. <wire x1="2.2537" y1="-0.254" x2="2.6549" y2="-0.254" width="0.127" layer="21"/>
  6430. <wire x1="0.2863" y1="-0.254" x2="2.2537" y2="-0.254" width="0.127" layer="51"/>
  6431. <wire x1="-0.7863" y1="2.5485" x2="0.7863" y2="2.5485" width="0.127" layer="51" curve="-34.2936"/>
  6432. <pad name="1" x="1.27" y="0" drill="0.8128" shape="octagon"/>
  6433. <pad name="2" x="0" y="1.905" drill="0.8128" shape="octagon"/>
  6434. <pad name="3" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
  6435. <text x="3.175" y="0.635" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6436. <text x="3.175" y="-1.27" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6437. <text x="-0.635" y="0.635" size="1.27" layer="51" ratio="10">2</text>
  6438. <text x="-2.159" y="0" size="1.27" layer="51" ratio="10">3</text>
  6439. <text x="1.143" y="0" size="1.27" layer="51" ratio="10">1</text>
  6440. </package>
  6441. <package name="TO220BV" urn="urn:adsk.eagle:footprint:29371/1">
  6442. <description>&lt;b&gt;Molded Package&lt;/b&gt;&lt;p&gt;
  6443. grid 2.54 mm</description>
  6444. <wire x1="4.699" y1="-4.318" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  6445. <wire x1="4.699" y1="-4.318" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  6446. <wire x1="-4.953" y1="-4.064" x2="-4.699" y2="-4.318" width="0.1524" layer="21"/>
  6447. <wire x1="5.08" y1="-1.143" x2="4.953" y2="-4.064" width="0.1524" layer="21"/>
  6448. <wire x1="-4.953" y1="-4.064" x2="-5.08" y2="-1.143" width="0.1524" layer="21"/>
  6449. <circle x="-4.4958" y="-3.7084" radius="0.254" width="0" layer="21"/>
  6450. <pad name="G" x="-2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6451. <pad name="D" x="0" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6452. <pad name="S" x="2.54" y="-2.54" drill="1.016" shape="long" rot="R90"/>
  6453. <text x="-5.08" y="-6.0452" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6454. <text x="-5.08" y="-7.62" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6455. <rectangle x1="-5.334" y1="-0.762" x2="5.334" y2="0" layer="21"/>
  6456. <rectangle x1="-5.334" y1="-1.27" x2="-3.429" y2="-0.762" layer="21"/>
  6457. <rectangle x1="-1.651" y1="-1.27" x2="-0.889" y2="-0.762" layer="21"/>
  6458. <rectangle x1="-3.429" y1="-1.27" x2="-1.651" y2="-0.762" layer="51"/>
  6459. <rectangle x1="0.889" y1="-1.27" x2="1.651" y2="-0.762" layer="21"/>
  6460. <rectangle x1="3.429" y1="-1.27" x2="5.334" y2="-0.762" layer="21"/>
  6461. <rectangle x1="-0.889" y1="-1.27" x2="0.889" y2="-0.762" layer="51"/>
  6462. <rectangle x1="1.651" y1="-1.27" x2="3.429" y2="-0.762" layer="51"/>
  6463. </package>
  6464. <package name="DPACK_3" urn="urn:adsk.eagle:footprint:8083910/1">
  6465. <description>&lt;b&gt;DPAK&lt;/b&gt;&lt;p&gt;Style 3 (Motorola)</description>
  6466. <wire x1="3.2766" y1="3.8354" x2="3.277" y2="-2.159" width="0.2032" layer="21"/>
  6467. <wire x1="3.277" y1="-2.159" x2="-3.277" y2="-2.159" width="0.2032" layer="21"/>
  6468. <wire x1="-3.277" y1="-2.159" x2="-3.2766" y2="3.8354" width="0.2032" layer="21"/>
  6469. <wire x1="-3.277" y1="3.835" x2="3.2774" y2="3.8346" width="0.2032" layer="51"/>
  6470. <wire x1="-2.5654" y1="3.937" x2="-2.5654" y2="4.6482" width="0.2032" layer="51"/>
  6471. <wire x1="-2.5654" y1="4.6482" x2="-2.1082" y2="5.1054" width="0.2032" layer="51"/>
  6472. <wire x1="-2.1082" y1="5.1054" x2="2.1082" y2="5.1054" width="0.2032" layer="51"/>
  6473. <wire x1="2.1082" y1="5.1054" x2="2.5654" y2="4.6482" width="0.2032" layer="51"/>
  6474. <wire x1="2.5654" y1="4.6482" x2="2.5654" y2="3.937" width="0.2032" layer="51"/>
  6475. <wire x1="2.5654" y1="3.937" x2="-2.5654" y2="3.937" width="0.2032" layer="51"/>
  6476. <smd name="C" x="0" y="2.5" dx="5.4" dy="6.2" layer="1"/>
  6477. <smd name="A1" x="-2.28" y="-4.8" dx="1" dy="1.6" layer="1"/>
  6478. <smd name="A2" x="2.28" y="-4.8" dx="1" dy="1.6" layer="1"/>
  6479. <text x="-3.81" y="-2.54" size="1.27" layer="25" rot="R90">&gt;NAME</text>
  6480. <text x="5.08" y="-2.54" size="1.27" layer="27" rot="R90">&gt;VALUE</text>
  6481. <rectangle x1="-2.7178" y1="-5.1562" x2="-1.8542" y2="-2.2606" layer="51"/>
  6482. <rectangle x1="1.8542" y1="-5.1562" x2="2.7178" y2="-2.2606" layer="51"/>
  6483. <rectangle x1="-0.4318" y1="-3.0226" x2="0.4318" y2="-2.2606" layer="21"/>
  6484. <polygon width="0.1998" layer="51">
  6485. <vertex x="-2.5654" y="3.937"/>
  6486. <vertex x="-2.5654" y="4.6482"/>
  6487. <vertex x="-2.1082" y="5.1054"/>
  6488. <vertex x="2.1082" y="5.1054"/>
  6489. <vertex x="2.5654" y="4.6482"/>
  6490. <vertex x="2.5654" y="3.937"/>
  6491. </polygon>
  6492. </package>
  6493. <package name="SOT95P237X112-3N" urn="urn:adsk.eagle:footprint:16378720/1">
  6494. <description>3-SOT23, 0.95 mm pitch, 2.37 mm span, 2.86 X 1.28 X 1.12 mm body
  6495. &lt;p&gt;3-pin SOT23 package with 0.95 mm pitch, 2.37 mm span with body size 2.86 X 1.28 X 1.12 mm&lt;/p&gt;</description>
  6496. <circle x="-1.204" y="1.7664" radius="0.25" width="0" layer="21"/>
  6497. <wire x1="-0.7" y1="1.5764" x2="0.7" y2="1.5764" width="0.12" layer="21"/>
  6498. <wire x1="0.7" y1="1.5764" x2="0.7" y2="0.5664" width="0.12" layer="21"/>
  6499. <wire x1="-0.7" y1="-1.5764" x2="0.7" y2="-1.5764" width="0.12" layer="21"/>
  6500. <wire x1="0.7" y1="-1.5764" x2="0.7" y2="-0.5664" width="0.12" layer="21"/>
  6501. <wire x1="0.7" y1="-1.525" x2="-0.7" y2="-1.525" width="0.12" layer="51"/>
  6502. <wire x1="-0.7" y1="-1.525" x2="-0.7" y2="1.525" width="0.12" layer="51"/>
  6503. <wire x1="-0.7" y1="1.525" x2="0.7" y2="1.525" width="0.12" layer="51"/>
  6504. <wire x1="0.7" y1="1.525" x2="0.7" y2="-1.525" width="0.12" layer="51"/>
  6505. <smd name="1" x="-1.064" y="0.95" dx="1.2235" dy="0.6248" layer="1"/>
  6506. <smd name="2" x="-1.064" y="-0.95" dx="1.2235" dy="0.6248" layer="1"/>
  6507. <smd name="3" x="1.064" y="0" dx="1.2235" dy="0.6248" layer="1"/>
  6508. <text x="0" y="2.6514" size="1.27" layer="25" align="bottom-center">&gt;NAME</text>
  6509. <text x="0" y="-2.2114" size="1.27" layer="27" align="top-center">&gt;VALUE</text>
  6510. </package>
  6511. <package name="SC59" urn="urn:adsk.eagle:footprint:29647/1">
  6512. <description>&lt;b&gt;ROHM : SMT3 ; EIAJ : SC-59&lt;/b&gt;</description>
  6513. <wire x1="1.4224" y1="0.8604" x2="1.4224" y2="-0.8604" width="0.127" layer="51"/>
  6514. <wire x1="1.4224" y1="-0.8604" x2="-1.4224" y2="-0.8604" width="0.127" layer="51"/>
  6515. <wire x1="-1.4224" y1="-0.8604" x2="-1.4224" y2="0.8604" width="0.127" layer="51"/>
  6516. <wire x1="-1.4224" y1="0.8604" x2="1.4224" y2="0.8604" width="0.127" layer="51"/>
  6517. <smd name="C" x="0" y="1.2" dx="1" dy="1.4" layer="1"/>
  6518. <smd name="E" x="0.95" y="-1.2" dx="1" dy="1.4" layer="1"/>
  6519. <smd name="B" x="-0.95" y="-1.2" dx="1" dy="1.4" layer="1"/>
  6520. <text x="-1.905" y="1.905" size="1.27" layer="25">&gt;NAME</text>
  6521. <text x="-1.905" y="-3.175" size="1.27" layer="27">&gt;VALUE</text>
  6522. <rectangle x1="-0.2286" y1="0.9112" x2="0.2286" y2="1.4954" layer="51"/>
  6523. <rectangle x1="0.7112" y1="-1.4954" x2="1.1684" y2="-0.9112" layer="51"/>
  6524. <rectangle x1="-1.1684" y1="-1.4954" x2="-0.7112" y2="-0.9112" layer="51"/>
  6525. </package>
  6526. <package name="SC70" urn="urn:adsk.eagle:footprint:29646/1">
  6527. <description>&lt;b&gt;SC70-3 Reflow soldering&lt;/b&gt;&lt;p&gt;
  6528. Philips SC01_Mounting_1996.pdf&lt;p&gt;
  6529. ROHM : UMT3 ; EIAJ : SC-70</description>
  6530. <wire x1="0.9224" y1="0.4604" x2="0.9224" y2="-0.4604" width="0.1524" layer="51"/>
  6531. <wire x1="0.9224" y1="-0.4604" x2="-0.9224" y2="-0.4604" width="0.1524" layer="51"/>
  6532. <wire x1="-0.9224" y1="-0.4604" x2="-0.9224" y2="0.4604" width="0.1524" layer="51"/>
  6533. <wire x1="-0.9224" y1="0.4604" x2="0.9224" y2="0.4604" width="0.1524" layer="51"/>
  6534. <wire x1="0.9224" y1="0.4604" x2="0.9224" y2="-0.4604" width="0.1524" layer="21"/>
  6535. <wire x1="0.9224" y1="-0.4604" x2="-0.9224" y2="-0.4604" width="0.1524" layer="21"/>
  6536. <wire x1="-0.9224" y1="-0.4604" x2="-0.9224" y2="0.4604" width="0.1524" layer="21"/>
  6537. <wire x1="-0.9224" y1="0.4604" x2="0.9224" y2="0.4604" width="0.1524" layer="21"/>
  6538. <smd name="1" x="-0.65" y="-0.925" dx="0.6" dy="0.55" layer="1"/>
  6539. <smd name="2" x="0.65" y="-0.925" dx="0.6" dy="0.55" layer="1"/>
  6540. <smd name="3" x="0" y="0.925" dx="0.6" dy="0.55" layer="1"/>
  6541. <text x="-1" y="1.3" size="1.27" layer="25">&gt;NAME</text>
  6542. <text x="-1" y="-2.6" size="1.27" layer="27">&gt;VALUE</text>
  6543. <rectangle x1="-0.8" y1="-1.1" x2="-0.5" y2="-0.5" layer="51"/>
  6544. <rectangle x1="0.5" y1="-1.1" x2="0.8" y2="-0.5" layer="51"/>
  6545. <rectangle x1="-0.15" y1="0.5" x2="0.15" y2="1.1" layer="51"/>
  6546. </package>
  6547. <package name="TO18" urn="urn:adsk.eagle:footprint:28463/1">
  6548. <description>&lt;b&gt;TO 18&lt;/b&gt;</description>
  6549. <wire x1="0.9289" y1="2.227" x2="2.227" y2="0.9289" width="0.0508" layer="51" curve="-44.7172"/>
  6550. <wire x1="0.9289" y1="-2.227" x2="2.227" y2="-0.9289" width="0.0508" layer="51" curve="44.7172"/>
  6551. <wire x1="-3.937" y1="-0.508" x2="-3.937" y2="0.508" width="0.127" layer="21"/>
  6552. <wire x1="-2.227" y1="-0.9289" x2="0.929" y2="2.2271" width="0.0508" layer="21" curve="-135.281"/>
  6553. <wire x1="-2.227" y1="-0.9289" x2="-0.9289" y2="-2.227" width="0.0508" layer="51" curve="44.7172"/>
  6554. <wire x1="-3.937" y1="-0.508" x2="-2.8765" y2="-0.508" width="0.127" layer="21"/>
  6555. <wire x1="-0.9289" y1="-2.227" x2="0.9289" y2="-2.227" width="0.0508" layer="21" curve="45.2828"/>
  6556. <wire x1="-3.937" y1="0.508" x2="-2.8765" y2="0.508" width="0.127" layer="21"/>
  6557. <wire x1="2.227" y1="-0.9289" x2="2.227" y2="0.9289" width="0.0508" layer="21" curve="45.2828"/>
  6558. <circle x="0" y="0" radius="2.921" width="0.127" layer="21"/>
  6559. <pad name="1" x="-1.27" y="-1.27" drill="0.8128" shape="octagon"/>
  6560. <pad name="2" x="1.27" y="-1.27" drill="0.8128" shape="octagon"/>
  6561. <pad name="3" x="1.27" y="1.27" drill="0.8128" shape="octagon"/>
  6562. <text x="3.175" y="0" size="1.27" layer="25" ratio="10">&gt;NAME</text>
  6563. <text x="3.175" y="-1.905" size="1.27" layer="27" ratio="10">&gt;VALUE</text>
  6564. <text x="-1.905" y="-1.27" size="1.27" layer="51" ratio="10">1</text>
  6565. <text x="0.635" y="-1.27" size="1.27" layer="51" ratio="10">2</text>
  6566. <text x="0" y="0.635" size="1.27" layer="51" ratio="10">3</text>
  6567. </package>
  6568. </packages>
  6569. <packages3d>
  6570. <package3d name="SOT23" urn="urn:adsk.eagle:package:28738/2" type="model">
  6571. <description>SOT-23</description>
  6572. <packageinstances>
  6573. <packageinstance name="SOT23"/>
  6574. </packageinstances>
  6575. </package3d>
  6576. <package3d name="TO92" urn="urn:adsk.eagle:package:16378726/2" type="model">
  6577. <description>TO 92</description>
  6578. <packageinstances>
  6579. <packageinstance name="TO92"/>
  6580. </packageinstances>
  6581. </package3d>
  6582. <package3d name="TO220BV" urn="urn:adsk.eagle:package:29484/4" type="model">
  6583. <description>Molded Package
  6584. grid 2.54 mm</description>
  6585. <packageinstances>
  6586. <packageinstance name="TO220BV"/>
  6587. </packageinstances>
  6588. </package3d>
  6589. <package3d name="DPACK_3" urn="urn:adsk.eagle:package:8087963/1" type="box">
  6590. <description>&lt;b&gt;DPAK&lt;/b&gt;&lt;p&gt;Style 3 (Motorola)</description>
  6591. <packageinstances>
  6592. <packageinstance name="DPACK_3"/>
  6593. </packageinstances>
  6594. </package3d>
  6595. <package3d name="SOT95P237X112-3N" urn="urn:adsk.eagle:package:16378725/1" type="model">
  6596. <description>3-SOT23, 0.95 mm pitch, 2.37 mm span, 2.86 X 1.28 X 1.12 mm body
  6597. &lt;p&gt;3-pin SOT23 package with 0.95 mm pitch, 2.37 mm span with body size 2.86 X 1.28 X 1.12 mm&lt;/p&gt;</description>
  6598. <packageinstances>
  6599. <packageinstance name="SOT95P237X112-3N"/>
  6600. </packageinstances>
  6601. </package3d>
  6602. <package3d name="SC59" urn="urn:adsk.eagle:package:29756/2" type="model">
  6603. <description>ROHM : SMT3 ; EIAJ : SC-59</description>
  6604. <packageinstances>
  6605. <packageinstance name="SC59"/>
  6606. </packageinstances>
  6607. </package3d>
  6608. <package3d name="SC70" urn="urn:adsk.eagle:package:29755/2" type="model">
  6609. <description>SC70-3 Reflow soldering
  6610. Philips SC01_Mounting_1996.pdf
  6611. ROHM : UMT3 ; EIAJ : SC-70</description>
  6612. <packageinstances>
  6613. <packageinstance name="SC70"/>
  6614. </packageinstances>
  6615. </package3d>
  6616. <package3d name="TO18" urn="urn:adsk.eagle:package:16378727/1" type="model">
  6617. <description>TO 18</description>
  6618. <packageinstances>
  6619. <packageinstance name="TO18"/>
  6620. </packageinstances>
  6621. </package3d>
  6622. </packages3d>
  6623. <symbols>
  6624. <symbol name="MFPS">
  6625. <wire x1="-1.016" y1="-2.54" x2="-1.016" y2="2.54" width="0.254" layer="94"/>
  6626. <wire x1="-1.016" y1="2.54" x2="-2.54" y2="2.54" width="0.1524" layer="94"/>
  6627. <wire x1="2.54" y1="-1.905" x2="0.5334" y2="-1.905" width="0.1524" layer="94"/>
  6628. <wire x1="2.54" y1="0" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6629. <wire x1="0.508" y1="1.905" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6630. <wire x1="2.54" y1="-2.54" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6631. <wire x1="2.54" y1="-1.905" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6632. <wire x1="5.08" y1="1.905" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6633. <wire x1="2.54" y1="1.905" x2="2.54" y2="2.54" width="0.1524" layer="94"/>
  6634. <wire x1="2.2352" y1="0" x2="2.286" y2="0" width="0.1524" layer="94"/>
  6635. <wire x1="2.286" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6636. <wire x1="2.286" y1="0" x2="1.016" y2="-0.508" width="0.1524" layer="94"/>
  6637. <wire x1="1.016" y1="-0.508" x2="1.016" y2="0.508" width="0.1524" layer="94"/>
  6638. <wire x1="1.016" y1="0.508" x2="2.286" y2="0" width="0.1524" layer="94"/>
  6639. <wire x1="1.143" y1="0" x2="0.254" y2="0" width="0.1524" layer="94"/>
  6640. <wire x1="1.143" y1="0.254" x2="2.032" y2="0" width="0.3048" layer="94"/>
  6641. <wire x1="2.032" y1="0" x2="1.143" y2="-0.254" width="0.3048" layer="94"/>
  6642. <wire x1="1.143" y1="-0.254" x2="1.143" y2="0" width="0.3048" layer="94"/>
  6643. <wire x1="1.143" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  6644. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6645. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6646. <wire x1="5.08" y1="0.762" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  6647. <wire x1="5.715" y1="-0.635" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  6648. <wire x1="4.445" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6649. <wire x1="5.715" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6650. <wire x1="5.08" y1="0.762" x2="4.445" y2="0.762" width="0.1524" layer="94"/>
  6651. <wire x1="4.445" y1="0.762" x2="4.191" y2="1.016" width="0.1524" layer="94"/>
  6652. <wire x1="5.715" y1="0.762" x2="5.969" y2="0.508" width="0.1524" layer="94"/>
  6653. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  6654. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  6655. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  6656. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  6657. <text x="1.524" y="-3.302" size="0.8128" layer="93">D</text>
  6658. <text x="1.524" y="2.54" size="0.8128" layer="93">S</text>
  6659. <text x="-2.286" y="1.27" size="0.8128" layer="93">G</text>
  6660. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  6661. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  6662. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6663. <pin name="G" x="-2.54" y="2.54" visible="off" length="point" direction="pas"/>
  6664. <pin name="D" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6665. <pin name="S" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6666. </symbol>
  6667. <symbol name="MFNS">
  6668. <wire x1="-1.1176" y1="2.413" x2="-1.1176" y2="-2.54" width="0.254" layer="94"/>
  6669. <wire x1="-1.1176" y1="-2.54" x2="-2.54" y2="-2.54" width="0.1524" layer="94"/>
  6670. <wire x1="2.54" y1="1.905" x2="0.5334" y2="1.905" width="0.1524" layer="94"/>
  6671. <wire x1="2.54" y1="0" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6672. <wire x1="0.508" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6673. <wire x1="2.54" y1="2.54" x2="2.54" y2="1.905" width="0.1524" layer="94"/>
  6674. <wire x1="2.54" y1="1.905" x2="5.08" y2="1.905" width="0.1524" layer="94"/>
  6675. <wire x1="5.08" y1="1.905" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6676. <wire x1="5.08" y1="0.762" x2="5.08" y2="-1.905" width="0.1524" layer="94"/>
  6677. <wire x1="5.08" y1="-1.905" x2="2.54" y2="-1.905" width="0.1524" layer="94"/>
  6678. <wire x1="2.54" y1="-1.905" x2="2.54" y2="-2.54" width="0.1524" layer="94"/>
  6679. <wire x1="5.08" y1="0.762" x2="4.445" y2="-0.635" width="0.1524" layer="94"/>
  6680. <wire x1="4.445" y1="-0.635" x2="5.715" y2="-0.635" width="0.1524" layer="94"/>
  6681. <wire x1="5.715" y1="-0.635" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6682. <wire x1="4.445" y1="0.762" x2="5.08" y2="0.762" width="0.1524" layer="94"/>
  6683. <wire x1="5.08" y1="0.762" x2="5.715" y2="0.762" width="0.1524" layer="94"/>
  6684. <wire x1="5.715" y1="0.762" x2="5.969" y2="1.016" width="0.1524" layer="94"/>
  6685. <wire x1="4.445" y1="0.762" x2="4.191" y2="0.508" width="0.1524" layer="94"/>
  6686. <wire x1="0.508" y1="0" x2="1.778" y2="-0.508" width="0.1524" layer="94"/>
  6687. <wire x1="1.778" y1="-0.508" x2="1.778" y2="0.508" width="0.1524" layer="94"/>
  6688. <wire x1="1.778" y1="0.508" x2="0.508" y2="0" width="0.1524" layer="94"/>
  6689. <wire x1="1.651" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
  6690. <wire x1="1.651" y1="0.254" x2="0.762" y2="0" width="0.3048" layer="94"/>
  6691. <wire x1="0.762" y1="0" x2="1.651" y2="-0.254" width="0.3048" layer="94"/>
  6692. <wire x1="1.651" y1="-0.254" x2="1.651" y2="0" width="0.3048" layer="94"/>
  6693. <wire x1="1.651" y1="0" x2="1.397" y2="0" width="0.3048" layer="94"/>
  6694. <circle x="2.54" y="-1.905" radius="0.127" width="0.4064" layer="94"/>
  6695. <circle x="2.54" y="1.905" radius="0.127" width="0.4064" layer="94"/>
  6696. <text x="6.35" y="1.27" size="1.778" layer="95">&gt;NAME</text>
  6697. <text x="6.35" y="-1.27" size="1.778" layer="96">&gt;VALUE</text>
  6698. <text x="1.27" y="2.54" size="0.8128" layer="93">D</text>
  6699. <text x="1.27" y="-3.175" size="0.8128" layer="93">S</text>
  6700. <text x="-2.54" y="-1.27" size="0.8128" layer="93">G</text>
  6701. <rectangle x1="-0.254" y1="-2.54" x2="0.508" y2="-1.27" layer="94"/>
  6702. <rectangle x1="-0.254" y1="1.27" x2="0.508" y2="2.54" layer="94"/>
  6703. <rectangle x1="-0.254" y1="-0.889" x2="0.508" y2="0.889" layer="94"/>
  6704. <pin name="G" x="-2.54" y="-2.54" visible="off" length="point" direction="pas"/>
  6705. <pin name="D" x="2.54" y="5.08" visible="off" length="short" direction="pas" rot="R270"/>
  6706. <pin name="S" x="2.54" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
  6707. </symbol>
  6708. <symbol name="NPN">
  6709. <wire x1="0" y1="2.54" x2="-2.032" y2="1.524" width="0.1524" layer="94"/>
  6710. <wire x1="-0.762" y1="-1.524" x2="0" y2="-2.54" width="0.1524" layer="94"/>
  6711. <wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.1524" layer="94"/>
  6712. <wire x1="-1.27" y1="-2.54" x2="-0.762" y2="-1.524" width="0.1524" layer="94"/>
  6713. <wire x1="-1" y1="-2.04" x2="-2.232" y2="-1.424" width="0.1524" layer="94"/>
  6714. <wire x1="-1.016" y1="-2.413" x2="-0.254" y2="-2.413" width="0.254" layer="94"/>
  6715. <wire x1="-0.254" y1="-2.413" x2="-0.762" y2="-1.778" width="0.254" layer="94"/>
  6716. <wire x1="-0.762" y1="-1.778" x2="-1.016" y2="-2.286" width="0.254" layer="94"/>
  6717. <wire x1="-1.016" y1="-2.286" x2="-0.635" y2="-2.286" width="0.254" layer="94"/>
  6718. <wire x1="-0.635" y1="-2.286" x2="-0.762" y2="-2.032" width="0.254" layer="94"/>
  6719. <text x="0.54" y="3" size="1.778" layer="95">&gt;NAME</text>
  6720. <text x="0.54" y="0.46" size="1.778" layer="96">&gt;VALUE</text>
  6721. <text x="0.54" y="-2.08" size="1.778" layer="97">&gt;SPICEMODEL</text>
  6722. <text x="0.54" y="-4.62" size="1.778" layer="97">&gt;SPICEEXTRA</text>
  6723. <rectangle x1="-2.794" y1="-2.54" x2="-2.032" y2="2.54" layer="94"/>
  6724. <pin name="B" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
  6725. <pin name="E" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="3" rot="R90"/>
  6726. <pin name="C" x="0" y="5.08" visible="off" length="short" direction="pas" swaplevel="2" rot="R270"/>
  6727. </symbol>
  6728. </symbols>
  6729. <devicesets>
  6730. <deviceset name="PMOSFET" prefix="Q">
  6731. <description>&lt;b&gt;P-Channel MOSFET - Generic&lt;/b&gt;</description>
  6732. <gates>
  6733. <gate name="G$1" symbol="MFPS" x="-2.54" y="0"/>
  6734. </gates>
  6735. <devices>
  6736. <device name="SOT23" package="SOT23">
  6737. <connects>
  6738. <connect gate="G$1" pin="D" pad="3"/>
  6739. <connect gate="G$1" pin="G" pad="1"/>
  6740. <connect gate="G$1" pin="S" pad="2"/>
  6741. </connects>
  6742. <package3dinstances>
  6743. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6744. </package3dinstances>
  6745. <technologies>
  6746. <technology name="_">
  6747. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6748. <attribute name="DESCRIPTION" value="" constant="no"/>
  6749. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6750. <attribute name="MANUFACTURER" value="" constant="no"/>
  6751. <attribute name="MPN" value="" constant="no"/>
  6752. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6753. <attribute name="PART_STATUS" value="" constant="no"/>
  6754. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6755. <attribute name="SERIES" value="" constant="no"/>
  6756. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6757. <attribute name="THERMALLOSS" value="" constant="no"/>
  6758. <attribute name="TYPE" value="P-Channel" constant="no"/>
  6759. <attribute name="VALUE" value="PMOSFET" constant="no"/>
  6760. </technology>
  6761. </technologies>
  6762. </device>
  6763. </devices>
  6764. </deviceset>
  6765. <deviceset name="NMOSFET" prefix="Q">
  6766. <description>&lt;b&gt; N-Channel MOSFET - Generic</description>
  6767. <gates>
  6768. <gate name="G$1" symbol="MFNS" x="-2.54" y="0"/>
  6769. </gates>
  6770. <devices>
  6771. <device name="SOT23" package="SOT23">
  6772. <connects>
  6773. <connect gate="G$1" pin="D" pad="3"/>
  6774. <connect gate="G$1" pin="G" pad="1"/>
  6775. <connect gate="G$1" pin="S" pad="2"/>
  6776. </connects>
  6777. <package3dinstances>
  6778. <package3dinstance package3d_urn="urn:adsk.eagle:package:28738/2"/>
  6779. </package3dinstances>
  6780. <technologies>
  6781. <technology name="">
  6782. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6783. <attribute name="DESCRIPTION" value="" constant="no"/>
  6784. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6785. <attribute name="MANUFACTURER" value="" constant="no"/>
  6786. <attribute name="MPN" value="" constant="no"/>
  6787. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6788. <attribute name="PART_STATUS" value="" constant="no"/>
  6789. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6790. <attribute name="SERIES" value="" constant="no"/>
  6791. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6792. <attribute name="THERMALLOSS" value="" constant="no"/>
  6793. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6794. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6795. </technology>
  6796. <technology name="_">
  6797. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6798. <attribute name="DESCRIPTION" value="" constant="no"/>
  6799. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6800. <attribute name="MANUFACTURER" value="" constant="no"/>
  6801. <attribute name="MPN" value="" constant="no"/>
  6802. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6803. <attribute name="PART_STATUS" value="" constant="no"/>
  6804. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6805. <attribute name="SERIES" value="" constant="no"/>
  6806. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6807. <attribute name="THERMALLOSS" value="" constant="no"/>
  6808. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6809. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6810. </technology>
  6811. </technologies>
  6812. </device>
  6813. <device name="TO92" package="TO92">
  6814. <connects>
  6815. <connect gate="G$1" pin="D" pad="1"/>
  6816. <connect gate="G$1" pin="G" pad="2"/>
  6817. <connect gate="G$1" pin="S" pad="3"/>
  6818. </connects>
  6819. <package3dinstances>
  6820. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  6821. </package3dinstances>
  6822. <technologies>
  6823. <technology name="_">
  6824. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6825. <attribute name="DESCRIPTION" value="" constant="no"/>
  6826. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6827. <attribute name="MANUFACTURER" value="" constant="no"/>
  6828. <attribute name="MPN" value="" constant="no"/>
  6829. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6830. <attribute name="PART_STATUS" value="" constant="no"/>
  6831. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6832. <attribute name="SERIES" value="" constant="no"/>
  6833. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6834. <attribute name="THERMALLOSS" value="" constant="no"/>
  6835. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6836. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6837. </technology>
  6838. </technologies>
  6839. </device>
  6840. <device name="TO220" package="TO220BV">
  6841. <connects>
  6842. <connect gate="G$1" pin="D" pad="D"/>
  6843. <connect gate="G$1" pin="G" pad="G"/>
  6844. <connect gate="G$1" pin="S" pad="S"/>
  6845. </connects>
  6846. <package3dinstances>
  6847. <package3dinstance package3d_urn="urn:adsk.eagle:package:29484/4"/>
  6848. </package3dinstances>
  6849. <technologies>
  6850. <technology name="_">
  6851. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6852. <attribute name="DESCRIPTION" value="" constant="no"/>
  6853. <attribute name="DRAIN_CURRENT" value="" constant="no"/>
  6854. <attribute name="MANUFACTURER" value="" constant="no"/>
  6855. <attribute name="MPN" value="" constant="no"/>
  6856. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6857. <attribute name="PART_STATUS" value="" constant="no"/>
  6858. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6859. <attribute name="SERIES" value="" constant="no"/>
  6860. <attribute name="SUB-CATEGORY" value="MOSFET" constant="no"/>
  6861. <attribute name="THERMALLOSS" value="" constant="no"/>
  6862. <attribute name="TYPE" value="N-Channel" constant="no"/>
  6863. <attribute name="VALUE" value="NMOSFET" constant="no"/>
  6864. </technology>
  6865. </technologies>
  6866. </device>
  6867. <device name="" package="DPACK_3">
  6868. <connects>
  6869. <connect gate="G$1" pin="D" pad="C"/>
  6870. <connect gate="G$1" pin="G" pad="A1"/>
  6871. <connect gate="G$1" pin="S" pad="A2"/>
  6872. </connects>
  6873. <package3dinstances>
  6874. <package3dinstance package3d_urn="urn:adsk.eagle:package:8087963/1"/>
  6875. </package3dinstances>
  6876. <technologies>
  6877. <technology name=""/>
  6878. </technologies>
  6879. </device>
  6880. </devices>
  6881. </deviceset>
  6882. <deviceset name="NPN" prefix="Q">
  6883. <description>&lt;B&gt;NPN - Generic</description>
  6884. <gates>
  6885. <gate name="G$1" symbol="NPN" x="0" y="0"/>
  6886. </gates>
  6887. <devices>
  6888. <device name="TO92" package="TO92">
  6889. <connects>
  6890. <connect gate="G$1" pin="B" pad="2"/>
  6891. <connect gate="G$1" pin="C" pad="3"/>
  6892. <connect gate="G$1" pin="E" pad="1"/>
  6893. </connects>
  6894. <package3dinstances>
  6895. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378726/2"/>
  6896. </package3dinstances>
  6897. <technologies>
  6898. <technology name="_">
  6899. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6900. <attribute name="DESCRIPTION" value="" constant="no"/>
  6901. <attribute name="IC_MAX" value="" constant="no"/>
  6902. <attribute name="MANUFACTURER" value="" constant="no"/>
  6903. <attribute name="MPN" value="" constant="no"/>
  6904. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6905. <attribute name="PART_STATUS" value="" constant="no"/>
  6906. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6907. <attribute name="SERIES" value="" constant="no"/>
  6908. <attribute name="SUB-CATEGORY" value="BJT" constant="no"/>
  6909. <attribute name="THERMALLOSS" value="" constant="no"/>
  6910. <attribute name="TYPE" value="NPN" constant="no"/>
  6911. <attribute name="VALUE" value="NPN" constant="no"/>
  6912. <attribute name="VCEO_MAX" value="" constant="no"/>
  6913. </technology>
  6914. </technologies>
  6915. </device>
  6916. <device name="SOT23" package="SOT95P237X112-3N">
  6917. <connects>
  6918. <connect gate="G$1" pin="B" pad="2"/>
  6919. <connect gate="G$1" pin="C" pad="3"/>
  6920. <connect gate="G$1" pin="E" pad="1"/>
  6921. </connects>
  6922. <package3dinstances>
  6923. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378725/1"/>
  6924. </package3dinstances>
  6925. <technologies>
  6926. <technology name="_">
  6927. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6928. <attribute name="DESCRIPTION" value="" constant="no"/>
  6929. <attribute name="IC_MAX" value="" constant="no"/>
  6930. <attribute name="MANUFACTURER" value="" constant="no"/>
  6931. <attribute name="MPN" value="" constant="no"/>
  6932. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6933. <attribute name="PART_STATUS" value="" constant="no"/>
  6934. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6935. <attribute name="SERIES" value="" constant="no"/>
  6936. <attribute name="SUB-CATEGORY" value="BJT" constant="no"/>
  6937. <attribute name="THERMALLOSS" value="" constant="no"/>
  6938. <attribute name="TYPE" value="NPN" constant="no"/>
  6939. <attribute name="VALUE" value="NPN" constant="no"/>
  6940. <attribute name="VCEO_MAX" value="" constant="no"/>
  6941. </technology>
  6942. </technologies>
  6943. </device>
  6944. <device name="SC-59" package="SC59">
  6945. <connects>
  6946. <connect gate="G$1" pin="B" pad="B"/>
  6947. <connect gate="G$1" pin="C" pad="C"/>
  6948. <connect gate="G$1" pin="E" pad="E"/>
  6949. </connects>
  6950. <package3dinstances>
  6951. <package3dinstance package3d_urn="urn:adsk.eagle:package:29756/2"/>
  6952. </package3dinstances>
  6953. <technologies>
  6954. <technology name="_">
  6955. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6956. <attribute name="DESCRIPTION" value="" constant="no"/>
  6957. <attribute name="IC_MAX" value="" constant="no"/>
  6958. <attribute name="MANUFACTURER" value="" constant="no"/>
  6959. <attribute name="MPN" value="" constant="no"/>
  6960. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6961. <attribute name="PART_STATUS" value="" constant="no"/>
  6962. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6963. <attribute name="SERIES" value="" constant="no"/>
  6964. <attribute name="SUB-CATEGORY" value="BJT" constant="no"/>
  6965. <attribute name="THERMALLOSS" value="" constant="no"/>
  6966. <attribute name="TYPE" value="NPN" constant="no"/>
  6967. <attribute name="VALUE" value="NPN" constant="no"/>
  6968. <attribute name="VCEO_MAX" value="" constant="no"/>
  6969. </technology>
  6970. </technologies>
  6971. </device>
  6972. <device name="SC-70" package="SC70">
  6973. <connects>
  6974. <connect gate="G$1" pin="B" pad="2"/>
  6975. <connect gate="G$1" pin="C" pad="3"/>
  6976. <connect gate="G$1" pin="E" pad="1"/>
  6977. </connects>
  6978. <package3dinstances>
  6979. <package3dinstance package3d_urn="urn:adsk.eagle:package:29755/2"/>
  6980. </package3dinstances>
  6981. <technologies>
  6982. <technology name="_">
  6983. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  6984. <attribute name="DESCRIPTION" value="" constant="no"/>
  6985. <attribute name="IC_MAX" value="" constant="no"/>
  6986. <attribute name="MANUFACTURER" value="" constant="no"/>
  6987. <attribute name="MPN" value="" constant="no"/>
  6988. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  6989. <attribute name="PART_STATUS" value="" constant="no"/>
  6990. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  6991. <attribute name="SERIES" value="" constant="no"/>
  6992. <attribute name="SUB-CATEGORY" value="BJT" constant="no"/>
  6993. <attribute name="THERMALLOSS" value="NPN" constant="no"/>
  6994. <attribute name="TYPE" value="" constant="no"/>
  6995. <attribute name="VALUE" value="NPN" constant="no"/>
  6996. <attribute name="VCEO_MAX" value="" constant="no"/>
  6997. </technology>
  6998. </technologies>
  6999. </device>
  7000. <device name="TO-18" package="TO18">
  7001. <connects>
  7002. <connect gate="G$1" pin="B" pad="2"/>
  7003. <connect gate="G$1" pin="C" pad="3"/>
  7004. <connect gate="G$1" pin="E" pad="1"/>
  7005. </connects>
  7006. <package3dinstances>
  7007. <package3dinstance package3d_urn="urn:adsk.eagle:package:16378727/1"/>
  7008. </package3dinstances>
  7009. <technologies>
  7010. <technology name="_">
  7011. <attribute name="CATEGORY" value="Transistor" constant="no"/>
  7012. <attribute name="DESCRIPTION" value="" constant="no"/>
  7013. <attribute name="IC_MAX" value="" constant="no"/>
  7014. <attribute name="MANUFACTURER" value="" constant="no"/>
  7015. <attribute name="MPN" value="" constant="no"/>
  7016. <attribute name="OPERATING_TEMP" value="" constant="no"/>
  7017. <attribute name="PART_STATUS" value="" constant="no"/>
  7018. <attribute name="ROHS_COMPLIANT" value="" constant="no"/>
  7019. <attribute name="SERIES" value="" constant="no"/>
  7020. <attribute name="SUB-CATEGORY" value="BJT" constant="no"/>
  7021. <attribute name="THERMALLOSS" value="" constant="no"/>
  7022. <attribute name="TYPE" value="NPN" constant="no"/>
  7023. <attribute name="VALUE" value="NPN" constant="no"/>
  7024. <attribute name="VCEO_MAX" value="" constant="no"/>
  7025. </technology>
  7026. </technologies>
  7027. </device>
  7028. </devices>
  7029. <spice>
  7030. <pinmapping spiceprefix="Q">
  7031. <pinmap gate="G$1" pin="B" pinorder="2"/>
  7032. <pinmap gate="G$1" pin="C" pinorder="1"/>
  7033. <pinmap gate="G$1" pin="E" pinorder="3"/>
  7034. </pinmapping>
  7035. <model name="QNPN">
  7036. **********************
  7037. * Autodesk EAGLE - Spice Model File
  7038. * Date: 9/17/17
  7039. * basic npn intrinsic model
  7040. **********************
  7041. .MODEL QNPN NPN</model>
  7042. </spice>
  7043. </deviceset>
  7044. </devicesets>
  7045. </library>
  7046. </libraries>
  7047. <attributes>
  7048. </attributes>
  7049. <variantdefs>
  7050. </variantdefs>
  7051. <classes>
  7052. <class number="0" name="default" width="0" drill="0">
  7053. </class>
  7054. </classes>
  7055. <parts>
  7056. <part name="C1" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C" device="CHIP-1206(3216-METRIC)" package3d_urn="urn:adsk.eagle:package:16290893/2" technology="_" value="0.1uF"/>
  7057. <part name="D1" library="Diodes" library_urn="urn:adsk.eagle:library:11396254" deviceset="MBR360G" device="" package3d_urn="urn:adsk.eagle:package:10898389/2" value="SB5100"/>
  7058. <part name="L1" library="inductors" library_urn="urn:adsk.eagle:library:243" deviceset="DR127" device="" package3d_urn="urn:adsk.eagle:package:15117/1"/>
  7059. <part name="C2" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C" device="CHIP-1206(3216-METRIC)" package3d_urn="urn:adsk.eagle:package:16290893/2" technology="_" value="0.1uF"/>
  7060. <part name="C3" library="Capacitor" library_urn="urn:adsk.eagle:library:16290819" deviceset="C-POL" device="TANTALUM-2917(7343-METRIC)" package3d_urn="urn:adsk.eagle:package:16290885/1" technology="_" value="15uF"/>
  7061. <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"/>
  7062. <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"/>
  7063. <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"/>
  7064. <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"/>
  7065. <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"/>
  7066. <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"/>
  7067. <part name="GND2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  7068. <part name="D2" library="eScooter" deviceset="TVS_DIODE" device="SMA" package3d_urn="urn:adsk.eagle:package:21928182/1" value="P4SMAJ12CA"/>
  7069. <part name="C4" library="eScooter" deviceset="C" device="PANASONIC_H13" package3d_urn="urn:adsk.eagle:package:21812541/1" value="68uF"/>
  7070. <part name="U1" library="eScooter" deviceset="MAX5035" device="PDIP8" package3d_urn="urn:adsk.eagle:package:22059831/1"/>
  7071. <part name="J4" library="eScooter" deviceset="XT60" device="" value="BATTERY"/>
  7072. <part name="J6" library="eScooter" deviceset="XT60" device="" value="DRIVER POWER"/>
  7073. <part name="R9" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K"/>
  7074. <part name="R10" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="47K"/>
  7075. <part name="R11" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="10K"/>
  7076. <part name="J1" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="PTH3" package3d_urn="urn:adsk.eagle:package:38048/1"/>
  7077. <part name="J7" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_06" device="LONGPADS" package3d_urn="urn:adsk.eagle:package:37991/1"/>
  7078. <part name="Q1" library="Transistor" deviceset="PMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" technology="_" value="PMOSFET"/>
  7079. <part name="Q3" library="Transistor" deviceset="PMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" technology="_" value="PMOSFET"/>
  7080. <part name="Q7" library="Transistor" deviceset="NMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" value="NMOSFET"/>
  7081. <part name="Q2" library="Transistor" deviceset="NPN" device="SOT23" package3d_urn="urn:adsk.eagle:package:16378725/1" technology="_" value="NPN"/>
  7082. <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"/>
  7083. <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"/>
  7084. <part name="Q4" library="Transistor" deviceset="PMOSFET" device="SOT23" package3d_urn="urn:adsk.eagle:package:28738/2" technology="_" value="PMOSFET"/>
  7085. <part name="GND1" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  7086. <part name="GND3" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  7087. <part name="GND4" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  7088. <part name="R4" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="133K"/>
  7089. <part name="R5" library="eagle-ltspice" library_urn="urn:adsk.eagle:library:217" deviceset="R" device="R1206" package3d_urn="urn:adsk.eagle:package:13301/1" value="1M"/>
  7090. <part name="GND5" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="GND" device=""/>
  7091. </parts>
  7092. <sheets>
  7093. <sheet>
  7094. <plain>
  7095. </plain>
  7096. <instances>
  7097. <instance part="C1" gate="G$1" x="114.3" y="114.3" smashed="yes" rot="MR90">
  7098. <attribute name="NAME" x="114.3" y="114.3" size="1.778" layer="95" rot="MR90"/>
  7099. <attribute name="VALUE" x="109.22" y="114.3" size="1.778" layer="96" rot="MR90"/>
  7100. </instance>
  7101. <instance part="D1" gate="G$1" x="93.98" y="127" smashed="yes" rot="MR180">
  7102. <attribute name="NAME" x="91.694" y="125.095" size="1.778" layer="95" rot="MR180"/>
  7103. <attribute name="VALUE" x="91.694" y="130.429" size="1.778" layer="96" rot="MR180"/>
  7104. </instance>
  7105. <instance part="L1" gate="G$1" x="124.46" y="127" smashed="yes" rot="MR180">
  7106. <attribute name="NAME" x="120.65" y="124.714" size="1.778" layer="95" rot="MR180"/>
  7107. <attribute name="VALUE" x="120.523" y="130.048" size="1.778" layer="96" rot="MR180"/>
  7108. </instance>
  7109. <instance part="C2" gate="G$1" x="137.16" y="99.06" smashed="yes" rot="MR90">
  7110. <attribute name="NAME" x="137.16" y="99.06" size="1.778" layer="95" rot="MR90"/>
  7111. <attribute name="VALUE" x="132.08" y="99.06" size="1.778" layer="96" rot="MR90"/>
  7112. </instance>
  7113. <instance part="C3" gate="G$1" x="157.48" y="114.3" smashed="yes" rot="MR0">
  7114. <attribute name="NAME" x="156.337" y="114.7826" size="1.778" layer="95" rot="MR0"/>
  7115. <attribute name="VALUE" x="156.337" y="109.7026" size="1.778" layer="96" rot="MR0"/>
  7116. </instance>
  7117. <instance part="R1" gate="G$1" x="73.66" y="101.6" smashed="yes" rot="MR270">
  7118. <attribute name="NAME" x="77.2414" y="100.33" size="1.778" layer="95" rot="R90"/>
  7119. <attribute name="VALUE" x="71.882" y="100.33" size="1.778" layer="96" rot="R90"/>
  7120. </instance>
  7121. <instance part="R2" gate="G$1" x="73.66" y="81.28" smashed="yes" rot="MR270">
  7122. <attribute name="NAME" x="77.2414" y="80.01" size="1.778" layer="95" rot="R90"/>
  7123. <attribute name="VALUE" x="71.882" y="80.01" size="1.778" layer="96" rot="R90"/>
  7124. </instance>
  7125. <instance part="R3" gate="G$1" x="73.66" y="68.58" smashed="yes" rot="MR90">
  7126. <attribute name="NAME" x="75.1586" y="67.31" size="1.778" layer="95" rot="MR90"/>
  7127. <attribute name="VALUE" x="70.358" y="67.31" size="1.778" layer="96" rot="MR90"/>
  7128. </instance>
  7129. <instance part="J3" gate="G$1" x="58.42" y="88.9" smashed="yes" rot="MR180">
  7130. <attribute name="VALUE" x="55.88" y="93.726" size="1.778" layer="96" font="vector" rot="MR180"/>
  7131. <attribute name="NAME" x="55.88" y="83.312" size="1.778" layer="95" font="vector" rot="MR180"/>
  7132. </instance>
  7133. <instance part="J2" gate="G$1" x="243.84" y="68.58" smashed="yes" rot="R180">
  7134. <attribute name="VALUE" x="246.38" y="73.406" size="1.778" layer="96" font="vector" rot="R180"/>
  7135. <attribute name="NAME" x="246.38" y="62.992" size="1.778" layer="95" font="vector" rot="R180"/>
  7136. </instance>
  7137. <instance part="J5" gate="G$1" x="241.3" y="86.36" smashed="yes" rot="R180">
  7138. <attribute name="VALUE" x="246.38" y="93.726" size="1.778" layer="96" font="vector" rot="R180"/>
  7139. <attribute name="NAME" x="246.38" y="78.232" size="1.778" layer="95" font="vector" rot="R180"/>
  7140. </instance>
  7141. <instance part="GND2" gate="1" x="101.6" y="45.72" smashed="yes" rot="MR0">
  7142. <attribute name="VALUE" x="104.14" y="43.18" size="1.778" layer="96" rot="MR0"/>
  7143. </instance>
  7144. <instance part="D2" gate="D$1" x="165.1" y="111.76" smashed="yes" rot="MR0">
  7145. <attribute name="NAME" x="170.18" y="111.76" size="1.778" layer="95" rot="MR0"/>
  7146. </instance>
  7147. <instance part="C4" gate="G$1" x="83.82" y="101.6" smashed="yes" rot="MR0">
  7148. <attribute name="NAME" x="81.28" y="104.14" size="1.778" layer="95" rot="MR0"/>
  7149. <attribute name="VALUE" x="81.28" y="99.06" size="1.778" layer="96" rot="R180"/>
  7150. </instance>
  7151. <instance part="U1" gate="G$1" x="111.76" y="96.52" smashed="yes" rot="MR0">
  7152. <attribute name="NAME" x="111.76" y="111.76" size="1.778" layer="95" rot="MR0"/>
  7153. <attribute name="VALUE" x="121.92" y="78.74" size="1.778" layer="96" rot="MR0"/>
  7154. </instance>
  7155. <instance part="J4" gate="G$1" x="43.18" y="114.3" smashed="yes" rot="R180">
  7156. <attribute name="NAME" x="45.72" y="106.68" size="1.778" layer="95" rot="R180"/>
  7157. <attribute name="VALUE" x="50.8" y="116.84" size="1.778" layer="96" rot="R180"/>
  7158. </instance>
  7159. <instance part="J6" gate="G$1" x="243.84" y="38.1" smashed="yes" rot="MR180">
  7160. <attribute name="NAME" x="241.3" y="30.48" size="1.778" layer="95" rot="MR180"/>
  7161. <attribute name="VALUE" x="236.22" y="40.64" size="1.778" layer="96" rot="MR180"/>
  7162. </instance>
  7163. <instance part="R9" gate="G$1" x="149.86" y="116.84" smashed="yes" rot="MR270">
  7164. <attribute name="NAME" x="153.4414" y="115.57" size="1.778" layer="95" rot="R90"/>
  7165. <attribute name="VALUE" x="148.082" y="115.57" size="1.778" layer="96" rot="R90"/>
  7166. </instance>
  7167. <instance part="R10" gate="G$1" x="149.86" y="99.06" smashed="yes" rot="MR270">
  7168. <attribute name="NAME" x="153.4414" y="97.79" size="1.778" layer="95" rot="R90"/>
  7169. <attribute name="VALUE" x="148.082" y="97.79" size="1.778" layer="96" rot="R90"/>
  7170. </instance>
  7171. <instance part="R11" gate="G$1" x="149.86" y="78.74" smashed="yes" rot="MR270">
  7172. <attribute name="NAME" x="153.4414" y="77.47" size="1.778" layer="95" rot="R90"/>
  7173. <attribute name="VALUE" x="148.082" y="77.47" size="1.778" layer="96" rot="R90"/>
  7174. </instance>
  7175. <instance part="J1" gate="G$1" x="243.84" y="127" smashed="yes" rot="R180">
  7176. <attribute name="VALUE" x="246.38" y="131.826" size="1.778" layer="96" font="vector" rot="R180"/>
  7177. <attribute name="NAME" x="246.38" y="121.412" size="1.778" layer="95" font="vector" rot="R180"/>
  7178. </instance>
  7179. <instance part="J7" gate="G$1" x="241.3" y="109.22" smashed="yes" rot="R180">
  7180. <attribute name="VALUE" x="246.38" y="119.126" size="1.778" layer="96" font="vector" rot="R180"/>
  7181. <attribute name="NAME" x="246.38" y="98.552" size="1.778" layer="95" font="vector" rot="R180"/>
  7182. </instance>
  7183. <instance part="Q1" gate="G$1" x="193.04" y="83.82" smashed="yes" rot="MR0">
  7184. <attribute name="NAME" x="189.23" y="87.63" size="1.778" layer="95" rot="MR0"/>
  7185. <attribute name="VALUE" x="189.23" y="77.47" size="1.778" layer="96" rot="MR0"/>
  7186. </instance>
  7187. <instance part="Q3" gate="G$1" x="193.04" y="60.96" smashed="yes" rot="MR0">
  7188. <attribute name="NAME" x="189.23" y="64.77" size="1.778" layer="95" rot="MR0"/>
  7189. <attribute name="VALUE" x="189.23" y="54.61" size="1.778" layer="96" rot="MR0"/>
  7190. </instance>
  7191. <instance part="Q7" gate="G$1" x="231.14" y="58.42" smashed="yes">
  7192. <attribute name="NAME" x="227.33" y="62.23" size="1.778" layer="95"/>
  7193. <attribute name="VALUE" x="227.33" y="52.07" size="1.778" layer="96"/>
  7194. </instance>
  7195. <instance part="Q2" gate="G$1" x="177.8" y="30.48" smashed="yes">
  7196. <attribute name="NAME" x="178.34" y="33.48" size="1.778" layer="95"/>
  7197. <attribute name="VALUE" x="178.34" y="30.94" size="1.778" layer="96"/>
  7198. </instance>
  7199. <instance part="R6" gate="G$1" x="165.1" y="30.48" smashed="yes">
  7200. <attribute name="NAME" x="166.37" y="26.8986" size="1.778" layer="95" rot="MR0"/>
  7201. <attribute name="VALUE" x="166.37" y="32.258" size="1.778" layer="96" rot="MR0"/>
  7202. </instance>
  7203. <instance part="R7" gate="G$1" x="165.1" y="38.1" smashed="yes">
  7204. <attribute name="NAME" x="166.37" y="34.5186" size="1.778" layer="95" rot="MR0"/>
  7205. <attribute name="VALUE" x="166.37" y="39.878" size="1.778" layer="96" rot="MR0"/>
  7206. </instance>
  7207. <instance part="Q4" gate="G$1" x="193.04" y="106.68" smashed="yes" rot="MR0">
  7208. <attribute name="NAME" x="189.23" y="110.49" size="1.778" layer="95" rot="MR0"/>
  7209. <attribute name="VALUE" x="189.23" y="100.33" size="1.778" layer="96" rot="MR0"/>
  7210. </instance>
  7211. <instance part="GND1" gate="1" x="177.8" y="17.78" smashed="yes">
  7212. <attribute name="VALUE" x="175.26" y="15.24" size="1.778" layer="96"/>
  7213. </instance>
  7214. <instance part="GND3" gate="1" x="233.68" y="45.72" smashed="yes">
  7215. <attribute name="VALUE" x="231.14" y="43.18" size="1.778" layer="96"/>
  7216. </instance>
  7217. <instance part="GND4" gate="1" x="231.14" y="17.78" smashed="yes">
  7218. <attribute name="VALUE" x="228.6" y="15.24" size="1.778" layer="96"/>
  7219. </instance>
  7220. <instance part="R4" gate="G$1" x="213.36" y="30.48" smashed="yes" rot="R90">
  7221. <attribute name="NAME" x="216.9414" y="31.75" size="1.778" layer="95" rot="MR270"/>
  7222. <attribute name="VALUE" x="211.582" y="31.75" size="1.778" layer="96" rot="MR270"/>
  7223. </instance>
  7224. <instance part="R5" gate="G$1" x="205.74" y="45.72" smashed="yes" rot="MR0">
  7225. <attribute name="NAME" x="204.47" y="42.1386" size="1.778" layer="95"/>
  7226. <attribute name="VALUE" x="204.47" y="47.498" size="1.778" layer="96"/>
  7227. </instance>
  7228. <instance part="GND5" gate="1" x="213.36" y="17.78" smashed="yes">
  7229. <attribute name="VALUE" x="210.82" y="15.24" size="1.778" layer="96"/>
  7230. </instance>
  7231. </instances>
  7232. <busses>
  7233. </busses>
  7234. <nets>
  7235. <net name="N$1" class="0">
  7236. <segment>
  7237. <wire x1="127" y1="104.14" x2="129.54" y2="104.14" width="0.1524" layer="91"/>
  7238. <wire x1="129.54" y1="104.14" x2="129.54" y2="114.3" width="0.1524" layer="91"/>
  7239. <pinref part="C1" gate="G$1" pin="1"/>
  7240. <wire x1="129.54" y1="114.3" x2="116.84" y2="114.3" width="0.1524" layer="91"/>
  7241. <pinref part="U1" gate="G$1" pin="BST"/>
  7242. </segment>
  7243. </net>
  7244. <net name="N$2" class="0">
  7245. <segment>
  7246. <pinref part="C1" gate="G$1" pin="2"/>
  7247. <wire x1="109.22" y1="114.3" x2="106.68" y2="114.3" width="0.1524" layer="91"/>
  7248. <wire x1="106.68" y1="114.3" x2="93.98" y2="114.3" width="0.1524" layer="91"/>
  7249. <wire x1="93.98" y1="114.3" x2="93.98" y2="104.14" width="0.1524" layer="91"/>
  7250. <wire x1="93.98" y1="104.14" x2="96.52" y2="104.14" width="0.1524" layer="91"/>
  7251. <wire x1="106.68" y1="127" x2="106.68" y2="114.3" width="0.1524" layer="91"/>
  7252. <junction x="106.68" y="114.3"/>
  7253. <pinref part="D1" gate="G$1" pin="C"/>
  7254. <wire x1="96.52" y1="127" x2="106.68" y2="127" width="0.1524" layer="91"/>
  7255. <wire x1="106.68" y1="127" x2="116.84" y2="127" width="0.1524" layer="91"/>
  7256. <junction x="106.68" y="127"/>
  7257. <pinref part="L1" gate="G$1" pin="1"/>
  7258. <pinref part="U1" gate="G$1" pin="LX"/>
  7259. </segment>
  7260. </net>
  7261. <net name="12V" class="0">
  7262. <segment>
  7263. <pinref part="L1" gate="G$1" pin="2"/>
  7264. <wire x1="132.08" y1="127" x2="149.86" y2="127" width="0.1524" layer="91"/>
  7265. <wire x1="149.86" y1="127" x2="157.48" y2="127" width="0.1524" layer="91"/>
  7266. <wire x1="157.48" y1="127" x2="157.48" y2="116.84" width="0.1524" layer="91"/>
  7267. <junction x="157.48" y="127"/>
  7268. <pinref part="C3" gate="G$1" pin="+"/>
  7269. <label x="157.48" y="127" size="1.778" layer="95" rot="MR0"/>
  7270. <label x="236.22" y="127" size="1.778" layer="95" rot="MR0"/>
  7271. <wire x1="157.48" y1="127" x2="165.1" y2="127" width="0.1524" layer="91"/>
  7272. <wire x1="165.1" y1="127" x2="236.22" y2="127" width="0.1524" layer="91"/>
  7273. <pinref part="D2" gate="D$1" pin="P$1"/>
  7274. <wire x1="165.1" y1="127" x2="165.1" y2="115.824" width="0.1524" layer="91"/>
  7275. <junction x="165.1" y="127"/>
  7276. <pinref part="R9" gate="G$1" pin="1"/>
  7277. <wire x1="149.86" y1="127" x2="149.86" y2="121.92" width="0.1524" layer="91"/>
  7278. <junction x="149.86" y="127"/>
  7279. <pinref part="J1" gate="G$1" pin="1"/>
  7280. </segment>
  7281. </net>
  7282. <net name="N$4" class="0">
  7283. <segment>
  7284. <pinref part="C2" gate="G$1" pin="2"/>
  7285. <wire x1="132.08" y1="99.06" x2="127" y2="99.06" width="0.1524" layer="91"/>
  7286. <pinref part="U1" gate="G$1" pin="VD"/>
  7287. </segment>
  7288. </net>
  7289. <net name="N$5" class="0">
  7290. <segment>
  7291. <wire x1="96.52" y1="88.9" x2="73.66" y2="88.9" width="0.1524" layer="91"/>
  7292. <pinref part="R1" gate="G$1" pin="2"/>
  7293. <wire x1="73.66" y1="96.52" x2="73.66" y2="88.9" width="0.1524" layer="91"/>
  7294. <wire x1="73.66" y1="88.9" x2="73.66" y2="86.36" width="0.1524" layer="91"/>
  7295. <junction x="73.66" y="88.9"/>
  7296. <pinref part="R2" gate="G$1" pin="1"/>
  7297. <pinref part="J3" gate="G$1" pin="1"/>
  7298. <wire x1="73.66" y1="88.9" x2="66.04" y2="88.9" width="0.1524" layer="91"/>
  7299. <pinref part="U1" gate="G$1" pin="ON/OFF"/>
  7300. </segment>
  7301. </net>
  7302. <net name="N$7" class="0">
  7303. <segment>
  7304. <pinref part="R2" gate="G$1" pin="2"/>
  7305. <pinref part="R3" gate="G$1" pin="2"/>
  7306. <wire x1="73.66" y1="76.2" x2="73.66" y2="73.66" width="0.1524" layer="91"/>
  7307. </segment>
  7308. </net>
  7309. <net name="THCTL" class="0">
  7310. <segment>
  7311. <wire x1="226.06" y1="101.6" x2="236.22" y2="101.6" width="0.1524" layer="91"/>
  7312. <pinref part="J7" gate="G$1" pin="6"/>
  7313. <label x="226.06" y="101.6" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7314. </segment>
  7315. <segment>
  7316. <pinref part="Q1" gate="G$1" pin="S"/>
  7317. <wire x1="190.5" y1="88.9" x2="190.5" y2="91.44" width="0.1524" layer="91"/>
  7318. <wire x1="190.5" y1="91.44" x2="198.12" y2="91.44" width="0.1524" layer="91"/>
  7319. <label x="198.12" y="91.44" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7320. </segment>
  7321. </net>
  7322. <net name="ST_DR" class="0">
  7323. <segment>
  7324. <pinref part="J5" gate="G$1" pin="3"/>
  7325. <wire x1="236.22" y1="83.82" x2="226.06" y2="83.82" width="0.1524" layer="91"/>
  7326. <label x="226.06" y="83.82" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7327. </segment>
  7328. <segment>
  7329. <pinref part="Q3" gate="G$1" pin="D"/>
  7330. <wire x1="190.5" y1="55.88" x2="190.5" y2="53.34" width="0.1524" layer="91"/>
  7331. <wire x1="190.5" y1="53.34" x2="195.58" y2="53.34" width="0.1524" layer="91"/>
  7332. <wire x1="195.58" y1="53.34" x2="195.58" y2="58.42" width="0.1524" layer="91"/>
  7333. <wire x1="195.58" y1="58.42" x2="198.12" y2="58.42" width="0.1524" layer="91"/>
  7334. <label x="198.12" y="58.42" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7335. </segment>
  7336. </net>
  7337. <net name="5V" class="0">
  7338. <segment>
  7339. <pinref part="J5" gate="G$1" pin="4"/>
  7340. <wire x1="236.22" y1="81.28" x2="226.06" y2="81.28" width="0.1524" layer="91"/>
  7341. <label x="226.06" y="81.28" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7342. </segment>
  7343. <segment>
  7344. <pinref part="Q3" gate="G$1" pin="S"/>
  7345. <wire x1="190.5" y1="66.04" x2="190.5" y2="68.58" width="0.1524" layer="91"/>
  7346. <wire x1="190.5" y1="68.58" x2="198.12" y2="68.58" width="0.1524" layer="91"/>
  7347. <label x="198.12" y="68.58" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7348. </segment>
  7349. <segment>
  7350. <pinref part="R7" gate="G$1" pin="1"/>
  7351. <wire x1="160.02" y1="38.1" x2="157.48" y2="38.1" width="0.1524" layer="91"/>
  7352. <label x="157.48" y="38.1" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7353. </segment>
  7354. <segment>
  7355. <pinref part="J2" gate="G$1" pin="1"/>
  7356. <wire x1="236.22" y1="68.58" x2="226.06" y2="68.58" width="0.1524" layer="91"/>
  7357. <label x="226.06" y="68.58" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7358. </segment>
  7359. </net>
  7360. <net name="STLEDOUT" class="0">
  7361. <segment>
  7362. <pinref part="J2" gate="G$1" pin="2"/>
  7363. <pinref part="Q7" gate="G$1" pin="D"/>
  7364. <wire x1="233.68" y1="63.5" x2="233.68" y2="66.04" width="0.1524" layer="91"/>
  7365. <wire x1="236.22" y1="66.04" x2="233.68" y2="66.04" width="0.1524" layer="91"/>
  7366. </segment>
  7367. </net>
  7368. <net name="STLEDCTL" class="0">
  7369. <segment>
  7370. <wire x1="226.06" y1="109.22" x2="236.22" y2="109.22" width="0.1524" layer="91"/>
  7371. <pinref part="J7" gate="G$1" pin="3"/>
  7372. <label x="226.06" y="109.22" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7373. </segment>
  7374. <segment>
  7375. <pinref part="Q7" gate="G$1" pin="G"/>
  7376. <wire x1="228.6" y1="55.88" x2="226.06" y2="55.88" width="0.1524" layer="91"/>
  7377. <label x="226.06" y="55.88" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7378. </segment>
  7379. </net>
  7380. <net name="PWON" class="0">
  7381. <segment>
  7382. <pinref part="J7" gate="G$1" pin="2"/>
  7383. <wire x1="236.22" y1="111.76" x2="226.06" y2="111.76" width="0.1524" layer="91"/>
  7384. <label x="226.06" y="111.76" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7385. </segment>
  7386. <segment>
  7387. <pinref part="R6" gate="G$1" pin="1"/>
  7388. <wire x1="160.02" y1="30.48" x2="157.48" y2="30.48" width="0.1524" layer="91"/>
  7389. <label x="157.48" y="30.48" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7390. </segment>
  7391. </net>
  7392. <net name="BAT" class="0">
  7393. <segment>
  7394. <pinref part="Q4" gate="G$1" pin="D"/>
  7395. <wire x1="190.5" y1="101.6" x2="190.5" y2="99.06" width="0.1524" layer="91"/>
  7396. <wire x1="190.5" y1="99.06" x2="195.58" y2="99.06" width="0.1524" layer="91"/>
  7397. <wire x1="195.58" y1="99.06" x2="195.58" y2="104.14" width="0.1524" layer="91"/>
  7398. <wire x1="195.58" y1="104.14" x2="198.12" y2="104.14" width="0.1524" layer="91"/>
  7399. <label x="198.12" y="104.14" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7400. </segment>
  7401. <segment>
  7402. <pinref part="J7" gate="G$1" pin="1"/>
  7403. <wire x1="236.22" y1="114.3" x2="226.06" y2="114.3" width="0.1524" layer="91"/>
  7404. <label x="226.06" y="114.3" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7405. </segment>
  7406. </net>
  7407. <net name="STCTL" class="0">
  7408. <segment>
  7409. <pinref part="J7" gate="G$1" pin="4"/>
  7410. <wire x1="236.22" y1="106.68" x2="226.06" y2="106.68" width="0.1524" layer="91"/>
  7411. <label x="226.06" y="106.68" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7412. </segment>
  7413. <segment>
  7414. <pinref part="Q3" gate="G$1" pin="G"/>
  7415. <wire x1="195.58" y1="63.5" x2="198.12" y2="63.5" width="0.1524" layer="91"/>
  7416. <label x="198.12" y="63.5" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7417. </segment>
  7418. </net>
  7419. <net name="N$6" class="0">
  7420. <segment>
  7421. <pinref part="R10" gate="G$1" pin="1"/>
  7422. <pinref part="R9" gate="G$1" pin="2"/>
  7423. <wire x1="149.86" y1="104.14" x2="149.86" y2="111.76" width="0.1524" layer="91"/>
  7424. </segment>
  7425. </net>
  7426. <net name="N$9" class="0">
  7427. <segment>
  7428. <pinref part="U1" gate="G$1" pin="FB"/>
  7429. <wire x1="127" y1="88.9" x2="149.86" y2="88.9" width="0.1524" layer="91"/>
  7430. <pinref part="R11" gate="G$1" pin="1"/>
  7431. <wire x1="149.86" y1="88.9" x2="149.86" y2="83.82" width="0.1524" layer="91"/>
  7432. <pinref part="R10" gate="G$1" pin="2"/>
  7433. <wire x1="149.86" y1="88.9" x2="149.86" y2="93.98" width="0.1524" layer="91"/>
  7434. <junction x="149.86" y="88.9"/>
  7435. </segment>
  7436. </net>
  7437. <net name="VIN" class="0">
  7438. <segment>
  7439. <wire x1="96.52" y1="99.06" x2="88.9" y2="99.06" width="0.1524" layer="91"/>
  7440. <wire x1="73.66" y1="111.76" x2="73.66" y2="106.68" width="0.1524" layer="91"/>
  7441. <pinref part="R1" gate="G$1" pin="1"/>
  7442. <wire x1="73.66" y1="111.76" x2="48.26" y2="111.76" width="0.1524" layer="91"/>
  7443. <junction x="73.66" y="111.76"/>
  7444. <wire x1="88.9" y1="99.06" x2="88.9" y2="111.76" width="0.1524" layer="91"/>
  7445. <wire x1="88.9" y1="111.76" x2="83.82" y2="111.76" width="0.1524" layer="91"/>
  7446. <wire x1="83.82" y1="111.76" x2="73.66" y2="111.76" width="0.1524" layer="91"/>
  7447. <wire x1="83.82" y1="107.95" x2="83.82" y2="111.76" width="0.1524" layer="91"/>
  7448. <junction x="83.82" y="111.76"/>
  7449. <label x="53.34" y="111.76" size="1.778" layer="95" rot="MR0"/>
  7450. <pinref part="C4" gate="G$1" pin="P$1"/>
  7451. <label x="96.52" y="99.06" size="1.778" layer="95" rot="MR0"/>
  7452. <pinref part="U1" gate="G$1" pin="VIN"/>
  7453. <pinref part="J4" gate="G$1" pin="P$2"/>
  7454. </segment>
  7455. <segment>
  7456. <pinref part="J6" gate="G$1" pin="P$2"/>
  7457. <wire x1="238.76" y1="35.56" x2="231.14" y2="35.56" width="0.1524" layer="91"/>
  7458. <label x="231.14" y="35.56" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7459. </segment>
  7460. <segment>
  7461. <wire x1="200.66" y1="45.72" x2="195.58" y2="45.72" width="0.1524" layer="91"/>
  7462. <pinref part="R5" gate="G$1" pin="2"/>
  7463. <label x="195.58" y="45.72" size="1.016" layer="95" ratio="7" rot="MR0" xref="yes"/>
  7464. </segment>
  7465. </net>
  7466. <net name="GND" class="0">
  7467. <segment>
  7468. <pinref part="GND1" gate="1" pin="GND"/>
  7469. <pinref part="Q2" gate="G$1" pin="E"/>
  7470. <wire x1="177.8" y1="25.4" x2="177.8" y2="20.32" width="0.1524" layer="91"/>
  7471. </segment>
  7472. <segment>
  7473. <pinref part="GND3" gate="1" pin="GND"/>
  7474. <pinref part="Q7" gate="G$1" pin="S"/>
  7475. <wire x1="233.68" y1="53.34" x2="233.68" y2="48.26" width="0.1524" layer="91"/>
  7476. </segment>
  7477. <segment>
  7478. <pinref part="GND4" gate="1" pin="GND"/>
  7479. <pinref part="J6" gate="G$1" pin="P$1"/>
  7480. <wire x1="238.76" y1="33.02" x2="231.14" y2="33.02" width="0.1524" layer="91"/>
  7481. <wire x1="231.14" y1="33.02" x2="231.14" y2="20.32" width="0.1524" layer="91"/>
  7482. </segment>
  7483. <segment>
  7484. <pinref part="GND2" gate="1" pin="GND"/>
  7485. <pinref part="R3" gate="G$1" pin="1"/>
  7486. <wire x1="73.66" y1="63.5" x2="73.66" y2="60.96" width="0.1524" layer="91"/>
  7487. <wire x1="73.66" y1="60.96" x2="83.82" y2="60.96" width="0.1524" layer="91"/>
  7488. <junction x="73.66" y="60.96"/>
  7489. <pinref part="C3" gate="G$1" pin="-"/>
  7490. <wire x1="66.04" y1="60.96" x2="73.66" y2="60.96" width="0.1524" layer="91"/>
  7491. <wire x1="83.82" y1="60.96" x2="101.6" y2="60.96" width="0.1524" layer="91"/>
  7492. <wire x1="101.6" y1="60.96" x2="142.24" y2="60.96" width="0.1524" layer="91"/>
  7493. <wire x1="142.24" y1="60.96" x2="149.86" y2="60.96" width="0.1524" layer="91"/>
  7494. <wire x1="149.86" y1="60.96" x2="157.48" y2="60.96" width="0.1524" layer="91"/>
  7495. <wire x1="157.48" y1="60.96" x2="157.48" y2="109.22" width="0.1524" layer="91"/>
  7496. <pinref part="D1" gate="G$1" pin="A"/>
  7497. <wire x1="91.44" y1="127" x2="35.56" y2="127" width="0.1524" layer="91"/>
  7498. <pinref part="J3" gate="G$1" pin="2"/>
  7499. <wire x1="66.04" y1="86.36" x2="66.04" y2="60.96" width="0.1524" layer="91"/>
  7500. <wire x1="83.82" y1="93.98" x2="83.82" y2="96.52" width="0.1524" layer="91"/>
  7501. <wire x1="96.52" y1="93.98" x2="83.82" y2="93.98" width="0.1524" layer="91"/>
  7502. <junction x="83.82" y="93.98"/>
  7503. <label x="96.52" y="93.98" size="1.778" layer="95" rot="MR0"/>
  7504. <wire x1="83.82" y1="93.98" x2="83.82" y2="60.96" width="0.1524" layer="91"/>
  7505. <junction x="83.82" y="60.96"/>
  7506. <label x="53.34" y="109.22" size="1.778" layer="95" rot="MR0"/>
  7507. <pinref part="D2" gate="D$1" pin="P$2"/>
  7508. <wire x1="165.1" y1="107.696" x2="165.1" y2="60.96" width="0.1524" layer="91"/>
  7509. <wire x1="165.1" y1="60.96" x2="157.48" y2="60.96" width="0.1524" layer="91"/>
  7510. <junction x="157.48" y="60.96"/>
  7511. <wire x1="35.56" y1="127" x2="35.56" y2="60.96" width="0.1524" layer="91"/>
  7512. <wire x1="127" y1="93.98" x2="142.24" y2="93.98" width="0.1524" layer="91"/>
  7513. <wire x1="142.24" y1="93.98" x2="142.24" y2="99.06" width="0.1524" layer="91"/>
  7514. <wire x1="142.24" y1="99.06" x2="139.7" y2="99.06" width="0.1524" layer="91"/>
  7515. <pinref part="C2" gate="G$1" pin="1"/>
  7516. <junction x="142.24" y="93.98"/>
  7517. <junction x="101.6" y="60.96"/>
  7518. <label x="132.08" y="93.98" size="1.778" layer="95" rot="MR0"/>
  7519. <junction x="165.1" y="60.96"/>
  7520. <pinref part="C4" gate="G$1" pin="P$2"/>
  7521. <pinref part="U1" gate="G$1" pin="SGND"/>
  7522. <pinref part="U1" gate="G$1" pin="GND"/>
  7523. <pinref part="J4" gate="G$1" pin="P$1"/>
  7524. <pinref part="R11" gate="G$1" pin="2"/>
  7525. <wire x1="149.86" y1="73.66" x2="149.86" y2="60.96" width="0.1524" layer="91"/>
  7526. <junction x="149.86" y="60.96"/>
  7527. <pinref part="J1" gate="G$1" pin="2"/>
  7528. <wire x1="236.22" y1="124.46" x2="172.72" y2="124.46" width="0.1524" layer="91"/>
  7529. <label x="236.22" y="124.46" size="1.778" layer="95" rot="MR0"/>
  7530. <wire x1="165.1" y1="60.96" x2="172.72" y2="60.96" width="0.1524" layer="91"/>
  7531. <wire x1="172.72" y1="60.96" x2="172.72" y2="124.46" width="0.1524" layer="91"/>
  7532. <wire x1="66.04" y1="60.96" x2="53.34" y2="60.96" width="0.1524" layer="91"/>
  7533. <junction x="66.04" y="60.96"/>
  7534. <wire x1="53.34" y1="60.96" x2="35.56" y2="60.96" width="0.1524" layer="91"/>
  7535. <wire x1="101.6" y1="48.26" x2="101.6" y2="60.96" width="0.1524" layer="91"/>
  7536. <junction x="101.6" y="60.96"/>
  7537. <wire x1="53.34" y1="109.22" x2="53.34" y2="60.96" width="0.1524" layer="91"/>
  7538. <junction x="53.34" y="60.96"/>
  7539. <wire x1="48.26" y1="109.22" x2="53.34" y2="109.22" width="0.1524" layer="91"/>
  7540. <wire x1="142.24" y1="93.98" x2="142.24" y2="60.96" width="0.1524" layer="91"/>
  7541. <junction x="142.24" y="60.96"/>
  7542. </segment>
  7543. <segment>
  7544. <wire x1="213.36" y1="25.4" x2="213.36" y2="20.32" width="0.1524" layer="91"/>
  7545. <pinref part="R4" gate="G$1" pin="1"/>
  7546. <pinref part="GND5" gate="1" pin="GND"/>
  7547. </segment>
  7548. </net>
  7549. <net name="BATOUT" class="0">
  7550. <segment>
  7551. <pinref part="Q4" gate="G$1" pin="S"/>
  7552. <wire x1="190.5" y1="111.76" x2="190.5" y2="114.3" width="0.1524" layer="91"/>
  7553. <wire x1="190.5" y1="114.3" x2="198.12" y2="114.3" width="0.1524" layer="91"/>
  7554. <label x="198.12" y="114.3" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7555. </segment>
  7556. <segment>
  7557. <wire x1="213.36" y1="40.64" x2="195.58" y2="40.64" width="0.1524" layer="91"/>
  7558. <wire x1="210.82" y1="45.72" x2="213.36" y2="45.72" width="0.1524" layer="91"/>
  7559. <wire x1="213.36" y1="45.72" x2="213.36" y2="40.64" width="0.1524" layer="91"/>
  7560. <wire x1="213.36" y1="40.64" x2="213.36" y2="35.56" width="0.1524" layer="91"/>
  7561. <junction x="213.36" y="40.64"/>
  7562. <pinref part="R4" gate="G$1" pin="2"/>
  7563. <pinref part="R5" gate="G$1" pin="1"/>
  7564. <label x="195.58" y="40.64" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7565. </segment>
  7566. </net>
  7567. <net name="SPEED_DR" class="0">
  7568. <segment>
  7569. <pinref part="J5" gate="G$1" pin="2"/>
  7570. <wire x1="236.22" y1="86.36" x2="226.06" y2="86.36" width="0.1524" layer="91"/>
  7571. <label x="226.06" y="86.36" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7572. </segment>
  7573. <segment>
  7574. <wire x1="226.06" y1="104.14" x2="236.22" y2="104.14" width="0.1524" layer="91"/>
  7575. <pinref part="J7" gate="G$1" pin="5"/>
  7576. <label x="226.06" y="104.14" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7577. </segment>
  7578. </net>
  7579. <net name="TH_DR" class="0">
  7580. <segment>
  7581. <pinref part="J5" gate="G$1" pin="1"/>
  7582. <wire x1="236.22" y1="88.9" x2="226.06" y2="88.9" width="0.1524" layer="91"/>
  7583. <label x="226.06" y="88.9" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7584. </segment>
  7585. <segment>
  7586. <pinref part="Q1" gate="G$1" pin="D"/>
  7587. <wire x1="190.5" y1="78.74" x2="190.5" y2="76.2" width="0.1524" layer="91"/>
  7588. <wire x1="190.5" y1="76.2" x2="195.58" y2="76.2" width="0.1524" layer="91"/>
  7589. <wire x1="195.58" y1="76.2" x2="195.58" y2="81.28" width="0.1524" layer="91"/>
  7590. <wire x1="195.58" y1="81.28" x2="198.12" y2="81.28" width="0.1524" layer="91"/>
  7591. <label x="198.12" y="81.28" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7592. </segment>
  7593. </net>
  7594. <net name="PWON_REV" class="0">
  7595. <segment>
  7596. <pinref part="Q1" gate="G$1" pin="G"/>
  7597. <wire x1="195.58" y1="86.36" x2="198.12" y2="86.36" width="0.1524" layer="91"/>
  7598. <label x="198.12" y="86.36" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7599. </segment>
  7600. <segment>
  7601. <pinref part="Q2" gate="G$1" pin="C"/>
  7602. <wire x1="177.8" y1="35.56" x2="177.8" y2="38.1" width="0.1524" layer="91"/>
  7603. <pinref part="R7" gate="G$1" pin="2"/>
  7604. <wire x1="170.18" y1="38.1" x2="177.8" y2="38.1" width="0.1524" layer="91"/>
  7605. <wire x1="177.8" y1="38.1" x2="177.8" y2="45.72" width="0.1524" layer="91"/>
  7606. <junction x="177.8" y="38.1"/>
  7607. <wire x1="177.8" y1="45.72" x2="157.48" y2="45.72" width="0.1524" layer="91"/>
  7608. <label x="157.48" y="45.72" size="1.016" layer="95" ratio="7" rot="R180" xref="yes"/>
  7609. </segment>
  7610. <segment>
  7611. <pinref part="Q4" gate="G$1" pin="G"/>
  7612. <wire x1="195.58" y1="109.22" x2="198.12" y2="109.22" width="0.1524" layer="91"/>
  7613. <label x="198.12" y="109.22" size="1.016" layer="95" ratio="7" rot="MR180" xref="yes"/>
  7614. </segment>
  7615. </net>
  7616. <net name="N$3" class="0">
  7617. <segment>
  7618. <pinref part="R6" gate="G$1" pin="2"/>
  7619. <pinref part="Q2" gate="G$1" pin="B"/>
  7620. <wire x1="170.18" y1="30.48" x2="172.72" y2="30.48" width="0.1524" layer="91"/>
  7621. </segment>
  7622. </net>
  7623. </nets>
  7624. </sheet>
  7625. </sheets>
  7626. </schematic>
  7627. </drawing>
  7628. <compatibility>
  7629. <note version="8.2" severity="warning">
  7630. Since Version 8.2, EAGLE supports online libraries. The ids
  7631. of those online libraries will not be understood (or retained)
  7632. with this version.
  7633. </note>
  7634. <note version="8.3" severity="warning">
  7635. Since Version 8.3, EAGLE supports URNs for individual library
  7636. assets (packages, symbols, and devices). The URNs of those assets
  7637. will not be understood (or retained) with this version.
  7638. </note>
  7639. <note version="8.3" severity="warning">
  7640. Since Version 8.3, EAGLE supports the association of 3D packages
  7641. with devices in libraries, schematics, and board files. Those 3D
  7642. packages will not be understood (or retained) with this version.
  7643. </note>
  7644. <note version="8.4" severity="warning">
  7645. Since Version 8.4, EAGLE supports properties for SPICE simulation.
  7646. Probes in schematics and SPICE mapping objects found in parts and library devices
  7647. will not be understood with this version. Update EAGLE to the latest version
  7648. for full support of SPICE simulation.
  7649. </note>
  7650. </compatibility>
  7651. </eagle>