PowerBook.kicad_sch 302 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid e40e8cef-4fb0-4fc3-be09-3875b2cc8469)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  6. (property "Reference" "J" (id 0) (at 0 2.54 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "~" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (symbol "Conn_01x02_Male_1_1"
  28. (polyline
  29. (pts
  30. (xy 1.27 -2.54)
  31. (xy 0.8636 -2.54)
  32. )
  33. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  34. (fill (type none))
  35. )
  36. (polyline
  37. (pts
  38. (xy 1.27 0)
  39. (xy 0.8636 0)
  40. )
  41. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  42. (fill (type none))
  43. )
  44. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  45. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  46. (fill (type outline))
  47. )
  48. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  49. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  50. (fill (type outline))
  51. )
  52. (pin passive line (at 5.08 0 180) (length 3.81)
  53. (name "Pin_1" (effects (font (size 1.27 1.27))))
  54. (number "1" (effects (font (size 1.27 1.27))))
  55. )
  56. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  57. (name "Pin_2" (effects (font (size 1.27 1.27))))
  58. (number "2" (effects (font (size 1.27 1.27))))
  59. )
  60. )
  61. )
  62. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  63. (property "Reference" "J" (id 0) (at 0 5.08 0)
  64. (effects (font (size 1.27 1.27)))
  65. )
  66. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  67. (effects (font (size 1.27 1.27)))
  68. )
  69. (property "Footprint" "" (id 2) (at 0 0 0)
  70. (effects (font (size 1.27 1.27)) hide)
  71. )
  72. (property "Datasheet" "~" (id 3) (at 0 0 0)
  73. (effects (font (size 1.27 1.27)) hide)
  74. )
  75. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  76. (effects (font (size 1.27 1.27)) hide)
  77. )
  78. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  79. (effects (font (size 1.27 1.27)) hide)
  80. )
  81. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  82. (effects (font (size 1.27 1.27)) hide)
  83. )
  84. (symbol "Conn_01x03_Male_1_1"
  85. (polyline
  86. (pts
  87. (xy 1.27 -2.54)
  88. (xy 0.8636 -2.54)
  89. )
  90. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  91. (fill (type none))
  92. )
  93. (polyline
  94. (pts
  95. (xy 1.27 0)
  96. (xy 0.8636 0)
  97. )
  98. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  99. (fill (type none))
  100. )
  101. (polyline
  102. (pts
  103. (xy 1.27 2.54)
  104. (xy 0.8636 2.54)
  105. )
  106. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  107. (fill (type none))
  108. )
  109. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  110. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  111. (fill (type outline))
  112. )
  113. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  114. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  115. (fill (type outline))
  116. )
  117. (rectangle (start 0.8636 2.667) (end 0 2.413)
  118. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  119. (fill (type outline))
  120. )
  121. (pin passive line (at 5.08 2.54 180) (length 3.81)
  122. (name "Pin_1" (effects (font (size 1.27 1.27))))
  123. (number "1" (effects (font (size 1.27 1.27))))
  124. )
  125. (pin passive line (at 5.08 0 180) (length 3.81)
  126. (name "Pin_2" (effects (font (size 1.27 1.27))))
  127. (number "2" (effects (font (size 1.27 1.27))))
  128. )
  129. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  130. (name "Pin_3" (effects (font (size 1.27 1.27))))
  131. (number "3" (effects (font (size 1.27 1.27))))
  132. )
  133. )
  134. )
  135. (symbol "Connector_Generic:Conn_02x02_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  136. (property "Reference" "J" (id 0) (at 1.27 2.54 0)
  137. (effects (font (size 1.27 1.27)))
  138. )
  139. (property "Value" "Conn_02x02_Odd_Even" (id 1) (at 1.27 -5.08 0)
  140. (effects (font (size 1.27 1.27)))
  141. )
  142. (property "Footprint" "" (id 2) (at 0 0 0)
  143. (effects (font (size 1.27 1.27)) hide)
  144. )
  145. (property "Datasheet" "~" (id 3) (at 0 0 0)
  146. (effects (font (size 1.27 1.27)) hide)
  147. )
  148. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  149. (effects (font (size 1.27 1.27)) hide)
  150. )
  151. (property "ki_description" "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  152. (effects (font (size 1.27 1.27)) hide)
  153. )
  154. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  155. (effects (font (size 1.27 1.27)) hide)
  156. )
  157. (symbol "Conn_02x02_Odd_Even_1_1"
  158. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  159. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  160. (fill (type none))
  161. )
  162. (rectangle (start -1.27 0.127) (end 0 -0.127)
  163. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  164. (fill (type none))
  165. )
  166. (rectangle (start -1.27 1.27) (end 3.81 -3.81)
  167. (stroke (width 0.254) (type default) (color 0 0 0 0))
  168. (fill (type background))
  169. )
  170. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  171. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  172. (fill (type none))
  173. )
  174. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  175. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  176. (fill (type none))
  177. )
  178. (pin passive line (at -5.08 0 0) (length 3.81)
  179. (name "Pin_1" (effects (font (size 1.27 1.27))))
  180. (number "1" (effects (font (size 1.27 1.27))))
  181. )
  182. (pin passive line (at 7.62 0 180) (length 3.81)
  183. (name "Pin_2" (effects (font (size 1.27 1.27))))
  184. (number "2" (effects (font (size 1.27 1.27))))
  185. )
  186. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  187. (name "Pin_3" (effects (font (size 1.27 1.27))))
  188. (number "3" (effects (font (size 1.27 1.27))))
  189. )
  190. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  191. (name "Pin_4" (effects (font (size 1.27 1.27))))
  192. (number "4" (effects (font (size 1.27 1.27))))
  193. )
  194. )
  195. )
  196. (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  197. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  198. (effects (font (size 1.27 1.27)) (justify left))
  199. )
  200. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  201. (effects (font (size 1.27 1.27)) (justify left))
  202. )
  203. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  204. (effects (font (size 1.27 1.27)) hide)
  205. )
  206. (property "Datasheet" "~" (id 3) (at 0 0 0)
  207. (effects (font (size 1.27 1.27)) hide)
  208. )
  209. (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
  210. (effects (font (size 1.27 1.27)) hide)
  211. )
  212. (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
  213. (effects (font (size 1.27 1.27)) hide)
  214. )
  215. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  216. (effects (font (size 1.27 1.27)) hide)
  217. )
  218. (symbol "C_0_1"
  219. (polyline
  220. (pts
  221. (xy -2.032 -0.762)
  222. (xy 2.032 -0.762)
  223. )
  224. (stroke (width 0.508) (type default) (color 0 0 0 0))
  225. (fill (type none))
  226. )
  227. (polyline
  228. (pts
  229. (xy -2.032 0.762)
  230. (xy 2.032 0.762)
  231. )
  232. (stroke (width 0.508) (type default) (color 0 0 0 0))
  233. (fill (type none))
  234. )
  235. )
  236. (symbol "C_1_1"
  237. (pin passive line (at 0 3.81 270) (length 2.794)
  238. (name "~" (effects (font (size 1.27 1.27))))
  239. (number "1" (effects (font (size 1.27 1.27))))
  240. )
  241. (pin passive line (at 0 -3.81 90) (length 2.794)
  242. (name "~" (effects (font (size 1.27 1.27))))
  243. (number "2" (effects (font (size 1.27 1.27))))
  244. )
  245. )
  246. )
  247. (symbol "Device:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  248. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  249. (effects (font (size 1.27 1.27)) (justify left))
  250. )
  251. (property "Value" "Device_CP" (id 1) (at 0.635 -2.54 0)
  252. (effects (font (size 1.27 1.27)) (justify left))
  253. )
  254. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  255. (effects (font (size 1.27 1.27)) hide)
  256. )
  257. (property "Datasheet" "" (id 3) (at 0 0 0)
  258. (effects (font (size 1.27 1.27)) hide)
  259. )
  260. (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
  261. (effects (font (size 1.27 1.27)) hide)
  262. )
  263. (symbol "CP_0_1"
  264. (rectangle (start -2.286 0.508) (end 2.286 1.016)
  265. (stroke (width 0) (type default) (color 0 0 0 0))
  266. (fill (type none))
  267. )
  268. (polyline
  269. (pts
  270. (xy -1.778 2.286)
  271. (xy -0.762 2.286)
  272. )
  273. (stroke (width 0) (type default) (color 0 0 0 0))
  274. (fill (type none))
  275. )
  276. (polyline
  277. (pts
  278. (xy -1.27 2.794)
  279. (xy -1.27 1.778)
  280. )
  281. (stroke (width 0) (type default) (color 0 0 0 0))
  282. (fill (type none))
  283. )
  284. (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
  285. (stroke (width 0) (type default) (color 0 0 0 0))
  286. (fill (type outline))
  287. )
  288. )
  289. (symbol "CP_1_1"
  290. (pin passive line (at 0 3.81 270) (length 2.794)
  291. (name "~" (effects (font (size 1.27 1.27))))
  292. (number "1" (effects (font (size 1.27 1.27))))
  293. )
  294. (pin passive line (at 0 -3.81 90) (length 2.794)
  295. (name "~" (effects (font (size 1.27 1.27))))
  296. (number "2" (effects (font (size 1.27 1.27))))
  297. )
  298. )
  299. )
  300. (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  301. (property "Reference" "D" (id 0) (at 0 2.54 0)
  302. (effects (font (size 1.27 1.27)))
  303. )
  304. (property "Value" "D" (id 1) (at 0 -2.54 0)
  305. (effects (font (size 1.27 1.27)))
  306. )
  307. (property "Footprint" "" (id 2) (at 0 0 0)
  308. (effects (font (size 1.27 1.27)) hide)
  309. )
  310. (property "Datasheet" "~" (id 3) (at 0 0 0)
  311. (effects (font (size 1.27 1.27)) hide)
  312. )
  313. (property "ki_keywords" "diode" (id 4) (at 0 0 0)
  314. (effects (font (size 1.27 1.27)) hide)
  315. )
  316. (property "ki_description" "Diode" (id 5) (at 0 0 0)
  317. (effects (font (size 1.27 1.27)) hide)
  318. )
  319. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  320. (effects (font (size 1.27 1.27)) hide)
  321. )
  322. (symbol "D_0_1"
  323. (polyline
  324. (pts
  325. (xy -1.27 1.27)
  326. (xy -1.27 -1.27)
  327. )
  328. (stroke (width 0.254) (type default) (color 0 0 0 0))
  329. (fill (type none))
  330. )
  331. (polyline
  332. (pts
  333. (xy 1.27 0)
  334. (xy -1.27 0)
  335. )
  336. (stroke (width 0) (type default) (color 0 0 0 0))
  337. (fill (type none))
  338. )
  339. (polyline
  340. (pts
  341. (xy 1.27 1.27)
  342. (xy 1.27 -1.27)
  343. (xy -1.27 0)
  344. (xy 1.27 1.27)
  345. )
  346. (stroke (width 0.254) (type default) (color 0 0 0 0))
  347. (fill (type none))
  348. )
  349. )
  350. (symbol "D_1_1"
  351. (pin passive line (at -3.81 0 0) (length 2.54)
  352. (name "K" (effects (font (size 1.27 1.27))))
  353. (number "1" (effects (font (size 1.27 1.27))))
  354. )
  355. (pin passive line (at 3.81 0 180) (length 2.54)
  356. (name "A" (effects (font (size 1.27 1.27))))
  357. (number "2" (effects (font (size 1.27 1.27))))
  358. )
  359. )
  360. )
  361. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  362. (property "Reference" "F" (id 0) (at -2.54 0 90)
  363. (effects (font (size 1.27 1.27)))
  364. )
  365. (property "Value" "Polyfuse" (id 1) (at 2.54 0 90)
  366. (effects (font (size 1.27 1.27)))
  367. )
  368. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  369. (effects (font (size 1.27 1.27)) (justify left) hide)
  370. )
  371. (property "Datasheet" "~" (id 3) (at 0 0 0)
  372. (effects (font (size 1.27 1.27)) hide)
  373. )
  374. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  375. (effects (font (size 1.27 1.27)) hide)
  376. )
  377. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0)
  378. (effects (font (size 1.27 1.27)) hide)
  379. )
  380. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  381. (effects (font (size 1.27 1.27)) hide)
  382. )
  383. (symbol "Polyfuse_0_1"
  384. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  385. (stroke (width 0.254) (type default) (color 0 0 0 0))
  386. (fill (type none))
  387. )
  388. (polyline
  389. (pts
  390. (xy 0 2.54)
  391. (xy 0 -2.54)
  392. )
  393. (stroke (width 0) (type default) (color 0 0 0 0))
  394. (fill (type none))
  395. )
  396. (polyline
  397. (pts
  398. (xy -1.524 2.54)
  399. (xy -1.524 1.524)
  400. (xy 1.524 -1.524)
  401. (xy 1.524 -2.54)
  402. )
  403. (stroke (width 0) (type default) (color 0 0 0 0))
  404. (fill (type none))
  405. )
  406. )
  407. (symbol "Polyfuse_1_1"
  408. (pin passive line (at 0 3.81 270) (length 1.27)
  409. (name "~" (effects (font (size 1.27 1.27))))
  410. (number "1" (effects (font (size 1.27 1.27))))
  411. )
  412. (pin passive line (at 0 -3.81 90) (length 1.27)
  413. (name "~" (effects (font (size 1.27 1.27))))
  414. (number "2" (effects (font (size 1.27 1.27))))
  415. )
  416. )
  417. )
  418. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  419. (property "Reference" "R" (id 0) (at 2.032 0 90)
  420. (effects (font (size 1.27 1.27)))
  421. )
  422. (property "Value" "R" (id 1) (at 0 0 90)
  423. (effects (font (size 1.27 1.27)))
  424. )
  425. (property "Footprint" "" (id 2) (at -1.778 0 90)
  426. (effects (font (size 1.27 1.27)) hide)
  427. )
  428. (property "Datasheet" "~" (id 3) (at 0 0 0)
  429. (effects (font (size 1.27 1.27)) hide)
  430. )
  431. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  432. (effects (font (size 1.27 1.27)) hide)
  433. )
  434. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  435. (effects (font (size 1.27 1.27)) hide)
  436. )
  437. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  438. (effects (font (size 1.27 1.27)) hide)
  439. )
  440. (symbol "R_0_1"
  441. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  442. (stroke (width 0.254) (type default) (color 0 0 0 0))
  443. (fill (type none))
  444. )
  445. )
  446. (symbol "R_1_1"
  447. (pin passive line (at 0 3.81 270) (length 1.27)
  448. (name "~" (effects (font (size 1.27 1.27))))
  449. (number "1" (effects (font (size 1.27 1.27))))
  450. )
  451. (pin passive line (at 0 -3.81 90) (length 1.27)
  452. (name "~" (effects (font (size 1.27 1.27))))
  453. (number "2" (effects (font (size 1.27 1.27))))
  454. )
  455. )
  456. )
  457. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  458. (property "Reference" "H" (id 0) (at 0 5.08 0)
  459. (effects (font (size 1.27 1.27)))
  460. )
  461. (property "Value" "MountingHole" (id 1) (at 0 3.175 0)
  462. (effects (font (size 1.27 1.27)))
  463. )
  464. (property "Footprint" "" (id 2) (at 0 0 0)
  465. (effects (font (size 1.27 1.27)) hide)
  466. )
  467. (property "Datasheet" "~" (id 3) (at 0 0 0)
  468. (effects (font (size 1.27 1.27)) hide)
  469. )
  470. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  471. (effects (font (size 1.27 1.27)) hide)
  472. )
  473. (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
  474. (effects (font (size 1.27 1.27)) hide)
  475. )
  476. (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
  477. (effects (font (size 1.27 1.27)) hide)
  478. )
  479. (symbol "MountingHole_0_1"
  480. (circle (center 0 0) (radius 1.27)
  481. (stroke (width 1.27) (type default) (color 0 0 0 0))
  482. (fill (type none))
  483. )
  484. )
  485. )
  486. (symbol "New_Library:LVT125" (in_bom yes) (on_board yes)
  487. (property "Reference" "U" (id 0) (at 0 0 0)
  488. (effects (font (size 1.27 1.27)))
  489. )
  490. (property "Value" "LVT125" (id 1) (at 0 2.54 0)
  491. (effects (font (size 1.27 1.27)))
  492. )
  493. (property "Footprint" "" (id 2) (at 0 0 0)
  494. (effects (font (size 1.27 1.27)) hide)
  495. )
  496. (property "Datasheet" "" (id 3) (at 0 0 0)
  497. (effects (font (size 1.27 1.27)) hide)
  498. )
  499. (symbol "LVT125_0_1"
  500. (rectangle (start -7.62 -1.27) (end 6.35 -19.05)
  501. (stroke (width 0) (type default) (color 0 0 0 0))
  502. (fill (type background))
  503. )
  504. (rectangle (start 7.62 -12.7) (end 7.62 -12.7)
  505. (stroke (width 0) (type default) (color 0 0 0 0))
  506. (fill (type none))
  507. )
  508. )
  509. (symbol "LVT125_1_1"
  510. (pin input line (at -10.16 -2.54 0) (length 2.54)
  511. (name "1/OE" (effects (font (size 1.27 1.27))))
  512. (number "1" (effects (font (size 1.27 1.27))))
  513. )
  514. (pin bidirectional line (at 8.89 -12.7 180) (length 2.54)
  515. (name "3/OE" (effects (font (size 1.27 1.27))))
  516. (number "10" (effects (font (size 1.27 1.27))))
  517. )
  518. (pin bidirectional line (at 8.89 -10.16 180) (length 2.54)
  519. (name "4Y" (effects (font (size 1.27 1.27))))
  520. (number "11" (effects (font (size 1.27 1.27))))
  521. )
  522. (pin bidirectional line (at 8.89 -7.62 180) (length 2.54)
  523. (name "4A" (effects (font (size 1.27 1.27))))
  524. (number "12" (effects (font (size 1.27 1.27))))
  525. )
  526. (pin bidirectional line (at 8.89 -5.08 180) (length 2.54)
  527. (name "4/OE" (effects (font (size 1.27 1.27))))
  528. (number "13" (effects (font (size 1.27 1.27))))
  529. )
  530. (pin bidirectional line (at 8.89 -2.54 180) (length 2.54)
  531. (name "Vcc" (effects (font (size 1.27 1.27))))
  532. (number "14" (effects (font (size 1.27 1.27))))
  533. )
  534. (pin bidirectional line (at -10.16 -5.08 0) (length 2.54)
  535. (name "1A" (effects (font (size 1.27 1.27))))
  536. (number "2" (effects (font (size 1.27 1.27))))
  537. )
  538. (pin bidirectional line (at -10.16 -7.62 0) (length 2.54)
  539. (name "1Y" (effects (font (size 1.27 1.27))))
  540. (number "3" (effects (font (size 1.27 1.27))))
  541. )
  542. (pin bidirectional line (at -10.16 -10.16 0) (length 2.54)
  543. (name "2/OE" (effects (font (size 1.27 1.27))))
  544. (number "4" (effects (font (size 1.27 1.27))))
  545. )
  546. (pin bidirectional line (at -10.16 -12.7 0) (length 2.54)
  547. (name "2A" (effects (font (size 1.27 1.27))))
  548. (number "5" (effects (font (size 1.27 1.27))))
  549. )
  550. (pin bidirectional line (at -10.16 -15.24 0) (length 2.54)
  551. (name "2Y" (effects (font (size 1.27 1.27))))
  552. (number "6" (effects (font (size 1.27 1.27))))
  553. )
  554. (pin bidirectional line (at -10.16 -17.78 0) (length 2.54)
  555. (name "GND" (effects (font (size 1.27 1.27))))
  556. (number "7" (effects (font (size 1.27 1.27))))
  557. )
  558. (pin bidirectional line (at 8.89 -17.78 180) (length 2.54)
  559. (name "3Y" (effects (font (size 1.27 1.27))))
  560. (number "8" (effects (font (size 1.27 1.27))))
  561. )
  562. (pin bidirectional line (at 8.89 -15.24 180) (length 2.54)
  563. (name "3A" (effects (font (size 1.27 1.27))))
  564. (number "9" (effects (font (size 1.27 1.27))))
  565. )
  566. )
  567. )
  568. (symbol "New_Library:LVT245" (in_bom yes) (on_board yes)
  569. (property "Reference" "U" (id 0) (at 0 0 0)
  570. (effects (font (size 1.27 1.27)))
  571. )
  572. (property "Value" "LVT245" (id 1) (at 0 2.54 0)
  573. (effects (font (size 1.27 1.27)))
  574. )
  575. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 0 5.08 0)
  576. (effects (font (size 1.27 1.27)) hide)
  577. )
  578. (property "Datasheet" "" (id 3) (at 0 0 0)
  579. (effects (font (size 1.27 1.27)) hide)
  580. )
  581. (symbol "LVT245_0_1"
  582. (rectangle (start 5.08 -2.54) (end -5.08 -27.94)
  583. (stroke (width 0) (type default) (color 0 0 0 0))
  584. (fill (type background))
  585. )
  586. )
  587. (symbol "LVT245_1_1"
  588. (pin input line (at -7.62 -3.81 0) (length 2.54)
  589. (name "DIR" (effects (font (size 1.27 1.27))))
  590. (number "1" (effects (font (size 1.27 1.27))))
  591. )
  592. (pin input line (at -7.62 -26.67 0) (length 2.54)
  593. (name "GND" (effects (font (size 1.27 1.27))))
  594. (number "10" (effects (font (size 1.27 1.27))))
  595. )
  596. (pin input line (at 7.62 -26.67 180) (length 2.54)
  597. (name "B8" (effects (font (size 1.27 1.27))))
  598. (number "11" (effects (font (size 1.27 1.27))))
  599. )
  600. (pin input line (at 7.62 -24.13 180) (length 2.54)
  601. (name "B7" (effects (font (size 1.27 1.27))))
  602. (number "12" (effects (font (size 1.27 1.27))))
  603. )
  604. (pin input line (at 7.62 -21.59 180) (length 2.54)
  605. (name "B6" (effects (font (size 1.27 1.27))))
  606. (number "13" (effects (font (size 1.27 1.27))))
  607. )
  608. (pin input line (at 7.62 -19.05 180) (length 2.54)
  609. (name "B5" (effects (font (size 1.27 1.27))))
  610. (number "14" (effects (font (size 1.27 1.27))))
  611. )
  612. (pin input line (at 7.62 -16.51 180) (length 2.54)
  613. (name "B4" (effects (font (size 1.27 1.27))))
  614. (number "15" (effects (font (size 1.27 1.27))))
  615. )
  616. (pin input line (at 7.62 -13.97 180) (length 2.54)
  617. (name "B3" (effects (font (size 1.27 1.27))))
  618. (number "16" (effects (font (size 1.27 1.27))))
  619. )
  620. (pin input line (at 7.62 -11.43 180) (length 2.54)
  621. (name "B2" (effects (font (size 1.27 1.27))))
  622. (number "17" (effects (font (size 1.27 1.27))))
  623. )
  624. (pin input line (at 7.62 -8.89 180) (length 2.54)
  625. (name "B1" (effects (font (size 1.27 1.27))))
  626. (number "18" (effects (font (size 1.27 1.27))))
  627. )
  628. (pin input line (at 7.62 -6.35 180) (length 2.54)
  629. (name "/OE" (effects (font (size 1.27 1.27))))
  630. (number "19" (effects (font (size 1.27 1.27))))
  631. )
  632. (pin input line (at -7.62 -6.35 0) (length 2.54)
  633. (name "A1" (effects (font (size 1.27 1.27))))
  634. (number "2" (effects (font (size 1.27 1.27))))
  635. )
  636. (pin input line (at 7.62 -3.81 180) (length 2.54)
  637. (name "Vcc" (effects (font (size 1.27 1.27))))
  638. (number "20" (effects (font (size 1.27 1.27))))
  639. )
  640. (pin input line (at -7.62 -8.89 0) (length 2.54)
  641. (name "A2" (effects (font (size 1.27 1.27))))
  642. (number "3" (effects (font (size 1.27 1.27))))
  643. )
  644. (pin input line (at -7.62 -11.43 0) (length 2.54)
  645. (name "A3" (effects (font (size 1.27 1.27))))
  646. (number "4" (effects (font (size 1.27 1.27))))
  647. )
  648. (pin input line (at -7.62 -13.97 0) (length 2.54)
  649. (name "A4" (effects (font (size 1.27 1.27))))
  650. (number "5" (effects (font (size 1.27 1.27))))
  651. )
  652. (pin input line (at -7.62 -16.51 0) (length 2.54)
  653. (name "A5" (effects (font (size 1.27 1.27))))
  654. (number "6" (effects (font (size 1.27 1.27))))
  655. )
  656. (pin input line (at -7.62 -19.05 0) (length 2.54)
  657. (name "A6" (effects (font (size 1.27 1.27))))
  658. (number "7" (effects (font (size 1.27 1.27))))
  659. )
  660. (pin input line (at -7.62 -21.59 0) (length 2.54)
  661. (name "A7" (effects (font (size 1.27 1.27))))
  662. (number "8" (effects (font (size 1.27 1.27))))
  663. )
  664. (pin input line (at -7.62 -24.13 0) (length 2.54)
  665. (name "A8" (effects (font (size 1.27 1.27))))
  666. (number "9" (effects (font (size 1.27 1.27))))
  667. )
  668. )
  669. )
  670. (symbol "New_Library:MicroSD-TF-06" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  671. (property "Reference" "SD1" (id 0) (at 8.89 8.89 0)
  672. (effects (font (size 1.27 1.27)) (justify left))
  673. )
  674. (property "Value" "MicroSD-TF-06" (id 1) (at 3.81 5.08 0)
  675. (effects (font (size 1.27 1.27)) (justify left))
  676. )
  677. (property "Footprint" "Library:TF-06_MicroSD" (id 2) (at -1.27 6.35 0)
  678. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  679. )
  680. (property "Datasheet" "" (id 3) (at 12.446 1.651 0)
  681. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  682. )
  683. (property "MANUFACTURER_PART_NUMBER" "" (id 4) (at 17.78 5.08 0)
  684. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  685. )
  686. (property "HEIGHT" "" (id 5) (at 7.112 -17.78 0)
  687. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  688. )
  689. (property "MOUSER_PART_NUMBER" "" (id 6) (at 7.62 6.35 0)
  690. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  691. )
  692. (property "DESCRIPTION" "" (id 7) (at 17.272 20.828 0)
  693. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  694. )
  695. (property "MANUFACTURER_NAME" "" (id 8) (at 13.97 6.35 0)
  696. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  697. )
  698. (property "MOUSER_PRICE-STOCK" "" (id 9) (at 20.32 20.955 0)
  699. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  700. )
  701. (symbol "MicroSD-TF-06_0_0"
  702. (polyline
  703. (pts
  704. (xy 5.08 2.54)
  705. (xy 5.08 -25.4)
  706. )
  707. (stroke (width 0.254) (type default) (color 0 0 0 0))
  708. (fill (type none))
  709. )
  710. (polyline
  711. (pts
  712. (xy 5.08 2.54)
  713. (xy 17.78 2.54)
  714. )
  715. (stroke (width 0.254) (type default) (color 0 0 0 0))
  716. (fill (type none))
  717. )
  718. (polyline
  719. (pts
  720. (xy 17.78 -25.4)
  721. (xy 5.08 -25.4)
  722. )
  723. (stroke (width 0.254) (type default) (color 0 0 0 0))
  724. (fill (type none))
  725. )
  726. (polyline
  727. (pts
  728. (xy 17.78 -25.4)
  729. (xy 17.78 2.54)
  730. )
  731. (stroke (width 0.254) (type default) (color 0 0 0 0))
  732. (fill (type none))
  733. )
  734. (pin bidirectional line (at 0 0 0) (length 5.08)
  735. (name "DAT2" (effects (font (size 1.016 1.016))))
  736. (number "1" (effects (font (size 1.016 1.016))))
  737. )
  738. (pin bidirectional line (at 0 -22.86 0) (length 5.08)
  739. (name "CASE_GND" (effects (font (size 1.016 1.016))))
  740. (number "10" (effects (font (size 1.016 1.016))))
  741. )
  742. (pin bidirectional line (at 0 -2.54 0) (length 5.08)
  743. (name "CD/CS/DAT3" (effects (font (size 1.016 1.016))))
  744. (number "2" (effects (font (size 1.016 1.016))))
  745. )
  746. (pin bidirectional line (at 0 -5.08 0) (length 5.08)
  747. (name "CMD/MOSI" (effects (font (size 1.016 1.016))))
  748. (number "3" (effects (font (size 1.016 1.016))))
  749. )
  750. (pin bidirectional line (at 0 -7.62 0) (length 5.08)
  751. (name "VDD" (effects (font (size 1.016 1.016))))
  752. (number "4" (effects (font (size 1.016 1.016))))
  753. )
  754. (pin bidirectional line (at 0 -10.16 0) (length 5.08)
  755. (name "SD_DET" (effects (font (size 1.016 1.016))))
  756. (number "5" (effects (font (size 1.016 1.016))))
  757. )
  758. (pin bidirectional line (at 0 -12.7 0) (length 5.08)
  759. (name "CLK" (effects (font (size 1.016 1.016))))
  760. (number "6" (effects (font (size 1.016 1.016))))
  761. )
  762. (pin bidirectional line (at 0 -15.24 0) (length 5.08)
  763. (name "VSS" (effects (font (size 1.016 1.016))))
  764. (number "7" (effects (font (size 1.016 1.016))))
  765. )
  766. (pin bidirectional line (at 0 -17.78 0) (length 5.08)
  767. (name "DAT0/MISO" (effects (font (size 1.016 1.016))))
  768. (number "8" (effects (font (size 1.016 1.016))))
  769. )
  770. (pin bidirectional line (at 0 -20.32 0) (length 5.08)
  771. (name "DAT1" (effects (font (size 1.016 1.016))))
  772. (number "9" (effects (font (size 1.016 1.016))))
  773. )
  774. )
  775. )
  776. (symbol "New_Library:SN74CBTD3384" (in_bom yes) (on_board yes)
  777. (property "Reference" "U" (id 0) (at 0 0 0)
  778. (effects (font (size 1.27 1.27)))
  779. )
  780. (property "Value" "SN74CBTD3384" (id 1) (at 0 2.54 0)
  781. (effects (font (size 1.27 1.27)))
  782. )
  783. (property "Footprint" "Package_SO:TSSOP-24_4.4x7.8mm_P0.65mm" (id 2) (at 0 0 0)
  784. (effects (font (size 1.27 1.27)) hide)
  785. )
  786. (property "Datasheet" "" (id 3) (at 0 0 0)
  787. (effects (font (size 1.27 1.27)) hide)
  788. )
  789. (symbol "SN74CBTD3384_0_1"
  790. (rectangle (start 6.35 -3.81) (end -6.35 -34.29)
  791. (stroke (width 0) (type default) (color 0 0 0 0))
  792. (fill (type background))
  793. )
  794. )
  795. (symbol "SN74CBTD3384_1_1"
  796. (pin input line (at -8.89 -5.08 0) (length 2.54)
  797. (name "/1OE" (effects (font (size 1.27 1.27))))
  798. (number "1" (effects (font (size 1.27 1.27))))
  799. )
  800. (pin input line (at -8.89 -27.94 0) (length 2.54)
  801. (name "1B5" (effects (font (size 1.27 1.27))))
  802. (number "10" (effects (font (size 1.27 1.27))))
  803. )
  804. (pin input line (at -8.89 -30.48 0) (length 2.54)
  805. (name "1A5" (effects (font (size 1.27 1.27))))
  806. (number "11" (effects (font (size 1.27 1.27))))
  807. )
  808. (pin input line (at -8.89 -33.02 0) (length 2.54)
  809. (name "GND" (effects (font (size 1.27 1.27))))
  810. (number "12" (effects (font (size 1.27 1.27))))
  811. )
  812. (pin input line (at 8.89 -33.02 180) (length 2.54)
  813. (name "/2OE" (effects (font (size 1.27 1.27))))
  814. (number "13" (effects (font (size 1.27 1.27))))
  815. )
  816. (pin input line (at 8.89 -30.48 180) (length 2.54)
  817. (name "2A1" (effects (font (size 1.27 1.27))))
  818. (number "14" (effects (font (size 1.27 1.27))))
  819. )
  820. (pin input line (at 8.89 -27.94 180) (length 2.54)
  821. (name "2B1" (effects (font (size 1.27 1.27))))
  822. (number "15" (effects (font (size 1.27 1.27))))
  823. )
  824. (pin input line (at 8.89 -25.4 180) (length 2.54)
  825. (name "2B2" (effects (font (size 1.27 1.27))))
  826. (number "16" (effects (font (size 1.27 1.27))))
  827. )
  828. (pin input line (at 8.89 -22.86 180) (length 2.54)
  829. (name "2A2" (effects (font (size 1.27 1.27))))
  830. (number "17" (effects (font (size 1.27 1.27))))
  831. )
  832. (pin input line (at 8.89 -20.32 180) (length 2.54)
  833. (name "2A3" (effects (font (size 1.27 1.27))))
  834. (number "18" (effects (font (size 1.27 1.27))))
  835. )
  836. (pin input line (at 8.89 -17.78 180) (length 2.54)
  837. (name "2B3" (effects (font (size 1.27 1.27))))
  838. (number "19" (effects (font (size 1.27 1.27))))
  839. )
  840. (pin input line (at -8.89 -7.62 0) (length 2.54)
  841. (name "1B1" (effects (font (size 1.27 1.27))))
  842. (number "2" (effects (font (size 1.27 1.27))))
  843. )
  844. (pin input line (at 8.89 -15.24 180) (length 2.54)
  845. (name "2B4" (effects (font (size 1.27 1.27))))
  846. (number "20" (effects (font (size 1.27 1.27))))
  847. )
  848. (pin input line (at 8.89 -12.7 180) (length 2.54)
  849. (name "2A4" (effects (font (size 1.27 1.27))))
  850. (number "21" (effects (font (size 1.27 1.27))))
  851. )
  852. (pin input line (at 8.89 -10.16 180) (length 2.54)
  853. (name "2A5" (effects (font (size 1.27 1.27))))
  854. (number "22" (effects (font (size 1.27 1.27))))
  855. )
  856. (pin input line (at 8.89 -7.62 180) (length 2.54)
  857. (name "2B5" (effects (font (size 1.27 1.27))))
  858. (number "23" (effects (font (size 1.27 1.27))))
  859. )
  860. (pin input line (at 8.89 -5.08 180) (length 2.54)
  861. (name "Vcc" (effects (font (size 1.27 1.27))))
  862. (number "24" (effects (font (size 1.27 1.27))))
  863. )
  864. (pin input line (at -8.89 -10.16 0) (length 2.54)
  865. (name "1A1" (effects (font (size 1.27 1.27))))
  866. (number "3" (effects (font (size 1.27 1.27))))
  867. )
  868. (pin input line (at -8.89 -12.7 0) (length 2.54)
  869. (name "1A2" (effects (font (size 1.27 1.27))))
  870. (number "4" (effects (font (size 1.27 1.27))))
  871. )
  872. (pin input line (at -8.89 -15.24 0) (length 2.54)
  873. (name "1B2" (effects (font (size 1.27 1.27))))
  874. (number "5" (effects (font (size 1.27 1.27))))
  875. )
  876. (pin input line (at -8.89 -17.78 0) (length 2.54)
  877. (name "1B3" (effects (font (size 1.27 1.27))))
  878. (number "6" (effects (font (size 1.27 1.27))))
  879. )
  880. (pin input line (at -8.89 -20.32 0) (length 2.54)
  881. (name "1A3" (effects (font (size 1.27 1.27))))
  882. (number "7" (effects (font (size 1.27 1.27))))
  883. )
  884. (pin input line (at -8.89 -22.86 0) (length 2.54)
  885. (name "1A4" (effects (font (size 1.27 1.27))))
  886. (number "8" (effects (font (size 1.27 1.27))))
  887. )
  888. (pin input line (at -8.89 -25.4 0) (length 2.54)
  889. (name "1B4" (effects (font (size 1.27 1.27))))
  890. (number "9" (effects (font (size 1.27 1.27))))
  891. )
  892. )
  893. )
  894. (symbol "Regulator_Linear:AMS1117CD-2.85" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  895. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  896. (effects (font (size 1.27 1.27)))
  897. )
  898. (property "Value" "AMS1117CD-2.85" (id 1) (at 0 3.175 0)
  899. (effects (font (size 1.27 1.27)) (justify left))
  900. )
  901. (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (id 2) (at 0 5.08 0)
  902. (effects (font (size 1.27 1.27)) hide)
  903. )
  904. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
  905. (effects (font (size 1.27 1.27)) hide)
  906. )
  907. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  908. (effects (font (size 1.27 1.27)) hide)
  909. )
  910. (property "ki_description" "1A Low Dropout regulator, positive, 2.85V fixed output, TO-252" (id 5) (at 0 0 0)
  911. (effects (font (size 1.27 1.27)) hide)
  912. )
  913. (property "ki_fp_filters" "TO?252*TabPin2*" (id 6) (at 0 0 0)
  914. (effects (font (size 1.27 1.27)) hide)
  915. )
  916. (symbol "AMS1117CD-2.85_0_1"
  917. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  918. (stroke (width 0.254) (type default) (color 0 0 0 0))
  919. (fill (type background))
  920. )
  921. )
  922. (symbol "AMS1117CD-2.85_1_1"
  923. (pin power_in line (at 0 -7.62 90) (length 2.54)
  924. (name "GND" (effects (font (size 1.27 1.27))))
  925. (number "1" (effects (font (size 1.27 1.27))))
  926. )
  927. (pin power_out line (at 7.62 0 180) (length 2.54)
  928. (name "VO" (effects (font (size 1.27 1.27))))
  929. (number "2" (effects (font (size 1.27 1.27))))
  930. )
  931. (pin power_in line (at -7.62 0 0) (length 2.54)
  932. (name "VI" (effects (font (size 1.27 1.27))))
  933. (number "3" (effects (font (size 1.27 1.27))))
  934. )
  935. )
  936. )
  937. (symbol "Switch:SW_MEC_5E" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  938. (property "Reference" "SW1" (id 0) (at 0 10.16 0)
  939. (effects (font (size 1.27 1.27)))
  940. )
  941. (property "Value" "SW_MEC_5E" (id 1) (at 0 7.62 0)
  942. (effects (font (size 1.27 1.27)))
  943. )
  944. (property "Footprint" "Button_Switch_SMD:SW_SPST_TL3305A" (id 2) (at 0 7.62 0)
  945. (effects (font (size 1.27 1.27)) hide)
  946. )
  947. (property "Datasheet" "http://www.apem.com/int/index.php?controller=attachment&id_attachment=1371" (id 3) (at 0 7.62 0)
  948. (effects (font (size 1.27 1.27)) hide)
  949. )
  950. (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
  951. (effects (font (size 1.27 1.27)) hide)
  952. )
  953. (property "ki_description" "MEC 5E single pole normally-open tactile switch" (id 5) (at 0 0 0)
  954. (effects (font (size 1.27 1.27)) hide)
  955. )
  956. (property "ki_fp_filters" "SW*MEC*5G*" (id 6) (at 0 0 0)
  957. (effects (font (size 1.27 1.27)) hide)
  958. )
  959. (symbol "SW_MEC_5E_0_1"
  960. (circle (center -1.778 2.54) (radius 0.508)
  961. (stroke (width 0) (type default) (color 0 0 0 0))
  962. (fill (type none))
  963. )
  964. (polyline
  965. (pts
  966. (xy -2.286 3.81)
  967. (xy 2.286 3.81)
  968. )
  969. (stroke (width 0) (type default) (color 0 0 0 0))
  970. (fill (type none))
  971. )
  972. (polyline
  973. (pts
  974. (xy 0 3.81)
  975. (xy 0 5.588)
  976. )
  977. (stroke (width 0) (type default) (color 0 0 0 0))
  978. (fill (type none))
  979. )
  980. (polyline
  981. (pts
  982. (xy -2.54 0)
  983. (xy -2.54 2.54)
  984. (xy -2.286 2.54)
  985. )
  986. (stroke (width 0) (type default) (color 0 0 0 0))
  987. (fill (type none))
  988. )
  989. (polyline
  990. (pts
  991. (xy 2.54 0)
  992. (xy 2.54 2.54)
  993. (xy 2.286 2.54)
  994. )
  995. (stroke (width 0) (type default) (color 0 0 0 0))
  996. (fill (type none))
  997. )
  998. (circle (center 1.778 2.54) (radius 0.508)
  999. (stroke (width 0) (type default) (color 0 0 0 0))
  1000. (fill (type none))
  1001. )
  1002. (pin passive line (at -5.08 2.54 0) (length 2.54)
  1003. (name "1" (effects (font (size 1.27 1.27))))
  1004. (number "1" (effects (font (size 1.27 1.27))))
  1005. )
  1006. (pin passive line (at -5.08 0 0) (length 2.54)
  1007. (name "2" (effects (font (size 1.27 1.27))))
  1008. (number "1" (effects (font (size 1.27 1.27))))
  1009. )
  1010. (pin passive line (at 5.08 2.54 180) (length 2.54)
  1011. (name "A" (effects (font (size 1.27 1.27))))
  1012. (number "2" (effects (font (size 1.27 1.27))))
  1013. )
  1014. (pin passive line (at 5.08 0 180) (length 2.54)
  1015. (name "K" (effects (font (size 1.27 1.27))))
  1016. (number "2" (effects (font (size 1.27 1.27))))
  1017. )
  1018. )
  1019. )
  1020. (symbol "custom_symbols:+5V_TPWR" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1021. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1022. (effects (font (size 1.27 1.27)) hide)
  1023. )
  1024. (property "Value" "custom_symbols_+5V_TPWR" (id 1) (at 0 3.556 0)
  1025. (effects (font (size 1.27 1.27)))
  1026. )
  1027. (property "Footprint" "" (id 2) (at 0 0 0)
  1028. (effects (font (size 1.27 1.27)) hide)
  1029. )
  1030. (property "Datasheet" "" (id 3) (at 0 0 0)
  1031. (effects (font (size 1.27 1.27)) hide)
  1032. )
  1033. (symbol "+5V_TPWR_0_1"
  1034. (polyline
  1035. (pts
  1036. (xy -0.762 1.27)
  1037. (xy 0 2.54)
  1038. )
  1039. (stroke (width 0) (type default) (color 0 0 0 0))
  1040. (fill (type none))
  1041. )
  1042. (polyline
  1043. (pts
  1044. (xy 0 0)
  1045. (xy 0 2.54)
  1046. )
  1047. (stroke (width 0) (type default) (color 0 0 0 0))
  1048. (fill (type none))
  1049. )
  1050. (polyline
  1051. (pts
  1052. (xy 0 2.54)
  1053. (xy 0.762 1.27)
  1054. )
  1055. (stroke (width 0) (type default) (color 0 0 0 0))
  1056. (fill (type none))
  1057. )
  1058. )
  1059. (symbol "+5V_TPWR_1_1"
  1060. (pin power_in line (at 0 0 90) (length 0) hide
  1061. (name "+5V" (effects (font (size 1.27 1.27))))
  1062. (number "1" (effects (font (size 1.27 1.27))))
  1063. )
  1064. )
  1065. )
  1066. (symbol "custom_symbols:BlackSCSI" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1067. (property "Reference" "RP1" (id 0) (at -0.635 -2.921 0)
  1068. (effects (font (size 1.27 1.27)))
  1069. )
  1070. (property "Value" "Pico_Footprint" (id 1) (at -0.635 -0.6096 0)
  1071. (effects (font (size 1.27 1.27)))
  1072. )
  1073. (property "Footprint" "CustomFootprints:BluePillModule" (id 2) (at 0 2.54 0)
  1074. (effects (font (size 1.27 1.27)) hide)
  1075. )
  1076. (property "Datasheet" "" (id 3) (at 2.54 -3.81 0)
  1077. (effects (font (size 1.27 1.27)) hide)
  1078. )
  1079. (symbol "BlackSCSI_0_0"
  1080. (text "USB Here" (at 1.27 -3.81 0)
  1081. (effects (font (size 1.27 1.27)))
  1082. )
  1083. )
  1084. (symbol "BlackSCSI_0_1"
  1085. (rectangle (start 16.51 -1.27) (end -15.24 -54.61)
  1086. (stroke (width 0) (type default) (color 0 0 0 0))
  1087. (fill (type background))
  1088. )
  1089. )
  1090. (symbol "BlackSCSI_1_1"
  1091. (pin bidirectional line (at -17.78 -3.81 0) (length 2.54)
  1092. (name "G0" (effects (font (size 1.27 1.27))))
  1093. (number "1" (effects (font (size 1.27 1.27))))
  1094. )
  1095. (pin bidirectional line (at -17.78 -26.67 0) (length 2.54)
  1096. (name "G7" (effects (font (size 1.27 1.27))))
  1097. (number "10" (effects (font (size 1.27 1.27))))
  1098. )
  1099. (pin bidirectional line (at -17.78 -29.21 0) (length 2.54)
  1100. (name "G8" (effects (font (size 1.27 1.27))))
  1101. (number "11" (effects (font (size 1.27 1.27))))
  1102. )
  1103. (pin bidirectional line (at -17.78 -31.75 0) (length 2.54)
  1104. (name "G9" (effects (font (size 1.27 1.27))))
  1105. (number "12" (effects (font (size 1.27 1.27))))
  1106. )
  1107. (pin bidirectional line (at -17.78 -34.29 0) (length 2.54)
  1108. (name "GND" (effects (font (size 1.27 1.27))))
  1109. (number "13" (effects (font (size 1.27 1.27))))
  1110. )
  1111. (pin bidirectional line (at -17.78 -36.83 0) (length 2.54)
  1112. (name "G10" (effects (font (size 1.27 1.27))))
  1113. (number "14" (effects (font (size 1.27 1.27))))
  1114. )
  1115. (pin bidirectional line (at -17.78 -39.37 0) (length 2.54)
  1116. (name "G11" (effects (font (size 1.27 1.27))))
  1117. (number "15" (effects (font (size 1.27 1.27))))
  1118. )
  1119. (pin bidirectional line (at -17.78 -41.91 0) (length 2.54)
  1120. (name "G12" (effects (font (size 1.27 1.27))))
  1121. (number "16" (effects (font (size 1.27 1.27))))
  1122. )
  1123. (pin bidirectional line (at -17.78 -44.45 0) (length 2.54)
  1124. (name "G13" (effects (font (size 1.27 1.27))))
  1125. (number "17" (effects (font (size 1.27 1.27))))
  1126. )
  1127. (pin power_in line (at -17.78 -46.99 0) (length 2.54)
  1128. (name "GND" (effects (font (size 1.27 1.27))))
  1129. (number "18" (effects (font (size 1.27 1.27))))
  1130. )
  1131. (pin power_in line (at -17.78 -49.53 0) (length 2.54)
  1132. (name "G14" (effects (font (size 1.27 1.27))))
  1133. (number "19" (effects (font (size 1.27 1.27))))
  1134. )
  1135. (pin bidirectional line (at -17.78 -6.35 0) (length 2.54)
  1136. (name "G1" (effects (font (size 1.27 1.27))))
  1137. (number "2" (effects (font (size 1.27 1.27))))
  1138. )
  1139. (pin power_in line (at -17.78 -52.07 0) (length 2.54)
  1140. (name "G15" (effects (font (size 1.27 1.27))))
  1141. (number "20" (effects (font (size 1.27 1.27))))
  1142. )
  1143. (pin power_in line (at 19.05 -52.07 180) (length 2.54)
  1144. (name "G16" (effects (font (size 1.27 1.27))))
  1145. (number "21" (effects (font (size 1.27 1.27))))
  1146. )
  1147. (pin bidirectional line (at 19.05 -49.53 180) (length 2.54)
  1148. (name "G17" (effects (font (size 1.27 1.27))))
  1149. (number "22" (effects (font (size 1.27 1.27))))
  1150. )
  1151. (pin bidirectional line (at 19.05 -46.99 180) (length 2.54)
  1152. (name "GND" (effects (font (size 1.27 1.27))))
  1153. (number "23" (effects (font (size 1.27 1.27))))
  1154. )
  1155. (pin bidirectional line (at 19.05 -44.45 180) (length 2.54)
  1156. (name "G18" (effects (font (size 1.27 1.27))))
  1157. (number "24" (effects (font (size 1.27 1.27))))
  1158. )
  1159. (pin input line (at 19.05 -41.91 180) (length 2.54)
  1160. (name "G19" (effects (font (size 1.27 1.27))))
  1161. (number "25" (effects (font (size 1.27 1.27))))
  1162. )
  1163. (pin bidirectional line (at 19.05 -39.37 180) (length 2.54)
  1164. (name "G20" (effects (font (size 1.27 1.27))))
  1165. (number "26" (effects (font (size 1.27 1.27))))
  1166. )
  1167. (pin bidirectional line (at 19.05 -36.83 180) (length 2.54)
  1168. (name "G21" (effects (font (size 1.27 1.27))))
  1169. (number "27" (effects (font (size 1.27 1.27))))
  1170. )
  1171. (pin bidirectional line (at 19.05 -34.29 180) (length 2.54)
  1172. (name "GND" (effects (font (size 1.27 1.27))))
  1173. (number "28" (effects (font (size 1.27 1.27))))
  1174. )
  1175. (pin bidirectional line (at 19.05 -31.75 180) (length 2.54)
  1176. (name "G22" (effects (font (size 1.27 1.27))))
  1177. (number "29" (effects (font (size 1.27 1.27))))
  1178. )
  1179. (pin bidirectional line (at -17.78 -8.89 0) (length 2.54)
  1180. (name "GND" (effects (font (size 1.27 1.27))))
  1181. (number "3" (effects (font (size 1.27 1.27))))
  1182. )
  1183. (pin bidirectional line (at 19.05 -29.21 180) (length 2.54)
  1184. (name "RUN" (effects (font (size 1.27 1.27))))
  1185. (number "30" (effects (font (size 1.27 1.27))))
  1186. )
  1187. (pin bidirectional line (at 19.05 -26.67 180) (length 2.54)
  1188. (name "G26" (effects (font (size 1.27 1.27))))
  1189. (number "31" (effects (font (size 1.27 1.27))))
  1190. )
  1191. (pin bidirectional line (at 19.05 -24.13 180) (length 2.54)
  1192. (name "G27" (effects (font (size 1.27 1.27))))
  1193. (number "32" (effects (font (size 1.27 1.27))))
  1194. )
  1195. (pin bidirectional line (at 19.05 -21.59 180) (length 2.54)
  1196. (name "A_GND" (effects (font (size 1.27 1.27))))
  1197. (number "33" (effects (font (size 1.27 1.27))))
  1198. )
  1199. (pin bidirectional line (at 19.05 -19.05 180) (length 2.54)
  1200. (name "G28" (effects (font (size 1.27 1.27))))
  1201. (number "34" (effects (font (size 1.27 1.27))))
  1202. )
  1203. (pin bidirectional line (at 19.05 -16.51 180) (length 2.54)
  1204. (name "ADC_VREF" (effects (font (size 1.27 1.27))))
  1205. (number "35" (effects (font (size 1.27 1.27))))
  1206. )
  1207. (pin bidirectional line (at 19.05 -13.97 180) (length 2.54)
  1208. (name "3v3" (effects (font (size 1.27 1.27))))
  1209. (number "36" (effects (font (size 1.27 1.27))))
  1210. )
  1211. (pin bidirectional line (at 19.05 -11.43 180) (length 2.54)
  1212. (name "3v3_EN" (effects (font (size 1.27 1.27))))
  1213. (number "37" (effects (font (size 1.27 1.27))))
  1214. )
  1215. (pin power_in line (at 19.05 -8.89 180) (length 2.54)
  1216. (name "GND" (effects (font (size 1.27 1.27))))
  1217. (number "38" (effects (font (size 1.27 1.27))))
  1218. )
  1219. (pin power_in line (at 19.05 -6.35 180) (length 2.54)
  1220. (name "VSYS" (effects (font (size 1.27 1.27))))
  1221. (number "39" (effects (font (size 1.27 1.27))))
  1222. )
  1223. (pin bidirectional line (at -17.78 -11.43 0) (length 2.54)
  1224. (name "G2" (effects (font (size 1.27 1.27))))
  1225. (number "4" (effects (font (size 1.27 1.27))))
  1226. )
  1227. (pin power_in line (at 19.05 -3.81 180) (length 2.54)
  1228. (name "VBUS_5V" (effects (font (size 1.27 1.27))))
  1229. (number "40" (effects (font (size 1.27 1.27))))
  1230. )
  1231. (pin bidirectional line (at -17.78 -13.97 0) (length 2.54)
  1232. (name "G3" (effects (font (size 1.27 1.27))))
  1233. (number "5" (effects (font (size 1.27 1.27))))
  1234. )
  1235. (pin bidirectional line (at -17.78 -16.51 0) (length 2.54)
  1236. (name "G4" (effects (font (size 1.27 1.27))))
  1237. (number "6" (effects (font (size 1.27 1.27))))
  1238. )
  1239. (pin bidirectional line (at -17.78 -19.05 0) (length 2.54)
  1240. (name "G5" (effects (font (size 1.27 1.27))))
  1241. (number "7" (effects (font (size 1.27 1.27))))
  1242. )
  1243. (pin bidirectional line (at -17.78 -21.59 0) (length 2.54)
  1244. (name "GND" (effects (font (size 1.27 1.27))))
  1245. (number "8" (effects (font (size 1.27 1.27))))
  1246. )
  1247. (pin bidirectional line (at -17.78 -24.13 0) (length 2.54)
  1248. (name "G6" (effects (font (size 1.27 1.27))))
  1249. (number "9" (effects (font (size 1.27 1.27))))
  1250. )
  1251. )
  1252. )
  1253. (symbol "custom_symbols:PB_SCSI_HD_Pins" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1254. (property "Reference" "J" (id 0) (at -0.508 26.67 0)
  1255. (effects (font (size 1.27 1.27)))
  1256. )
  1257. (property "Value" "custom_symbols_PB_SCSI_HD_Pins" (id 1) (at -0.508 -28.702 0)
  1258. (effects (font (size 1.27 1.27)))
  1259. )
  1260. (property "Footprint" "CustomFootprints:PowerBook_SCSI_40Pin" (id 2) (at -0.254 27.94 0)
  1261. (effects (font (size 1.27 1.27)) hide)
  1262. )
  1263. (property "Datasheet" "" (id 3) (at -7.874 1.27 0)
  1264. (effects (font (size 1.27 1.27)) hide)
  1265. )
  1266. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 4) (at 0 0 0)
  1267. (effects (font (size 1.27 1.27)) hide)
  1268. )
  1269. (symbol "PB_SCSI_HD_Pins_0_1"
  1270. (rectangle (start -8.128 -25.4) (end 7.366 25.146)
  1271. (stroke (width 0) (type default) (color 0 0 0 0))
  1272. (fill (type background))
  1273. )
  1274. )
  1275. (symbol "PB_SCSI_HD_Pins_1_1"
  1276. (rectangle (start -9.144 -24.003) (end -7.874 -24.257)
  1277. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1278. (fill (type none))
  1279. )
  1280. (rectangle (start -9.144 -21.463) (end -7.874 -21.717)
  1281. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1282. (fill (type none))
  1283. )
  1284. (rectangle (start -9.144 -18.923) (end -7.874 -19.177)
  1285. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1286. (fill (type none))
  1287. )
  1288. (rectangle (start -9.144 -16.383) (end -7.874 -16.637)
  1289. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1290. (fill (type none))
  1291. )
  1292. (rectangle (start -9.144 -13.843) (end -7.874 -14.097)
  1293. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1294. (fill (type none))
  1295. )
  1296. (rectangle (start -9.144 -11.303) (end -7.874 -11.557)
  1297. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1298. (fill (type none))
  1299. )
  1300. (rectangle (start -9.144 -8.763) (end -7.874 -9.017)
  1301. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1302. (fill (type none))
  1303. )
  1304. (rectangle (start -9.144 -6.223) (end -7.874 -6.477)
  1305. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1306. (fill (type none))
  1307. )
  1308. (rectangle (start -9.144 -3.683) (end -7.874 -3.937)
  1309. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1310. (fill (type none))
  1311. )
  1312. (rectangle (start -9.144 -1.143) (end -7.874 -1.397)
  1313. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1314. (fill (type none))
  1315. )
  1316. (rectangle (start -9.144 1.397) (end -7.874 1.143)
  1317. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1318. (fill (type none))
  1319. )
  1320. (rectangle (start -9.144 6.477) (end -7.874 6.223)
  1321. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1322. (fill (type none))
  1323. )
  1324. (rectangle (start -9.144 9.017) (end -7.874 8.763)
  1325. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1326. (fill (type none))
  1327. )
  1328. (rectangle (start -9.144 11.557) (end -7.874 11.303)
  1329. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1330. (fill (type none))
  1331. )
  1332. (rectangle (start -9.144 14.097) (end -7.874 13.843)
  1333. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1334. (fill (type none))
  1335. )
  1336. (rectangle (start -9.144 16.637) (end -7.874 16.383)
  1337. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1338. (fill (type none))
  1339. )
  1340. (rectangle (start -9.144 19.177) (end -7.874 18.923)
  1341. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1342. (fill (type none))
  1343. )
  1344. (rectangle (start -9.144 21.717) (end -7.874 21.463)
  1345. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1346. (fill (type none))
  1347. )
  1348. (rectangle (start -9.144 24.257) (end -7.874 24.003)
  1349. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1350. (fill (type none))
  1351. )
  1352. (rectangle (start 8.382 -24.003) (end 7.112 -24.257)
  1353. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1354. (fill (type none))
  1355. )
  1356. (rectangle (start 8.382 -21.463) (end 7.112 -21.717)
  1357. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1358. (fill (type none))
  1359. )
  1360. (rectangle (start 8.382 -18.923) (end 7.112 -19.177)
  1361. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1362. (fill (type none))
  1363. )
  1364. (rectangle (start 8.382 -16.383) (end 7.112 -16.637)
  1365. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1366. (fill (type none))
  1367. )
  1368. (rectangle (start 8.382 -13.843) (end 7.112 -14.097)
  1369. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1370. (fill (type none))
  1371. )
  1372. (rectangle (start 8.382 -11.303) (end 7.112 -11.557)
  1373. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1374. (fill (type none))
  1375. )
  1376. (rectangle (start 8.382 -8.763) (end 7.112 -9.017)
  1377. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1378. (fill (type none))
  1379. )
  1380. (rectangle (start 8.382 -6.223) (end 7.112 -6.477)
  1381. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1382. (fill (type none))
  1383. )
  1384. (rectangle (start 8.382 -3.683) (end 7.112 -3.937)
  1385. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1386. (fill (type none))
  1387. )
  1388. (rectangle (start 8.382 -1.143) (end 7.112 -1.397)
  1389. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1390. (fill (type none))
  1391. )
  1392. (rectangle (start 8.382 1.397) (end 7.112 1.143)
  1393. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1394. (fill (type none))
  1395. )
  1396. (rectangle (start 8.382 3.937) (end 7.112 3.683)
  1397. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1398. (fill (type none))
  1399. )
  1400. (rectangle (start 8.382 6.477) (end 7.112 6.223)
  1401. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1402. (fill (type none))
  1403. )
  1404. (rectangle (start 8.382 9.017) (end 7.112 8.763)
  1405. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1406. (fill (type none))
  1407. )
  1408. (rectangle (start 8.382 11.557) (end 7.112 11.303)
  1409. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1410. (fill (type none))
  1411. )
  1412. (rectangle (start 8.382 14.097) (end 7.112 13.843)
  1413. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1414. (fill (type none))
  1415. )
  1416. (rectangle (start 8.382 16.637) (end 7.112 16.383)
  1417. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1418. (fill (type none))
  1419. )
  1420. (rectangle (start 8.382 19.177) (end 7.112 18.923)
  1421. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1422. (fill (type none))
  1423. )
  1424. (rectangle (start 8.382 21.717) (end 7.112 21.463)
  1425. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1426. (fill (type none))
  1427. )
  1428. (rectangle (start 8.382 24.257) (end 7.112 24.003)
  1429. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1430. (fill (type none))
  1431. )
  1432. (pin power_in line (at -12.7 24.13 0) (length 3.81)
  1433. (name "+5_L" (effects (font (size 1.27 1.27))))
  1434. (number "1" (effects (font (size 1.27 1.27))))
  1435. )
  1436. (pin passive line (at 11.43 13.97 180) (length 3.81)
  1437. (name "DB2" (effects (font (size 1.27 1.27))))
  1438. (number "10" (effects (font (size 1.27 1.27))))
  1439. )
  1440. (pin power_in line (at -12.7 11.43 0) (length 3.81)
  1441. (name "GND" (effects (font (size 1.27 1.27))))
  1442. (number "11" (effects (font (size 1.27 1.27))))
  1443. )
  1444. (pin passive line (at 11.43 11.43 180) (length 3.81)
  1445. (name "DB3" (effects (font (size 1.27 1.27))))
  1446. (number "12" (effects (font (size 1.27 1.27))))
  1447. )
  1448. (pin power_in line (at -12.7 8.89 0) (length 3.81)
  1449. (name "GND" (effects (font (size 1.27 1.27))))
  1450. (number "13" (effects (font (size 1.27 1.27))))
  1451. )
  1452. (pin passive line (at 11.43 8.89 180) (length 3.81)
  1453. (name "DB4" (effects (font (size 1.27 1.27))))
  1454. (number "14" (effects (font (size 1.27 1.27))))
  1455. )
  1456. (pin power_in line (at -12.7 6.35 0) (length 3.81)
  1457. (name "GND" (effects (font (size 1.27 1.27))))
  1458. (number "15" (effects (font (size 1.27 1.27))))
  1459. )
  1460. (pin passive line (at 11.43 6.35 180) (length 3.81)
  1461. (name "DB5" (effects (font (size 1.27 1.27))))
  1462. (number "16" (effects (font (size 1.27 1.27))))
  1463. )
  1464. (pin passive line (at 11.43 3.81 180) (length 3.81)
  1465. (name "DB6" (effects (font (size 1.27 1.27))))
  1466. (number "18" (effects (font (size 1.27 1.27))))
  1467. )
  1468. (pin power_in line (at -12.7 1.27 0) (length 3.81)
  1469. (name "GND" (effects (font (size 1.27 1.27))))
  1470. (number "19" (effects (font (size 1.27 1.27))))
  1471. )
  1472. (pin power_in line (at 11.43 24.13 180) (length 3.81)
  1473. (name "+5_L" (effects (font (size 1.27 1.27))))
  1474. (number "2" (effects (font (size 1.27 1.27))))
  1475. )
  1476. (pin passive line (at 11.43 1.27 180) (length 3.81)
  1477. (name "DB7" (effects (font (size 1.27 1.27))))
  1478. (number "20" (effects (font (size 1.27 1.27))))
  1479. )
  1480. (pin power_in line (at -12.7 -1.27 0) (length 3.81)
  1481. (name "GND" (effects (font (size 1.27 1.27))))
  1482. (number "21" (effects (font (size 1.27 1.27))))
  1483. )
  1484. (pin passive line (at 11.43 -1.27 180) (length 3.81)
  1485. (name "PARITY" (effects (font (size 1.27 1.27))))
  1486. (number "22" (effects (font (size 1.27 1.27))))
  1487. )
  1488. (pin power_in line (at -12.7 -3.81 0) (length 3.81)
  1489. (name "GND" (effects (font (size 1.27 1.27))))
  1490. (number "23" (effects (font (size 1.27 1.27))))
  1491. )
  1492. (pin passive line (at 11.43 -3.81 180) (length 3.81)
  1493. (name "TERMPWR" (effects (font (size 1.27 1.27))))
  1494. (number "24" (effects (font (size 1.27 1.27))))
  1495. )
  1496. (pin passive line (at -12.7 -6.35 0) (length 3.81)
  1497. (name "ATN" (effects (font (size 1.27 1.27))))
  1498. (number "25" (effects (font (size 1.27 1.27))))
  1499. )
  1500. (pin passive line (at 11.43 -6.35 180) (length 3.81)
  1501. (name "BSY" (effects (font (size 1.27 1.27))))
  1502. (number "26" (effects (font (size 1.27 1.27))))
  1503. )
  1504. (pin power_in line (at -12.7 -8.89 0) (length 3.81)
  1505. (name "GND" (effects (font (size 1.27 1.27))))
  1506. (number "27" (effects (font (size 1.27 1.27))))
  1507. )
  1508. (pin passive line (at 11.43 -8.89 180) (length 3.81)
  1509. (name "ACK" (effects (font (size 1.27 1.27))))
  1510. (number "28" (effects (font (size 1.27 1.27))))
  1511. )
  1512. (pin passive line (at -12.7 -11.43 0) (length 3.81)
  1513. (name "RST" (effects (font (size 1.27 1.27))))
  1514. (number "29" (effects (font (size 1.27 1.27))))
  1515. )
  1516. (pin power_in line (at -12.7 21.59 0) (length 3.81)
  1517. (name "GND" (effects (font (size 1.27 1.27))))
  1518. (number "3" (effects (font (size 1.27 1.27))))
  1519. )
  1520. (pin passive line (at 11.43 -11.43 180) (length 3.81)
  1521. (name "MSG" (effects (font (size 1.27 1.27))))
  1522. (number "30" (effects (font (size 1.27 1.27))))
  1523. )
  1524. (pin power_in line (at -12.7 -13.97 0) (length 3.81)
  1525. (name "GND" (effects (font (size 1.27 1.27))))
  1526. (number "31" (effects (font (size 1.27 1.27))))
  1527. )
  1528. (pin passive line (at 11.43 -13.97 180) (length 3.81)
  1529. (name "SEL" (effects (font (size 1.27 1.27))))
  1530. (number "32" (effects (font (size 1.27 1.27))))
  1531. )
  1532. (pin passive line (at -12.7 -16.51 0) (length 3.81)
  1533. (name "I/O" (effects (font (size 1.27 1.27))))
  1534. (number "33" (effects (font (size 1.27 1.27))))
  1535. )
  1536. (pin passive line (at 11.43 -16.51 180) (length 3.81)
  1537. (name "C/D" (effects (font (size 1.27 1.27))))
  1538. (number "34" (effects (font (size 1.27 1.27))))
  1539. )
  1540. (pin power_in line (at -12.7 -19.05 0) (length 3.81)
  1541. (name "GND" (effects (font (size 1.27 1.27))))
  1542. (number "35" (effects (font (size 1.27 1.27))))
  1543. )
  1544. (pin passive line (at 11.43 -19.05 180) (length 3.81)
  1545. (name "REQ" (effects (font (size 1.27 1.27))))
  1546. (number "36" (effects (font (size 1.27 1.27))))
  1547. )
  1548. (pin power_in line (at -12.7 -21.59 0) (length 3.81)
  1549. (name "GND" (effects (font (size 1.27 1.27))))
  1550. (number "37" (effects (font (size 1.27 1.27))))
  1551. )
  1552. (pin power_in line (at 11.43 -21.59 180) (length 3.81)
  1553. (name "GND" (effects (font (size 1.27 1.27))))
  1554. (number "38" (effects (font (size 1.27 1.27))))
  1555. )
  1556. (pin power_in line (at -12.7 -24.13 0) (length 3.81)
  1557. (name "+5_M" (effects (font (size 1.27 1.27))))
  1558. (number "39" (effects (font (size 1.27 1.27))))
  1559. )
  1560. (pin power_in line (at 11.43 21.59 180) (length 3.81)
  1561. (name "GND" (effects (font (size 1.27 1.27))))
  1562. (number "4" (effects (font (size 1.27 1.27))))
  1563. )
  1564. (pin power_in line (at 11.43 -24.13 180) (length 3.81)
  1565. (name "+5_M" (effects (font (size 1.27 1.27))))
  1566. (number "40" (effects (font (size 1.27 1.27))))
  1567. )
  1568. (pin power_in line (at -12.7 19.05 0) (length 3.81)
  1569. (name "GND" (effects (font (size 1.27 1.27))))
  1570. (number "5" (effects (font (size 1.27 1.27))))
  1571. )
  1572. (pin passive line (at 11.43 19.05 180) (length 3.81)
  1573. (name "DB0" (effects (font (size 1.27 1.27))))
  1574. (number "6" (effects (font (size 1.27 1.27))))
  1575. )
  1576. (pin power_in line (at -12.7 16.51 0) (length 3.81)
  1577. (name "GND" (effects (font (size 1.27 1.27))))
  1578. (number "7" (effects (font (size 1.27 1.27))))
  1579. )
  1580. (pin passive line (at 11.43 16.51 180) (length 3.81)
  1581. (name "DB1" (effects (font (size 1.27 1.27))))
  1582. (number "8" (effects (font (size 1.27 1.27))))
  1583. )
  1584. (pin power_in line (at -12.7 13.97 0) (length 3.81)
  1585. (name "GND" (effects (font (size 1.27 1.27))))
  1586. (number "9" (effects (font (size 1.27 1.27))))
  1587. )
  1588. )
  1589. )
  1590. (symbol "power:+2V8" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1591. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1592. (effects (font (size 1.27 1.27)) hide)
  1593. )
  1594. (property "Value" "+2V8" (id 1) (at 0 3.556 0)
  1595. (effects (font (size 1.27 1.27)))
  1596. )
  1597. (property "Footprint" "" (id 2) (at 0 0 0)
  1598. (effects (font (size 1.27 1.27)) hide)
  1599. )
  1600. (property "Datasheet" "" (id 3) (at 0 0 0)
  1601. (effects (font (size 1.27 1.27)) hide)
  1602. )
  1603. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1604. (effects (font (size 1.27 1.27)) hide)
  1605. )
  1606. (property "ki_description" "Power symbol creates a global label with name \"+2V8\"" (id 5) (at 0 0 0)
  1607. (effects (font (size 1.27 1.27)) hide)
  1608. )
  1609. (symbol "+2V8_0_1"
  1610. (polyline
  1611. (pts
  1612. (xy -0.762 1.27)
  1613. (xy 0 2.54)
  1614. )
  1615. (stroke (width 0) (type default) (color 0 0 0 0))
  1616. (fill (type none))
  1617. )
  1618. (polyline
  1619. (pts
  1620. (xy 0 0)
  1621. (xy 0 2.54)
  1622. )
  1623. (stroke (width 0) (type default) (color 0 0 0 0))
  1624. (fill (type none))
  1625. )
  1626. (polyline
  1627. (pts
  1628. (xy 0 2.54)
  1629. (xy 0.762 1.27)
  1630. )
  1631. (stroke (width 0) (type default) (color 0 0 0 0))
  1632. (fill (type none))
  1633. )
  1634. )
  1635. (symbol "+2V8_1_1"
  1636. (pin power_in line (at 0 0 90) (length 0) hide
  1637. (name "+2V8" (effects (font (size 1.27 1.27))))
  1638. (number "1" (effects (font (size 1.27 1.27))))
  1639. )
  1640. )
  1641. )
  1642. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1643. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1644. (effects (font (size 1.27 1.27)) hide)
  1645. )
  1646. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  1647. (effects (font (size 1.27 1.27)))
  1648. )
  1649. (property "Footprint" "" (id 2) (at 0 0 0)
  1650. (effects (font (size 1.27 1.27)) hide)
  1651. )
  1652. (property "Datasheet" "" (id 3) (at 0 0 0)
  1653. (effects (font (size 1.27 1.27)) hide)
  1654. )
  1655. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1656. (effects (font (size 1.27 1.27)) hide)
  1657. )
  1658. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  1659. (effects (font (size 1.27 1.27)) hide)
  1660. )
  1661. (symbol "+3V3_0_1"
  1662. (polyline
  1663. (pts
  1664. (xy -0.762 1.27)
  1665. (xy 0 2.54)
  1666. )
  1667. (stroke (width 0) (type default) (color 0 0 0 0))
  1668. (fill (type none))
  1669. )
  1670. (polyline
  1671. (pts
  1672. (xy 0 0)
  1673. (xy 0 2.54)
  1674. )
  1675. (stroke (width 0) (type default) (color 0 0 0 0))
  1676. (fill (type none))
  1677. )
  1678. (polyline
  1679. (pts
  1680. (xy 0 2.54)
  1681. (xy 0.762 1.27)
  1682. )
  1683. (stroke (width 0) (type default) (color 0 0 0 0))
  1684. (fill (type none))
  1685. )
  1686. )
  1687. (symbol "+3V3_1_1"
  1688. (pin power_in line (at 0 0 90) (length 0) hide
  1689. (name "+3V3" (effects (font (size 1.27 1.27))))
  1690. (number "1" (effects (font (size 1.27 1.27))))
  1691. )
  1692. )
  1693. )
  1694. (symbol "power:+5F" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1695. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1696. (effects (font (size 1.27 1.27)) hide)
  1697. )
  1698. (property "Value" "+5F" (id 1) (at 0 3.556 0)
  1699. (effects (font (size 1.27 1.27)))
  1700. )
  1701. (property "Footprint" "" (id 2) (at 0 0 0)
  1702. (effects (font (size 1.27 1.27)) hide)
  1703. )
  1704. (property "Datasheet" "" (id 3) (at 0 0 0)
  1705. (effects (font (size 1.27 1.27)) hide)
  1706. )
  1707. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1708. (effects (font (size 1.27 1.27)) hide)
  1709. )
  1710. (property "ki_description" "Power symbol creates a global label with name \"+5F\"" (id 5) (at 0 0 0)
  1711. (effects (font (size 1.27 1.27)) hide)
  1712. )
  1713. (symbol "+5F_0_1"
  1714. (polyline
  1715. (pts
  1716. (xy -0.762 1.27)
  1717. (xy 0 2.54)
  1718. )
  1719. (stroke (width 0) (type default) (color 0 0 0 0))
  1720. (fill (type none))
  1721. )
  1722. (polyline
  1723. (pts
  1724. (xy 0 0)
  1725. (xy 0 2.54)
  1726. )
  1727. (stroke (width 0) (type default) (color 0 0 0 0))
  1728. (fill (type none))
  1729. )
  1730. (polyline
  1731. (pts
  1732. (xy 0 2.54)
  1733. (xy 0.762 1.27)
  1734. )
  1735. (stroke (width 0) (type default) (color 0 0 0 0))
  1736. (fill (type none))
  1737. )
  1738. )
  1739. (symbol "+5F_1_1"
  1740. (pin power_in line (at 0 0 90) (length 0) hide
  1741. (name "+5F" (effects (font (size 1.27 1.27))))
  1742. (number "1" (effects (font (size 1.27 1.27))))
  1743. )
  1744. )
  1745. )
  1746. (symbol "power:+5VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1747. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1748. (effects (font (size 1.27 1.27)) hide)
  1749. )
  1750. (property "Value" "+5VA" (id 1) (at 0 3.556 0)
  1751. (effects (font (size 1.27 1.27)))
  1752. )
  1753. (property "Footprint" "" (id 2) (at 0 0 0)
  1754. (effects (font (size 1.27 1.27)) hide)
  1755. )
  1756. (property "Datasheet" "" (id 3) (at 0 0 0)
  1757. (effects (font (size 1.27 1.27)) hide)
  1758. )
  1759. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1760. (effects (font (size 1.27 1.27)) hide)
  1761. )
  1762. (property "ki_description" "Power symbol creates a global label with name \"+5VA\"" (id 5) (at 0 0 0)
  1763. (effects (font (size 1.27 1.27)) hide)
  1764. )
  1765. (symbol "+5VA_0_1"
  1766. (polyline
  1767. (pts
  1768. (xy -0.762 1.27)
  1769. (xy 0 2.54)
  1770. )
  1771. (stroke (width 0) (type default) (color 0 0 0 0))
  1772. (fill (type none))
  1773. )
  1774. (polyline
  1775. (pts
  1776. (xy 0 0)
  1777. (xy 0 2.54)
  1778. )
  1779. (stroke (width 0) (type default) (color 0 0 0 0))
  1780. (fill (type none))
  1781. )
  1782. (polyline
  1783. (pts
  1784. (xy 0 2.54)
  1785. (xy 0.762 1.27)
  1786. )
  1787. (stroke (width 0) (type default) (color 0 0 0 0))
  1788. (fill (type none))
  1789. )
  1790. )
  1791. (symbol "+5VA_1_1"
  1792. (pin power_in line (at 0 0 90) (length 0) hide
  1793. (name "+5VA" (effects (font (size 1.27 1.27))))
  1794. (number "1" (effects (font (size 1.27 1.27))))
  1795. )
  1796. )
  1797. )
  1798. (symbol "power:+5VD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1799. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1800. (effects (font (size 1.27 1.27)) hide)
  1801. )
  1802. (property "Value" "+5VD" (id 1) (at 0 3.556 0)
  1803. (effects (font (size 1.27 1.27)))
  1804. )
  1805. (property "Footprint" "" (id 2) (at 0 0 0)
  1806. (effects (font (size 1.27 1.27)) hide)
  1807. )
  1808. (property "Datasheet" "" (id 3) (at 0 0 0)
  1809. (effects (font (size 1.27 1.27)) hide)
  1810. )
  1811. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1812. (effects (font (size 1.27 1.27)) hide)
  1813. )
  1814. (property "ki_description" "Power symbol creates a global label with name \"+5VD\"" (id 5) (at 0 0 0)
  1815. (effects (font (size 1.27 1.27)) hide)
  1816. )
  1817. (symbol "+5VD_0_1"
  1818. (polyline
  1819. (pts
  1820. (xy -0.762 1.27)
  1821. (xy 0 2.54)
  1822. )
  1823. (stroke (width 0) (type default) (color 0 0 0 0))
  1824. (fill (type none))
  1825. )
  1826. (polyline
  1827. (pts
  1828. (xy 0 0)
  1829. (xy 0 2.54)
  1830. )
  1831. (stroke (width 0) (type default) (color 0 0 0 0))
  1832. (fill (type none))
  1833. )
  1834. (polyline
  1835. (pts
  1836. (xy 0 2.54)
  1837. (xy 0.762 1.27)
  1838. )
  1839. (stroke (width 0) (type default) (color 0 0 0 0))
  1840. (fill (type none))
  1841. )
  1842. )
  1843. (symbol "+5VD_1_1"
  1844. (pin power_in line (at 0 0 90) (length 0) hide
  1845. (name "+5VD" (effects (font (size 1.27 1.27))))
  1846. (number "1" (effects (font (size 1.27 1.27))))
  1847. )
  1848. )
  1849. )
  1850. (symbol "power:+5VP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1851. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1852. (effects (font (size 1.27 1.27)) hide)
  1853. )
  1854. (property "Value" "+5VP" (id 1) (at 0 3.556 0)
  1855. (effects (font (size 1.27 1.27)))
  1856. )
  1857. (property "Footprint" "" (id 2) (at 0 0 0)
  1858. (effects (font (size 1.27 1.27)) hide)
  1859. )
  1860. (property "Datasheet" "" (id 3) (at 0 0 0)
  1861. (effects (font (size 1.27 1.27)) hide)
  1862. )
  1863. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1864. (effects (font (size 1.27 1.27)) hide)
  1865. )
  1866. (property "ki_description" "Power symbol creates a global label with name \"+5VP\"" (id 5) (at 0 0 0)
  1867. (effects (font (size 1.27 1.27)) hide)
  1868. )
  1869. (symbol "+5VP_0_1"
  1870. (polyline
  1871. (pts
  1872. (xy -0.762 1.27)
  1873. (xy 0 2.54)
  1874. )
  1875. (stroke (width 0) (type default) (color 0 0 0 0))
  1876. (fill (type none))
  1877. )
  1878. (polyline
  1879. (pts
  1880. (xy 0 0)
  1881. (xy 0 2.54)
  1882. )
  1883. (stroke (width 0) (type default) (color 0 0 0 0))
  1884. (fill (type none))
  1885. )
  1886. (polyline
  1887. (pts
  1888. (xy 0 2.54)
  1889. (xy 0.762 1.27)
  1890. )
  1891. (stroke (width 0) (type default) (color 0 0 0 0))
  1892. (fill (type none))
  1893. )
  1894. )
  1895. (symbol "+5VP_1_1"
  1896. (pin power_in line (at 0 0 90) (length 0) hide
  1897. (name "+5VP" (effects (font (size 1.27 1.27))))
  1898. (number "1" (effects (font (size 1.27 1.27))))
  1899. )
  1900. )
  1901. )
  1902. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1903. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1904. (effects (font (size 1.27 1.27)) hide)
  1905. )
  1906. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1907. (effects (font (size 1.27 1.27)))
  1908. )
  1909. (property "Footprint" "" (id 2) (at 0 0 0)
  1910. (effects (font (size 1.27 1.27)) hide)
  1911. )
  1912. (property "Datasheet" "" (id 3) (at 0 0 0)
  1913. (effects (font (size 1.27 1.27)) hide)
  1914. )
  1915. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1916. (effects (font (size 1.27 1.27)) hide)
  1917. )
  1918. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1919. (effects (font (size 1.27 1.27)) hide)
  1920. )
  1921. (symbol "GND_0_1"
  1922. (polyline
  1923. (pts
  1924. (xy 0 0)
  1925. (xy 0 -1.27)
  1926. (xy 1.27 -1.27)
  1927. (xy 0 -2.54)
  1928. (xy -1.27 -1.27)
  1929. (xy 0 -1.27)
  1930. )
  1931. (stroke (width 0) (type default) (color 0 0 0 0))
  1932. (fill (type none))
  1933. )
  1934. )
  1935. (symbol "GND_1_1"
  1936. (pin power_in line (at 0 0 270) (length 0) hide
  1937. (name "GND" (effects (font (size 1.27 1.27))))
  1938. (number "1" (effects (font (size 1.27 1.27))))
  1939. )
  1940. )
  1941. )
  1942. )
  1943. (junction (at 68.58 171.45) (diameter 0) (color 0 0 0 0)
  1944. (uuid 01da83ba-b7d7-4348-80da-77ae7b0bdf40)
  1945. )
  1946. (junction (at 25.4 125.73) (diameter 0) (color 0 0 0 0)
  1947. (uuid 0a3564d6-d974-4c4a-b8fd-c6472bd43a66)
  1948. )
  1949. (junction (at 271.78 86.36) (diameter 0) (color 0 0 0 0)
  1950. (uuid 0a61c0ac-c22c-4c49-8d20-b84432b55636)
  1951. )
  1952. (junction (at 40.64 168.91) (diameter 0) (color 0 0 0 0)
  1953. (uuid 0d59f3b8-4f9c-49f9-b9cd-08ac4e3dad8a)
  1954. )
  1955. (junction (at 41.91 77.47) (diameter 0) (color 0 0 0 0)
  1956. (uuid 146ac025-e670-4b77-8671-08eb5a7f5990)
  1957. )
  1958. (junction (at 92.71 27.94) (diameter 0) (color 0 0 0 0)
  1959. (uuid 1731d24c-2d14-4068-a544-bbc2c1daad9f)
  1960. )
  1961. (junction (at 41.91 90.17) (diameter 0) (color 0 0 0 0)
  1962. (uuid 18cc461f-7145-49ab-b865-a707490e2cbd)
  1963. )
  1964. (junction (at 68.58 82.55) (diameter 0) (color 0 0 0 0)
  1965. (uuid 1a792563-190d-4c77-84a8-68e4283ff848)
  1966. )
  1967. (junction (at 220.98 30.48) (diameter 0) (color 0 0 0 0)
  1968. (uuid 1e1b8369-76fa-4417-9534-d3a08f3cb791)
  1969. )
  1970. (junction (at 66.04 43.18) (diameter 0) (color 0 0 0 0)
  1971. (uuid 20290c72-c3a0-446c-ae94-ee0f0144f40b)
  1972. )
  1973. (junction (at 156.21 176.53) (diameter 0) (color 0 0 0 0)
  1974. (uuid 249a1d1e-aee4-4f83-b8bc-d42ef9cf65be)
  1975. )
  1976. (junction (at 139.7 110.49) (diameter 0) (color 0 0 0 0)
  1977. (uuid 24e03471-854b-400a-95f8-9efca52948c5)
  1978. )
  1979. (junction (at 92.71 30.48) (diameter 0) (color 0 0 0 0)
  1980. (uuid 2c38337b-fad4-44b5-a8e9-c85a3e2ddbe0)
  1981. )
  1982. (junction (at 57.15 160.02) (diameter 0) (color 0 0 0 0)
  1983. (uuid 2dd1b4f7-a660-4be1-b8c7-42e362688154)
  1984. )
  1985. (junction (at 40.64 160.02) (diameter 0) (color 0 0 0 0)
  1986. (uuid 2f424da3-8fae-4941-bc6d-20044787372f)
  1987. )
  1988. (junction (at 92.71 40.64) (diameter 0) (color 0 0 0 0)
  1989. (uuid 33f6df20-7411-4c23-aa2a-156312cd9522)
  1990. )
  1991. (junction (at 158.75 147.32) (diameter 0) (color 0 0 0 0)
  1992. (uuid 386e6c8a-1097-4e61-8b9d-57899fcd83bd)
  1993. )
  1994. (junction (at 92.71 38.1) (diameter 0) (color 0 0 0 0)
  1995. (uuid 3fa46d2a-1a5c-4900-ab89-b22cdaad0d47)
  1996. )
  1997. (junction (at 210.82 43.18) (diameter 0) (color 0 0 0 0)
  1998. (uuid 49e47b82-b77a-4faa-85c7-9d98eaf44d9c)
  1999. )
  2000. (junction (at 139.7 102.87) (diameter 0) (color 0 0 0 0)
  2001. (uuid 4a92382d-f77e-49c3-aed2-5a28adfd6e16)
  2002. )
  2003. (junction (at 195.58 105.41) (diameter 0) (color 0 0 0 0)
  2004. (uuid 4bdb86f8-6942-4676-971e-fbde3ccb4eab)
  2005. )
  2006. (junction (at 76.2 133.35) (diameter 0) (color 0 0 0 0)
  2007. (uuid 62a85416-7946-4631-83f9-63278165a17d)
  2008. )
  2009. (junction (at 41.91 80.01) (diameter 0) (color 0 0 0 0)
  2010. (uuid 64317d57-9583-472d-9451-ceba9a6a8c24)
  2011. )
  2012. (junction (at 68.58 80.01) (diameter 0) (color 0 0 0 0)
  2013. (uuid 66390c98-acba-49fc-a168-6fe888a92ee4)
  2014. )
  2015. (junction (at 66.04 38.1) (diameter 0) (color 0 0 0 0)
  2016. (uuid 69580bd9-b561-4ffd-aa89-0adb6ce77014)
  2017. )
  2018. (junction (at 76.2 130.81) (diameter 0) (color 0 0 0 0)
  2019. (uuid 6f8f3833-808a-4381-9130-c809b41e99d4)
  2020. )
  2021. (junction (at 41.91 82.55) (diameter 0) (color 0 0 0 0)
  2022. (uuid 739c3daf-4a4d-4aa3-a195-9c98ae4a63f6)
  2023. )
  2024. (junction (at 180.34 33.02) (diameter 0) (color 0 0 0 0)
  2025. (uuid 760637cd-c328-46f0-92a1-d4c3678e8825)
  2026. )
  2027. (junction (at 76.2 143.51) (diameter 0) (color 0 0 0 0)
  2028. (uuid 7d5256dc-078c-40d1-964e-aa17fd8488b3)
  2029. )
  2030. (junction (at 233.68 33.02) (diameter 0) (color 0 0 0 0)
  2031. (uuid 7ecf4da4-d4d0-4637-8ce1-c7a399f63efd)
  2032. )
  2033. (junction (at 210.82 35.56) (diameter 0) (color 0 0 0 0)
  2034. (uuid 7f5adea6-8138-4286-89e7-ff83a675b8fd)
  2035. )
  2036. (junction (at 76.2 148.59) (diameter 0) (color 0 0 0 0)
  2037. (uuid 84ac9a05-15b6-4005-9a8a-e151f18467cc)
  2038. )
  2039. (junction (at 68.58 90.17) (diameter 0) (color 0 0 0 0)
  2040. (uuid 872767f8-d763-4064-ac74-e8d1b0ffe822)
  2041. )
  2042. (junction (at 218.44 22.86) (diameter 0) (color 0 0 0 0)
  2043. (uuid 89848a97-4d29-49c1-8d6e-00831b590e14)
  2044. )
  2045. (junction (at 62.23 125.73) (diameter 0) (color 0 0 0 0)
  2046. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  2047. )
  2048. (junction (at 271.78 22.86) (diameter 0) (color 0 0 0 0)
  2049. (uuid 8ccb24b4-0e44-4932-814f-8fa97f8263ba)
  2050. )
  2051. (junction (at 156.21 179.07) (diameter 0) (color 0 0 0 0)
  2052. (uuid 8d197fd3-7b3b-4a25-93c3-db8eab05e122)
  2053. )
  2054. (junction (at 50.8 125.73) (diameter 0) (color 0 0 0 0)
  2055. (uuid 91fc5800-6029-46b1-848d-ca0091f97267)
  2056. )
  2057. (junction (at 180.34 40.64) (diameter 0) (color 0 0 0 0)
  2058. (uuid 9502925d-16f8-46c1-ba2e-d4eea5abfcbc)
  2059. )
  2060. (junction (at 66.04 27.94) (diameter 0) (color 0 0 0 0)
  2061. (uuid 965fc93d-9a3e-4ebf-b9f1-27de7a43733d)
  2062. )
  2063. (junction (at 264.16 86.36) (diameter 0) (color 0 0 0 0)
  2064. (uuid 9cb3a541-53a3-456e-878a-1ee036457b68)
  2065. )
  2066. (junction (at 210.82 38.1) (diameter 0) (color 0 0 0 0)
  2067. (uuid 9cb3e369-dff4-478c-a996-216e829f43a2)
  2068. )
  2069. (junction (at 233.68 40.64) (diameter 0) (color 0 0 0 0)
  2070. (uuid a0880d94-9884-41c0-99a3-8a4ddabbc1db)
  2071. )
  2072. (junction (at 68.58 163.83) (diameter 0) (color 0 0 0 0)
  2073. (uuid a38a540f-ea5d-44ed-9e0b-f00c4012e9c5)
  2074. )
  2075. (junction (at 264.16 43.18) (diameter 0) (color 0 0 0 0)
  2076. (uuid a58b8e44-75df-4ab8-b3dc-e35e957833fb)
  2077. )
  2078. (junction (at 76.2 135.89) (diameter 0) (color 0 0 0 0)
  2079. (uuid aa917246-bae8-44b4-bdce-bea4144e351a)
  2080. )
  2081. (junction (at 66.04 30.48) (diameter 0) (color 0 0 0 0)
  2082. (uuid ac4da15b-7d4c-4688-8699-07df05cd2dc4)
  2083. )
  2084. (junction (at 76.2 153.67) (diameter 0) (color 0 0 0 0)
  2085. (uuid afc08a7a-71f1-4948-9c3c-43e20cb88874)
  2086. )
  2087. (junction (at 68.58 158.75) (diameter 0) (color 0 0 0 0)
  2088. (uuid b058cf5e-0ca8-4161-be5f-ffb49a10c435)
  2089. )
  2090. (junction (at 195.58 116.84) (diameter 0) (color 0 0 0 0)
  2091. (uuid b21a3308-654f-4b8e-80d7-e17fb91af683)
  2092. )
  2093. (junction (at 274.32 30.48) (diameter 0) (color 0 0 0 0)
  2094. (uuid bb223671-4868-4e4d-b7ea-158d7aaa7ce4)
  2095. )
  2096. (junction (at 76.2 151.13) (diameter 0) (color 0 0 0 0)
  2097. (uuid bf888ecc-a536-4cd0-bb23-ddbb5f10af18)
  2098. )
  2099. (junction (at 180.34 35.56) (diameter 0) (color 0 0 0 0)
  2100. (uuid c2566453-a4cc-4bb6-ae7e-b6e0cffe34de)
  2101. )
  2102. (junction (at 264.16 35.56) (diameter 0) (color 0 0 0 0)
  2103. (uuid d92303f5-3e7a-4327-a017-09b30cf2f2df)
  2104. )
  2105. (junction (at 66.04 40.64) (diameter 0) (color 0 0 0 0)
  2106. (uuid db5a5e0e-be3f-4fba-bd44-7f27b49d901f)
  2107. )
  2108. (junction (at 68.58 92.71) (diameter 0) (color 0 0 0 0)
  2109. (uuid e82cd45f-1868-4fb4-9afa-b0ce6dffc5be)
  2110. )
  2111. (junction (at 68.58 168.91) (diameter 0) (color 0 0 0 0)
  2112. (uuid e87b5f99-5602-4ad6-933f-ef5ac40bfcba)
  2113. )
  2114. (junction (at 76.2 140.97) (diameter 0) (color 0 0 0 0)
  2115. (uuid ecfc1b87-0617-4556-abf0-ba31fa2b9826)
  2116. )
  2117. (junction (at 41.91 92.71) (diameter 0) (color 0 0 0 0)
  2118. (uuid eecd36a9-b0f4-4ac0-a261-29341430965c)
  2119. )
  2120. (junction (at 76.2 138.43) (diameter 0) (color 0 0 0 0)
  2121. (uuid f592741b-ee87-4c95-8f57-6e9bf8044aef)
  2122. )
  2123. (wire (pts (xy 92.71 48.26) (xy 92.71 40.64))
  2124. (stroke (width 0) (type default) (color 0 0 0 0))
  2125. (uuid 00f489b5-7e8c-415c-969c-1da84e092ef2)
  2126. )
  2127. (wire (pts (xy 210.82 38.1) (xy 210.82 43.18))
  2128. (stroke (width 0) (type default) (color 0 0 0 0))
  2129. (uuid 01514344-d131-4197-a603-0c95a240efa2)
  2130. )
  2131. (wire (pts (xy 193.04 116.84) (xy 195.58 116.84))
  2132. (stroke (width 0) (type default) (color 0 0 0 0))
  2133. (uuid 01b7d12d-abdb-4997-b2ea-69f29781be0e)
  2134. )
  2135. (wire (pts (xy 153.67 176.53) (xy 156.21 176.53))
  2136. (stroke (width 0) (type default) (color 0 0 0 0))
  2137. (uuid 0257faa2-7950-4448-afbf-0cda8ec19d70)
  2138. )
  2139. (wire (pts (xy 66.04 43.18) (xy 71.12 43.18))
  2140. (stroke (width 0) (type default) (color 0 0 0 0))
  2141. (uuid 02aeb32c-c19e-4a4a-ae04-876cf785ce9c)
  2142. )
  2143. (wire (pts (xy 180.34 40.64) (xy 180.34 48.26))
  2144. (stroke (width 0) (type default) (color 0 0 0 0))
  2145. (uuid 03fa8128-ad15-4d31-af7a-4de24cbafa25)
  2146. )
  2147. (wire (pts (xy 68.58 158.75) (xy 68.58 153.67))
  2148. (stroke (width 0) (type default) (color 0 0 0 0))
  2149. (uuid 045aa366-f8b9-4746-aabf-1894fb15986b)
  2150. )
  2151. (wire (pts (xy 218.44 22.86) (xy 203.2 22.86))
  2152. (stroke (width 0) (type default) (color 0 0 0 0))
  2153. (uuid 04d8e6b4-0757-435b-9134-440b470177d5)
  2154. )
  2155. (wire (pts (xy 92.71 30.48) (xy 92.71 27.94))
  2156. (stroke (width 0) (type default) (color 0 0 0 0))
  2157. (uuid 08435c23-9e19-42f1-81b3-2650720ba792)
  2158. )
  2159. (wire (pts (xy 88.9 48.26) (xy 92.71 48.26))
  2160. (stroke (width 0) (type default) (color 0 0 0 0))
  2161. (uuid 0aa1957a-d22c-49e8-852a-c6612a6e4674)
  2162. )
  2163. (wire (pts (xy 64.77 90.17) (xy 68.58 90.17))
  2164. (stroke (width 0) (type default) (color 0 0 0 0))
  2165. (uuid 0e7e6318-f8b1-4ba8-b922-ce34a515da84)
  2166. )
  2167. (wire (pts (xy 210.82 35.56) (xy 210.82 38.1))
  2168. (stroke (width 0) (type default) (color 0 0 0 0))
  2169. (uuid 10b442da-155a-4fdf-abef-135f5f5a7556)
  2170. )
  2171. (wire (pts (xy 264.16 43.18) (xy 264.16 48.26))
  2172. (stroke (width 0) (type default) (color 0 0 0 0))
  2173. (uuid 10c4eb9f-10ad-45e0-9df6-52b1d64fad4a)
  2174. )
  2175. (wire (pts (xy 76.2 140.97) (xy 76.2 143.51))
  2176. (stroke (width 0) (type default) (color 0 0 0 0))
  2177. (uuid 124aaffd-8faf-46a0-a697-4004343b3dfa)
  2178. )
  2179. (wire (pts (xy 68.58 168.91) (xy 68.58 163.83))
  2180. (stroke (width 0) (type default) (color 0 0 0 0))
  2181. (uuid 13af6d0b-e7f1-4b31-be75-eaf950ab7631)
  2182. )
  2183. (wire (pts (xy 68.58 158.75) (xy 68.58 163.83))
  2184. (stroke (width 0) (type default) (color 0 0 0 0))
  2185. (uuid 145f6a29-a86e-46eb-9791-8f733f58b45e)
  2186. )
  2187. (wire (pts (xy 274.32 30.48) (xy 274.32 31.75))
  2188. (stroke (width 0) (type default) (color 0 0 0 0))
  2189. (uuid 14f60314-3390-4b57-85d9-4fbb1c7180a8)
  2190. )
  2191. (wire (pts (xy 71.12 48.26) (xy 66.04 48.26))
  2192. (stroke (width 0) (type default) (color 0 0 0 0))
  2193. (uuid 15398ce7-d4ef-4e12-844a-0926f6104269)
  2194. )
  2195. (wire (pts (xy 88.9 38.1) (xy 92.71 38.1))
  2196. (stroke (width 0) (type default) (color 0 0 0 0))
  2197. (uuid 17f7bbbe-69e3-4e44-bbea-58fc052ce640)
  2198. )
  2199. (wire (pts (xy 68.58 171.45) (xy 68.58 168.91))
  2200. (stroke (width 0) (type default) (color 0 0 0 0))
  2201. (uuid 1b826b20-3d81-4303-abc7-eae7aefcc71b)
  2202. )
  2203. (wire (pts (xy 39.37 85.09) (xy 38.1 85.09))
  2204. (stroke (width 0) (type default) (color 0 0 0 0))
  2205. (uuid 1efea006-bd29-42ec-88de-d295cbe0aeb7)
  2206. )
  2207. (wire (pts (xy 271.78 30.48) (xy 274.32 30.48))
  2208. (stroke (width 0) (type default) (color 0 0 0 0))
  2209. (uuid 20d01bbf-a4ec-441a-80e5-4f80c3a0cf61)
  2210. )
  2211. (wire (pts (xy 134.62 176.53) (xy 140.97 176.53))
  2212. (stroke (width 0) (type default) (color 0 0 0 0))
  2213. (uuid 21d50eaa-bae0-414c-8aa0-fa3dc0b36519)
  2214. )
  2215. (wire (pts (xy 66.04 30.48) (xy 66.04 27.94))
  2216. (stroke (width 0) (type default) (color 0 0 0 0))
  2217. (uuid 23225432-04b6-44da-a05d-7e8d2d8ce5a7)
  2218. )
  2219. (wire (pts (xy 218.44 30.48) (xy 220.98 30.48))
  2220. (stroke (width 0) (type default) (color 0 0 0 0))
  2221. (uuid 238aff97-c41c-47eb-bac3-cfaecd4c809e)
  2222. )
  2223. (wire (pts (xy 271.78 86.36) (xy 271.78 97.79))
  2224. (stroke (width 0) (type default) (color 0 0 0 0))
  2225. (uuid 25cf5a75-1ea4-4230-a3d1-5edd822ee5af)
  2226. )
  2227. (wire (pts (xy 66.04 38.1) (xy 66.04 30.48))
  2228. (stroke (width 0) (type default) (color 0 0 0 0))
  2229. (uuid 2672b0c0-b154-4ba0-9dec-83ad09ba6391)
  2230. )
  2231. (wire (pts (xy 139.7 110.49) (xy 149.86 110.49))
  2232. (stroke (width 0) (type default) (color 0 0 0 0))
  2233. (uuid 27e1e514-3f09-4c64-a24e-07e55830d86d)
  2234. )
  2235. (wire (pts (xy 129.54 102.87) (xy 139.7 102.87))
  2236. (stroke (width 0) (type default) (color 0 0 0 0))
  2237. (uuid 2800cd5d-5013-41ce-9bb4-bec8c2bf62c4)
  2238. )
  2239. (wire (pts (xy 96.52 33.02) (xy 99.06 33.02))
  2240. (stroke (width 0) (type default) (color 0 0 0 0))
  2241. (uuid 29d7e400-6202-4736-b49f-bba357907bcc)
  2242. )
  2243. (wire (pts (xy 41.91 77.47) (xy 46.99 77.47))
  2244. (stroke (width 0) (type default) (color 0 0 0 0))
  2245. (uuid 2daaf9e0-6fcf-49c1-9bf6-a0b844e51d5e)
  2246. )
  2247. (wire (pts (xy 66.04 38.1) (xy 66.04 40.64))
  2248. (stroke (width 0) (type default) (color 0 0 0 0))
  2249. (uuid 2f645967-dd9a-4c3f-a64b-97ddf7554042)
  2250. )
  2251. (wire (pts (xy 264.16 86.36) (xy 264.16 97.79))
  2252. (stroke (width 0) (type default) (color 0 0 0 0))
  2253. (uuid 31eb8621-9985-462b-ae53-47150461458d)
  2254. )
  2255. (wire (pts (xy 180.34 35.56) (xy 180.34 40.64))
  2256. (stroke (width 0) (type default) (color 0 0 0 0))
  2257. (uuid 32b7b71c-fa3c-487d-a27b-4a16eece2eef)
  2258. )
  2259. (wire (pts (xy 233.68 33.02) (xy 233.68 40.64))
  2260. (stroke (width 0) (type default) (color 0 0 0 0))
  2261. (uuid 379d40f0-8bbf-4a8e-8c14-6e83d23aed0b)
  2262. )
  2263. (wire (pts (xy 168.91 147.32) (xy 176.53 147.32))
  2264. (stroke (width 0) (type default) (color 0 0 0 0))
  2265. (uuid 38818f9e-cbbd-4e26-a9a6-8e76e6e4e3d0)
  2266. )
  2267. (wire (pts (xy 247.65 139.7) (xy 255.27 139.7))
  2268. (stroke (width 0) (type default) (color 0 0 0 0))
  2269. (uuid 388a31c7-9129-4758-abb1-d8603a38a3ee)
  2270. )
  2271. (wire (pts (xy 247.65 149.86) (xy 255.27 149.86))
  2272. (stroke (width 0) (type default) (color 0 0 0 0))
  2273. (uuid 3c1fb1b2-ce6c-4557-84f0-d4326fb86a06)
  2274. )
  2275. (wire (pts (xy 68.58 153.67) (xy 76.2 153.67))
  2276. (stroke (width 0) (type default) (color 0 0 0 0))
  2277. (uuid 3d5c6227-de2a-4ae5-a171-95bafe63692f)
  2278. )
  2279. (wire (pts (xy 247.65 132.08) (xy 255.27 132.08))
  2280. (stroke (width 0) (type default) (color 0 0 0 0))
  2281. (uuid 3d9703bd-c5c0-4a4b-bfe4-0c754b6013cf)
  2282. )
  2283. (wire (pts (xy 41.91 90.17) (xy 41.91 82.55))
  2284. (stroke (width 0) (type default) (color 0 0 0 0))
  2285. (uuid 3fab809d-214f-4878-89c6-bc870d7ca456)
  2286. )
  2287. (wire (pts (xy 264.16 35.56) (xy 264.16 43.18))
  2288. (stroke (width 0) (type default) (color 0 0 0 0))
  2289. (uuid 41bb0cdf-370e-4453-8c80-7e1b7a9f3172)
  2290. )
  2291. (wire (pts (xy 92.71 40.64) (xy 92.71 38.1))
  2292. (stroke (width 0) (type default) (color 0 0 0 0))
  2293. (uuid 43862069-fe0c-49bc-889e-525b75276912)
  2294. )
  2295. (wire (pts (xy 74.93 95.25) (xy 72.39 95.25))
  2296. (stroke (width 0) (type default) (color 0 0 0 0))
  2297. (uuid 468652a9-ecbc-4f8a-9e52-805cd4103819)
  2298. )
  2299. (wire (pts (xy 41.91 92.71) (xy 46.99 92.71))
  2300. (stroke (width 0) (type default) (color 0 0 0 0))
  2301. (uuid 48c3347b-1885-4cfd-ad34-acd590723607)
  2302. )
  2303. (wire (pts (xy 247.65 142.24) (xy 255.27 142.24))
  2304. (stroke (width 0) (type default) (color 0 0 0 0))
  2305. (uuid 4a9336e2-e75a-4b76-b26a-8f93f87d3868)
  2306. )
  2307. (wire (pts (xy 41.91 80.01) (xy 46.99 80.01))
  2308. (stroke (width 0) (type default) (color 0 0 0 0))
  2309. (uuid 4ac8129b-4ad7-4de0-abfb-a3a3cdc1cd7f)
  2310. )
  2311. (wire (pts (xy 46.99 90.17) (xy 41.91 90.17))
  2312. (stroke (width 0) (type default) (color 0 0 0 0))
  2313. (uuid 4afe89d1-0389-484e-bbf4-7ef8dcc6e6f8)
  2314. )
  2315. (wire (pts (xy 76.2 171.45) (xy 68.58 171.45))
  2316. (stroke (width 0) (type default) (color 0 0 0 0))
  2317. (uuid 4d3b469f-9986-4651-93a9-aa2aacbed144)
  2318. )
  2319. (wire (pts (xy 96.52 35.56) (xy 99.06 35.56))
  2320. (stroke (width 0) (type default) (color 0 0 0 0))
  2321. (uuid 50647abc-517d-4d7e-ae68-0b501840a2fb)
  2322. )
  2323. (wire (pts (xy 68.58 82.55) (xy 68.58 80.01))
  2324. (stroke (width 0) (type default) (color 0 0 0 0))
  2325. (uuid 5166d2ed-82db-4b23-bbae-ef8dbe08678d)
  2326. )
  2327. (wire (pts (xy 88.9 40.64) (xy 92.71 40.64))
  2328. (stroke (width 0) (type default) (color 0 0 0 0))
  2329. (uuid 53a0eb7e-32f1-40ce-a8aa-a6d80060d166)
  2330. )
  2331. (wire (pts (xy 88.9 27.94) (xy 92.71 27.94))
  2332. (stroke (width 0) (type default) (color 0 0 0 0))
  2333. (uuid 5567fb54-5479-4178-a115-006f568face2)
  2334. )
  2335. (wire (pts (xy 33.02 168.91) (xy 40.64 168.91))
  2336. (stroke (width 0) (type default) (color 0 0 0 0))
  2337. (uuid 55d6f510-4537-47a0-8fa1-f72f9eb17fb1)
  2338. )
  2339. (wire (pts (xy 66.04 40.64) (xy 66.04 43.18))
  2340. (stroke (width 0) (type default) (color 0 0 0 0))
  2341. (uuid 561861a8-0e97-46f5-b714-8019d31aecb7)
  2342. )
  2343. (wire (pts (xy 210.82 111.76) (xy 195.58 111.76))
  2344. (stroke (width 0) (type default) (color 0 0 0 0))
  2345. (uuid 58bc0d94-ad09-47be-bb78-c048eab594f8)
  2346. )
  2347. (wire (pts (xy 17.78 125.73) (xy 25.4 125.73))
  2348. (stroke (width 0) (type default) (color 0 0 0 0))
  2349. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  2350. )
  2351. (wire (pts (xy 218.44 22.86) (xy 223.52 22.86))
  2352. (stroke (width 0) (type default) (color 0 0 0 0))
  2353. (uuid 5d3c5225-9052-4562-83ca-c9aba3ecc347)
  2354. )
  2355. (wire (pts (xy 191.77 105.41) (xy 195.58 105.41))
  2356. (stroke (width 0) (type default) (color 0 0 0 0))
  2357. (uuid 6034ad4c-748b-4f93-8095-ab021baddcd7)
  2358. )
  2359. (wire (pts (xy 180.34 33.02) (xy 180.34 35.56))
  2360. (stroke (width 0) (type default) (color 0 0 0 0))
  2361. (uuid 609aedf3-600b-4262-ac86-408cbdb68f1a)
  2362. )
  2363. (wire (pts (xy 66.04 19.05) (xy 66.04 27.94))
  2364. (stroke (width 0) (type default) (color 0 0 0 0))
  2365. (uuid 632413c7-3d7f-40d1-9695-a10ec1a79e01)
  2366. )
  2367. (wire (pts (xy 72.39 85.09) (xy 74.93 85.09))
  2368. (stroke (width 0) (type default) (color 0 0 0 0))
  2369. (uuid 63abffb1-6f35-4db2-8c2a-bd25b9c35f3e)
  2370. )
  2371. (wire (pts (xy 68.58 163.83) (xy 76.2 163.83))
  2372. (stroke (width 0) (type default) (color 0 0 0 0))
  2373. (uuid 64c8f2f5-7a4c-4408-b4f9-72475bd07ec6)
  2374. )
  2375. (wire (pts (xy 63.5 33.02) (xy 60.96 33.02))
  2376. (stroke (width 0) (type default) (color 0 0 0 0))
  2377. (uuid 66f69e18-72ff-450b-98f4-de6aeca7088e)
  2378. )
  2379. (wire (pts (xy 233.68 27.94) (xy 233.68 33.02))
  2380. (stroke (width 0) (type default) (color 0 0 0 0))
  2381. (uuid 6859f36d-1ae5-4ee0-9bfa-1d0f18f93b51)
  2382. )
  2383. (wire (pts (xy 74.93 77.47) (xy 72.39 77.47))
  2384. (stroke (width 0) (type default) (color 0 0 0 0))
  2385. (uuid 6a769106-5b1e-445a-9bfd-a3bf5ba898cb)
  2386. )
  2387. (wire (pts (xy 68.58 171.45) (xy 68.58 175.26))
  2388. (stroke (width 0) (type default) (color 0 0 0 0))
  2389. (uuid 6be820e1-5a23-41d8-9a90-b537312251b4)
  2390. )
  2391. (wire (pts (xy 99.06 45.72) (xy 96.52 45.72))
  2392. (stroke (width 0) (type default) (color 0 0 0 0))
  2393. (uuid 6d8e4355-ea4c-4fe3-a458-49bd2a9004b7)
  2394. )
  2395. (wire (pts (xy 68.58 90.17) (xy 68.58 82.55))
  2396. (stroke (width 0) (type default) (color 0 0 0 0))
  2397. (uuid 6effa74b-5722-40e5-a862-e21980a070bd)
  2398. )
  2399. (wire (pts (xy 64.77 100.33) (xy 68.58 100.33))
  2400. (stroke (width 0) (type default) (color 0 0 0 0))
  2401. (uuid 6f3c0192-04aa-49c0-b91b-e7dbc1ac6920)
  2402. )
  2403. (wire (pts (xy 26.67 33.02) (xy 30.48 33.02))
  2404. (stroke (width 0) (type default) (color 0 0 0 0))
  2405. (uuid 6feb1714-a5ae-4479-9ced-420db7ce8340)
  2406. )
  2407. (wire (pts (xy 220.98 30.48) (xy 220.98 31.75))
  2408. (stroke (width 0) (type default) (color 0 0 0 0))
  2409. (uuid 7061d9ed-fc6d-4fd8-ab12-5ff2d9ac389f)
  2410. )
  2411. (wire (pts (xy 99.06 43.18) (xy 96.52 43.18))
  2412. (stroke (width 0) (type default) (color 0 0 0 0))
  2413. (uuid 70693697-494f-4850-915f-3a74070a1124)
  2414. )
  2415. (wire (pts (xy 210.82 99.06) (xy 208.28 99.06))
  2416. (stroke (width 0) (type default) (color 0 0 0 0))
  2417. (uuid 70def7cc-f066-4b65-9691-9d7330681761)
  2418. )
  2419. (wire (pts (xy 68.58 100.33) (xy 68.58 92.71))
  2420. (stroke (width 0) (type default) (color 0 0 0 0))
  2421. (uuid 7171f146-339c-443d-9af1-f8ef44493e55)
  2422. )
  2423. (wire (pts (xy 195.58 111.76) (xy 195.58 105.41))
  2424. (stroke (width 0) (type default) (color 0 0 0 0))
  2425. (uuid 74c474fb-f49a-4778-8f4f-420682e4d4d9)
  2426. )
  2427. (wire (pts (xy 76.2 135.89) (xy 76.2 138.43))
  2428. (stroke (width 0) (type default) (color 0 0 0 0))
  2429. (uuid 75da0c34-4a4f-4bd6-8f01-22a1646b557d)
  2430. )
  2431. (wire (pts (xy 17.78 54.61) (xy 17.78 55.88))
  2432. (stroke (width 0) (type default) (color 0 0 0 0))
  2433. (uuid 768fe194-17fb-4a10-b5fe-66b77ba582e3)
  2434. )
  2435. (wire (pts (xy 66.04 40.64) (xy 71.12 40.64))
  2436. (stroke (width 0) (type default) (color 0 0 0 0))
  2437. (uuid 78028d5a-cbd7-4383-9eb2-074c6a2e3522)
  2438. )
  2439. (wire (pts (xy 39.37 87.63) (xy 36.83 87.63))
  2440. (stroke (width 0) (type default) (color 0 0 0 0))
  2441. (uuid 79319527-7737-4271-83d4-a3305b1ca871)
  2442. )
  2443. (wire (pts (xy 24.13 25.4) (xy 24.13 35.56))
  2444. (stroke (width 0) (type default) (color 0 0 0 0))
  2445. (uuid 79476267-290e-445f-995b-0afd0e11a4b5)
  2446. )
  2447. (wire (pts (xy 57.15 152.4) (xy 57.15 151.13))
  2448. (stroke (width 0) (type default) (color 0 0 0 0))
  2449. (uuid 7962a64a-9573-4b69-b69a-4f28620930c2)
  2450. )
  2451. (wire (pts (xy 195.58 116.84) (xy 210.82 116.84))
  2452. (stroke (width 0) (type default) (color 0 0 0 0))
  2453. (uuid 7caae0a2-8607-4da0-b24f-0995bad01e6a)
  2454. )
  2455. (wire (pts (xy 180.34 27.94) (xy 180.34 33.02))
  2456. (stroke (width 0) (type default) (color 0 0 0 0))
  2457. (uuid 7dfff038-fed0-4ebd-8b3f-bf550c00b4e0)
  2458. )
  2459. (wire (pts (xy 233.68 40.64) (xy 233.68 48.26))
  2460. (stroke (width 0) (type default) (color 0 0 0 0))
  2461. (uuid 82f78844-b954-4097-b149-d4258b3f5a10)
  2462. )
  2463. (wire (pts (xy 76.2 158.75) (xy 68.58 158.75))
  2464. (stroke (width 0) (type default) (color 0 0 0 0))
  2465. (uuid 8378365f-bf03-40ae-9894-5a1fba79ced1)
  2466. )
  2467. (wire (pts (xy 92.71 38.1) (xy 92.71 30.48))
  2468. (stroke (width 0) (type default) (color 0 0 0 0))
  2469. (uuid 870e7a83-9e99-4e30-88f9-bfc0bb46500e)
  2470. )
  2471. (wire (pts (xy 64.77 92.71) (xy 68.58 92.71))
  2472. (stroke (width 0) (type default) (color 0 0 0 0))
  2473. (uuid 8739774c-7697-4df7-bf2e-4df844dd9363)
  2474. )
  2475. (wire (pts (xy 158.75 142.24) (xy 158.75 147.32))
  2476. (stroke (width 0) (type default) (color 0 0 0 0))
  2477. (uuid 8b724b0f-9a9b-4721-838b-c7f88aebd048)
  2478. )
  2479. (wire (pts (xy 208.28 99.06) (xy 208.28 104.14))
  2480. (stroke (width 0) (type default) (color 0 0 0 0))
  2481. (uuid 8b7e2059-7aa7-4879-9a2b-245bce800ca1)
  2482. )
  2483. (wire (pts (xy 25.4 125.73) (xy 30.48 125.73))
  2484. (stroke (width 0) (type default) (color 0 0 0 0))
  2485. (uuid 8f4ac7ce-7590-40c5-98d1-89d99fb00d0c)
  2486. )
  2487. (wire (pts (xy 68.58 92.71) (xy 68.58 90.17))
  2488. (stroke (width 0) (type default) (color 0 0 0 0))
  2489. (uuid 8fcb7645-fc4e-405e-aa96-c066cd4b96f5)
  2490. )
  2491. (wire (pts (xy 76.2 133.35) (xy 76.2 135.89))
  2492. (stroke (width 0) (type default) (color 0 0 0 0))
  2493. (uuid 90f82a9d-42dc-48fc-90e9-f4947d45acf2)
  2494. )
  2495. (wire (pts (xy 50.8 125.73) (xy 62.23 125.73))
  2496. (stroke (width 0) (type default) (color 0 0 0 0))
  2497. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  2498. )
  2499. (wire (pts (xy 76.2 130.81) (xy 76.2 133.35))
  2500. (stroke (width 0) (type default) (color 0 0 0 0))
  2501. (uuid 931f0535-5881-4b28-9a39-07bf637e2ec9)
  2502. )
  2503. (wire (pts (xy 139.7 102.87) (xy 149.86 102.87))
  2504. (stroke (width 0) (type default) (color 0 0 0 0))
  2505. (uuid 95a69561-0418-4ef4-b8f8-fff17d299c3a)
  2506. )
  2507. (wire (pts (xy 156.21 179.07) (xy 162.56 179.07))
  2508. (stroke (width 0) (type default) (color 0 0 0 0))
  2509. (uuid 972aeb97-238b-4b6a-8082-5ffa2c19b4f5)
  2510. )
  2511. (wire (pts (xy 40.64 158.75) (xy 40.64 160.02))
  2512. (stroke (width 0) (type default) (color 0 0 0 0))
  2513. (uuid 98f51f5d-88ef-49b9-a20f-fe32c3cacf46)
  2514. )
  2515. (wire (pts (xy 247.65 137.16) (xy 255.27 137.16))
  2516. (stroke (width 0) (type default) (color 0 0 0 0))
  2517. (uuid 9cc95975-965e-4b12-9e01-27665c42613d)
  2518. )
  2519. (wire (pts (xy 64.77 82.55) (xy 68.58 82.55))
  2520. (stroke (width 0) (type default) (color 0 0 0 0))
  2521. (uuid 9cdbd678-fe43-4017-89e4-cbe08879e271)
  2522. )
  2523. (wire (pts (xy 33.02 160.02) (xy 40.64 160.02))
  2524. (stroke (width 0) (type default) (color 0 0 0 0))
  2525. (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
  2526. )
  2527. (wire (pts (xy 68.58 80.01) (xy 68.58 71.12))
  2528. (stroke (width 0) (type default) (color 0 0 0 0))
  2529. (uuid a093ce52-8ed0-48e8-9488-e3ff6625ae2a)
  2530. )
  2531. (wire (pts (xy 92.71 27.94) (xy 92.71 19.05))
  2532. (stroke (width 0) (type default) (color 0 0 0 0))
  2533. (uuid a1737635-f721-4e76-bafc-1a88cd1f6654)
  2534. )
  2535. (wire (pts (xy 220.98 30.48) (xy 223.52 30.48))
  2536. (stroke (width 0) (type default) (color 0 0 0 0))
  2537. (uuid a31010c1-1452-4734-b445-35c653872929)
  2538. )
  2539. (wire (pts (xy 99.06 25.4) (xy 96.52 25.4))
  2540. (stroke (width 0) (type default) (color 0 0 0 0))
  2541. (uuid a6e464b2-6818-4a0e-9215-8abfad834fe5)
  2542. )
  2543. (wire (pts (xy 71.12 38.1) (xy 66.04 38.1))
  2544. (stroke (width 0) (type default) (color 0 0 0 0))
  2545. (uuid a76e775e-f8ae-44db-bc02-bd25e9909557)
  2546. )
  2547. (wire (pts (xy 210.82 30.48) (xy 210.82 35.56))
  2548. (stroke (width 0) (type default) (color 0 0 0 0))
  2549. (uuid a7a32dc9-7403-4187-b9da-00d116454b77)
  2550. )
  2551. (wire (pts (xy 71.12 30.48) (xy 66.04 30.48))
  2552. (stroke (width 0) (type default) (color 0 0 0 0))
  2553. (uuid a9768ece-d3da-4e22-ba74-f5732b8863ce)
  2554. )
  2555. (wire (pts (xy 45.72 125.73) (xy 50.8 125.73))
  2556. (stroke (width 0) (type default) (color 0 0 0 0))
  2557. (uuid af186015-d283-4209-aade-a247e5de01df)
  2558. )
  2559. (wire (pts (xy 139.7 99.06) (xy 139.7 102.87))
  2560. (stroke (width 0) (type default) (color 0 0 0 0))
  2561. (uuid b0e91245-e619-46e0-8c79-43598f45910e)
  2562. )
  2563. (wire (pts (xy 76.2 148.59) (xy 76.2 151.13))
  2564. (stroke (width 0) (type default) (color 0 0 0 0))
  2565. (uuid b326b989-7191-4b69-a3a7-f0fec7f92a02)
  2566. )
  2567. (wire (pts (xy 156.21 176.53) (xy 162.56 176.53))
  2568. (stroke (width 0) (type default) (color 0 0 0 0))
  2569. (uuid b485664f-e454-4615-9a44-7d047003f053)
  2570. )
  2571. (wire (pts (xy 41.91 90.17) (xy 41.91 92.71))
  2572. (stroke (width 0) (type default) (color 0 0 0 0))
  2573. (uuid b52c8390-8a42-45b3-af25-334ff274691b)
  2574. )
  2575. (wire (pts (xy 247.65 144.78) (xy 255.27 144.78))
  2576. (stroke (width 0) (type default) (color 0 0 0 0))
  2577. (uuid b659d838-f156-4cc3-993e-6ecbf11291a0)
  2578. )
  2579. (wire (pts (xy 88.9 30.48) (xy 92.71 30.48))
  2580. (stroke (width 0) (type default) (color 0 0 0 0))
  2581. (uuid b8fa1446-109a-4e27-8d7a-aa2b86a32706)
  2582. )
  2583. (wire (pts (xy 74.93 97.79) (xy 72.39 97.79))
  2584. (stroke (width 0) (type default) (color 0 0 0 0))
  2585. (uuid bb730b65-a8d7-4867-bafc-f20b14dd7d07)
  2586. )
  2587. (wire (pts (xy 33.02 176.53) (xy 40.64 176.53))
  2588. (stroke (width 0) (type default) (color 0 0 0 0))
  2589. (uuid be14b7fe-1976-4433-b004-673fe57424ca)
  2590. )
  2591. (wire (pts (xy 63.5 45.72) (xy 60.96 45.72))
  2592. (stroke (width 0) (type default) (color 0 0 0 0))
  2593. (uuid be792050-cc06-477b-a5d4-65cb74351d22)
  2594. )
  2595. (wire (pts (xy 40.64 160.02) (xy 57.15 160.02))
  2596. (stroke (width 0) (type default) (color 0 0 0 0))
  2597. (uuid bf0862f0-7b4d-4da4-a5e8-91a9bdbee56f)
  2598. )
  2599. (wire (pts (xy 46.99 100.33) (xy 41.91 100.33))
  2600. (stroke (width 0) (type default) (color 0 0 0 0))
  2601. (uuid c0a0ffc0-4ea1-42a1-99d9-6a77cd7ac577)
  2602. )
  2603. (wire (pts (xy 210.82 43.18) (xy 210.82 48.26))
  2604. (stroke (width 0) (type default) (color 0 0 0 0))
  2605. (uuid c14e162b-be03-4549-b20e-765ff32dd690)
  2606. )
  2607. (wire (pts (xy 76.2 168.91) (xy 68.58 168.91))
  2608. (stroke (width 0) (type default) (color 0 0 0 0))
  2609. (uuid c2afe911-c5cc-4c44-8b9e-210f5608c245)
  2610. )
  2611. (wire (pts (xy 46.99 82.55) (xy 41.91 82.55))
  2612. (stroke (width 0) (type default) (color 0 0 0 0))
  2613. (uuid c7f90d50-2a98-4d6b-b94e-1843ca36d2d2)
  2614. )
  2615. (wire (pts (xy 247.65 124.46) (xy 255.27 124.46))
  2616. (stroke (width 0) (type default) (color 0 0 0 0))
  2617. (uuid c8ca2d9b-237d-4a3b-8fe1-05ccf83c4aaa)
  2618. )
  2619. (wire (pts (xy 247.65 129.54) (xy 255.27 129.54))
  2620. (stroke (width 0) (type default) (color 0 0 0 0))
  2621. (uuid ca167c75-32b2-451a-859b-eef424c8ad6c)
  2622. )
  2623. (wire (pts (xy 40.64 168.91) (xy 40.64 160.02))
  2624. (stroke (width 0) (type default) (color 0 0 0 0))
  2625. (uuid cc5f502c-d197-4177-a104-84dac270a708)
  2626. )
  2627. (wire (pts (xy 247.65 152.4) (xy 255.27 152.4))
  2628. (stroke (width 0) (type default) (color 0 0 0 0))
  2629. (uuid cd4da435-e4b7-4f11-970f-f993b191fb30)
  2630. )
  2631. (wire (pts (xy 63.5 25.4) (xy 60.96 25.4))
  2632. (stroke (width 0) (type default) (color 0 0 0 0))
  2633. (uuid ce97abce-aca6-4c1b-a51c-5bc99e9b2d0a)
  2634. )
  2635. (wire (pts (xy 153.67 179.07) (xy 156.21 179.07))
  2636. (stroke (width 0) (type default) (color 0 0 0 0))
  2637. (uuid d1fbbf77-28ce-4b45-a374-d4952057888c)
  2638. )
  2639. (wire (pts (xy 40.64 176.53) (xy 40.64 168.91))
  2640. (stroke (width 0) (type default) (color 0 0 0 0))
  2641. (uuid d47505f1-5520-43a5-a724-9f7a5a862d2d)
  2642. )
  2643. (wire (pts (xy 264.16 30.48) (xy 264.16 35.56))
  2644. (stroke (width 0) (type default) (color 0 0 0 0))
  2645. (uuid d93fe09e-53c5-494a-bd17-7cad7cc57774)
  2646. )
  2647. (wire (pts (xy 39.37 97.79) (xy 36.83 97.79))
  2648. (stroke (width 0) (type default) (color 0 0 0 0))
  2649. (uuid da71bd65-9834-4bd5-a36c-00578b61cfc7)
  2650. )
  2651. (wire (pts (xy 36.83 95.25) (xy 39.37 95.25))
  2652. (stroke (width 0) (type default) (color 0 0 0 0))
  2653. (uuid dc92c41a-1881-4301-90d1-5fbc35c00da5)
  2654. )
  2655. (wire (pts (xy 208.28 104.14) (xy 210.82 104.14))
  2656. (stroke (width 0) (type default) (color 0 0 0 0))
  2657. (uuid dd3f588d-4ee9-4b6f-a0fa-334f47a709d0)
  2658. )
  2659. (wire (pts (xy 247.65 127) (xy 255.27 127))
  2660. (stroke (width 0) (type default) (color 0 0 0 0))
  2661. (uuid de04028b-b742-4a42-a045-7fec45155979)
  2662. )
  2663. (wire (pts (xy 274.32 30.48) (xy 276.86 30.48))
  2664. (stroke (width 0) (type default) (color 0 0 0 0))
  2665. (uuid dedb19e8-6bdc-4eb0-b26d-f054f369b30d)
  2666. )
  2667. (wire (pts (xy 64.77 80.01) (xy 68.58 80.01))
  2668. (stroke (width 0) (type default) (color 0 0 0 0))
  2669. (uuid def2a982-cb97-4383-bcf1-169bee5579bf)
  2670. )
  2671. (wire (pts (xy 76.2 138.43) (xy 76.2 140.97))
  2672. (stroke (width 0) (type default) (color 0 0 0 0))
  2673. (uuid e1700aa2-4af4-425f-8575-93d862812082)
  2674. )
  2675. (wire (pts (xy 154.94 142.24) (xy 158.75 142.24))
  2676. (stroke (width 0) (type default) (color 0 0 0 0))
  2677. (uuid e23b2afb-47f2-43f6-8967-caeeca3e302c)
  2678. )
  2679. (wire (pts (xy 41.91 71.12) (xy 41.91 77.47))
  2680. (stroke (width 0) (type default) (color 0 0 0 0))
  2681. (uuid e5a8adda-fe22-414b-856b-e41e1a69fa70)
  2682. )
  2683. (wire (pts (xy 271.78 22.86) (xy 276.86 22.86))
  2684. (stroke (width 0) (type default) (color 0 0 0 0))
  2685. (uuid e7c24a92-1bb1-4b79-acc0-5cefbe0870f3)
  2686. )
  2687. (wire (pts (xy 76.2 128.27) (xy 76.2 130.81))
  2688. (stroke (width 0) (type default) (color 0 0 0 0))
  2689. (uuid e9f57f40-05a8-41c4-883e-a4497caaa252)
  2690. )
  2691. (wire (pts (xy 41.91 77.47) (xy 41.91 80.01))
  2692. (stroke (width 0) (type default) (color 0 0 0 0))
  2693. (uuid f09363bf-3496-4374-9d2b-1173df594e77)
  2694. )
  2695. (wire (pts (xy 129.54 110.49) (xy 139.7 110.49))
  2696. (stroke (width 0) (type default) (color 0 0 0 0))
  2697. (uuid f235517c-8e0f-4cf2-af17-013ec727b082)
  2698. )
  2699. (wire (pts (xy 41.91 82.55) (xy 41.91 80.01))
  2700. (stroke (width 0) (type default) (color 0 0 0 0))
  2701. (uuid f377c8bf-43bd-4160-96e0-8000cc3f4084)
  2702. )
  2703. (wire (pts (xy 41.91 92.71) (xy 41.91 100.33))
  2704. (stroke (width 0) (type default) (color 0 0 0 0))
  2705. (uuid f481b3a9-ac06-466b-b22c-c69a25a0cea1)
  2706. )
  2707. (wire (pts (xy 72.39 87.63) (xy 74.93 87.63))
  2708. (stroke (width 0) (type default) (color 0 0 0 0))
  2709. (uuid f5747526-fb8c-44d1-ad90-201bbddd710e)
  2710. )
  2711. (wire (pts (xy 60.96 35.56) (xy 63.5 35.56))
  2712. (stroke (width 0) (type default) (color 0 0 0 0))
  2713. (uuid f7374db0-2e5c-4dc5-81ca-357127429aae)
  2714. )
  2715. (wire (pts (xy 76.2 143.51) (xy 76.2 148.59))
  2716. (stroke (width 0) (type default) (color 0 0 0 0))
  2717. (uuid f7d38bdc-bc45-4687-8c00-a70e51f9753f)
  2718. )
  2719. (wire (pts (xy 76.2 151.13) (xy 76.2 153.67))
  2720. (stroke (width 0) (type default) (color 0 0 0 0))
  2721. (uuid f9117aab-a2c0-4875-be69-1a7a3187c8fc)
  2722. )
  2723. (wire (pts (xy 26.67 35.56) (xy 26.67 33.02))
  2724. (stroke (width 0) (type default) (color 0 0 0 0))
  2725. (uuid f9eceb57-c0a4-4a9b-829c-1f580bc9e3ff)
  2726. )
  2727. (wire (pts (xy 66.04 27.94) (xy 71.12 27.94))
  2728. (stroke (width 0) (type default) (color 0 0 0 0))
  2729. (uuid fb0860b9-0152-461d-959a-76899ef6e393)
  2730. )
  2731. (wire (pts (xy 271.78 22.86) (xy 256.54 22.86))
  2732. (stroke (width 0) (type default) (color 0 0 0 0))
  2733. (uuid fd199201-2aad-4e05-a4d2-96469507f3d4)
  2734. )
  2735. (wire (pts (xy 66.04 43.18) (xy 66.04 48.26))
  2736. (stroke (width 0) (type default) (color 0 0 0 0))
  2737. (uuid ff6f95e6-c2ed-4846-a048-a6ca8b4e2466)
  2738. )
  2739. (text "© 2022 Tech by Androda, LLC\nLicensed Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)\nhttps://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"
  2740. (at 179.07 173.99 0)
  2741. (effects (font (size 1.27 1.27)) (justify left bottom))
  2742. (uuid 19031a68-6f7c-490b-9ac3-1a0fb5922fa3)
  2743. )
  2744. (text "November 2022" (at 205.74 194.31 0)
  2745. (effects (font (size 1.27 1.27)) (justify left bottom))
  2746. (uuid 4a62707e-7c1a-4a19-b9e8-5644f6594929)
  2747. )
  2748. (text "RUN is the RP2040 enable pin, and has an internal (on-chip) pull-up resistor\nto 3.3V of about ~50kΩ. To reset RP2040, short this pin low."
  2749. (at 271.78 165.1 0)
  2750. (effects (font (size 1.27 1.27)) (justify right bottom))
  2751. (uuid 9a739cc7-da91-4fc7-83a5-f1059d4404dd)
  2752. )
  2753. (text "Opt. PUP\nDidn't need them" (at 115.57 147.32 0)
  2754. (effects (font (size 1.27 1.27)) (justify left bottom))
  2755. (uuid bf25839a-3dc7-49e9-81be-8d36f4cd4d48)
  2756. )
  2757. (text "BlueSCSI V2, PowerBook V1" (at 186.69 190.5 0)
  2758. (effects (font (size 1.27 1.27)) (justify left bottom))
  2759. (uuid d044c8a6-f795-448f-8aaf-13c84dc7b52f)
  2760. )
  2761. (text "PDN Necessary" (at 115.57 171.45 0)
  2762. (effects (font (size 1.27 1.27)) (justify left bottom))
  2763. (uuid d43d35fd-6771-4904-972f-bf64b4f30bf3)
  2764. )
  2765. (text "1k Drain Resistors\nNecessary LVT, Omit LVTH" (at 265.43 44.45 0)
  2766. (effects (font (size 1.27 1.27)) (justify left bottom))
  2767. (uuid e7e2fd87-4cc1-490f-b5f2-c8f38d6f60b4)
  2768. )
  2769. (global_label "RST" (shape input) (at 36.83 87.63 180) (fields_autoplaced)
  2770. (effects (font (size 1.27 1.27)) (justify right))
  2771. (uuid 011a143c-d966-40ce-9f90-dc3f6cd84e99)
  2772. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -15.24 -8.89 0)
  2773. (effects (font (size 1.27 1.27)) hide)
  2774. )
  2775. )
  2776. (global_label "oSEL" (shape input) (at 119.38 140.97 180) (fields_autoplaced)
  2777. (effects (font (size 1.27 1.27)) (justify right))
  2778. (uuid 031ffac4-be21-4786-bdfc-732290128a66)
  2779. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.5201 140.8906 0)
  2780. (effects (font (size 1.27 1.27)) (justify right) hide)
  2781. )
  2782. )
  2783. (global_label "TRM_ON_J" (shape input) (at 24.13 31.75 180) (fields_autoplaced)
  2784. (effects (font (size 1.27 1.27)) (justify right))
  2785. (uuid 0333b164-c577-4cfa-a60c-6abe5d71ab59)
  2786. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 12.5529 31.6706 0)
  2787. (effects (font (size 1.27 1.27)) (justify right) hide)
  2788. )
  2789. )
  2790. (global_label "MSG" (shape input) (at 179.07 64.77 0) (fields_autoplaced)
  2791. (effects (font (size 1.27 1.27)) (justify left))
  2792. (uuid 059c25e8-9f7f-4c85-9a70-e8a5471cafb9)
  2793. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 288.29 129.54 0)
  2794. (effects (font (size 1.27 1.27)) hide)
  2795. )
  2796. )
  2797. (global_label "SEL" (shape input) (at 38.1 85.09 180) (fields_autoplaced)
  2798. (effects (font (size 1.27 1.27)) (justify right))
  2799. (uuid 0899ac55-bdfc-401a-947d-b75ecc833d5c)
  2800. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -13.97 -13.97 0)
  2801. (effects (font (size 1.27 1.27)) hide)
  2802. )
  2803. )
  2804. (global_label "SD_D1" (shape input) (at 231.14 82.55 180) (fields_autoplaced)
  2805. (effects (font (size 1.27 1.27)) (justify right))
  2806. (uuid 0b94303e-2968-4cd1-9ef1-d640517bee60)
  2807. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 222.8891 82.6294 0)
  2808. (effects (font (size 1.27 1.27)) (justify right) hide)
  2809. )
  2810. )
  2811. (global_label "oBSY" (shape input) (at 179.07 59.69 0) (fields_autoplaced)
  2812. (effects (font (size 1.27 1.27)) (justify left))
  2813. (uuid 0c84b5b1-6e46-404f-a7d6-077e58c2d473)
  2814. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.1113 59.7694 0)
  2815. (effects (font (size 1.27 1.27)) (justify left) hide)
  2816. )
  2817. )
  2818. (global_label "oRST" (shape input) (at 149.86 120.65 180) (fields_autoplaced)
  2819. (effects (font (size 1.27 1.27)) (justify right))
  2820. (uuid 0ef61284-adaf-497f-b0bb-574690efee2d)
  2821. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 142.9396 120.5706 0)
  2822. (effects (font (size 1.27 1.27)) (justify right) hide)
  2823. )
  2824. )
  2825. (global_label "iACK" (shape input) (at 162.56 179.07 0) (fields_autoplaced)
  2826. (effects (font (size 1.27 1.27)) (justify left))
  2827. (uuid 0f114ebb-3d40-4e3a-8e3a-7e7eed524a21)
  2828. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 169.1175 179.1494 0)
  2829. (effects (font (size 1.27 1.27)) (justify left) hide)
  2830. )
  2831. )
  2832. (global_label "SD_CLK" (shape input) (at 231.14 74.93 180) (fields_autoplaced)
  2833. (effects (font (size 1.27 1.27)) (justify right))
  2834. (uuid 104b4cd0-80d9-41d2-b4b2-5f526f6fa09e)
  2835. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 488.95 194.31 0)
  2836. (effects (font (size 1.27 1.27)) hide)
  2837. )
  2838. )
  2839. (global_label "MSG" (shape input) (at 100.33 161.29 0) (fields_autoplaced)
  2840. (effects (font (size 1.27 1.27)) (justify left))
  2841. (uuid 12f4270f-74f1-464b-87fe-df5e387afcf1)
  2842. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 269.24 0)
  2843. (effects (font (size 1.27 1.27)) hide)
  2844. )
  2845. )
  2846. (global_label "oIO" (shape input) (at 138.43 74.93 0) (fields_autoplaced)
  2847. (effects (font (size 1.27 1.27)) (justify left))
  2848. (uuid 1563acf3-e8fe-446d-9612-3253b52396e6)
  2849. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 143.8385 75.0094 0)
  2850. (effects (font (size 1.27 1.27)) (justify left) hide)
  2851. )
  2852. )
  2853. (global_label "DB1" (shape input) (at 203.2 33.02 0) (fields_autoplaced)
  2854. (effects (font (size 1.27 1.27)) (justify left))
  2855. (uuid 17e8c86e-663e-4db2-9ed1-3d633d484965)
  2856. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 226.06 -134.62 0)
  2857. (effects (font (size 1.27 1.27)) hide)
  2858. )
  2859. )
  2860. (global_label "REQ" (shape input) (at 138.43 87.63 0) (fields_autoplaced)
  2861. (effects (font (size 1.27 1.27)) (justify left))
  2862. (uuid 18447e00-40a4-4e22-a8b1-7c4a11cedd7d)
  2863. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 247.65 144.78 0)
  2864. (effects (font (size 1.27 1.27)) hide)
  2865. )
  2866. )
  2867. (global_label "CD" (shape input) (at 160.02 62.23 180) (fields_autoplaced)
  2868. (effects (font (size 1.27 1.27)) (justify right))
  2869. (uuid 1b60d9e2-9f95-4fe7-8022-5c9c115f33c1)
  2870. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.8 2.54 0)
  2871. (effects (font (size 1.27 1.27)) hide)
  2872. )
  2873. )
  2874. (global_label "DB1" (shape input) (at 99.06 33.02 0) (fields_autoplaced)
  2875. (effects (font (size 1.27 1.27)) (justify left))
  2876. (uuid 1ba79eea-7124-4c9c-8e47-15bfb1d458d3)
  2877. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.13 -15.24 0)
  2878. (effects (font (size 1.27 1.27)) hide)
  2879. )
  2880. )
  2881. (global_label "DB4" (shape input) (at 100.33 140.97 0) (fields_autoplaced)
  2882. (effects (font (size 1.27 1.27)) (justify left))
  2883. (uuid 1c524c50-ce73-499e-abe7-b70466b0da91)
  2884. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 205.74 0)
  2885. (effects (font (size 1.27 1.27)) hide)
  2886. )
  2887. )
  2888. (global_label "DB1T" (shape input) (at 262.89 149.86 0) (fields_autoplaced)
  2889. (effects (font (size 1.27 1.27)) (justify left))
  2890. (uuid 1cef1abf-5038-4426-9b4f-417cc082f136)
  2891. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 483.87 287.02 0)
  2892. (effects (font (size 1.27 1.27)) hide)
  2893. )
  2894. )
  2895. (global_label "DB2T" (shape input) (at 187.96 38.1 180) (fields_autoplaced)
  2896. (effects (font (size 1.27 1.27)) (justify right))
  2897. (uuid 1f925227-c5c5-45cf-ad9c-559f823505a9)
  2898. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 229.87 -132.08 0)
  2899. (effects (font (size 1.27 1.27)) hide)
  2900. )
  2901. )
  2902. (global_label "oREQ" (shape input) (at 138.43 82.55 0) (fields_autoplaced)
  2903. (effects (font (size 1.27 1.27)) (justify left))
  2904. (uuid 1fa0f19b-63ed-48bc-8817-e4f9a7e43ad5)
  2905. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 145.6528 82.6294 0)
  2906. (effects (font (size 1.27 1.27)) (justify left) hide)
  2907. )
  2908. )
  2909. (global_label "oIO" (shape input) (at 138.43 77.47 0) (fields_autoplaced)
  2910. (effects (font (size 1.27 1.27)) (justify left))
  2911. (uuid 205140b4-f5b4-476b-80bb-94da1c83b267)
  2912. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 143.8385 77.5494 0)
  2913. (effects (font (size 1.27 1.27)) (justify left) hide)
  2914. )
  2915. )
  2916. (global_label "oIO" (shape input) (at 210.82 124.46 180) (fields_autoplaced)
  2917. (effects (font (size 1.27 1.27)) (justify right))
  2918. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  2919. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.4115 124.3806 0)
  2920. (effects (font (size 1.27 1.27)) (justify right) hide)
  2921. )
  2922. )
  2923. (global_label "DB7T" (shape input) (at 241.3 38.1 180) (fields_autoplaced)
  2924. (effects (font (size 1.27 1.27)) (justify right))
  2925. (uuid 219a08ab-0348-40a3-8519-00630acae353)
  2926. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.21 -165.1 0)
  2927. (effects (font (size 1.27 1.27)) hide)
  2928. )
  2929. )
  2930. (global_label "oBSY" (shape input) (at 168.91 123.19 0) (fields_autoplaced)
  2931. (effects (font (size 1.27 1.27)) (justify left))
  2932. (uuid 24da7212-2900-4687-aeba-d9952285ef8b)
  2933. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.9513 123.2694 0)
  2934. (effects (font (size 1.27 1.27)) (justify left) hide)
  2935. )
  2936. )
  2937. (global_label "DB3" (shape input) (at 99.06 43.18 0) (fields_autoplaced)
  2938. (effects (font (size 1.27 1.27)) (justify left))
  2939. (uuid 25c5d19c-c320-4d69-97b2-cc03f0b14fc3)
  2940. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.13 -10.16 0)
  2941. (effects (font (size 1.27 1.27)) hide)
  2942. )
  2943. )
  2944. (global_label "DBPTr" (shape input) (at 119.38 167.64 180) (fields_autoplaced)
  2945. (effects (font (size 1.27 1.27)) (justify right))
  2946. (uuid 267dc307-3f82-4650-a39e-580011d87f57)
  2947. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 377.19 297.18 0)
  2948. (effects (font (size 1.27 1.27)) hide)
  2949. )
  2950. )
  2951. (global_label "SEL_BUFF" (shape input) (at 195.58 97.79 90) (fields_autoplaced)
  2952. (effects (font (size 1.27 1.27)) (justify left))
  2953. (uuid 2b03db56-24ac-41fa-86e5-7cd4bf2fea7a)
  2954. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.5006 86.3339 90)
  2955. (effects (font (size 1.27 1.27)) (justify left) hide)
  2956. )
  2957. )
  2958. (global_label "oMSG_iBSY" (shape input) (at 179.07 62.23 0) (fields_autoplaced)
  2959. (effects (font (size 1.27 1.27)) (justify left))
  2960. (uuid 2bdac67e-041d-4faa-9034-fb031e87e9af)
  2961. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 191.6147 62.3094 0)
  2962. (effects (font (size 1.27 1.27)) (justify left) hide)
  2963. )
  2964. )
  2965. (global_label "CD" (shape input) (at 74.93 87.63 0) (fields_autoplaced)
  2966. (effects (font (size 1.27 1.27)) (justify left))
  2967. (uuid 2c5b3967-6830-48cd-bd57-6064b8e93c60)
  2968. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127 194.31 0)
  2969. (effects (font (size 1.27 1.27)) hide)
  2970. )
  2971. )
  2972. (global_label "DBP" (shape input) (at 100.33 151.13 0) (fields_autoplaced)
  2973. (effects (font (size 1.27 1.27)) (justify left))
  2974. (uuid 319bae84-928c-4fdf-993a-7f5897f02973)
  2975. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 71.12 0)
  2976. (effects (font (size 1.27 1.27)) hide)
  2977. )
  2978. )
  2979. (global_label "BSY" (shape input) (at 168.91 125.73 0) (fields_autoplaced)
  2980. (effects (font (size 1.27 1.27)) (justify left))
  2981. (uuid 31cac8fe-2c43-4db3-a8c9-5f1fecf820c9)
  2982. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 278.13 198.12 0)
  2983. (effects (font (size 1.27 1.27)) hide)
  2984. )
  2985. )
  2986. (global_label "REQ" (shape input) (at 74.93 85.09 0) (fields_autoplaced)
  2987. (effects (font (size 1.27 1.27)) (justify left))
  2988. (uuid 31fbee47-8d9c-40a6-b87f-380efac36f61)
  2989. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127 194.31 0)
  2990. (effects (font (size 1.27 1.27)) hide)
  2991. )
  2992. )
  2993. (global_label "ACK" (shape input) (at 149.86 128.27 180) (fields_autoplaced)
  2994. (effects (font (size 1.27 1.27)) (justify right))
  2995. (uuid 36c07ff5-fde1-4350-944e-70db62bde85e)
  2996. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 40.64 58.42 0)
  2997. (effects (font (size 1.27 1.27)) hide)
  2998. )
  2999. )
  3000. (global_label "iRST" (shape input) (at 179.07 72.39 0) (fields_autoplaced)
  3001. (effects (font (size 1.27 1.27)) (justify left))
  3002. (uuid 3cc41b11-8798-4864-9c24-cf8610210e0d)
  3003. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.4461 72.4694 0)
  3004. (effects (font (size 1.27 1.27)) (justify left) hide)
  3005. )
  3006. )
  3007. (global_label "oBSY" (shape input) (at 160.02 57.15 180) (fields_autoplaced)
  3008. (effects (font (size 1.27 1.27)) (justify right))
  3009. (uuid 3f70e57f-205d-4dfb-8426-0a18c8c519bf)
  3010. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.9787 57.0706 0)
  3011. (effects (font (size 1.27 1.27)) (justify right) hide)
  3012. )
  3013. )
  3014. (global_label "DB4" (shape input) (at 256.54 27.94 0) (fields_autoplaced)
  3015. (effects (font (size 1.27 1.27)) (justify left))
  3016. (uuid 3fdbf6ad-6e7a-4ac4-848f-641dbc407e53)
  3017. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 279.4 -157.48 0)
  3018. (effects (font (size 1.27 1.27)) hide)
  3019. )
  3020. )
  3021. (global_label "DBP" (shape input) (at 60.96 25.4 180) (fields_autoplaced)
  3022. (effects (font (size 1.27 1.27)) (justify right))
  3023. (uuid 4255f764-d736-4e00-8d8a-38f52c898c6a)
  3024. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 8.89 91.44 0)
  3025. (effects (font (size 1.27 1.27)) hide)
  3026. )
  3027. )
  3028. (global_label "RST" (shape input) (at 149.86 123.19 180) (fields_autoplaced)
  3029. (effects (font (size 1.27 1.27)) (justify right))
  3030. (uuid 4303764e-580d-45a7-87a9-31884874ba2e)
  3031. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 40.64 55.88 0)
  3032. (effects (font (size 1.27 1.27)) hide)
  3033. )
  3034. )
  3035. (global_label "DB7" (shape input) (at 100.33 148.59 0) (fields_autoplaced)
  3036. (effects (font (size 1.27 1.27)) (justify left))
  3037. (uuid 443bc5fd-9b74-4e4f-aa44-11bad7a68bbd)
  3038. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 200.66 0)
  3039. (effects (font (size 1.27 1.27)) hide)
  3040. )
  3041. )
  3042. (global_label "RST" (shape input) (at 179.07 69.85 0) (fields_autoplaced)
  3043. (effects (font (size 1.27 1.27)) (justify left))
  3044. (uuid 466fec18-55f4-4810-b4e1-2616a1dc7ea7)
  3045. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 288.29 137.16 0)
  3046. (effects (font (size 1.27 1.27)) hide)
  3047. )
  3048. )
  3049. (global_label "oBSY" (shape input) (at 149.86 125.73 180) (fields_autoplaced)
  3050. (effects (font (size 1.27 1.27)) (justify right))
  3051. (uuid 46864922-c2ed-496a-aeb3-9891f4eff2ed)
  3052. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 142.8187 125.6506 0)
  3053. (effects (font (size 1.27 1.27)) (justify right) hide)
  3054. )
  3055. )
  3056. (global_label "REQ" (shape input) (at 100.33 168.91 0) (fields_autoplaced)
  3057. (effects (font (size 1.27 1.27)) (justify left))
  3058. (uuid 479eb8e7-211f-4763-9235-bfeeb5e7abe0)
  3059. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 281.94 0)
  3060. (effects (font (size 1.27 1.27)) hide)
  3061. )
  3062. )
  3063. (global_label "DBPTr" (shape input) (at 187.96 22.86 180) (fields_autoplaced)
  3064. (effects (font (size 1.27 1.27)) (justify right))
  3065. (uuid 48d7ef29-4098-47e0-879b-0cd3c5101022)
  3066. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 165.1 238.76 0)
  3067. (effects (font (size 1.27 1.27)) hide)
  3068. )
  3069. )
  3070. (global_label "IO" (shape input) (at 76.2 166.37 180) (fields_autoplaced)
  3071. (effects (font (size 1.27 1.27)) (justify right))
  3072. (uuid 4903573b-8416-4f63-9833-311e58d55191)
  3073. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -36.83 63.5 0)
  3074. (effects (font (size 1.27 1.27)) hide)
  3075. )
  3076. )
  3077. (global_label "oBSY" (shape input) (at 168.91 120.65 0) (fields_autoplaced)
  3078. (effects (font (size 1.27 1.27)) (justify left))
  3079. (uuid 4a989a54-f982-4545-ac20-f7da0768f1ac)
  3080. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.9513 120.7294 0)
  3081. (effects (font (size 1.27 1.27)) (justify left) hide)
  3082. )
  3083. )
  3084. (global_label "DB7T" (shape input) (at 262.89 129.54 0) (fields_autoplaced)
  3085. (effects (font (size 1.27 1.27)) (justify left))
  3086. (uuid 53a1144a-4e4d-4cf8-a294-6a1d1f3c33b4)
  3087. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 483.87 233.68 0)
  3088. (effects (font (size 1.27 1.27)) hide)
  3089. )
  3090. )
  3091. (global_label "SERIAL_OUT" (shape input) (at 210.82 99.06 0) (fields_autoplaced)
  3092. (effects (font (size 1.27 1.27)) (justify left))
  3093. (uuid 5463b466-e807-4776-b9c3-7c7938ee7c15)
  3094. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 224.0904 98.9806 0)
  3095. (effects (font (size 1.27 1.27)) (justify left) hide)
  3096. )
  3097. )
  3098. (global_label "RST" (shape input) (at 179.07 67.31 0) (fields_autoplaced)
  3099. (effects (font (size 1.27 1.27)) (justify left))
  3100. (uuid 59800730-8d49-40a9-96f4-864143705858)
  3101. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 288.29 134.62 0)
  3102. (effects (font (size 1.27 1.27)) hide)
  3103. )
  3104. )
  3105. (global_label "DB7" (shape input) (at 60.96 33.02 180) (fields_autoplaced)
  3106. (effects (font (size 1.27 1.27)) (justify right))
  3107. (uuid 5bd70c8a-b3b7-4357-b86c-7eb454aa1964)
  3108. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 8.89 96.52 0)
  3109. (effects (font (size 1.27 1.27)) hide)
  3110. )
  3111. )
  3112. (global_label "SD_D0_MISO" (shape input) (at 247.65 114.3 0) (fields_autoplaced)
  3113. (effects (font (size 1.27 1.27)) (justify left))
  3114. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  3115. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 261.4647 114.2206 0)
  3116. (effects (font (size 1.27 1.27)) (justify left) hide)
  3117. )
  3118. )
  3119. (global_label "DB2" (shape input) (at 99.06 35.56 0) (fields_autoplaced)
  3120. (effects (font (size 1.27 1.27)) (justify left))
  3121. (uuid 5f0b5f28-4580-4d2a-b1d0-1efbd01be54d)
  3122. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.13 -15.24 0)
  3123. (effects (font (size 1.27 1.27)) hide)
  3124. )
  3125. )
  3126. (global_label "DB5T" (shape input) (at 241.3 30.48 180) (fields_autoplaced)
  3127. (effects (font (size 1.27 1.27)) (justify right))
  3128. (uuid 5f3fa2ee-8dae-444d-98b4-01a30508ae0f)
  3129. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.21 -157.48 0)
  3130. (effects (font (size 1.27 1.27)) hide)
  3131. )
  3132. )
  3133. (global_label "SEL" (shape input) (at 100.33 163.83 0) (fields_autoplaced)
  3134. (effects (font (size 1.27 1.27)) (justify left))
  3135. (uuid 61c81507-44e9-41f7-ae59-bfad6599c0ef)
  3136. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 248.92 0)
  3137. (effects (font (size 1.27 1.27)) hide)
  3138. )
  3139. )
  3140. (global_label "DB5" (shape input) (at 256.54 33.02 0) (fields_autoplaced)
  3141. (effects (font (size 1.27 1.27)) (justify left))
  3142. (uuid 627f88bc-fac9-43d2-b2b5-8de67eb67aca)
  3143. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 279.4 -154.94 0)
  3144. (effects (font (size 1.27 1.27)) hide)
  3145. )
  3146. )
  3147. (global_label "DB4" (shape input) (at 99.06 45.72 0) (fields_autoplaced)
  3148. (effects (font (size 1.27 1.27)) (justify left))
  3149. (uuid 63965aff-e125-438e-96d8-deab5c44f09b)
  3150. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.13 -10.16 0)
  3151. (effects (font (size 1.27 1.27)) hide)
  3152. )
  3153. )
  3154. (global_label "SERIAL_OUT" (shape input) (at 168.91 91.44 0) (fields_autoplaced)
  3155. (effects (font (size 1.27 1.27)) (justify left))
  3156. (uuid 647b30ef-7c5a-4bca-b083-f55e32fc2e26)
  3157. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 182.1804 91.3606 0)
  3158. (effects (font (size 1.27 1.27)) (justify left) hide)
  3159. )
  3160. )
  3161. (global_label "DB2" (shape input) (at 203.2 40.64 0) (fields_autoplaced)
  3162. (effects (font (size 1.27 1.27)) (justify left))
  3163. (uuid 67aa1965-d6d5-40a9-8fc6-2f32f96cdbf9)
  3164. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 226.06 -129.54 0)
  3165. (effects (font (size 1.27 1.27)) hide)
  3166. )
  3167. )
  3168. (global_label "oSEL" (shape input) (at 160.02 67.31 180) (fields_autoplaced)
  3169. (effects (font (size 1.27 1.27)) (justify right))
  3170. (uuid 6902bfbe-c625-413b-9cad-fbcf546039a4)
  3171. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.1601 67.2306 0)
  3172. (effects (font (size 1.27 1.27)) (justify right) hide)
  3173. )
  3174. )
  3175. (global_label "ATN" (shape input) (at 76.2 156.21 180) (fields_autoplaced)
  3176. (effects (font (size 1.27 1.27)) (justify right))
  3177. (uuid 6c8999fa-b129-4520-a180-0a73ed45b72e)
  3178. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -36.83 60.96 0)
  3179. (effects (font (size 1.27 1.27)) hide)
  3180. )
  3181. )
  3182. (global_label "DB5" (shape input) (at 60.96 45.72 180) (fields_autoplaced)
  3183. (effects (font (size 1.27 1.27)) (justify right))
  3184. (uuid 6dad3d5f-3089-4254-9362-e641c3fcca9a)
  3185. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 8.89 104.14 0)
  3186. (effects (font (size 1.27 1.27)) hide)
  3187. )
  3188. )
  3189. (global_label "SD_D3_CS" (shape input) (at 247.65 104.14 0) (fields_autoplaced)
  3190. (effects (font (size 1.27 1.27)) (justify left))
  3191. (uuid 6e31c9ec-6377-4b60-9bd1-f98b587cfcf1)
  3192. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 259.348 104.0606 0)
  3193. (effects (font (size 1.27 1.27)) (justify left) hide)
  3194. )
  3195. )
  3196. (global_label "TRM_ON_J" (shape input) (at 88.9 50.8 0) (fields_autoplaced)
  3197. (effects (font (size 1.27 1.27)) (justify left))
  3198. (uuid 6eab83fe-4685-4ef3-a4b2-7cf776f8df6e)
  3199. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 100.4771 50.8794 0)
  3200. (effects (font (size 1.27 1.27)) (justify left) hide)
  3201. )
  3202. )
  3203. (global_label "CD" (shape input) (at 100.33 166.37 0) (fields_autoplaced)
  3204. (effects (font (size 1.27 1.27)) (justify left))
  3205. (uuid 6ee39f9a-55b4-421b-8391-af99f02c3b4d)
  3206. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 271.78 0)
  3207. (effects (font (size 1.27 1.27)) hide)
  3208. )
  3209. )
  3210. (global_label "oMSG_iBSY" (shape input) (at 193.04 116.84 180) (fields_autoplaced)
  3211. (effects (font (size 1.27 1.27)) (justify right))
  3212. (uuid 72541aaf-22f0-4215-be41-c92f98991b37)
  3213. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.4953 116.7606 0)
  3214. (effects (font (size 1.27 1.27)) (justify right) hide)
  3215. )
  3216. )
  3217. (global_label "BSY" (shape input) (at 119.38 82.55 180) (fields_autoplaced)
  3218. (effects (font (size 1.27 1.27)) (justify right))
  3219. (uuid 75498b8b-b6a6-401e-b1c3-34599c0902c9)
  3220. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 10.16 10.16 0)
  3221. (effects (font (size 1.27 1.27)) hide)
  3222. )
  3223. )
  3224. (global_label "DB6" (shape input) (at 100.33 146.05 0) (fields_autoplaced)
  3225. (effects (font (size 1.27 1.27)) (justify left))
  3226. (uuid 758f88cf-7e5f-429c-a223-7208e7513a45)
  3227. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 203.2 0)
  3228. (effects (font (size 1.27 1.27)) hide)
  3229. )
  3230. )
  3231. (global_label "SD_CMD_MOSI" (shape input) (at 231.14 67.31 180) (fields_autoplaced)
  3232. (effects (font (size 1.27 1.27)) (justify right))
  3233. (uuid 7c751d0e-4a96-4b7b-84aa-52c0e549591b)
  3234. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 215.8134 67.3894 0)
  3235. (effects (font (size 1.27 1.27)) (justify right) hide)
  3236. )
  3237. )
  3238. (global_label "DB3" (shape input) (at 203.2 45.72 0) (fields_autoplaced)
  3239. (effects (font (size 1.27 1.27)) (justify left))
  3240. (uuid 7c9b296d-8440-47f8-b369-6dd07bef3f16)
  3241. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 226.06 -129.54 0)
  3242. (effects (font (size 1.27 1.27)) hide)
  3243. )
  3244. )
  3245. (global_label "SEL" (shape input) (at 160.02 69.85 180) (fields_autoplaced)
  3246. (effects (font (size 1.27 1.27)) (justify right))
  3247. (uuid 7d3016df-cdaf-4e50-a2d2-51ef129ae43c)
  3248. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.8 7.62 0)
  3249. (effects (font (size 1.27 1.27)) hide)
  3250. )
  3251. )
  3252. (global_label "DB0T" (shape input) (at 187.96 25.4 180) (fields_autoplaced)
  3253. (effects (font (size 1.27 1.27)) (justify right))
  3254. (uuid 80b403f5-ae98-486a-8793-3a6613297718)
  3255. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 229.87 -134.62 0)
  3256. (effects (font (size 1.27 1.27)) hide)
  3257. )
  3258. )
  3259. (global_label "BSY" (shape input) (at 74.93 97.79 0) (fields_autoplaced)
  3260. (effects (font (size 1.27 1.27)) (justify left))
  3261. (uuid 81140ebe-376d-4e5f-8cbe-28278a63a561)
  3262. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127 199.39 0)
  3263. (effects (font (size 1.27 1.27)) hide)
  3264. )
  3265. )
  3266. (global_label "DBPTr" (shape input) (at 255.27 124.46 0) (fields_autoplaced)
  3267. (effects (font (size 1.27 1.27)) (justify left))
  3268. (uuid 82c92ede-d3d4-481e-bc1b-cb94b4f02ca8)
  3269. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -2.54 -5.08 0)
  3270. (effects (font (size 1.27 1.27)) hide)
  3271. )
  3272. )
  3273. (global_label "oCD_iSEL" (shape input) (at 160.02 59.69 180) (fields_autoplaced)
  3274. (effects (font (size 1.27 1.27)) (justify right))
  3275. (uuid 8c222808-bd60-4612-9cf4-ba9b11c8061a)
  3276. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 149.0477 59.6106 0)
  3277. (effects (font (size 1.27 1.27)) (justify right) hide)
  3278. )
  3279. )
  3280. (global_label "SD_CMD_MOSI" (shape input) (at 247.65 116.84 0) (fields_autoplaced)
  3281. (effects (font (size 1.27 1.27)) (justify left))
  3282. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  3283. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 262.9766 116.7606 0)
  3284. (effects (font (size 1.27 1.27)) (justify left) hide)
  3285. )
  3286. )
  3287. (global_label "iRST" (shape input) (at 210.82 119.38 180) (fields_autoplaced)
  3288. (effects (font (size 1.27 1.27)) (justify right))
  3289. (uuid 905fd4e5-8e99-493d-92d1-d89410ac3fc4)
  3290. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.4439 119.3006 0)
  3291. (effects (font (size 1.27 1.27)) (justify right) hide)
  3292. )
  3293. )
  3294. (global_label "SEL_BUFF" (shape input) (at 119.38 77.47 180) (fields_autoplaced)
  3295. (effects (font (size 1.27 1.27)) (justify right))
  3296. (uuid 909ed21e-af82-4886-bae1-ee31cd9f335e)
  3297. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 107.9239 77.5494 0)
  3298. (effects (font (size 1.27 1.27)) (justify right) hide)
  3299. )
  3300. )
  3301. (global_label "DB6T" (shape input) (at 262.89 132.08 0) (fields_autoplaced)
  3302. (effects (font (size 1.27 1.27)) (justify left))
  3303. (uuid 97859ada-005b-435a-bbb4-521298af4cbc)
  3304. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 483.87 233.68 0)
  3305. (effects (font (size 1.27 1.27)) hide)
  3306. )
  3307. )
  3308. (global_label "DB6T" (shape input) (at 241.3 35.56 180) (fields_autoplaced)
  3309. (effects (font (size 1.27 1.27)) (justify right))
  3310. (uuid 9a8a619f-c745-4ccc-88cf-49846ff7e244)
  3311. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.21 -162.56 0)
  3312. (effects (font (size 1.27 1.27)) hide)
  3313. )
  3314. )
  3315. (global_label "iACK" (shape input) (at 149.86 130.81 180) (fields_autoplaced)
  3316. (effects (font (size 1.27 1.27)) (justify right))
  3317. (uuid 9c74d25f-81a0-4b66-bbd6-6a15dd995bd0)
  3318. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 143.3025 130.7306 0)
  3319. (effects (font (size 1.27 1.27)) (justify right) hide)
  3320. )
  3321. )
  3322. (global_label "iATN" (shape input) (at 210.82 137.16 180) (fields_autoplaced)
  3323. (effects (font (size 1.27 1.27)) (justify right))
  3324. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  3325. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.5044 137.0806 0)
  3326. (effects (font (size 1.27 1.27)) (justify right) hide)
  3327. )
  3328. )
  3329. (global_label "oRST" (shape input) (at 149.86 118.11 180) (fields_autoplaced)
  3330. (effects (font (size 1.27 1.27)) (justify right))
  3331. (uuid 9f0159bc-a322-46a7-81f9-2f2f822c738a)
  3332. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 142.9396 118.0306 0)
  3333. (effects (font (size 1.27 1.27)) (justify right) hide)
  3334. )
  3335. )
  3336. (global_label "MSG" (shape input) (at 74.93 95.25 0) (fields_autoplaced)
  3337. (effects (font (size 1.27 1.27)) (justify left))
  3338. (uuid 9f02ff99-50b4-4efa-a8c3-586b43223f1e)
  3339. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127 199.39 0)
  3340. (effects (font (size 1.27 1.27)) hide)
  3341. )
  3342. )
  3343. (global_label "SD_D1" (shape input) (at 247.65 111.76 0) (fields_autoplaced)
  3344. (effects (font (size 1.27 1.27)) (justify left))
  3345. (uuid a0bdc364-8100-422f-80a0-5c8d5789da1e)
  3346. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 255.9009 111.6806 0)
  3347. (effects (font (size 1.27 1.27)) (justify left) hide)
  3348. )
  3349. )
  3350. (global_label "oSEL" (shape input) (at 210.82 114.3 180) (fields_autoplaced)
  3351. (effects (font (size 1.27 1.27)) (justify right))
  3352. (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714)
  3353. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.9601 114.2206 0)
  3354. (effects (font (size 1.27 1.27)) (justify right) hide)
  3355. )
  3356. )
  3357. (global_label "TRM_ON_J" (shape input) (at 64.77 102.87 0) (fields_autoplaced)
  3358. (effects (font (size 1.27 1.27)) (justify left))
  3359. (uuid a25d4883-3575-42f4-86b4-497fe73d15f0)
  3360. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.3471 102.9494 0)
  3361. (effects (font (size 1.27 1.27)) (justify left) hide)
  3362. )
  3363. )
  3364. (global_label "ACK" (shape input) (at 36.83 95.25 180) (fields_autoplaced)
  3365. (effects (font (size 1.27 1.27)) (justify right))
  3366. (uuid a49edd88-1d39-4053-a6ec-5161ef62ea8f)
  3367. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -15.24 1.27 0)
  3368. (effects (font (size 1.27 1.27)) hide)
  3369. )
  3370. )
  3371. (global_label "DB5" (shape input) (at 100.33 143.51 0) (fields_autoplaced)
  3372. (effects (font (size 1.27 1.27)) (justify left))
  3373. (uuid a7402e20-6787-427e-b4f1-b35e7eea713b)
  3374. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 205.74 0)
  3375. (effects (font (size 1.27 1.27)) hide)
  3376. )
  3377. )
  3378. (global_label "DB5T" (shape input) (at 262.89 137.16 0) (fields_autoplaced)
  3379. (effects (font (size 1.27 1.27)) (justify left))
  3380. (uuid a75fc903-c39d-4ae7-92ef-b93e1a7376d3)
  3381. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 483.87 236.22 0)
  3382. (effects (font (size 1.27 1.27)) hide)
  3383. )
  3384. )
  3385. (global_label "oSEL" (shape input) (at 160.02 64.77 180) (fields_autoplaced)
  3386. (effects (font (size 1.27 1.27)) (justify right))
  3387. (uuid a8df97fe-19c3-4bc7-9c87-c6a29fd48d2b)
  3388. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.1601 64.6906 0)
  3389. (effects (font (size 1.27 1.27)) (justify right) hide)
  3390. )
  3391. )
  3392. (global_label "SD_D0_MISO" (shape input) (at 231.14 80.01 180) (fields_autoplaced)
  3393. (effects (font (size 1.27 1.27)) (justify right))
  3394. (uuid ac0286b6-2487-4507-bf24-7e7d56ee05e1)
  3395. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 217.3253 80.0894 0)
  3396. (effects (font (size 1.27 1.27)) (justify right) hide)
  3397. )
  3398. )
  3399. (global_label "DBPT" (shape input) (at 241.3 43.18 180) (fields_autoplaced)
  3400. (effects (font (size 1.27 1.27)) (justify right))
  3401. (uuid ad596536-c700-4428-a6a5-f14b6017358d)
  3402. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.21 -170.18 0)
  3403. (effects (font (size 1.27 1.27)) hide)
  3404. )
  3405. )
  3406. (global_label "SD_D2" (shape input) (at 247.65 106.68 0) (fields_autoplaced)
  3407. (effects (font (size 1.27 1.27)) (justify left))
  3408. (uuid ae2de278-d81f-4738-9940-fd65e33b1735)
  3409. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 255.9009 106.6006 0)
  3410. (effects (font (size 1.27 1.27)) (justify left) hide)
  3411. )
  3412. )
  3413. (global_label "oREQ" (shape input) (at 138.43 85.09 0) (fields_autoplaced)
  3414. (effects (font (size 1.27 1.27)) (justify left))
  3415. (uuid af007f4a-bc02-4a41-9a1d-6f63c5399691)
  3416. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 145.6528 85.1694 0)
  3417. (effects (font (size 1.27 1.27)) (justify left) hide)
  3418. )
  3419. )
  3420. (global_label "DB3" (shape input) (at 100.33 138.43 0) (fields_autoplaced)
  3421. (effects (font (size 1.27 1.27)) (justify left))
  3422. (uuid af1ec9b8-750b-42a9-ad57-0d91bf781e10)
  3423. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 205.74 0)
  3424. (effects (font (size 1.27 1.27)) hide)
  3425. )
  3426. )
  3427. (global_label "SD_CLK" (shape input) (at 247.65 119.38 0) (fields_autoplaced)
  3428. (effects (font (size 1.27 1.27)) (justify left))
  3429. (uuid b0054ce1-b60e-41de-a6a2-bf712784dd39)
  3430. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -10.16 0 0)
  3431. (effects (font (size 1.27 1.27)) hide)
  3432. )
  3433. )
  3434. (global_label "DB2T" (shape input) (at 262.89 144.78 0) (fields_autoplaced)
  3435. (effects (font (size 1.27 1.27)) (justify left))
  3436. (uuid b13745b0-d58c-43b1-b13f-c7962ef4a3fe)
  3437. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 5.08 40.64 0)
  3438. (effects (font (size 1.27 1.27)) hide)
  3439. )
  3440. )
  3441. (global_label "oCD_iSEL" (shape input) (at 191.77 105.41 180) (fields_autoplaced)
  3442. (effects (font (size 1.27 1.27)) (justify right))
  3443. (uuid b2774bbd-5032-43fb-ae9e-6aeb238fa843)
  3444. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.7977 105.3306 0)
  3445. (effects (font (size 1.27 1.27)) (justify right) hide)
  3446. )
  3447. )
  3448. (global_label "SD_D3_CS" (shape input) (at 231.14 64.77 180) (fields_autoplaced)
  3449. (effects (font (size 1.27 1.27)) (justify right))
  3450. (uuid b2b5e1ed-d441-4e41-a7e5-53717989c74c)
  3451. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 219.442 64.8494 0)
  3452. (effects (font (size 1.27 1.27)) (justify right) hide)
  3453. )
  3454. )
  3455. (global_label "oBSY" (shape input) (at 210.82 132.08 180) (fields_autoplaced)
  3456. (effects (font (size 1.27 1.27)) (justify right))
  3457. (uuid ba537eed-9654-4a2e-95de-f322dd620506)
  3458. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.7787 132.0006 0)
  3459. (effects (font (size 1.27 1.27)) (justify right) hide)
  3460. )
  3461. )
  3462. (global_label "DB0" (shape input) (at 203.2 27.94 0) (fields_autoplaced)
  3463. (effects (font (size 1.27 1.27)) (justify left))
  3464. (uuid baa4af62-f647-4fd0-bb56-55815b29ba85)
  3465. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 226.06 -132.08 0)
  3466. (effects (font (size 1.27 1.27)) hide)
  3467. )
  3468. )
  3469. (global_label "TRM_ON_J" (shape input) (at 46.99 74.93 180) (fields_autoplaced)
  3470. (effects (font (size 1.27 1.27)) (justify right))
  3471. (uuid bd219ffc-2932-43d3-a162-11744dbe1adf)
  3472. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 35.4129 74.8506 0)
  3473. (effects (font (size 1.27 1.27)) (justify right) hide)
  3474. )
  3475. )
  3476. (global_label "BSY_BUFF" (shape input) (at 119.38 85.09 180) (fields_autoplaced)
  3477. (effects (font (size 1.27 1.27)) (justify right))
  3478. (uuid be3bc0f7-9538-4e5a-92c3-7197e0f5e4b5)
  3479. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 107.7425 85.0106 0)
  3480. (effects (font (size 1.27 1.27)) (justify right) hide)
  3481. )
  3482. )
  3483. (global_label "DB0" (shape input) (at 99.06 25.4 0) (fields_autoplaced)
  3484. (effects (font (size 1.27 1.27)) (justify left))
  3485. (uuid c0bdf3ee-d2e9-4242-970a-067818f7dbb8)
  3486. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.13 -20.32 0)
  3487. (effects (font (size 1.27 1.27)) hide)
  3488. )
  3489. )
  3490. (global_label "DB3T" (shape input) (at 262.89 142.24 0) (fields_autoplaced)
  3491. (effects (font (size 1.27 1.27)) (justify left))
  3492. (uuid c258dfa6-516e-4dab-9259-d1c9077c9383)
  3493. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 5.08 35.56 0)
  3494. (effects (font (size 1.27 1.27)) hide)
  3495. )
  3496. )
  3497. (global_label "DB1T" (shape input) (at 187.96 30.48 180) (fields_autoplaced)
  3498. (effects (font (size 1.27 1.27)) (justify right))
  3499. (uuid c269b27f-83b9-42a8-a1f0-d45467b14afd)
  3500. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 229.87 -137.16 0)
  3501. (effects (font (size 1.27 1.27)) hide)
  3502. )
  3503. )
  3504. (global_label "oBSY" (shape input) (at 119.38 162.56 180) (fields_autoplaced)
  3505. (effects (font (size 1.27 1.27)) (justify right))
  3506. (uuid c33b0b2c-f098-4b32-9443-e44b88f2946d)
  3507. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.3387 162.4806 0)
  3508. (effects (font (size 1.27 1.27)) (justify right) hide)
  3509. )
  3510. )
  3511. (global_label "DB6" (shape input) (at 256.54 38.1 0) (fields_autoplaced)
  3512. (effects (font (size 1.27 1.27)) (justify left))
  3513. (uuid c45edb97-0660-45c0-b9bd-6c9185a1316f)
  3514. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 279.4 -160.02 0)
  3515. (effects (font (size 1.27 1.27)) hide)
  3516. )
  3517. )
  3518. (global_label "IO" (shape input) (at 74.93 77.47 0) (fields_autoplaced)
  3519. (effects (font (size 1.27 1.27)) (justify left))
  3520. (uuid c4cf604c-9096-4888-b760-713f393b046c)
  3521. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 127 189.23 0)
  3522. (effects (font (size 1.27 1.27)) hide)
  3523. )
  3524. )
  3525. (global_label "SEL" (shape input) (at 119.38 74.93 180) (fields_autoplaced)
  3526. (effects (font (size 1.27 1.27)) (justify right))
  3527. (uuid c62e5c85-c38f-444f-afbe-fbff3a892e13)
  3528. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 10.16 12.7 0)
  3529. (effects (font (size 1.27 1.27)) hide)
  3530. )
  3531. )
  3532. (global_label "iATN" (shape input) (at 168.91 133.35 0) (fields_autoplaced)
  3533. (effects (font (size 1.27 1.27)) (justify left))
  3534. (uuid c72cafcc-b25b-4a92-9aba-0a621414dcdb)
  3535. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.2256 133.4294 0)
  3536. (effects (font (size 1.27 1.27)) (justify left) hide)
  3537. )
  3538. )
  3539. (global_label "RST" (shape input) (at 76.2 161.29 180) (fields_autoplaced)
  3540. (effects (font (size 1.27 1.27)) (justify right))
  3541. (uuid c7424e6a-ab9f-4893-898d-ef06bcbee898)
  3542. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -36.83 63.5 0)
  3543. (effects (font (size 1.27 1.27)) hide)
  3544. )
  3545. )
  3546. (global_label "DBPT" (shape input) (at 262.89 127 0) (fields_autoplaced)
  3547. (effects (font (size 1.27 1.27)) (justify left))
  3548. (uuid c78c5dad-e67e-4be9-adf4-b6891814b87e)
  3549. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 5.08 15.24 0)
  3550. (effects (font (size 1.27 1.27)) hide)
  3551. )
  3552. )
  3553. (global_label "oRST" (shape input) (at 154.94 142.24 180) (fields_autoplaced)
  3554. (effects (font (size 1.27 1.27)) (justify right))
  3555. (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a)
  3556. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 148.0196 142.1606 0)
  3557. (effects (font (size 1.27 1.27)) (justify right) hide)
  3558. )
  3559. )
  3560. (global_label "TRM_ON_J" (shape input) (at 71.12 22.86 180) (fields_autoplaced)
  3561. (effects (font (size 1.27 1.27)) (justify right))
  3562. (uuid cb48a116-aeba-4633-98fe-83df2f26a0a1)
  3563. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 59.5429 22.7806 0)
  3564. (effects (font (size 1.27 1.27)) (justify right) hide)
  3565. )
  3566. )
  3567. (global_label "oREQ" (shape input) (at 210.82 106.68 180) (fields_autoplaced)
  3568. (effects (font (size 1.27 1.27)) (justify right))
  3569. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  3570. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.5972 106.6006 0)
  3571. (effects (font (size 1.27 1.27)) (justify right) hide)
  3572. )
  3573. )
  3574. (global_label "DB6" (shape input) (at 60.96 35.56 180) (fields_autoplaced)
  3575. (effects (font (size 1.27 1.27)) (justify right))
  3576. (uuid d1046d20-d4f2-43a7-8081-acf80fd40cad)
  3577. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 8.89 96.52 0)
  3578. (effects (font (size 1.27 1.27)) hide)
  3579. )
  3580. )
  3581. (global_label "ACK" (shape input) (at 100.33 158.75 0) (fields_autoplaced)
  3582. (effects (font (size 1.27 1.27)) (justify left))
  3583. (uuid d11f3524-972a-4019-bc58-9f7c6b5bdf6d)
  3584. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 251.46 0)
  3585. (effects (font (size 1.27 1.27)) hide)
  3586. )
  3587. )
  3588. (global_label "DB4T" (shape input) (at 262.89 139.7 0) (fields_autoplaced)
  3589. (effects (font (size 1.27 1.27)) (justify left))
  3590. (uuid d3e8e05e-8466-4829-a48e-788d5b3dcd34)
  3591. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 483.87 236.22 0)
  3592. (effects (font (size 1.27 1.27)) hide)
  3593. )
  3594. )
  3595. (global_label "BSY_BUFF" (shape input) (at 195.58 124.46 270) (fields_autoplaced)
  3596. (effects (font (size 1.27 1.27)) (justify right))
  3597. (uuid d4a03d7c-a5b0-4b19-9108-e3e0a5c8ab63)
  3598. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.5006 136.0975 90)
  3599. (effects (font (size 1.27 1.27)) (justify right) hide)
  3600. )
  3601. )
  3602. (global_label "iATN" (shape input) (at 162.56 176.53 0) (fields_autoplaced)
  3603. (effects (font (size 1.27 1.27)) (justify left))
  3604. (uuid dbb5facc-24f9-4527-aeee-6ef74dc16e0b)
  3605. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 168.8756 176.6094 0)
  3606. (effects (font (size 1.27 1.27)) (justify left) hide)
  3607. )
  3608. )
  3609. (global_label "DB3T" (shape input) (at 187.96 43.18 180) (fields_autoplaced)
  3610. (effects (font (size 1.27 1.27)) (justify right))
  3611. (uuid dc44399d-a781-4321-bb25-05bc2093dd8b)
  3612. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 229.87 -132.08 0)
  3613. (effects (font (size 1.27 1.27)) hide)
  3614. )
  3615. )
  3616. (global_label "oBSY" (shape input) (at 168.91 128.27 0) (fields_autoplaced)
  3617. (effects (font (size 1.27 1.27)) (justify left))
  3618. (uuid e03c85b0-e19f-4028-9f28-e800c75ea53d)
  3619. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.9513 128.3494 0)
  3620. (effects (font (size 1.27 1.27)) (justify left) hide)
  3621. )
  3622. )
  3623. (global_label "BSY" (shape input) (at 100.33 156.21 0) (fields_autoplaced)
  3624. (effects (font (size 1.27 1.27)) (justify left))
  3625. (uuid e4088bff-aae3-4633-a894-50953960e1ab)
  3626. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 243.84 0)
  3627. (effects (font (size 1.27 1.27)) hide)
  3628. )
  3629. )
  3630. (global_label "DB0" (shape input) (at 100.33 130.81 0) (fields_autoplaced)
  3631. (effects (font (size 1.27 1.27)) (justify left))
  3632. (uuid e564877a-0c3a-4a54-bc28-b0a6c56f7200)
  3633. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 208.28 0)
  3634. (effects (font (size 1.27 1.27)) hide)
  3635. )
  3636. )
  3637. (global_label "oIO" (shape input) (at 119.38 128.27 180) (fields_autoplaced)
  3638. (effects (font (size 1.27 1.27)) (justify right))
  3639. (uuid e56dd6c2-1ae0-4858-a45d-befc95f6ede2)
  3640. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 113.9715 128.1906 0)
  3641. (effects (font (size 1.27 1.27)) (justify right) hide)
  3642. )
  3643. )
  3644. (global_label "DB7" (shape input) (at 256.54 40.64 0) (fields_autoplaced)
  3645. (effects (font (size 1.27 1.27)) (justify left))
  3646. (uuid e7b92bb5-5c03-41fa-87f6-e6148f15a880)
  3647. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 279.4 -162.56 0)
  3648. (effects (font (size 1.27 1.27)) hide)
  3649. )
  3650. )
  3651. (global_label "SD_D2" (shape input) (at 231.14 62.23 180) (fields_autoplaced)
  3652. (effects (font (size 1.27 1.27)) (justify right))
  3653. (uuid eb2afaff-0315-411c-9466-fadf4a394f8f)
  3654. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 222.8891 62.3094 0)
  3655. (effects (font (size 1.27 1.27)) (justify right) hide)
  3656. )
  3657. )
  3658. (global_label "DBPTr" (shape input) (at 241.3 22.86 180) (fields_autoplaced)
  3659. (effects (font (size 1.27 1.27)) (justify right))
  3660. (uuid ed029e94-aaab-4fac-bc1a-1bfc5483a241)
  3661. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 218.44 238.76 0)
  3662. (effects (font (size 1.27 1.27)) hide)
  3663. )
  3664. )
  3665. (global_label "DB4T" (shape input) (at 241.3 25.4 180) (fields_autoplaced)
  3666. (effects (font (size 1.27 1.27)) (justify right))
  3667. (uuid eef6b8cc-133b-4aee-a1b3-467795b3d751)
  3668. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.21 -160.02 0)
  3669. (effects (font (size 1.27 1.27)) hide)
  3670. )
  3671. )
  3672. (global_label "DB2" (shape input) (at 100.33 135.89 0) (fields_autoplaced)
  3673. (effects (font (size 1.27 1.27)) (justify left))
  3674. (uuid ef56c368-4c3a-4c4f-856b-e3d20b39ab53)
  3675. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 205.74 0)
  3676. (effects (font (size 1.27 1.27)) hide)
  3677. )
  3678. )
  3679. (global_label "oREQ" (shape input) (at 119.38 134.62 180) (fields_autoplaced)
  3680. (effects (font (size 1.27 1.27)) (justify right))
  3681. (uuid f0c4200e-4df7-4252-a807-f2b8f11dd759)
  3682. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.1572 134.5406 0)
  3683. (effects (font (size 1.27 1.27)) (justify right) hide)
  3684. )
  3685. )
  3686. (global_label "iACK" (shape input) (at 210.82 129.54 180) (fields_autoplaced)
  3687. (effects (font (size 1.27 1.27)) (justify right))
  3688. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  3689. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.2625 129.4606 0)
  3690. (effects (font (size 1.27 1.27)) (justify right) hide)
  3691. )
  3692. )
  3693. (global_label "IO" (shape input) (at 138.43 80.01 0) (fields_autoplaced)
  3694. (effects (font (size 1.27 1.27)) (justify left))
  3695. (uuid f794d074-27b0-464e-8071-d7af18ceb605)
  3696. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 247.65 134.62 0)
  3697. (effects (font (size 1.27 1.27)) hide)
  3698. )
  3699. )
  3700. (global_label "DB0T" (shape input) (at 262.89 152.4 0) (fields_autoplaced)
  3701. (effects (font (size 1.27 1.27)) (justify left))
  3702. (uuid fa312dbb-8e1d-465a-9e0a-e885c919c096)
  3703. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 483.87 287.02 0)
  3704. (effects (font (size 1.27 1.27)) hide)
  3705. )
  3706. )
  3707. (global_label "DB1" (shape input) (at 100.33 133.35 0) (fields_autoplaced)
  3708. (effects (font (size 1.27 1.27)) (justify left))
  3709. (uuid fb2e6264-85e6-4087-8897-7c83f0c96bd3)
  3710. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 213.36 208.28 0)
  3711. (effects (font (size 1.27 1.27)) hide)
  3712. )
  3713. )
  3714. (global_label "ATN" (shape input) (at 168.91 130.81 0) (fields_autoplaced)
  3715. (effects (font (size 1.27 1.27)) (justify left))
  3716. (uuid fbef7ed0-85e2-43db-bc86-b37f2586ba1d)
  3717. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 278.13 208.28 0)
  3718. (effects (font (size 1.27 1.27)) hide)
  3719. )
  3720. )
  3721. (global_label "DBP" (shape input) (at 256.54 45.72 0) (fields_autoplaced)
  3722. (effects (font (size 1.27 1.27)) (justify left))
  3723. (uuid fc60595d-f956-46ab-b191-f1251bf0d24b)
  3724. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 279.4 -167.64 0)
  3725. (effects (font (size 1.27 1.27)) hide)
  3726. )
  3727. )
  3728. (global_label "ATN" (shape input) (at 36.83 97.79 180) (fields_autoplaced)
  3729. (effects (font (size 1.27 1.27)) (justify right))
  3730. (uuid feb21c89-8c6d-43a0-b20f-42a5473dac45)
  3731. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -15.24 6.35 0)
  3732. (effects (font (size 1.27 1.27)) hide)
  3733. )
  3734. )
  3735. (symbol (lib_id "Regulator_Linear:AMS1117CD-2.85") (at 38.1 125.73 0) (unit 1)
  3736. (in_bom yes) (on_board yes)
  3737. (uuid 00000000-0000-0000-0000-0000604489c4)
  3738. (property "Reference" "U3" (id 0) (at 38.1 119.5832 0))
  3739. (property "Value" "AMS1117-2.85" (id 1) (at 38.1 121.8946 0))
  3740. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 38.1 120.65 0)
  3741. (effects (font (size 1.27 1.27)) hide)
  3742. )
  3743. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 40.64 132.08 0)
  3744. (effects (font (size 1.27 1.27)) hide)
  3745. )
  3746. (pin "1" (uuid 91d911d5-cad3-4a98-ba2b-306af461b4c4))
  3747. (pin "2" (uuid c2b11866-3a23-42a2-9f5e-e75ffe537dc7))
  3748. (pin "3" (uuid c6e03d69-3b57-4242-987e-617ae3e99df4))
  3749. )
  3750. (symbol (lib_id "power:GND") (at 38.1 133.35 0) (unit 1)
  3751. (in_bom yes) (on_board yes)
  3752. (uuid 00000000-0000-0000-0000-0000604542f6)
  3753. (property "Reference" "#PWR012" (id 0) (at 38.1 139.7 0)
  3754. (effects (font (size 1.27 1.27)) hide)
  3755. )
  3756. (property "Value" "GND" (id 1) (at 38.227 137.7442 0))
  3757. (property "Footprint" "" (id 2) (at 38.1 133.35 0)
  3758. (effects (font (size 1.27 1.27)) hide)
  3759. )
  3760. (property "Datasheet" "" (id 3) (at 38.1 133.35 0)
  3761. (effects (font (size 1.27 1.27)) hide)
  3762. )
  3763. (pin "1" (uuid 514bbe6e-eb18-4ceb-a852-882d1c860c79))
  3764. )
  3765. (symbol (lib_id "power:+2V8") (at 62.23 125.73 0) (unit 1)
  3766. (in_bom yes) (on_board yes)
  3767. (uuid 00000000-0000-0000-0000-0000604599aa)
  3768. (property "Reference" "#PWR015" (id 0) (at 62.23 129.54 0)
  3769. (effects (font (size 1.27 1.27)) hide)
  3770. )
  3771. (property "Value" "+2V8" (id 1) (at 62.611 121.3358 0))
  3772. (property "Footprint" "" (id 2) (at 62.23 125.73 0)
  3773. (effects (font (size 1.27 1.27)) hide)
  3774. )
  3775. (property "Datasheet" "" (id 3) (at 62.23 125.73 0)
  3776. (effects (font (size 1.27 1.27)) hide)
  3777. )
  3778. (pin "1" (uuid 99f6416c-a895-44fc-8550-e40ab4d3ae17))
  3779. )
  3780. (symbol (lib_id "Device:CP") (at 50.8 129.54 0) (unit 1)
  3781. (in_bom yes) (on_board yes)
  3782. (uuid 00000000-0000-0000-0000-000060459e94)
  3783. (property "Reference" "C4" (id 0) (at 53.7972 128.3716 0)
  3784. (effects (font (size 1.27 1.27)) (justify left))
  3785. )
  3786. (property "Value" "20uF" (id 1) (at 53.7972 130.683 0)
  3787. (effects (font (size 1.27 1.27)) (justify left))
  3788. )
  3789. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 51.7652 133.35 0)
  3790. (effects (font (size 1.27 1.27)) hide)
  3791. )
  3792. (property "Datasheet" "~" (id 3) (at 50.8 129.54 0)
  3793. (effects (font (size 1.27 1.27)) hide)
  3794. )
  3795. (pin "1" (uuid 5c15566c-9032-41eb-95de-076e9b65ab4e))
  3796. (pin "2" (uuid 88442892-f29d-4140-ac87-86057b31d44c))
  3797. )
  3798. (symbol (lib_id "Device:CP") (at 25.4 129.54 0) (unit 1)
  3799. (in_bom yes) (on_board yes)
  3800. (uuid 00000000-0000-0000-0000-00006045a89e)
  3801. (property "Reference" "C3" (id 0) (at 22.4028 130.7084 0)
  3802. (effects (font (size 1.27 1.27)) (justify right))
  3803. )
  3804. (property "Value" "20uF" (id 1) (at 22.4028 128.397 0)
  3805. (effects (font (size 1.27 1.27)) (justify right))
  3806. )
  3807. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 26.3652 133.35 0)
  3808. (effects (font (size 1.27 1.27)) hide)
  3809. )
  3810. (property "Datasheet" "~" (id 3) (at 25.4 129.54 0)
  3811. (effects (font (size 1.27 1.27)) hide)
  3812. )
  3813. (pin "1" (uuid 75ceeb26-18a5-4360-b8ae-63937e72f4fd))
  3814. (pin "2" (uuid 01867a58-87f0-44a1-ae23-61f079912921))
  3815. )
  3816. (symbol (lib_id "power:GND") (at 25.4 133.35 0) (unit 1)
  3817. (in_bom yes) (on_board yes)
  3818. (uuid 00000000-0000-0000-0000-00006045bfed)
  3819. (property "Reference" "#PWR07" (id 0) (at 25.4 139.7 0)
  3820. (effects (font (size 1.27 1.27)) hide)
  3821. )
  3822. (property "Value" "GND" (id 1) (at 25.527 137.7442 0))
  3823. (property "Footprint" "" (id 2) (at 25.4 133.35 0)
  3824. (effects (font (size 1.27 1.27)) hide)
  3825. )
  3826. (property "Datasheet" "" (id 3) (at 25.4 133.35 0)
  3827. (effects (font (size 1.27 1.27)) hide)
  3828. )
  3829. (pin "1" (uuid 8edbf0fd-a702-42c5-9e2c-5cc1032dcf05))
  3830. )
  3831. (symbol (lib_id "power:GND") (at 50.8 133.35 0) (unit 1)
  3832. (in_bom yes) (on_board yes)
  3833. (uuid 00000000-0000-0000-0000-00006045c342)
  3834. (property "Reference" "#PWR013" (id 0) (at 50.8 139.7 0)
  3835. (effects (font (size 1.27 1.27)) hide)
  3836. )
  3837. (property "Value" "GND" (id 1) (at 50.927 137.7442 0))
  3838. (property "Footprint" "" (id 2) (at 50.8 133.35 0)
  3839. (effects (font (size 1.27 1.27)) hide)
  3840. )
  3841. (property "Datasheet" "" (id 3) (at 50.8 133.35 0)
  3842. (effects (font (size 1.27 1.27)) hide)
  3843. )
  3844. (pin "1" (uuid 92321285-141f-48e9-a372-9cc5173abf6d))
  3845. )
  3846. (symbol (lib_id "custom_symbols:+5V_TPWR") (at 25.4 160.02 90) (unit 1)
  3847. (in_bom yes) (on_board yes)
  3848. (uuid 00000000-0000-0000-0000-0000605263e4)
  3849. (property "Reference" "#PWR019" (id 0) (at 29.21 160.02 0)
  3850. (effects (font (size 1.27 1.27)) hide)
  3851. )
  3852. (property "Value" "+5V_TPWR" (id 1) (at 19.05 157.48 90))
  3853. (property "Footprint" "" (id 2) (at 25.4 160.02 0)
  3854. (effects (font (size 1.27 1.27)) hide)
  3855. )
  3856. (property "Datasheet" "" (id 3) (at 25.4 160.02 0)
  3857. (effects (font (size 1.27 1.27)) hide)
  3858. )
  3859. (pin "1" (uuid 291e6d25-1c1f-4680-8ca9-13d590de3d0d))
  3860. )
  3861. (symbol (lib_id "power:+3V3") (at 210.82 142.24 90) (unit 1)
  3862. (in_bom yes) (on_board yes)
  3863. (uuid 00000000-0000-0000-0000-00006083f3ec)
  3864. (property "Reference" "#PWR047" (id 0) (at 214.63 142.24 0)
  3865. (effects (font (size 1.27 1.27)) hide)
  3866. )
  3867. (property "Value" "+3V3" (id 1) (at 207.5688 141.859 90)
  3868. (effects (font (size 1.27 1.27)) (justify left))
  3869. )
  3870. (property "Footprint" "" (id 2) (at 210.82 142.24 0)
  3871. (effects (font (size 1.27 1.27)) hide)
  3872. )
  3873. (property "Datasheet" "" (id 3) (at 210.82 142.24 0)
  3874. (effects (font (size 1.27 1.27)) hide)
  3875. )
  3876. (pin "1" (uuid d6888254-92b5-42f7-a2cb-268a0ff32eef))
  3877. )
  3878. (symbol (lib_id "power:+5VP") (at 210.82 152.4 90) (unit 1)
  3879. (in_bom yes) (on_board yes)
  3880. (uuid 00000000-0000-0000-0000-0000608add8a)
  3881. (property "Reference" "#PWR036" (id 0) (at 214.63 152.4 0)
  3882. (effects (font (size 1.27 1.27)) hide)
  3883. )
  3884. (property "Value" "+5VP" (id 1) (at 207.5688 152.019 90)
  3885. (effects (font (size 1.27 1.27)) (justify left))
  3886. )
  3887. (property "Footprint" "" (id 2) (at 210.82 152.4 0)
  3888. (effects (font (size 1.27 1.27)) hide)
  3889. )
  3890. (property "Datasheet" "" (id 3) (at 210.82 152.4 0)
  3891. (effects (font (size 1.27 1.27)) hide)
  3892. )
  3893. (pin "1" (uuid 8b64525e-675d-48fe-834e-7d606eb182e3))
  3894. )
  3895. (symbol (lib_id "power:+5F") (at 17.78 125.73 0) (unit 1)
  3896. (in_bom yes) (on_board yes)
  3897. (uuid 00000000-0000-0000-0000-000060a46e5b)
  3898. (property "Reference" "#PWR06" (id 0) (at 17.78 129.54 0)
  3899. (effects (font (size 1.27 1.27)) hide)
  3900. )
  3901. (property "Value" "+5F" (id 1) (at 18.161 121.3358 0))
  3902. (property "Footprint" "" (id 2) (at 17.78 125.73 0)
  3903. (effects (font (size 1.27 1.27)) hide)
  3904. )
  3905. (property "Datasheet" "" (id 3) (at 17.78 125.73 0)
  3906. (effects (font (size 1.27 1.27)) hide)
  3907. )
  3908. (pin "1" (uuid 812958b4-1883-4e2c-a9b1-f8077b570178))
  3909. )
  3910. (symbol (lib_id "power:+5F") (at 57.15 151.13 0) (unit 1)
  3911. (in_bom yes) (on_board yes)
  3912. (uuid 00000000-0000-0000-0000-000060a54b3e)
  3913. (property "Reference" "#PWR027" (id 0) (at 57.15 154.94 0)
  3914. (effects (font (size 1.27 1.27)) hide)
  3915. )
  3916. (property "Value" "+5F" (id 1) (at 57.531 146.7358 0))
  3917. (property "Footprint" "" (id 2) (at 57.15 151.13 0)
  3918. (effects (font (size 1.27 1.27)) hide)
  3919. )
  3920. (property "Datasheet" "" (id 3) (at 57.15 151.13 0)
  3921. (effects (font (size 1.27 1.27)) hide)
  3922. )
  3923. (pin "1" (uuid 4d0429a7-4947-405e-9053-8622eed9c80f))
  3924. )
  3925. (symbol (lib_id "power:+5VP") (at 40.64 158.75 0) (unit 1)
  3926. (in_bom yes) (on_board yes)
  3927. (uuid 00000000-0000-0000-0000-000060aa70a1)
  3928. (property "Reference" "#PWR025" (id 0) (at 40.64 162.56 0)
  3929. (effects (font (size 1.27 1.27)) hide)
  3930. )
  3931. (property "Value" "+5VP" (id 1) (at 41.021 154.3558 0))
  3932. (property "Footprint" "" (id 2) (at 40.64 158.75 0)
  3933. (effects (font (size 1.27 1.27)) hide)
  3934. )
  3935. (property "Datasheet" "" (id 3) (at 40.64 158.75 0)
  3936. (effects (font (size 1.27 1.27)) hide)
  3937. )
  3938. (pin "1" (uuid 63bdded8-3ff5-4c19-8af5-a44eee442a68))
  3939. )
  3940. (symbol (lib_id "custom_symbols:BlackSCSI") (at 229.87 156.21 180) (unit 1)
  3941. (in_bom yes) (on_board yes)
  3942. (uuid 00000000-0000-0000-0000-000060ad3c40)
  3943. (property "Reference" "RP1" (id 0) (at 229.87 160.02 0))
  3944. (property "Value" "Pico_Footprint" (id 1) (at 229.87 157.48 0))
  3945. (property "Footprint" "CustomFootprints:BluePillModule" (id 2) (at 229.87 158.75 0)
  3946. (effects (font (size 1.27 1.27)) hide)
  3947. )
  3948. (property "Datasheet" "" (id 3) (at 227.33 152.4 0)
  3949. (effects (font (size 1.27 1.27)) hide)
  3950. )
  3951. (pin "1" (uuid 831a40cf-d386-48fc-8b39-094a3f71ee27))
  3952. (pin "10" (uuid 9ff6293b-68f9-43a8-970e-2fb5515952e5))
  3953. (pin "11" (uuid 29dafafd-f472-4aaf-8040-c9c0f625eef3))
  3954. (pin "12" (uuid da359725-aee5-4528-9eed-cb94fcb8fffc))
  3955. (pin "13" (uuid f04006fa-35fd-447b-9e95-975e0dec67c8))
  3956. (pin "14" (uuid 9b664edd-9026-46e2-9164-e2b4169d7d7f))
  3957. (pin "15" (uuid 514e2018-feed-4760-81b4-3215fcc3bfa9))
  3958. (pin "16" (uuid c8b29e06-4b17-4bf6-bdbd-dace57e07aaf))
  3959. (pin "17" (uuid 0d5880cb-c997-4346-8a4c-147141cb29ea))
  3960. (pin "18" (uuid c8463c9c-bcb3-4081-a363-16436a3117fc))
  3961. (pin "19" (uuid 8d672489-914c-401a-99dd-9705c8f7dd01))
  3962. (pin "2" (uuid 3c2e7b50-d793-445d-beea-3b8028469b13))
  3963. (pin "20" (uuid c66fd03a-304d-4ccf-a7b5-a6e16da0cf94))
  3964. (pin "21" (uuid 16120cef-f140-4c5a-a97b-1b66f47121c6))
  3965. (pin "22" (uuid a82aead3-1c28-4bb1-af24-ec0cc6d09193))
  3966. (pin "23" (uuid 4f364622-9d70-4c4a-b261-b8fc907c2bd6))
  3967. (pin "24" (uuid 697fe063-3f61-4af8-9e92-d4f79be169d4))
  3968. (pin "25" (uuid 3bbe6a1d-96f1-494a-b935-f7bb68461f0f))
  3969. (pin "26" (uuid 3599987d-dd58-415c-81c6-0f3c5336daee))
  3970. (pin "27" (uuid d0df5f81-4fcf-4bc9-a1dd-e56e02c93b9c))
  3971. (pin "28" (uuid 427aa9d6-e998-4da6-91fa-7d5a0801f566))
  3972. (pin "29" (uuid 9fb734cc-b170-47bd-9e75-57b6ea379ba1))
  3973. (pin "3" (uuid a5b742f3-f79e-4eab-98b1-2a8b131ffd3e))
  3974. (pin "30" (uuid 0731282d-d301-44e9-9695-aa41790843fa))
  3975. (pin "31" (uuid 18a6a6fa-7e7e-4839-abf8-d8ab2a813e55))
  3976. (pin "32" (uuid bf3f2f8b-374a-402c-9535-545bd1c1e241))
  3977. (pin "33" (uuid 739eb9ad-e4de-4927-b449-da751f1e3764))
  3978. (pin "34" (uuid 533b4e25-b956-4c6d-98d2-eb15a3b80d64))
  3979. (pin "35" (uuid 90cb83dc-1a11-45a5-97ad-621fae129bf9))
  3980. (pin "36" (uuid 41a93f37-be40-44dd-bab4-e8de0e81606a))
  3981. (pin "37" (uuid 980124dd-3bf4-462f-9ff4-1300576a994a))
  3982. (pin "38" (uuid 8d7ce083-660c-4822-a9fe-7a9920cea1aa))
  3983. (pin "39" (uuid 46b2da9b-f25f-40d0-bae8-be60a1cafa29))
  3984. (pin "4" (uuid 1e4a1739-fbcb-4101-8bb4-4a741cb898fb))
  3985. (pin "40" (uuid e8afcab6-de9c-4817-8bef-e17660351ece))
  3986. (pin "5" (uuid 0105d941-5d5a-4d59-affb-f30e1bb44e51))
  3987. (pin "6" (uuid 04f2e26f-5c63-4ec2-ac3e-3302b942de6d))
  3988. (pin "7" (uuid f941df0b-ee4b-43bf-bf78-09491735ff0c))
  3989. (pin "8" (uuid 0359b9a0-08f9-40cc-89a0-75de82fb29d3))
  3990. (pin "9" (uuid 393931f4-4966-4f33-9fbd-067637052de6))
  3991. )
  3992. (symbol (lib_id "power:GND") (at 210.82 134.62 270) (unit 1)
  3993. (in_bom yes) (on_board yes)
  3994. (uuid 00000000-0000-0000-0000-000060ae7910)
  3995. (property "Reference" "#PWR037" (id 0) (at 204.47 134.62 0)
  3996. (effects (font (size 1.27 1.27)) hide)
  3997. )
  3998. (property "Value" "GND" (id 1) (at 207.5688 134.747 90)
  3999. (effects (font (size 1.27 1.27)) (justify right))
  4000. )
  4001. (property "Footprint" "" (id 2) (at 210.82 134.62 0)
  4002. (effects (font (size 1.27 1.27)) hide)
  4003. )
  4004. (property "Datasheet" "" (id 3) (at 210.82 134.62 0)
  4005. (effects (font (size 1.27 1.27)) hide)
  4006. )
  4007. (pin "1" (uuid 2a6fdd99-5deb-4b9c-a810-445d6b23b46c))
  4008. )
  4009. (symbol (lib_id "power:GND") (at 62.23 133.35 0) (unit 1)
  4010. (in_bom yes) (on_board yes)
  4011. (uuid 00000000-0000-0000-0000-0000620974b3)
  4012. (property "Reference" "#PWR016" (id 0) (at 62.23 139.7 0)
  4013. (effects (font (size 1.27 1.27)) hide)
  4014. )
  4015. (property "Value" "GND" (id 1) (at 62.357 137.7442 0))
  4016. (property "Footprint" "" (id 2) (at 62.23 133.35 0)
  4017. (effects (font (size 1.27 1.27)) hide)
  4018. )
  4019. (property "Datasheet" "" (id 3) (at 62.23 133.35 0)
  4020. (effects (font (size 1.27 1.27)) hide)
  4021. )
  4022. (pin "1" (uuid 8c54937d-9ea6-4999-a298-1d663afd5ff5))
  4023. )
  4024. (symbol (lib_id "Device:CP") (at 62.23 129.54 0) (unit 1)
  4025. (in_bom yes) (on_board yes)
  4026. (uuid 00000000-0000-0000-0000-0000620974b9)
  4027. (property "Reference" "C5" (id 0) (at 65.2272 128.3716 0)
  4028. (effects (font (size 1.27 1.27)) (justify left))
  4029. )
  4030. (property "Value" "0.1uF" (id 1) (at 65.2272 130.683 0)
  4031. (effects (font (size 1.27 1.27)) (justify left))
  4032. )
  4033. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 63.1952 133.35 0)
  4034. (effects (font (size 1.27 1.27)) hide)
  4035. )
  4036. (property "Datasheet" "~" (id 3) (at 62.23 129.54 0)
  4037. (effects (font (size 1.27 1.27)) hide)
  4038. )
  4039. (pin "1" (uuid 0c0b82a0-19b3-45c0-a98f-0104b6ac7cfa))
  4040. (pin "2" (uuid af073fa6-a783-40f2-9751-692984a62ffc))
  4041. )
  4042. (symbol (lib_id "power:GND") (at 17.78 63.5 0) (unit 1)
  4043. (in_bom yes) (on_board yes)
  4044. (uuid 00000000-0000-0000-0000-0000620b4134)
  4045. (property "Reference" "#PWR05" (id 0) (at 17.78 69.85 0)
  4046. (effects (font (size 1.27 1.27)) hide)
  4047. )
  4048. (property "Value" "GND" (id 1) (at 17.907 67.8942 0))
  4049. (property "Footprint" "" (id 2) (at 17.78 63.5 0)
  4050. (effects (font (size 1.27 1.27)) hide)
  4051. )
  4052. (property "Datasheet" "" (id 3) (at 17.78 63.5 0)
  4053. (effects (font (size 1.27 1.27)) hide)
  4054. )
  4055. (pin "1" (uuid a99c7862-d7cf-4bec-8254-d072b34fb419))
  4056. )
  4057. (symbol (lib_id "Device:CP") (at 17.78 59.69 0) (unit 1)
  4058. (in_bom yes) (on_board yes)
  4059. (uuid 00000000-0000-0000-0000-0000620b413a)
  4060. (property "Reference" "C2" (id 0) (at 20.7772 58.5216 0)
  4061. (effects (font (size 1.27 1.27)) (justify left))
  4062. )
  4063. (property "Value" "0.1uF" (id 1) (at 20.7772 60.833 0)
  4064. (effects (font (size 1.27 1.27)) (justify left))
  4065. )
  4066. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 18.7452 63.5 0)
  4067. (effects (font (size 1.27 1.27)) hide)
  4068. )
  4069. (property "Datasheet" "~" (id 3) (at 17.78 59.69 0)
  4070. (effects (font (size 1.27 1.27)) hide)
  4071. )
  4072. (pin "1" (uuid b3ca0ab9-5855-4dc9-9928-3bc761aa3040))
  4073. (pin "2" (uuid 2d0ccb5a-fc90-4652-9eb5-b711001eb4d0))
  4074. )
  4075. (symbol (lib_id "Device:D") (at 29.21 160.02 180) (unit 1)
  4076. (in_bom yes) (on_board yes)
  4077. (uuid 00000000-0000-0000-0000-0000620c30d1)
  4078. (property "Reference" "D1" (id 0) (at 28.0416 157.988 90)
  4079. (effects (font (size 1.27 1.27)) (justify right))
  4080. )
  4081. (property "Value" "D" (id 1) (at 30.353 157.988 90)
  4082. (effects (font (size 1.27 1.27)) (justify right))
  4083. )
  4084. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 29.21 160.02 0)
  4085. (effects (font (size 1.27 1.27)) hide)
  4086. )
  4087. (property "Datasheet" "~" (id 3) (at 29.21 160.02 0)
  4088. (effects (font (size 1.27 1.27)) hide)
  4089. )
  4090. (pin "1" (uuid 7d45845a-6d69-45af-97de-5bc02297b233))
  4091. (pin "2" (uuid d178a976-ceac-4446-92bd-a15abdb74d2c))
  4092. )
  4093. (symbol (lib_id "power:GND") (at 57.15 167.64 0) (unit 1)
  4094. (in_bom yes) (on_board yes)
  4095. (uuid 00000000-0000-0000-0000-0000620e7a64)
  4096. (property "Reference" "#PWR018" (id 0) (at 57.15 173.99 0)
  4097. (effects (font (size 1.27 1.27)) hide)
  4098. )
  4099. (property "Value" "GND" (id 1) (at 57.277 172.0342 0))
  4100. (property "Footprint" "" (id 2) (at 57.15 167.64 0)
  4101. (effects (font (size 1.27 1.27)) hide)
  4102. )
  4103. (property "Datasheet" "" (id 3) (at 57.15 167.64 0)
  4104. (effects (font (size 1.27 1.27)) hide)
  4105. )
  4106. (pin "1" (uuid 6462a321-f55a-4682-a2db-a4cf030e708a))
  4107. )
  4108. (symbol (lib_id "Device:CP") (at 57.15 163.83 0) (unit 1)
  4109. (in_bom yes) (on_board yes)
  4110. (uuid 00000000-0000-0000-0000-0000620e7a6a)
  4111. (property "Reference" "C6" (id 0) (at 50.8 162.56 0)
  4112. (effects (font (size 1.27 1.27)) (justify left))
  4113. )
  4114. (property "Value" "4.7uF" (id 1) (at 48.26 166.37 0)
  4115. (effects (font (size 1.27 1.27)) (justify left))
  4116. )
  4117. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 58.1152 167.64 0)
  4118. (effects (font (size 1.27 1.27)) hide)
  4119. )
  4120. (property "Datasheet" "~" (id 3) (at 57.15 163.83 0)
  4121. (effects (font (size 1.27 1.27)) hide)
  4122. )
  4123. (pin "1" (uuid 752dd0db-3350-432a-a4ea-3cbf975365ef))
  4124. (pin "2" (uuid a7ab4152-eb90-46e8-bf7c-a531751f058e))
  4125. )
  4126. (symbol (lib_id "power:+3V3") (at 264.16 86.36 90) (unit 1)
  4127. (in_bom yes) (on_board yes)
  4128. (uuid 00000000-0000-0000-0000-00006210d951)
  4129. (property "Reference" "#PWR048" (id 0) (at 267.97 86.36 0)
  4130. (effects (font (size 1.27 1.27)) hide)
  4131. )
  4132. (property "Value" "+3V3" (id 1) (at 260.9088 85.979 90)
  4133. (effects (font (size 1.27 1.27)) (justify left))
  4134. )
  4135. (property "Footprint" "" (id 2) (at 264.16 86.36 0)
  4136. (effects (font (size 1.27 1.27)) hide)
  4137. )
  4138. (property "Datasheet" "" (id 3) (at 264.16 86.36 0)
  4139. (effects (font (size 1.27 1.27)) hide)
  4140. )
  4141. (pin "1" (uuid 29c77663-b78a-4771-9dd7-00994536f2b2))
  4142. )
  4143. (symbol (lib_id "power:GND") (at 271.78 86.36 90) (unit 1)
  4144. (in_bom yes) (on_board yes)
  4145. (uuid 00000000-0000-0000-0000-000062115e1c)
  4146. (property "Reference" "#PWR050" (id 0) (at 278.13 86.36 0)
  4147. (effects (font (size 1.27 1.27)) hide)
  4148. )
  4149. (property "Value" "GND" (id 1) (at 276.1742 86.233 0))
  4150. (property "Footprint" "" (id 2) (at 271.78 86.36 0)
  4151. (effects (font (size 1.27 1.27)) hide)
  4152. )
  4153. (property "Datasheet" "" (id 3) (at 271.78 86.36 0)
  4154. (effects (font (size 1.27 1.27)) hide)
  4155. )
  4156. (pin "1" (uuid fc7e5eed-d585-4c99-a52a-3167fcb43cc9))
  4157. )
  4158. (symbol (lib_id "Device:CP") (at 267.97 86.36 90) (unit 1)
  4159. (in_bom yes) (on_board yes)
  4160. (uuid 00000000-0000-0000-0000-000062115e22)
  4161. (property "Reference" "C12" (id 0) (at 266.8016 83.3628 0)
  4162. (effects (font (size 1.27 1.27)) (justify left))
  4163. )
  4164. (property "Value" "0.1uF" (id 1) (at 269.113 83.3628 0)
  4165. (effects (font (size 1.27 1.27)) (justify left))
  4166. )
  4167. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 271.78 85.3948 0)
  4168. (effects (font (size 1.27 1.27)) hide)
  4169. )
  4170. (property "Datasheet" "~" (id 3) (at 267.97 86.36 0)
  4171. (effects (font (size 1.27 1.27)) hide)
  4172. )
  4173. (pin "1" (uuid 199c9d7d-1017-4719-8a87-dec201b08eca))
  4174. (pin "2" (uuid 8d19e530-0d8d-4cca-abb0-093052442c2b))
  4175. )
  4176. (symbol (lib_id "Connector:Conn_01x03_Male") (at 24.13 40.64 90) (unit 1)
  4177. (in_bom yes) (on_board yes)
  4178. (uuid 00000000-0000-0000-0000-00006225438d)
  4179. (property "Reference" "J1" (id 0) (at 19.05 40.64 90)
  4180. (effects (font (size 1.27 1.27)) (justify right))
  4181. )
  4182. (property "Value" "Conn_01x03_Male" (id 1) (at 17.78 41.91 90)
  4183. (effects (font (size 1.27 1.27)) (justify right))
  4184. )
  4185. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 24.13 40.64 0)
  4186. (effects (font (size 1.27 1.27)) hide)
  4187. )
  4188. (property "Datasheet" "~" (id 3) (at 24.13 40.64 0)
  4189. (effects (font (size 1.27 1.27)) hide)
  4190. )
  4191. (pin "1" (uuid 5ce820f8-0590-4206-a242-9d059c237716))
  4192. (pin "2" (uuid 19d92275-d7f0-4fcf-8cba-f8ade0f21094))
  4193. (pin "3" (uuid 1db6e4d9-ee99-4684-81cb-6a407937070e))
  4194. )
  4195. (symbol (lib_id "power:GND") (at 30.48 33.02 0) (unit 1)
  4196. (in_bom yes) (on_board yes)
  4197. (uuid 00000000-0000-0000-0000-00006225dfcd)
  4198. (property "Reference" "#PWR04" (id 0) (at 30.48 39.37 0)
  4199. (effects (font (size 1.27 1.27)) hide)
  4200. )
  4201. (property "Value" "GND" (id 1) (at 30.607 37.4142 0))
  4202. (property "Footprint" "" (id 2) (at 30.48 33.02 0)
  4203. (effects (font (size 1.27 1.27)) hide)
  4204. )
  4205. (property "Datasheet" "" (id 3) (at 30.48 33.02 0)
  4206. (effects (font (size 1.27 1.27)) hide)
  4207. )
  4208. (pin "1" (uuid 514d6ae7-d013-4d42-acf7-b646b84d84e8))
  4209. )
  4210. (symbol (lib_id "Device:R") (at 207.01 38.1 90) (unit 1)
  4211. (in_bom yes) (on_board yes)
  4212. (uuid 01517c18-9701-48be-800b-d7035922ca55)
  4213. (property "Reference" "R48" (id 0) (at 205.74 38.1 90))
  4214. (property "Value" "1k" (id 1) (at 208.28 38.1 90))
  4215. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 207.01 39.878 90)
  4216. (effects (font (size 1.27 1.27)) hide)
  4217. )
  4218. (property "Datasheet" "~" (id 3) (at 207.01 38.1 0)
  4219. (effects (font (size 1.27 1.27)) hide)
  4220. )
  4221. (pin "1" (uuid 7cf12771-71cd-426d-80af-88971cd8ec0f))
  4222. (pin "2" (uuid fd68972d-c418-45bc-9921-bf8df51719b5))
  4223. )
  4224. (symbol (lib_id "New_Library:LVT245") (at 248.92 19.05 0) (unit 1)
  4225. (in_bom yes) (on_board yes) (fields_autoplaced)
  4226. (uuid 02a5e4cf-cf8f-424d-98d2-b0a0b1565138)
  4227. (property "Reference" "U9" (id 0) (at 248.92 17.78 0))
  4228. (property "Value" "LVT245" (id 1) (at 248.92 20.32 0))
  4229. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 248.92 13.97 0)
  4230. (effects (font (size 1.27 1.27)) hide)
  4231. )
  4232. (property "Datasheet" "" (id 3) (at 248.92 19.05 0)
  4233. (effects (font (size 1.27 1.27)) hide)
  4234. )
  4235. (pin "1" (uuid 4c7e63e2-ef93-4976-a548-c1ef700dc51e))
  4236. (pin "10" (uuid 88c3e1d8-920e-4412-b2a4-614d8d03a70a))
  4237. (pin "11" (uuid b7331558-b45a-4c85-9ba7-556c7497aa6c))
  4238. (pin "12" (uuid 1b825145-4b64-4f30-a1c4-29b937e25d1d))
  4239. (pin "13" (uuid 523e32a0-8bce-484a-8f4a-d7b56c2efefb))
  4240. (pin "14" (uuid fb071c2b-453e-4bd0-8769-a03ae1f46a00))
  4241. (pin "15" (uuid ca76311c-47f8-4eff-992d-4622e299211a))
  4242. (pin "16" (uuid 29a302e6-2a1c-42c7-80d4-5f52fcf60d76))
  4243. (pin "17" (uuid 6d27b974-4072-4295-b32a-6a62fe668a2c))
  4244. (pin "18" (uuid 826c58bc-a9be-4844-b982-09004f49fbbb))
  4245. (pin "19" (uuid a04c5350-085a-4f30-96e5-2205680b81dd))
  4246. (pin "2" (uuid f516cfbf-e7f0-462c-9ad7-de2a606289be))
  4247. (pin "20" (uuid f2ca9619-6bf3-44f3-929d-70102c242f21))
  4248. (pin "3" (uuid d3ad5113-0193-44f6-908e-5a9da6dab832))
  4249. (pin "4" (uuid 4100ac4e-ce5c-4703-8da9-fcd68c8b4032))
  4250. (pin "5" (uuid 38ab38d4-f3ba-426e-befa-6bb1bcd30a2c))
  4251. (pin "6" (uuid 7e65e077-8ccd-48e3-9f66-1a7de0f291d7))
  4252. (pin "7" (uuid e7ba17d2-2547-4b6b-9f6a-1ff9181a20cc))
  4253. (pin "8" (uuid 1d43e50d-64b4-48b5-8912-d743a6f80d22))
  4254. (pin "9" (uuid 052deeb3-0657-46ef-9f0f-c3ef755f481a))
  4255. )
  4256. (symbol (lib_id "Device:R") (at 24.13 21.59 180) (unit 1)
  4257. (in_bom yes) (on_board yes)
  4258. (uuid 035dc70d-e8aa-4b6b-b88c-1e59c5c6f6cb)
  4259. (property "Reference" "R41" (id 0) (at 29.3878 21.59 90))
  4260. (property "Value" "4.7k" (id 1) (at 27.0764 21.59 90))
  4261. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 25.908 21.59 90)
  4262. (effects (font (size 1.27 1.27)) hide)
  4263. )
  4264. (property "Datasheet" "~" (id 3) (at 24.13 21.59 0)
  4265. (effects (font (size 1.27 1.27)) hide)
  4266. )
  4267. (pin "1" (uuid 869a3629-b021-4843-b65d-0970215d8ede))
  4268. (pin "2" (uuid 6598c396-ad5d-44bd-bc8b-028eead07608))
  4269. )
  4270. (symbol (lib_id "power:GND") (at 264.16 48.26 0) (unit 1)
  4271. (in_bom yes) (on_board yes)
  4272. (uuid 0886cb74-606a-4d52-9ccf-31726a6ede0c)
  4273. (property "Reference" "#PWR032" (id 0) (at 264.16 54.61 0)
  4274. (effects (font (size 1.27 1.27)) hide)
  4275. )
  4276. (property "Value" "GND" (id 1) (at 264.287 52.6542 0))
  4277. (property "Footprint" "" (id 2) (at 264.16 48.26 0)
  4278. (effects (font (size 1.27 1.27)) hide)
  4279. )
  4280. (property "Datasheet" "" (id 3) (at 264.16 48.26 0)
  4281. (effects (font (size 1.27 1.27)) hide)
  4282. )
  4283. (pin "1" (uuid 21dbffd3-d790-4292-952f-1ab1ca74a9b5))
  4284. )
  4285. (symbol (lib_id "power:GND") (at 274.32 31.75 0) (unit 1)
  4286. (in_bom yes) (on_board yes)
  4287. (uuid 095735aa-ddd8-4263-8867-631a651120f2)
  4288. (property "Reference" "#PWR022" (id 0) (at 274.32 38.1 0)
  4289. (effects (font (size 1.27 1.27)) hide)
  4290. )
  4291. (property "Value" "GND" (id 1) (at 274.447 36.1442 0))
  4292. (property "Footprint" "" (id 2) (at 274.32 31.75 0)
  4293. (effects (font (size 1.27 1.27)) hide)
  4294. )
  4295. (property "Datasheet" "" (id 3) (at 274.32 31.75 0)
  4296. (effects (font (size 1.27 1.27)) hide)
  4297. )
  4298. (pin "1" (uuid dc7adde5-2f89-495f-b439-197a381da337))
  4299. )
  4300. (symbol (lib_id "power:+3V3") (at 231.14 69.85 90) (unit 1)
  4301. (in_bom yes) (on_board yes)
  4302. (uuid 0d3158d8-126d-4ee8-93bd-fcb2b0c14a18)
  4303. (property "Reference" "#PWR0101" (id 0) (at 234.95 69.85 0)
  4304. (effects (font (size 1.27 1.27)) hide)
  4305. )
  4306. (property "Value" "+3V3" (id 1) (at 227.8888 69.469 90)
  4307. (effects (font (size 1.27 1.27)) (justify left))
  4308. )
  4309. (property "Footprint" "" (id 2) (at 231.14 69.85 0)
  4310. (effects (font (size 1.27 1.27)) hide)
  4311. )
  4312. (property "Datasheet" "" (id 3) (at 231.14 69.85 0)
  4313. (effects (font (size 1.27 1.27)) hide)
  4314. )
  4315. (pin "1" (uuid 3608277b-1411-4c19-85b6-02f9d1479cde))
  4316. )
  4317. (symbol (lib_id "Device:R") (at 156.21 182.88 0) (unit 1)
  4318. (in_bom yes) (on_board yes)
  4319. (uuid 1059c071-1344-4c06-bfeb-6bb258be5caf)
  4320. (property "Reference" "R32" (id 0) (at 158.75 181.61 90))
  4321. (property "Value" "4.7k" (id 1) (at 153.67 182.88 90))
  4322. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 154.432 182.88 90)
  4323. (effects (font (size 1.27 1.27)) hide)
  4324. )
  4325. (property "Datasheet" "~" (id 3) (at 156.21 182.88 0)
  4326. (effects (font (size 1.27 1.27)) hide)
  4327. )
  4328. (pin "1" (uuid 533a811f-f7a2-4c8e-bab5-b6e1a82c921e))
  4329. (pin "2" (uuid 999f7290-3493-4b14-a301-5c6fa626e36d))
  4330. )
  4331. (symbol (lib_id "power:GND") (at 168.91 93.98 0) (unit 1)
  4332. (in_bom yes) (on_board yes)
  4333. (uuid 1189f306-dc3b-4904-b0ea-590f85949252)
  4334. (property "Reference" "#PWR0112" (id 0) (at 168.91 100.33 0)
  4335. (effects (font (size 1.27 1.27)) hide)
  4336. )
  4337. (property "Value" "GND" (id 1) (at 169.037 97.2312 90)
  4338. (effects (font (size 1.27 1.27)) (justify right))
  4339. )
  4340. (property "Footprint" "" (id 2) (at 168.91 93.98 0)
  4341. (effects (font (size 1.27 1.27)) hide)
  4342. )
  4343. (property "Datasheet" "" (id 3) (at 168.91 93.98 0)
  4344. (effects (font (size 1.27 1.27)) hide)
  4345. )
  4346. (pin "1" (uuid aef0441b-0505-4eb0-a806-55fcccb06df8))
  4347. )
  4348. (symbol (lib_id "power:+5VD") (at 76.2 173.99 180) (unit 1)
  4349. (in_bom yes) (on_board yes) (fields_autoplaced)
  4350. (uuid 12e48db6-8eac-47f9-9e49-a5ed5707c406)
  4351. (property "Reference" "#PWR038" (id 0) (at 76.2 170.18 0)
  4352. (effects (font (size 1.27 1.27)) hide)
  4353. )
  4354. (property "Value" "+5VD" (id 1) (at 76.2 179.07 0))
  4355. (property "Footprint" "" (id 2) (at 76.2 173.99 0)
  4356. (effects (font (size 1.27 1.27)) hide)
  4357. )
  4358. (property "Datasheet" "" (id 3) (at 76.2 173.99 0)
  4359. (effects (font (size 1.27 1.27)) hide)
  4360. )
  4361. (pin "1" (uuid 8c4a93bc-6d08-4a0e-a19b-232c8c4eee09))
  4362. )
  4363. (symbol (lib_id "Mechanical:MountingHole") (at 196.85 69.85 0) (unit 1)
  4364. (in_bom yes) (on_board yes) (fields_autoplaced)
  4365. (uuid 1312fbcf-80de-48eb-991c-a203983890d1)
  4366. (property "Reference" "H3" (id 0) (at 199.39 68.5799 0)
  4367. (effects (font (size 1.27 1.27)) (justify left))
  4368. )
  4369. (property "Value" "MountingHole" (id 1) (at 199.39 71.1199 0)
  4370. (effects (font (size 1.27 1.27)) (justify left))
  4371. )
  4372. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 196.85 69.85 0)
  4373. (effects (font (size 1.27 1.27)) hide)
  4374. )
  4375. (property "Datasheet" "~" (id 3) (at 196.85 69.85 0)
  4376. (effects (font (size 1.27 1.27)) hide)
  4377. )
  4378. )
  4379. (symbol (lib_id "power:GND") (at 127 162.56 90) (unit 1)
  4380. (in_bom yes) (on_board yes)
  4381. (uuid 1416caaa-51bf-495a-95c0-580a73f485a9)
  4382. (property "Reference" "#PWR0107" (id 0) (at 133.35 162.56 0)
  4383. (effects (font (size 1.27 1.27)) hide)
  4384. )
  4385. (property "Value" "GND" (id 1) (at 131.3942 162.433 90))
  4386. (property "Footprint" "" (id 2) (at 127 162.56 0)
  4387. (effects (font (size 1.27 1.27)) hide)
  4388. )
  4389. (property "Datasheet" "" (id 3) (at 127 162.56 0)
  4390. (effects (font (size 1.27 1.27)) hide)
  4391. )
  4392. (pin "1" (uuid bd7962ab-f1eb-4cfb-8614-41fcc1e9284c))
  4393. )
  4394. (symbol (lib_id "power:GND") (at 210.82 109.22 270) (unit 1)
  4395. (in_bom yes) (on_board yes)
  4396. (uuid 147842c0-fd7a-45c3-bcca-8e6b219b503c)
  4397. (property "Reference" "#PWR061" (id 0) (at 204.47 109.22 0)
  4398. (effects (font (size 1.27 1.27)) hide)
  4399. )
  4400. (property "Value" "GND" (id 1) (at 207.5688 109.347 90)
  4401. (effects (font (size 1.27 1.27)) (justify right))
  4402. )
  4403. (property "Footprint" "" (id 2) (at 210.82 109.22 0)
  4404. (effects (font (size 1.27 1.27)) hide)
  4405. )
  4406. (property "Datasheet" "" (id 3) (at 210.82 109.22 0)
  4407. (effects (font (size 1.27 1.27)) hide)
  4408. )
  4409. (pin "1" (uuid 74bc09b9-c613-4477-98c6-c4b39bbc7327))
  4410. )
  4411. (symbol (lib_id "power:GND") (at 231.14 77.47 270) (unit 1)
  4412. (in_bom yes) (on_board yes)
  4413. (uuid 1557db5f-effa-4bbe-b487-15625e4b297d)
  4414. (property "Reference" "#PWR0103" (id 0) (at 224.79 77.47 0)
  4415. (effects (font (size 1.27 1.27)) hide)
  4416. )
  4417. (property "Value" "GND" (id 1) (at 227.8888 77.597 90)
  4418. (effects (font (size 1.27 1.27)) (justify right))
  4419. )
  4420. (property "Footprint" "" (id 2) (at 231.14 77.47 0)
  4421. (effects (font (size 1.27 1.27)) hide)
  4422. )
  4423. (property "Datasheet" "" (id 3) (at 231.14 77.47 0)
  4424. (effects (font (size 1.27 1.27)) hide)
  4425. )
  4426. (pin "1" (uuid b0b3810f-5d6d-4695-a71d-44f6add3c1b4))
  4427. )
  4428. (symbol (lib_id "Mechanical:MountingHole") (at 191.77 80.01 0) (unit 1)
  4429. (in_bom yes) (on_board yes) (fields_autoplaced)
  4430. (uuid 158e366d-4f48-4ba0-a1f9-c0f1ed045281)
  4431. (property "Reference" "H1" (id 0) (at 194.31 78.7399 0)
  4432. (effects (font (size 1.27 1.27)) (justify left))
  4433. )
  4434. (property "Value" "MountingHole" (id 1) (at 194.31 81.2799 0)
  4435. (effects (font (size 1.27 1.27)) (justify left))
  4436. )
  4437. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 191.77 80.01 0)
  4438. (effects (font (size 1.27 1.27)) hide)
  4439. )
  4440. (property "Datasheet" "~" (id 3) (at 191.77 80.01 0)
  4441. (effects (font (size 1.27 1.27)) hide)
  4442. )
  4443. )
  4444. (symbol (lib_id "power:+2V8") (at 41.91 71.12 0) (unit 1)
  4445. (in_bom yes) (on_board yes)
  4446. (uuid 17678da5-d093-4b8d-814f-456bc855a8de)
  4447. (property "Reference" "#PWR0119" (id 0) (at 41.91 74.93 0)
  4448. (effects (font (size 1.27 1.27)) hide)
  4449. )
  4450. (property "Value" "+2V8" (id 1) (at 42.291 66.7258 0))
  4451. (property "Footprint" "" (id 2) (at 41.91 71.12 0)
  4452. (effects (font (size 1.27 1.27)) hide)
  4453. )
  4454. (property "Datasheet" "" (id 3) (at 41.91 71.12 0)
  4455. (effects (font (size 1.27 1.27)) hide)
  4456. )
  4457. (pin "1" (uuid 47e08d87-24eb-4237-9fe5-76d9b2611508))
  4458. )
  4459. (symbol (lib_id "power:GND") (at 119.38 87.63 270) (unit 1)
  4460. (in_bom yes) (on_board yes)
  4461. (uuid 18c17605-62db-400f-bc22-1ca2c83ed9e1)
  4462. (property "Reference" "#PWR033" (id 0) (at 113.03 87.63 0)
  4463. (effects (font (size 1.27 1.27)) hide)
  4464. )
  4465. (property "Value" "GND" (id 1) (at 114.9858 87.757 90))
  4466. (property "Footprint" "" (id 2) (at 119.38 87.63 0)
  4467. (effects (font (size 1.27 1.27)) hide)
  4468. )
  4469. (property "Datasheet" "" (id 3) (at 119.38 87.63 0)
  4470. (effects (font (size 1.27 1.27)) hide)
  4471. )
  4472. (pin "1" (uuid 41a929d0-b420-447c-a02d-0bbe2b7cc86f))
  4473. )
  4474. (symbol (lib_id "Device:R") (at 123.19 134.62 90) (unit 1)
  4475. (in_bom yes) (on_board yes)
  4476. (uuid 19143b55-66a8-4627-820e-890bcfa18dca)
  4477. (property "Reference" "R21" (id 0) (at 121.92 132.08 90))
  4478. (property "Value" "10k" (id 1) (at 123.19 134.62 90))
  4479. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 123.19 136.398 90)
  4480. (effects (font (size 1.27 1.27)) hide)
  4481. )
  4482. (property "Datasheet" "~" (id 3) (at 123.19 134.62 0)
  4483. (effects (font (size 1.27 1.27)) hide)
  4484. )
  4485. (pin "1" (uuid 554c9af6-a544-477f-bd3e-5a59b9417e73))
  4486. (pin "2" (uuid 317dd146-5829-4d8b-a3f6-31ba382b4cf2))
  4487. )
  4488. (symbol (lib_id "power:+2V8") (at 151.13 147.32 90) (unit 1)
  4489. (in_bom yes) (on_board yes)
  4490. (uuid 19718f2b-7324-4f6f-b87a-42b4887538aa)
  4491. (property "Reference" "#PWR0114" (id 0) (at 154.94 147.32 0)
  4492. (effects (font (size 1.27 1.27)) hide)
  4493. )
  4494. (property "Value" "+2V8" (id 1) (at 146.7358 146.939 90))
  4495. (property "Footprint" "" (id 2) (at 151.13 147.32 0)
  4496. (effects (font (size 1.27 1.27)) hide)
  4497. )
  4498. (property "Datasheet" "" (id 3) (at 151.13 147.32 0)
  4499. (effects (font (size 1.27 1.27)) hide)
  4500. )
  4501. (pin "1" (uuid 4d84cc0c-2cd6-4c05-b2cc-26af266b61a2))
  4502. )
  4503. (symbol (lib_id "Device:R") (at 92.71 43.18 90) (unit 1)
  4504. (in_bom yes) (on_board yes)
  4505. (uuid 19f1c57a-acc4-41a5-9982-d86f42346fa7)
  4506. (property "Reference" "R39" (id 0) (at 91.5416 41.402 0)
  4507. (effects (font (size 1.27 1.27)) (justify left))
  4508. )
  4509. (property "Value" "R" (id 1) (at 93.853 41.402 0)
  4510. (effects (font (size 1.27 1.27)) (justify left))
  4511. )
  4512. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 92.71 44.958 90)
  4513. (effects (font (size 1.27 1.27)) hide)
  4514. )
  4515. (property "Datasheet" "~" (id 3) (at 92.71 43.18 0)
  4516. (effects (font (size 1.27 1.27)) hide)
  4517. )
  4518. (pin "1" (uuid bad36a69-3d2d-479c-a4ea-c36f5b30bcb4))
  4519. (pin "2" (uuid 5e57c37a-4739-4164-b8ab-0d2a29e7170e))
  4520. )
  4521. (symbol (lib_id "power:GND") (at 233.68 48.26 0) (unit 1)
  4522. (in_bom yes) (on_board yes)
  4523. (uuid 1a6177e1-1bd9-4caa-bfec-8785d0b6c848)
  4524. (property "Reference" "#PWR030" (id 0) (at 233.68 54.61 0)
  4525. (effects (font (size 1.27 1.27)) hide)
  4526. )
  4527. (property "Value" "GND" (id 1) (at 233.807 52.6542 0))
  4528. (property "Footprint" "" (id 2) (at 233.68 48.26 0)
  4529. (effects (font (size 1.27 1.27)) hide)
  4530. )
  4531. (property "Datasheet" "" (id 3) (at 233.68 48.26 0)
  4532. (effects (font (size 1.27 1.27)) hide)
  4533. )
  4534. (pin "1" (uuid 82402f5a-b38b-42cf-926c-386e89b919f2))
  4535. )
  4536. (symbol (lib_id "power:+2V8") (at 127 128.27 270) (unit 1)
  4537. (in_bom yes) (on_board yes)
  4538. (uuid 1ae034cc-cef3-4497-9406-a36b776a1b08)
  4539. (property "Reference" "#PWR034" (id 0) (at 123.19 128.27 0)
  4540. (effects (font (size 1.27 1.27)) hide)
  4541. )
  4542. (property "Value" "+2V8" (id 1) (at 131.3942 128.651 90))
  4543. (property "Footprint" "" (id 2) (at 127 128.27 0)
  4544. (effects (font (size 1.27 1.27)) hide)
  4545. )
  4546. (property "Datasheet" "" (id 3) (at 127 128.27 0)
  4547. (effects (font (size 1.27 1.27)) hide)
  4548. )
  4549. (pin "1" (uuid d9aae17d-66d5-4e2a-aa2b-e1b6e779aaaf))
  4550. )
  4551. (symbol (lib_id "Device:R") (at 207.01 35.56 90) (unit 1)
  4552. (in_bom yes) (on_board yes)
  4553. (uuid 1dda851c-2a65-4298-b294-a9961073aaa9)
  4554. (property "Reference" "R47" (id 0) (at 205.74 35.56 90))
  4555. (property "Value" "1k" (id 1) (at 208.28 35.56 90))
  4556. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 207.01 37.338 90)
  4557. (effects (font (size 1.27 1.27)) hide)
  4558. )
  4559. (property "Datasheet" "~" (id 3) (at 207.01 35.56 0)
  4560. (effects (font (size 1.27 1.27)) hide)
  4561. )
  4562. (pin "1" (uuid 0b145267-194b-4625-9fea-0d4eb7146852))
  4563. (pin "2" (uuid 5d404d1b-82ff-4283-93be-d999d29c6449))
  4564. )
  4565. (symbol (lib_id "power:GND") (at 247.65 109.22 90) (unit 1)
  4566. (in_bom yes) (on_board yes)
  4567. (uuid 21b7d809-8773-4902-9010-08ad303d3a73)
  4568. (property "Reference" "#PWR064" (id 0) (at 254 109.22 0)
  4569. (effects (font (size 1.27 1.27)) hide)
  4570. )
  4571. (property "Value" "GND" (id 1) (at 250.9012 109.093 90)
  4572. (effects (font (size 1.27 1.27)) (justify right))
  4573. )
  4574. (property "Footprint" "" (id 2) (at 247.65 109.22 0)
  4575. (effects (font (size 1.27 1.27)) hide)
  4576. )
  4577. (property "Datasheet" "" (id 3) (at 247.65 109.22 0)
  4578. (effects (font (size 1.27 1.27)) hide)
  4579. )
  4580. (pin "1" (uuid 76cb73b8-6ea7-412c-928d-fc56b80056f6))
  4581. )
  4582. (symbol (lib_id "Device:R") (at 237.49 40.64 90) (unit 1)
  4583. (in_bom yes) (on_board yes)
  4584. (uuid 224684c6-3a2a-4db8-9637-7240fcf2a5b0)
  4585. (property "Reference" "R52" (id 0) (at 236.22 40.64 90))
  4586. (property "Value" "1k" (id 1) (at 238.76 40.64 90))
  4587. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 237.49 42.418 90)
  4588. (effects (font (size 1.27 1.27)) hide)
  4589. )
  4590. (property "Datasheet" "~" (id 3) (at 237.49 40.64 0)
  4591. (effects (font (size 1.27 1.27)) hide)
  4592. )
  4593. (pin "1" (uuid 4195e73e-27d0-4b9f-90c9-af01c77f5ba7))
  4594. (pin "2" (uuid 7a5aefed-3d0b-48ac-8d95-b11ab48d719b))
  4595. )
  4596. (symbol (lib_id "Device:R") (at 67.31 33.02 270) (unit 1)
  4597. (in_bom yes) (on_board yes)
  4598. (uuid 224b526f-d4bf-40ee-af49-967fa35e696e)
  4599. (property "Reference" "R34" (id 0) (at 67.31 39.37 0)
  4600. (effects (font (size 1.27 1.27)) (justify left))
  4601. )
  4602. (property "Value" "R" (id 1) (at 64.77 38.1 0)
  4603. (effects (font (size 1.27 1.27)) (justify left))
  4604. )
  4605. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 67.31 31.242 90)
  4606. (effects (font (size 1.27 1.27)) hide)
  4607. )
  4608. (property "Datasheet" "~" (id 3) (at 67.31 33.02 0)
  4609. (effects (font (size 1.27 1.27)) hide)
  4610. )
  4611. (pin "1" (uuid 123050f9-9510-4eac-bdc6-a1c2d300caea))
  4612. (pin "2" (uuid 1daeea75-dd2d-423a-9f46-f78bc63f4fc6))
  4613. )
  4614. (symbol (lib_id "Device:R") (at 259.08 132.08 90) (unit 1)
  4615. (in_bom yes) (on_board yes)
  4616. (uuid 253b0d6b-ffe7-4cbf-ac40-eeb40dc36d64)
  4617. (property "Reference" "R14" (id 0) (at 257.81 132.08 90))
  4618. (property "Value" "1k" (id 1) (at 260.35 132.08 90))
  4619. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 133.858 90)
  4620. (effects (font (size 1.27 1.27)) hide)
  4621. )
  4622. (property "Datasheet" "~" (id 3) (at 259.08 132.08 0)
  4623. (effects (font (size 1.27 1.27)) hide)
  4624. )
  4625. (pin "1" (uuid 4331b280-8062-4b29-88f6-da1bf0c5c545))
  4626. (pin "2" (uuid 488c9a02-115f-4275-9571-bffc85bb87ea))
  4627. )
  4628. (symbol (lib_id "Device:CP") (at 276.86 26.67 0) (unit 1)
  4629. (in_bom yes) (on_board yes)
  4630. (uuid 29562875-7091-49f3-ae5f-38d2449ff6ee)
  4631. (property "Reference" "C15" (id 0) (at 279.8572 25.5016 0)
  4632. (effects (font (size 1.27 1.27)) (justify left))
  4633. )
  4634. (property "Value" "4.7uF" (id 1) (at 279.8572 27.813 0)
  4635. (effects (font (size 1.27 1.27)) (justify left))
  4636. )
  4637. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 277.8252 30.48 0)
  4638. (effects (font (size 1.27 1.27)) hide)
  4639. )
  4640. (property "Datasheet" "~" (id 3) (at 276.86 26.67 0)
  4641. (effects (font (size 1.27 1.27)) hide)
  4642. )
  4643. (pin "1" (uuid e101ed8b-0204-451b-ba98-ead9d091967d))
  4644. (pin "2" (uuid 3fe1cebf-4908-4777-987f-dedb29ea029c))
  4645. )
  4646. (symbol (lib_id "power:GND") (at 256.54 25.4 90) (unit 1)
  4647. (in_bom yes) (on_board yes)
  4648. (uuid 29cefbf4-f394-4720-bff7-30d843d32f60)
  4649. (property "Reference" "#PWR020" (id 0) (at 262.89 25.4 0)
  4650. (effects (font (size 1.27 1.27)) hide)
  4651. )
  4652. (property "Value" "GND" (id 1) (at 260.9342 25.273 90))
  4653. (property "Footprint" "" (id 2) (at 256.54 25.4 0)
  4654. (effects (font (size 1.27 1.27)) hide)
  4655. )
  4656. (property "Datasheet" "" (id 3) (at 256.54 25.4 0)
  4657. (effects (font (size 1.27 1.27)) hide)
  4658. )
  4659. (pin "1" (uuid 9651c7b5-ce6f-4292-8c02-c6f366a37edd))
  4660. )
  4661. (symbol (lib_id "Device:R") (at 195.58 120.65 180) (unit 1)
  4662. (in_bom yes) (on_board yes)
  4663. (uuid 2a7cf715-54e1-4a1f-ab87-6611957d8a99)
  4664. (property "Reference" "R29" (id 0) (at 193.04 121.92 90))
  4665. (property "Value" "1k" (id 1) (at 198.12 120.65 90))
  4666. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 197.358 120.65 90)
  4667. (effects (font (size 1.27 1.27)) hide)
  4668. )
  4669. (property "Datasheet" "~" (id 3) (at 195.58 120.65 0)
  4670. (effects (font (size 1.27 1.27)) hide)
  4671. )
  4672. (pin "1" (uuid 4c0d34d0-8d1c-482a-bcce-271ba6094c36))
  4673. (pin "2" (uuid e12aceff-e611-4175-8421-eb9dac716fa6))
  4674. )
  4675. (symbol (lib_id "Device:R") (at 68.58 97.79 90) (unit 1)
  4676. (in_bom yes) (on_board yes)
  4677. (uuid 2aacc089-5ad1-4daa-ad3c-c778a777df54)
  4678. (property "Reference" "R10" (id 0) (at 67.4116 96.012 0)
  4679. (effects (font (size 1.27 1.27)) (justify left))
  4680. )
  4681. (property "Value" "R" (id 1) (at 69.723 96.012 0)
  4682. (effects (font (size 1.27 1.27)) (justify left))
  4683. )
  4684. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 68.58 99.568 90)
  4685. (effects (font (size 1.27 1.27)) hide)
  4686. )
  4687. (property "Datasheet" "~" (id 3) (at 68.58 97.79 0)
  4688. (effects (font (size 1.27 1.27)) hide)
  4689. )
  4690. (pin "1" (uuid d0349d77-b1aa-40a0-aaf2-3ae5224328c5))
  4691. (pin "2" (uuid 18da1391-0135-4ff4-8f30-9119cda32eaf))
  4692. )
  4693. (symbol (lib_id "Device:R") (at 68.58 85.09 90) (unit 1)
  4694. (in_bom yes) (on_board yes)
  4695. (uuid 2c2472f8-2509-4a9f-be36-0a8d5fd45923)
  4696. (property "Reference" "R7" (id 0) (at 67.4116 83.312 0)
  4697. (effects (font (size 1.27 1.27)) (justify left))
  4698. )
  4699. (property "Value" "R" (id 1) (at 69.723 83.312 0)
  4700. (effects (font (size 1.27 1.27)) (justify left))
  4701. )
  4702. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 68.58 86.868 90)
  4703. (effects (font (size 1.27 1.27)) hide)
  4704. )
  4705. (property "Datasheet" "~" (id 3) (at 68.58 85.09 0)
  4706. (effects (font (size 1.27 1.27)) hide)
  4707. )
  4708. (pin "1" (uuid 87a29822-1840-4f8b-b4a0-598e28880439))
  4709. (pin "2" (uuid 5fe3f022-4eba-49f0-95af-2110ee8ffca8))
  4710. )
  4711. (symbol (lib_id "power:+5VA") (at 76.2 125.73 0) (unit 1)
  4712. (in_bom yes) (on_board yes) (fields_autoplaced)
  4713. (uuid 2f3fa7e6-49a6-4adc-9591-8c6911770fea)
  4714. (property "Reference" "#PWR035" (id 0) (at 76.2 129.54 0)
  4715. (effects (font (size 1.27 1.27)) hide)
  4716. )
  4717. (property "Value" "+5VA" (id 1) (at 76.2 120.65 0))
  4718. (property "Footprint" "" (id 2) (at 76.2 125.73 0)
  4719. (effects (font (size 1.27 1.27)) hide)
  4720. )
  4721. (property "Datasheet" "" (id 3) (at 76.2 125.73 0)
  4722. (effects (font (size 1.27 1.27)) hide)
  4723. )
  4724. (pin "1" (uuid 8d3c7e41-2af0-4988-ad76-edff77927615))
  4725. )
  4726. (symbol (lib_id "Device:R") (at 92.71 33.02 90) (unit 1)
  4727. (in_bom yes) (on_board yes)
  4728. (uuid 2f4df532-4212-49ea-815b-f21ebb8e35ee)
  4729. (property "Reference" "R37" (id 0) (at 91.5416 31.242 0)
  4730. (effects (font (size 1.27 1.27)) (justify left))
  4731. )
  4732. (property "Value" "R" (id 1) (at 93.853 31.242 0)
  4733. (effects (font (size 1.27 1.27)) (justify left))
  4734. )
  4735. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 92.71 34.798 90)
  4736. (effects (font (size 1.27 1.27)) hide)
  4737. )
  4738. (property "Datasheet" "~" (id 3) (at 92.71 33.02 0)
  4739. (effects (font (size 1.27 1.27)) hide)
  4740. )
  4741. (pin "1" (uuid 47ca8d32-c0f0-45f3-ac3f-9d90bf219778))
  4742. (pin "2" (uuid 5ac9d2a8-b96c-44eb-90f0-058b504265b7))
  4743. )
  4744. (symbol (lib_id "power:GND") (at 210.82 147.32 270) (unit 1)
  4745. (in_bom yes) (on_board yes)
  4746. (uuid 2f5b7208-ba9d-4e5f-b5fa-1edbd65e2d1d)
  4747. (property "Reference" "#PWR063" (id 0) (at 204.47 147.32 0)
  4748. (effects (font (size 1.27 1.27)) hide)
  4749. )
  4750. (property "Value" "GND" (id 1) (at 207.5688 147.447 90)
  4751. (effects (font (size 1.27 1.27)) (justify right))
  4752. )
  4753. (property "Footprint" "" (id 2) (at 210.82 147.32 0)
  4754. (effects (font (size 1.27 1.27)) hide)
  4755. )
  4756. (property "Datasheet" "" (id 3) (at 210.82 147.32 0)
  4757. (effects (font (size 1.27 1.27)) hide)
  4758. )
  4759. (pin "1" (uuid 9a106fe7-670e-4ba9-a740-599c08e19e21))
  4760. )
  4761. (symbol (lib_id "New_Library:SN74CBTD3384") (at 55.88 69.85 0) (unit 1)
  4762. (in_bom yes) (on_board yes) (fields_autoplaced)
  4763. (uuid 30ab7a9e-6453-4f73-8467-e65a1142499e)
  4764. (property "Reference" "U1" (id 0) (at 55.88 68.58 0))
  4765. (property "Value" "SN74CBTD3384" (id 1) (at 55.88 71.12 0))
  4766. (property "Footprint" "Package_SO:TSSOP-24_4.4x7.8mm_P0.65mm" (id 2) (at 55.88 69.85 0)
  4767. (effects (font (size 1.27 1.27)) hide)
  4768. )
  4769. (property "Datasheet" "" (id 3) (at 55.88 69.85 0)
  4770. (effects (font (size 1.27 1.27)) hide)
  4771. )
  4772. (pin "1" (uuid 0206ce9e-689e-4952-8df2-e4a83dd16362))
  4773. (pin "10" (uuid e72f8a9d-3bc9-4e9a-9d29-e7a944f1bb0e))
  4774. (pin "11" (uuid 757ea274-2360-42f8-8881-86596e45a0b2))
  4775. (pin "12" (uuid b29f12e3-3d62-45e5-99dd-93f17275d91c))
  4776. (pin "13" (uuid 8418d993-6e19-432b-9372-07791a9efbde))
  4777. (pin "14" (uuid b8dcfb48-f0c0-4c04-bc3a-0c5fa217e133))
  4778. (pin "15" (uuid 4cad8f86-77cd-41c5-a184-12c4303a1eda))
  4779. (pin "16" (uuid 74880237-eac6-445c-b043-4878f8d1c246))
  4780. (pin "17" (uuid 403e07d4-a901-4482-ad7c-e0f395ac5755))
  4781. (pin "18" (uuid d01d7ff9-b73b-4a23-9916-3092f546b2f9))
  4782. (pin "19" (uuid 285b8546-4fd1-4102-a7ac-cac4d0cae21d))
  4783. (pin "2" (uuid f6c0d216-df9b-4827-8ab4-c96f318acb42))
  4784. (pin "20" (uuid 72a05a08-9351-4e14-a862-b3ad6cce3e75))
  4785. (pin "21" (uuid 39a76bdd-4302-47b7-8ab1-2fb7b5b07263))
  4786. (pin "22" (uuid d0f59af0-dbd8-4380-8b70-1df03613d646))
  4787. (pin "23" (uuid fe49ba99-7386-43ea-b4b6-92bfda8806b2))
  4788. (pin "24" (uuid ed4a25c1-5fc3-477b-932c-a4771c792ffb))
  4789. (pin "3" (uuid 0bad1e4e-5d7f-4f03-aec4-4585bf14606e))
  4790. (pin "4" (uuid 0c42f456-d5ee-4b54-a59f-fb72fa7476f1))
  4791. (pin "5" (uuid de026c2a-0604-47d8-a3ba-6d32d4987e00))
  4792. (pin "6" (uuid 3af82c13-57d1-42f6-9e75-8c30ea06dbbf))
  4793. (pin "7" (uuid 6fe5d654-c7ae-4938-9033-c1b530201a4b))
  4794. (pin "8" (uuid c1924b86-2271-4ffc-9c07-0780ada453a6))
  4795. (pin "9" (uuid 7dfe8a94-c8b1-4323-826a-4ac5cbceb9cf))
  4796. )
  4797. (symbol (lib_id "power:+2V8") (at 139.7 99.06 0) (unit 1)
  4798. (in_bom yes) (on_board yes)
  4799. (uuid 3d998970-975b-4df4-8d2c-e26cbe5d87a8)
  4800. (property "Reference" "#PWR055" (id 0) (at 139.7 102.87 0)
  4801. (effects (font (size 1.27 1.27)) hide)
  4802. )
  4803. (property "Value" "+2V8" (id 1) (at 140.081 94.6658 0))
  4804. (property "Footprint" "" (id 2) (at 139.7 99.06 0)
  4805. (effects (font (size 1.27 1.27)) hide)
  4806. )
  4807. (property "Datasheet" "" (id 3) (at 139.7 99.06 0)
  4808. (effects (font (size 1.27 1.27)) hide)
  4809. )
  4810. (pin "1" (uuid 5fea8d54-f65e-4fd6-94a2-ecf1fa10cb20))
  4811. )
  4812. (symbol (lib_id "Device:R") (at 184.15 35.56 90) (unit 1)
  4813. (in_bom yes) (on_board yes)
  4814. (uuid 3e79ae51-6fff-425a-8563-bcde1b95ae5c)
  4815. (property "Reference" "R44" (id 0) (at 182.88 35.56 90))
  4816. (property "Value" "1k" (id 1) (at 185.42 35.56 90))
  4817. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 184.15 37.338 90)
  4818. (effects (font (size 1.27 1.27)) hide)
  4819. )
  4820. (property "Datasheet" "~" (id 3) (at 184.15 35.56 0)
  4821. (effects (font (size 1.27 1.27)) hide)
  4822. )
  4823. (pin "1" (uuid 6903222b-5c1e-4402-be27-b1cf6cfcb4d0))
  4824. (pin "2" (uuid b6fa4d3f-390f-48d6-9133-20af22b9c146))
  4825. )
  4826. (symbol (lib_id "Device:R") (at 259.08 129.54 90) (unit 1)
  4827. (in_bom yes) (on_board yes)
  4828. (uuid 45612d4c-703d-4a83-97e9-e6f23982080a)
  4829. (property "Reference" "R13" (id 0) (at 257.81 129.54 90))
  4830. (property "Value" "1k" (id 1) (at 260.35 129.54 90))
  4831. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 131.318 90)
  4832. (effects (font (size 1.27 1.27)) hide)
  4833. )
  4834. (property "Datasheet" "~" (id 3) (at 259.08 129.54 0)
  4835. (effects (font (size 1.27 1.27)) hide)
  4836. )
  4837. (pin "1" (uuid f37ea790-f0b4-4a05-be64-2884806caed1))
  4838. (pin "2" (uuid 5aeb18aa-a87e-42b9-b805-0287e0e043cf))
  4839. )
  4840. (symbol (lib_id "Connector:Conn_01x02_Male") (at 163.83 91.44 0) (unit 1)
  4841. (in_bom yes) (on_board yes) (fields_autoplaced)
  4842. (uuid 47da6c1a-7392-462c-8943-21ca2644ac0d)
  4843. (property "Reference" "J6" (id 0) (at 164.465 86.36 0))
  4844. (property "Value" "Conn_01x02_Male" (id 1) (at 164.465 88.9 0))
  4845. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 163.83 91.44 0)
  4846. (effects (font (size 1.27 1.27)) hide)
  4847. )
  4848. (property "Datasheet" "~" (id 3) (at 163.83 91.44 0)
  4849. (effects (font (size 1.27 1.27)) hide)
  4850. )
  4851. (pin "1" (uuid 4fe9ecd8-aff5-49fe-8802-b0fe1ca6328e))
  4852. (pin "2" (uuid 17a19619-2b28-4fac-9698-9a40c3627bc5))
  4853. )
  4854. (symbol (lib_id "Device:R") (at 259.08 152.4 90) (unit 1)
  4855. (in_bom yes) (on_board yes)
  4856. (uuid 482779d0-bc8d-4d3f-b57e-dc5f602f2746)
  4857. (property "Reference" "R42" (id 0) (at 257.81 152.4 90))
  4858. (property "Value" "1k" (id 1) (at 260.35 152.4 90))
  4859. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 154.178 90)
  4860. (effects (font (size 1.27 1.27)) hide)
  4861. )
  4862. (property "Datasheet" "~" (id 3) (at 259.08 152.4 0)
  4863. (effects (font (size 1.27 1.27)) hide)
  4864. )
  4865. (pin "1" (uuid 10a92439-c874-4f39-91ec-1040476a0fc5))
  4866. (pin "2" (uuid dfb3c7c9-7d35-438e-bd52-8b22a89008bc))
  4867. )
  4868. (symbol (lib_id "power:GND") (at 119.38 72.39 270) (unit 1)
  4869. (in_bom yes) (on_board yes)
  4870. (uuid 4df327fb-40bd-4678-adb0-cb272ec5feaa)
  4871. (property "Reference" "#PWR028" (id 0) (at 113.03 72.39 0)
  4872. (effects (font (size 1.27 1.27)) hide)
  4873. )
  4874. (property "Value" "GND" (id 1) (at 114.9858 72.517 90))
  4875. (property "Footprint" "" (id 2) (at 119.38 72.39 0)
  4876. (effects (font (size 1.27 1.27)) hide)
  4877. )
  4878. (property "Datasheet" "" (id 3) (at 119.38 72.39 0)
  4879. (effects (font (size 1.27 1.27)) hide)
  4880. )
  4881. (pin "1" (uuid 1ef7eeca-c732-4c36-ac11-7a743c8c7b7b))
  4882. )
  4883. (symbol (lib_id "power:GND") (at 220.98 31.75 0) (unit 1)
  4884. (in_bom yes) (on_board yes)
  4885. (uuid 4fa411ec-2740-4e95-ac94-e10999c53b4c)
  4886. (property "Reference" "#PWR010" (id 0) (at 220.98 38.1 0)
  4887. (effects (font (size 1.27 1.27)) hide)
  4888. )
  4889. (property "Value" "GND" (id 1) (at 221.107 36.1442 0))
  4890. (property "Footprint" "" (id 2) (at 220.98 31.75 0)
  4891. (effects (font (size 1.27 1.27)) hide)
  4892. )
  4893. (property "Datasheet" "" (id 3) (at 220.98 31.75 0)
  4894. (effects (font (size 1.27 1.27)) hide)
  4895. )
  4896. (pin "1" (uuid 50a3121c-bff9-44af-8121-006554fc7440))
  4897. )
  4898. (symbol (lib_id "Device:R") (at 123.19 167.64 90) (unit 1)
  4899. (in_bom yes) (on_board yes)
  4900. (uuid 52a5054b-f9b4-46c9-8eca-152a8f1baa5a)
  4901. (property "Reference" "R25" (id 0) (at 121.92 165.1 90))
  4902. (property "Value" "1k" (id 1) (at 123.19 167.64 90))
  4903. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 123.19 169.418 90)
  4904. (effects (font (size 1.27 1.27)) hide)
  4905. )
  4906. (property "Datasheet" "~" (id 3) (at 123.19 167.64 0)
  4907. (effects (font (size 1.27 1.27)) hide)
  4908. )
  4909. (pin "1" (uuid 3fe24602-d073-40f8-b632-15d16999d754))
  4910. (pin "2" (uuid 42bc0fbf-56ab-48de-8e3b-12ab720cf475))
  4911. )
  4912. (symbol (lib_id "Device:R") (at 43.18 97.79 270) (unit 1)
  4913. (in_bom yes) (on_board yes)
  4914. (uuid 547f854c-809f-4d9a-bed1-99f94d9cfbe8)
  4915. (property "Reference" "R2" (id 0) (at 44.3484 99.568 0)
  4916. (effects (font (size 1.27 1.27)) (justify left))
  4917. )
  4918. (property "Value" "R" (id 1) (at 42.037 99.568 0)
  4919. (effects (font (size 1.27 1.27)) (justify left))
  4920. )
  4921. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 96.012 90)
  4922. (effects (font (size 1.27 1.27)) hide)
  4923. )
  4924. (property "Datasheet" "~" (id 3) (at 43.18 97.79 0)
  4925. (effects (font (size 1.27 1.27)) hide)
  4926. )
  4927. (pin "1" (uuid 57bfddf9-dd54-491b-8ee3-ecbbfdf9684d))
  4928. (pin "2" (uuid 3bbebb31-8265-4635-aa97-a0ef16eca3a7))
  4929. )
  4930. (symbol (lib_id "Device:R") (at 43.18 95.25 270) (unit 1)
  4931. (in_bom yes) (on_board yes)
  4932. (uuid 5480b7c9-e7b6-477f-88f2-37811efd3a65)
  4933. (property "Reference" "R3" (id 0) (at 40.64 100.33 0)
  4934. (effects (font (size 1.27 1.27)) (justify left))
  4935. )
  4936. (property "Value" "R" (id 1) (at 43.18 101.6 0)
  4937. (effects (font (size 1.27 1.27)) (justify left))
  4938. )
  4939. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 93.472 90)
  4940. (effects (font (size 1.27 1.27)) hide)
  4941. )
  4942. (property "Datasheet" "~" (id 3) (at 43.18 95.25 0)
  4943. (effects (font (size 1.27 1.27)) hide)
  4944. )
  4945. (pin "1" (uuid f6447774-d4f9-4da4-a199-db04081151bd))
  4946. (pin "2" (uuid 4b41ebe4-e581-45dc-b24b-c6e0c8af2e3f))
  4947. )
  4948. (symbol (lib_id "power:GND") (at 210.82 48.26 0) (unit 1)
  4949. (in_bom yes) (on_board yes)
  4950. (uuid 549a41ac-0f13-4ae7-abc8-b559f0d7a298)
  4951. (property "Reference" "#PWR029" (id 0) (at 210.82 54.61 0)
  4952. (effects (font (size 1.27 1.27)) hide)
  4953. )
  4954. (property "Value" "GND" (id 1) (at 210.947 52.6542 0))
  4955. (property "Footprint" "" (id 2) (at 210.82 48.26 0)
  4956. (effects (font (size 1.27 1.27)) hide)
  4957. )
  4958. (property "Datasheet" "" (id 3) (at 210.82 48.26 0)
  4959. (effects (font (size 1.27 1.27)) hide)
  4960. )
  4961. (pin "1" (uuid 0537934b-3744-4487-b732-8f0f9a79ef3f))
  4962. )
  4963. (symbol (lib_id "power:+5VD") (at 25.4 168.91 90) (unit 1)
  4964. (in_bom yes) (on_board yes)
  4965. (uuid 551312e2-9236-46bf-b24e-dd79268636e8)
  4966. (property "Reference" "#PWR014" (id 0) (at 29.21 168.91 0)
  4967. (effects (font (size 1.27 1.27)) hide)
  4968. )
  4969. (property "Value" "+5VD" (id 1) (at 16.51 168.91 90)
  4970. (effects (font (size 1.27 1.27)) (justify right))
  4971. )
  4972. (property "Footprint" "" (id 2) (at 25.4 168.91 0)
  4973. (effects (font (size 1.27 1.27)) hide)
  4974. )
  4975. (property "Datasheet" "" (id 3) (at 25.4 168.91 0)
  4976. (effects (font (size 1.27 1.27)) hide)
  4977. )
  4978. (pin "1" (uuid da741d9b-7df1-4447-9b57-18e7e8952aa7))
  4979. )
  4980. (symbol (lib_id "power:GND") (at 46.99 102.87 0) (unit 1)
  4981. (in_bom yes) (on_board yes)
  4982. (uuid 556f9010-28aa-4580-ba99-ef3941c5933d)
  4983. (property "Reference" "#PWR0115" (id 0) (at 46.99 109.22 0)
  4984. (effects (font (size 1.27 1.27)) hide)
  4985. )
  4986. (property "Value" "GND" (id 1) (at 47.117 107.2642 0))
  4987. (property "Footprint" "" (id 2) (at 46.99 102.87 0)
  4988. (effects (font (size 1.27 1.27)) hide)
  4989. )
  4990. (property "Datasheet" "" (id 3) (at 46.99 102.87 0)
  4991. (effects (font (size 1.27 1.27)) hide)
  4992. )
  4993. (pin "1" (uuid dcd2e509-85d6-4fae-8b2c-9417409f5aa5))
  4994. )
  4995. (symbol (lib_id "Device:R") (at 237.49 27.94 90) (unit 1)
  4996. (in_bom yes) (on_board yes)
  4997. (uuid 5ad6a62b-3735-4bd2-b03c-8d3cc33f3dad)
  4998. (property "Reference" "R50" (id 0) (at 236.22 27.94 90))
  4999. (property "Value" "1k" (id 1) (at 238.76 27.94 90))
  5000. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 237.49 29.718 90)
  5001. (effects (font (size 1.27 1.27)) hide)
  5002. )
  5003. (property "Datasheet" "~" (id 3) (at 237.49 27.94 0)
  5004. (effects (font (size 1.27 1.27)) hide)
  5005. )
  5006. (pin "1" (uuid 3953e3dd-8fa8-4d1a-9a4d-64c5571d1619))
  5007. (pin "2" (uuid 856d7b1b-e7fd-40eb-8624-9e8de1be9fe2))
  5008. )
  5009. (symbol (lib_id "power:+2V8") (at 168.91 118.11 270) (unit 1)
  5010. (in_bom yes) (on_board yes)
  5011. (uuid 5bad8d7f-8626-44e7-a80d-c852acae5cdd)
  5012. (property "Reference" "#PWR053" (id 0) (at 165.1 118.11 0)
  5013. (effects (font (size 1.27 1.27)) hide)
  5014. )
  5015. (property "Value" "+2V8" (id 1) (at 173.3042 118.491 90))
  5016. (property "Footprint" "" (id 2) (at 168.91 118.11 0)
  5017. (effects (font (size 1.27 1.27)) hide)
  5018. )
  5019. (property "Datasheet" "" (id 3) (at 168.91 118.11 0)
  5020. (effects (font (size 1.27 1.27)) hide)
  5021. )
  5022. (pin "1" (uuid cf6e67b4-a374-45e5-8e42-1706aa54ddf2))
  5023. )
  5024. (symbol (lib_id "power:GND") (at 71.12 50.8 0) (unit 1)
  5025. (in_bom yes) (on_board yes)
  5026. (uuid 5c1a2741-1d97-49f6-a353-78939740670d)
  5027. (property "Reference" "#PWR046" (id 0) (at 71.12 57.15 0)
  5028. (effects (font (size 1.27 1.27)) hide)
  5029. )
  5030. (property "Value" "GND" (id 1) (at 71.247 55.1942 0))
  5031. (property "Footprint" "" (id 2) (at 71.12 50.8 0)
  5032. (effects (font (size 1.27 1.27)) hide)
  5033. )
  5034. (property "Datasheet" "" (id 3) (at 71.12 50.8 0)
  5035. (effects (font (size 1.27 1.27)) hide)
  5036. )
  5037. (pin "1" (uuid 5960a0ae-2877-4c6f-b62b-5805f669c131))
  5038. )
  5039. (symbol (lib_id "power:+5VD") (at 100.33 173.99 180) (unit 1)
  5040. (in_bom yes) (on_board yes) (fields_autoplaced)
  5041. (uuid 5e135c68-2f82-4d52-8b2f-4d2e73e945ed)
  5042. (property "Reference" "#PWR045" (id 0) (at 100.33 170.18 0)
  5043. (effects (font (size 1.27 1.27)) hide)
  5044. )
  5045. (property "Value" "+5VD" (id 1) (at 100.33 179.07 0))
  5046. (property "Footprint" "" (id 2) (at 100.33 173.99 0)
  5047. (effects (font (size 1.27 1.27)) hide)
  5048. )
  5049. (property "Datasheet" "" (id 3) (at 100.33 173.99 0)
  5050. (effects (font (size 1.27 1.27)) hide)
  5051. )
  5052. (pin "1" (uuid 5cbf59da-aadb-4332-8ece-60e02a672077))
  5053. )
  5054. (symbol (lib_id "Device:R") (at 259.08 149.86 90) (unit 1)
  5055. (in_bom yes) (on_board yes)
  5056. (uuid 60ed3edb-5bb4-4c48-966e-50df259296e8)
  5057. (property "Reference" "R19" (id 0) (at 257.81 149.86 90))
  5058. (property "Value" "1k" (id 1) (at 260.35 149.86 90))
  5059. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 151.638 90)
  5060. (effects (font (size 1.27 1.27)) hide)
  5061. )
  5062. (property "Datasheet" "~" (id 3) (at 259.08 149.86 0)
  5063. (effects (font (size 1.27 1.27)) hide)
  5064. )
  5065. (pin "1" (uuid f821c797-2931-4ff3-98d7-9c4818d24090))
  5066. (pin "2" (uuid cc831692-1235-4eef-84a9-0d311eaa5331))
  5067. )
  5068. (symbol (lib_id "power:+2V8") (at 156.21 186.69 180) (unit 1)
  5069. (in_bom yes) (on_board yes)
  5070. (uuid 61108e1a-8767-476c-bd5f-d4afc3774b98)
  5071. (property "Reference" "#PWR0111" (id 0) (at 156.21 182.88 0)
  5072. (effects (font (size 1.27 1.27)) hide)
  5073. )
  5074. (property "Value" "+2V8" (id 1) (at 155.829 191.0842 0))
  5075. (property "Footprint" "" (id 2) (at 156.21 186.69 0)
  5076. (effects (font (size 1.27 1.27)) hide)
  5077. )
  5078. (property "Datasheet" "" (id 3) (at 156.21 186.69 0)
  5079. (effects (font (size 1.27 1.27)) hide)
  5080. )
  5081. (pin "1" (uuid 62656c0a-fc39-4ff5-aafa-ee952d4a106c))
  5082. )
  5083. (symbol (lib_id "power:GND") (at 127 167.64 90) (unit 1)
  5084. (in_bom yes) (on_board yes)
  5085. (uuid 6266cb10-8d45-4d13-a0d7-9e82125746ed)
  5086. (property "Reference" "#PWR0106" (id 0) (at 133.35 167.64 0)
  5087. (effects (font (size 1.27 1.27)) hide)
  5088. )
  5089. (property "Value" "GND" (id 1) (at 131.3942 167.513 90))
  5090. (property "Footprint" "" (id 2) (at 127 167.64 0)
  5091. (effects (font (size 1.27 1.27)) hide)
  5092. )
  5093. (property "Datasheet" "" (id 3) (at 127 167.64 0)
  5094. (effects (font (size 1.27 1.27)) hide)
  5095. )
  5096. (pin "1" (uuid 6971014d-4cd1-4dfe-a31a-05761df3b0ac))
  5097. )
  5098. (symbol (lib_id "Device:R") (at 92.71 45.72 90) (unit 1)
  5099. (in_bom yes) (on_board yes)
  5100. (uuid 63acbd49-4c30-4f9f-a12b-866bae4c802e)
  5101. (property "Reference" "R40" (id 0) (at 91.5416 43.942 0)
  5102. (effects (font (size 1.27 1.27)) (justify left))
  5103. )
  5104. (property "Value" "R" (id 1) (at 93.853 43.942 0)
  5105. (effects (font (size 1.27 1.27)) (justify left))
  5106. )
  5107. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 92.71 47.498 90)
  5108. (effects (font (size 1.27 1.27)) hide)
  5109. )
  5110. (property "Datasheet" "~" (id 3) (at 92.71 45.72 0)
  5111. (effects (font (size 1.27 1.27)) hide)
  5112. )
  5113. (pin "1" (uuid 0a684517-9915-4558-8761-ae787dd25632))
  5114. (pin "2" (uuid 119b0757-415d-4757-b606-d6a87549d02c))
  5115. )
  5116. (symbol (lib_id "Device:R") (at 134.62 180.34 0) (unit 1)
  5117. (in_bom yes) (on_board yes)
  5118. (uuid 652b1960-8dfd-48dc-befa-6a052fa5e7dd)
  5119. (property "Reference" "R26" (id 0) (at 137.16 179.07 90))
  5120. (property "Value" "1k" (id 1) (at 134.62 179.07 90))
  5121. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 132.842 180.34 90)
  5122. (effects (font (size 1.27 1.27)) hide)
  5123. )
  5124. (property "Datasheet" "~" (id 3) (at 134.62 180.34 0)
  5125. (effects (font (size 1.27 1.27)) hide)
  5126. )
  5127. (pin "1" (uuid efaeef95-c792-462a-81e4-f97be6ba5488))
  5128. (pin "2" (uuid 0ea051e7-4a24-4691-9bbc-b49b0a835db2))
  5129. )
  5130. (symbol (lib_id "power:GND") (at 180.34 48.26 0) (unit 1)
  5131. (in_bom yes) (on_board yes)
  5132. (uuid 670f3273-8a72-4075-9f94-55a584dbacb3)
  5133. (property "Reference" "#PWR023" (id 0) (at 180.34 54.61 0)
  5134. (effects (font (size 1.27 1.27)) hide)
  5135. )
  5136. (property "Value" "GND" (id 1) (at 180.467 52.6542 0))
  5137. (property "Footprint" "" (id 2) (at 180.34 48.26 0)
  5138. (effects (font (size 1.27 1.27)) hide)
  5139. )
  5140. (property "Datasheet" "" (id 3) (at 180.34 48.26 0)
  5141. (effects (font (size 1.27 1.27)) hide)
  5142. )
  5143. (pin "1" (uuid 33604ec8-8054-4c0e-a7f0-8ddf94e291cb))
  5144. )
  5145. (symbol (lib_id "Device:R") (at 43.18 85.09 270) (unit 1)
  5146. (in_bom yes) (on_board yes)
  5147. (uuid 69140b34-6405-4617-8e1d-b20cdbc477da)
  5148. (property "Reference" "R5" (id 0) (at 44.3484 86.868 0)
  5149. (effects (font (size 1.27 1.27)) (justify left))
  5150. )
  5151. (property "Value" "R" (id 1) (at 42.037 86.868 0)
  5152. (effects (font (size 1.27 1.27)) (justify left))
  5153. )
  5154. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 83.312 90)
  5155. (effects (font (size 1.27 1.27)) hide)
  5156. )
  5157. (property "Datasheet" "~" (id 3) (at 43.18 85.09 0)
  5158. (effects (font (size 1.27 1.27)) hide)
  5159. )
  5160. (pin "1" (uuid ed738ef3-cac2-48f2-9da8-a5d59d179bb8))
  5161. (pin "2" (uuid 23ea0413-2a73-4679-984a-8a4935a97113))
  5162. )
  5163. (symbol (lib_id "power:GND") (at 247.65 134.62 90) (unit 1)
  5164. (in_bom yes) (on_board yes)
  5165. (uuid 69e72ffc-cc4c-4585-bfe1-2f783f8da8fb)
  5166. (property "Reference" "#PWR066" (id 0) (at 254 134.62 0)
  5167. (effects (font (size 1.27 1.27)) hide)
  5168. )
  5169. (property "Value" "GND" (id 1) (at 250.9012 134.493 90)
  5170. (effects (font (size 1.27 1.27)) (justify right))
  5171. )
  5172. (property "Footprint" "" (id 2) (at 247.65 134.62 0)
  5173. (effects (font (size 1.27 1.27)) hide)
  5174. )
  5175. (property "Datasheet" "" (id 3) (at 247.65 134.62 0)
  5176. (effects (font (size 1.27 1.27)) hide)
  5177. )
  5178. (pin "1" (uuid 08a0da7d-1538-42f7-96e4-968b0736384d))
  5179. )
  5180. (symbol (lib_id "Device:R") (at 43.18 87.63 270) (unit 1)
  5181. (in_bom yes) (on_board yes)
  5182. (uuid 6c179abf-6553-4c89-b67b-91134e77d610)
  5183. (property "Reference" "R4" (id 0) (at 41.91 66.04 0)
  5184. (effects (font (size 1.27 1.27)) (justify left))
  5185. )
  5186. (property "Value" "R" (id 1) (at 40.64 92.71 0)
  5187. (effects (font (size 1.27 1.27)) (justify left))
  5188. )
  5189. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 43.18 85.852 90)
  5190. (effects (font (size 1.27 1.27)) hide)
  5191. )
  5192. (property "Datasheet" "~" (id 3) (at 43.18 87.63 0)
  5193. (effects (font (size 1.27 1.27)) hide)
  5194. )
  5195. (pin "1" (uuid 36754573-eac5-48b0-b13d-7deb5489f2d4))
  5196. (pin "2" (uuid 042b565d-3a56-4cee-ab65-41186b82df6e))
  5197. )
  5198. (symbol (lib_id "Device:R") (at 259.08 139.7 90) (unit 1)
  5199. (in_bom yes) (on_board yes)
  5200. (uuid 704df935-5853-4445-8385-36e1eb54bf1d)
  5201. (property "Reference" "R16" (id 0) (at 257.81 139.7 90))
  5202. (property "Value" "1k" (id 1) (at 260.35 139.7 90))
  5203. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 141.478 90)
  5204. (effects (font (size 1.27 1.27)) hide)
  5205. )
  5206. (property "Datasheet" "~" (id 3) (at 259.08 139.7 0)
  5207. (effects (font (size 1.27 1.27)) hide)
  5208. )
  5209. (pin "1" (uuid 835397a0-9cab-43a0-8de6-3d49a9605ddb))
  5210. (pin "2" (uuid 9411df3e-aa92-4164-a8da-a8cb9f9dddfa))
  5211. )
  5212. (symbol (lib_id "Device:R") (at 237.49 33.02 90) (unit 1)
  5213. (in_bom yes) (on_board yes)
  5214. (uuid 708635f1-b827-4e01-8f03-671a256bb282)
  5215. (property "Reference" "R51" (id 0) (at 236.22 33.02 90))
  5216. (property "Value" "1k" (id 1) (at 238.76 33.02 90))
  5217. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 237.49 34.798 90)
  5218. (effects (font (size 1.27 1.27)) hide)
  5219. )
  5220. (property "Datasheet" "~" (id 3) (at 237.49 33.02 0)
  5221. (effects (font (size 1.27 1.27)) hide)
  5222. )
  5223. (pin "1" (uuid 5fbf4aad-f3bf-41ea-81d7-ed4a937ad8dc))
  5224. (pin "2" (uuid f3ef358e-11af-4164-ab9a-46fe3719f976))
  5225. )
  5226. (symbol (lib_id "power:+5F") (at 17.78 54.61 0) (unit 1)
  5227. (in_bom yes) (on_board yes)
  5228. (uuid 70a3b4a9-34a4-4812-875b-c79bc733552c)
  5229. (property "Reference" "#PWR0116" (id 0) (at 17.78 58.42 0)
  5230. (effects (font (size 1.27 1.27)) hide)
  5231. )
  5232. (property "Value" "+5F" (id 1) (at 18.161 51.3588 90)
  5233. (effects (font (size 1.27 1.27)) (justify left))
  5234. )
  5235. (property "Footprint" "" (id 2) (at 17.78 54.61 0)
  5236. (effects (font (size 1.27 1.27)) hide)
  5237. )
  5238. (property "Datasheet" "" (id 3) (at 17.78 54.61 0)
  5239. (effects (font (size 1.27 1.27)) hide)
  5240. )
  5241. (pin "1" (uuid 8b4d27d2-dc1c-428f-8d43-4ed8d42fce62))
  5242. )
  5243. (symbol (lib_id "power:+2V8") (at 127 140.97 270) (unit 1)
  5244. (in_bom yes) (on_board yes)
  5245. (uuid 717d2f57-c4d2-4d17-b94a-1431d5969ce3)
  5246. (property "Reference" "#PWR040" (id 0) (at 123.19 140.97 0)
  5247. (effects (font (size 1.27 1.27)) hide)
  5248. )
  5249. (property "Value" "+2V8" (id 1) (at 131.3942 141.351 90))
  5250. (property "Footprint" "" (id 2) (at 127 140.97 0)
  5251. (effects (font (size 1.27 1.27)) hide)
  5252. )
  5253. (property "Datasheet" "" (id 3) (at 127 140.97 0)
  5254. (effects (font (size 1.27 1.27)) hide)
  5255. )
  5256. (pin "1" (uuid 13948c97-85d7-4457-969d-695855b61fb2))
  5257. )
  5258. (symbol (lib_id "Device:R") (at 123.19 140.97 90) (unit 1)
  5259. (in_bom yes) (on_board yes)
  5260. (uuid 72d51e25-b8cb-4e11-a9be-3d47c85ae9f1)
  5261. (property "Reference" "R22" (id 0) (at 121.92 138.43 90))
  5262. (property "Value" "10k" (id 1) (at 123.19 140.97 90))
  5263. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 123.19 142.748 90)
  5264. (effects (font (size 1.27 1.27)) hide)
  5265. )
  5266. (property "Datasheet" "~" (id 3) (at 123.19 140.97 0)
  5267. (effects (font (size 1.27 1.27)) hide)
  5268. )
  5269. (pin "1" (uuid e9e82278-692a-43fb-8c54-009c00b48a3b))
  5270. (pin "2" (uuid 79ffce89-fb39-4580-8a1c-d804d52e1144))
  5271. )
  5272. (symbol (lib_id "Device:R") (at 259.08 144.78 90) (unit 1)
  5273. (in_bom yes) (on_board yes)
  5274. (uuid 773dba32-4bf0-46f0-8868-b7ac10ad8702)
  5275. (property "Reference" "R18" (id 0) (at 257.81 144.78 90))
  5276. (property "Value" "1k" (id 1) (at 260.35 144.78 90))
  5277. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 146.558 90)
  5278. (effects (font (size 1.27 1.27)) hide)
  5279. )
  5280. (property "Datasheet" "~" (id 3) (at 259.08 144.78 0)
  5281. (effects (font (size 1.27 1.27)) hide)
  5282. )
  5283. (pin "1" (uuid 0a6b6265-0ded-49a2-b2e8-5b2b72c607a1))
  5284. (pin "2" (uuid 2dc2d4a4-38c5-412c-b4f8-a3e14dac65d3))
  5285. )
  5286. (symbol (lib_id "power:GND") (at 119.38 80.01 270) (unit 1)
  5287. (in_bom yes) (on_board yes)
  5288. (uuid 782b4bac-1551-4a65-9b81-069846741654)
  5289. (property "Reference" "#PWR031" (id 0) (at 113.03 80.01 0)
  5290. (effects (font (size 1.27 1.27)) hide)
  5291. )
  5292. (property "Value" "GND" (id 1) (at 114.9858 80.137 90))
  5293. (property "Footprint" "" (id 2) (at 119.38 80.01 0)
  5294. (effects (font (size 1.27 1.27)) hide)
  5295. )
  5296. (property "Datasheet" "" (id 3) (at 119.38 80.01 0)
  5297. (effects (font (size 1.27 1.27)) hide)
  5298. )
  5299. (pin "1" (uuid 43e320ff-2f51-4a9c-b78f-e9493df7b6cb))
  5300. )
  5301. (symbol (lib_id "Connector_Generic:Conn_02x02_Odd_Even") (at 146.05 176.53 0) (unit 1)
  5302. (in_bom yes) (on_board yes) (fields_autoplaced)
  5303. (uuid 7a317133-a9aa-4e92-bc61-5429ccd5ee34)
  5304. (property "Reference" "J4" (id 0) (at 147.32 170.18 0))
  5305. (property "Value" "SW" (id 1) (at 147.32 172.72 0))
  5306. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" (id 2) (at 146.05 176.53 0)
  5307. (effects (font (size 1.27 1.27)) hide)
  5308. )
  5309. (property "Datasheet" "~" (id 3) (at 146.05 176.53 0)
  5310. (effects (font (size 1.27 1.27)) hide)
  5311. )
  5312. (pin "1" (uuid a43a595e-791d-4e3a-a714-4d8071766f7b))
  5313. (pin "2" (uuid 195e91b6-ab8a-4844-a7af-117bc35e6be3))
  5314. (pin "3" (uuid 487d21cb-a1ea-41dc-ba10-cf9ebb2bb706))
  5315. (pin "4" (uuid 758f7867-6ad4-44f2-a516-88d081bc2a9c))
  5316. )
  5317. (symbol (lib_id "power:GND") (at 139.7 110.49 0) (unit 1)
  5318. (in_bom yes) (on_board yes)
  5319. (uuid 7a3bc616-6c5f-4b6b-9ab9-fc557e3747d5)
  5320. (property "Reference" "#PWR056" (id 0) (at 139.7 116.84 0)
  5321. (effects (font (size 1.27 1.27)) hide)
  5322. )
  5323. (property "Value" "GND" (id 1) (at 139.827 113.7412 90)
  5324. (effects (font (size 1.27 1.27)) (justify right))
  5325. )
  5326. (property "Footprint" "" (id 2) (at 139.7 110.49 0)
  5327. (effects (font (size 1.27 1.27)) hide)
  5328. )
  5329. (property "Datasheet" "" (id 3) (at 139.7 110.49 0)
  5330. (effects (font (size 1.27 1.27)) hide)
  5331. )
  5332. (pin "1" (uuid ddccb011-30e4-4f3b-b2f4-59b06f295522))
  5333. )
  5334. (symbol (lib_id "power:+2V8") (at 92.71 19.05 0) (unit 1)
  5335. (in_bom yes) (on_board yes)
  5336. (uuid 7bf736c7-8a81-4fa8-8945-e1787643fb2f)
  5337. (property "Reference" "#PWR052" (id 0) (at 92.71 22.86 0)
  5338. (effects (font (size 1.27 1.27)) hide)
  5339. )
  5340. (property "Value" "+2V8" (id 1) (at 93.091 14.6558 0))
  5341. (property "Footprint" "" (id 2) (at 92.71 19.05 0)
  5342. (effects (font (size 1.27 1.27)) hide)
  5343. )
  5344. (property "Datasheet" "" (id 3) (at 92.71 19.05 0)
  5345. (effects (font (size 1.27 1.27)) hide)
  5346. )
  5347. (pin "1" (uuid 5092d912-f00a-48af-9cb7-e497cfeb1220))
  5348. )
  5349. (symbol (lib_id "New_Library:LVT125") (at 129.54 69.85 0) (unit 1)
  5350. (in_bom yes) (on_board yes) (fields_autoplaced)
  5351. (uuid 7ef4bec5-9c91-43ab-9d2a-0b90842aaec1)
  5352. (property "Reference" "U6" (id 0) (at 129.54 67.31 0))
  5353. (property "Value" "LVT125" (id 1) (at 129.54 69.85 0))
  5354. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 129.54 69.85 0)
  5355. (effects (font (size 1.27 1.27)) hide)
  5356. )
  5357. (property "Datasheet" "" (id 3) (at 129.54 69.85 0)
  5358. (effects (font (size 1.27 1.27)) hide)
  5359. )
  5360. (pin "1" (uuid 17d3d42b-71f8-48f3-90aa-6e3476ba9e7a))
  5361. (pin "10" (uuid b0542b37-db07-4ace-8bf0-2575ba74e330))
  5362. (pin "11" (uuid fb2e629a-de86-46ff-8a7d-eff5e42ba8ec))
  5363. (pin "12" (uuid 7a2667f8-d288-4c4f-a098-4b60520e252b))
  5364. (pin "13" (uuid e9f0ae0a-b596-401b-ac5b-e33b74872d40))
  5365. (pin "14" (uuid 076eea0f-5615-4d4e-9bc0-1d99f47b833f))
  5366. (pin "2" (uuid 4ec45a51-e338-45d5-8e9e-741fcbfec517))
  5367. (pin "3" (uuid c40a78cc-349a-439c-a770-bd708f755673))
  5368. (pin "4" (uuid e576df2a-7eb1-45c2-9cf5-11bbe3c8ec6e))
  5369. (pin "5" (uuid e4877109-ea58-41e6-9627-12f98950d4c1))
  5370. (pin "6" (uuid 1c7edbba-fab4-43c7-96f0-cfd40bf6b667))
  5371. (pin "7" (uuid 5dbfa4cb-cfb3-436c-b0f3-6397ec864346))
  5372. (pin "8" (uuid 67529334-c41f-4992-ab69-da45254522db))
  5373. (pin "9" (uuid 82b1f4b0-59c6-4ab1-b7e0-ac4450f66a26))
  5374. )
  5375. (symbol (lib_id "power:GND") (at 160.02 72.39 270) (unit 1)
  5376. (in_bom yes) (on_board yes)
  5377. (uuid 84b0f185-2932-4b58-9196-65d2b163f636)
  5378. (property "Reference" "#PWR057" (id 0) (at 153.67 72.39 0)
  5379. (effects (font (size 1.27 1.27)) hide)
  5380. )
  5381. (property "Value" "GND" (id 1) (at 155.6258 72.517 90))
  5382. (property "Footprint" "" (id 2) (at 160.02 72.39 0)
  5383. (effects (font (size 1.27 1.27)) hide)
  5384. )
  5385. (property "Datasheet" "" (id 3) (at 160.02 72.39 0)
  5386. (effects (font (size 1.27 1.27)) hide)
  5387. )
  5388. (pin "1" (uuid 0cf088b4-4798-4d45-a638-8c486a88213f))
  5389. )
  5390. (symbol (lib_id "Device:C") (at 129.54 106.68 180) (unit 1)
  5391. (in_bom yes) (on_board yes)
  5392. (uuid 87731753-e67d-4f55-8a27-44a3ad4fe1e9)
  5393. (property "Reference" "C9" (id 0) (at 123.1392 106.68 90))
  5394. (property "Value" "0.1uF" (id 1) (at 125.4506 106.68 90))
  5395. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 128.5748 102.87 0)
  5396. (effects (font (size 1.27 1.27)) hide)
  5397. )
  5398. (property "Datasheet" "~" (id 3) (at 129.54 106.68 0)
  5399. (effects (font (size 1.27 1.27)) hide)
  5400. )
  5401. (pin "1" (uuid ec8d65f2-f56d-4dcd-b1b9-25c7559a4014))
  5402. (pin "2" (uuid d04f95d9-79f2-4e24-9dff-591a3adf7731))
  5403. )
  5404. (symbol (lib_id "New_Library:SN74CBTD3384") (at 80.01 17.78 0) (unit 1)
  5405. (in_bom yes) (on_board yes) (fields_autoplaced)
  5406. (uuid 8786032c-35f4-4851-a7c1-b933c66f2579)
  5407. (property "Reference" "U2" (id 0) (at 80.01 16.51 0))
  5408. (property "Value" "SN74CBTD3384" (id 1) (at 80.01 19.05 0))
  5409. (property "Footprint" "Package_SO:TSSOP-24_4.4x7.8mm_P0.65mm" (id 2) (at 80.01 17.78 0)
  5410. (effects (font (size 1.27 1.27)) hide)
  5411. )
  5412. (property "Datasheet" "" (id 3) (at 80.01 17.78 0)
  5413. (effects (font (size 1.27 1.27)) hide)
  5414. )
  5415. (pin "1" (uuid 2386d9e4-432e-4362-90ab-2c18cee5f002))
  5416. (pin "10" (uuid e8a4f1d2-ce31-4016-ba6c-95eed0035043))
  5417. (pin "11" (uuid d8924ad6-3c58-4397-975e-810c0b13ff4c))
  5418. (pin "12" (uuid 4c513022-6779-4146-a97f-b859a478ab89))
  5419. (pin "13" (uuid 95730aae-0019-4307-b2c8-cc96eafe5b85))
  5420. (pin "14" (uuid 40e54e4c-37c1-4d76-a704-df3c5aac2e50))
  5421. (pin "15" (uuid 89defc23-b244-478a-9e3b-0d0ceb839512))
  5422. (pin "16" (uuid da09f954-b257-4dd1-84a2-c679682b20d3))
  5423. (pin "17" (uuid e03d2d55-052e-486c-b0ec-8b4721f15d90))
  5424. (pin "18" (uuid be66cd0a-e26f-4fc2-8eed-aac96c41a243))
  5425. (pin "19" (uuid 9020fb56-ab44-4f51-a3b1-f2b7d19fd8e4))
  5426. (pin "2" (uuid 0ae77ff6-80a2-4335-a1c4-4c1e6bc3e3e6))
  5427. (pin "20" (uuid b378cf71-9f17-4069-9e19-f28c9c897f24))
  5428. (pin "21" (uuid d5e843b3-acba-45d3-b398-2a65b3e48809))
  5429. (pin "22" (uuid dad3ca10-67a8-4c0b-8438-fd8293329e9b))
  5430. (pin "23" (uuid c7db2b50-f8c7-4266-9e7b-06cfcdaab7fc))
  5431. (pin "24" (uuid d3c8a34f-deb2-48bc-86c9-1f1b2b2caf48))
  5432. (pin "3" (uuid 4843b7a6-d16d-4f19-9643-28acb5827fe8))
  5433. (pin "4" (uuid 3edbacff-fde1-4b37-962f-00236dc1ecfd))
  5434. (pin "5" (uuid 66893ec3-50d1-4fc7-8e32-7a88b06e5c1e))
  5435. (pin "6" (uuid dac21321-195d-4400-8a51-1292adf50198))
  5436. (pin "7" (uuid f8c585c1-f72a-4a4e-9e0c-131aed279912))
  5437. (pin "8" (uuid f7129a4e-3e06-4ed4-9f41-8adb2b29a791))
  5438. (pin "9" (uuid fec80974-1e55-4b16-ab7a-0fb6cb78a28a))
  5439. )
  5440. (symbol (lib_id "Device:R") (at 92.71 25.4 90) (unit 1)
  5441. (in_bom yes) (on_board yes)
  5442. (uuid 87d95ea6-623e-46c6-aa7f-8e6aeac1e4c2)
  5443. (property "Reference" "R36" (id 0) (at 91.5416 23.622 0)
  5444. (effects (font (size 1.27 1.27)) (justify left))
  5445. )
  5446. (property "Value" "R" (id 1) (at 93.853 23.622 0)
  5447. (effects (font (size 1.27 1.27)) (justify left))
  5448. )
  5449. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 92.71 27.178 90)
  5450. (effects (font (size 1.27 1.27)) hide)
  5451. )
  5452. (property "Datasheet" "~" (id 3) (at 92.71 25.4 0)
  5453. (effects (font (size 1.27 1.27)) hide)
  5454. )
  5455. (pin "1" (uuid 0e5884c3-2c48-4c31-91aa-75b25223b8b3))
  5456. (pin "2" (uuid 0641228e-e25d-435b-81b5-4223b2a9fb1f))
  5457. )
  5458. (symbol (lib_id "power:+2V8") (at 156.21 168.91 0) (unit 1)
  5459. (in_bom yes) (on_board yes)
  5460. (uuid 880c8c19-58db-43fe-9d69-a20aeac720b2)
  5461. (property "Reference" "#PWR0108" (id 0) (at 156.21 172.72 0)
  5462. (effects (font (size 1.27 1.27)) hide)
  5463. )
  5464. (property "Value" "+2V8" (id 1) (at 156.591 164.5158 0))
  5465. (property "Footprint" "" (id 2) (at 156.21 168.91 0)
  5466. (effects (font (size 1.27 1.27)) hide)
  5467. )
  5468. (property "Datasheet" "" (id 3) (at 156.21 168.91 0)
  5469. (effects (font (size 1.27 1.27)) hide)
  5470. )
  5471. (pin "1" (uuid 2201bc5b-911d-47ed-9b8f-7bd4a00b0a6a))
  5472. )
  5473. (symbol (lib_id "power:GND") (at 100.33 128.27 90) (unit 1)
  5474. (in_bom yes) (on_board yes)
  5475. (uuid 88e6f979-4a58-4a0c-82ee-cccfcb840b1e)
  5476. (property "Reference" "#PWR042" (id 0) (at 106.68 128.27 0)
  5477. (effects (font (size 1.27 1.27)) hide)
  5478. )
  5479. (property "Value" "GND" (id 1) (at 104.7242 128.143 90))
  5480. (property "Footprint" "" (id 2) (at 100.33 128.27 0)
  5481. (effects (font (size 1.27 1.27)) hide)
  5482. )
  5483. (property "Datasheet" "" (id 3) (at 100.33 128.27 0)
  5484. (effects (font (size 1.27 1.27)) hide)
  5485. )
  5486. (pin "1" (uuid 45004e34-eead-4823-b8ab-b06a1f61a0ec))
  5487. )
  5488. (symbol (lib_id "power:+5F") (at 88.9 22.86 0) (unit 1)
  5489. (in_bom yes) (on_board yes)
  5490. (uuid 88f6b8dd-123f-41c7-92de-606e911690b3)
  5491. (property "Reference" "#PWR049" (id 0) (at 88.9 26.67 0)
  5492. (effects (font (size 1.27 1.27)) hide)
  5493. )
  5494. (property "Value" "+5F" (id 1) (at 89.281 19.6088 90)
  5495. (effects (font (size 1.27 1.27)) (justify left))
  5496. )
  5497. (property "Footprint" "" (id 2) (at 88.9 22.86 0)
  5498. (effects (font (size 1.27 1.27)) hide)
  5499. )
  5500. (property "Datasheet" "" (id 3) (at 88.9 22.86 0)
  5501. (effects (font (size 1.27 1.27)) hide)
  5502. )
  5503. (pin "1" (uuid b452b5b4-22ae-4fed-ac70-9f70553d37c4))
  5504. )
  5505. (symbol (lib_id "power:+2V8") (at 271.78 22.86 0) (unit 1)
  5506. (in_bom yes) (on_board yes)
  5507. (uuid 8bc17f34-10f7-42ff-9329-698e138a3e0c)
  5508. (property "Reference" "#PWR021" (id 0) (at 271.78 26.67 0)
  5509. (effects (font (size 1.27 1.27)) hide)
  5510. )
  5511. (property "Value" "+2V8" (id 1) (at 272.161 18.4658 0))
  5512. (property "Footprint" "" (id 2) (at 271.78 22.86 0)
  5513. (effects (font (size 1.27 1.27)) hide)
  5514. )
  5515. (property "Datasheet" "" (id 3) (at 271.78 22.86 0)
  5516. (effects (font (size 1.27 1.27)) hide)
  5517. )
  5518. (pin "1" (uuid 2ff0f767-aa0d-40c6-a3f8-8ea46a677a54))
  5519. )
  5520. (symbol (lib_id "Device:R") (at 259.08 142.24 90) (unit 1)
  5521. (in_bom yes) (on_board yes)
  5522. (uuid 8c674a62-096c-453a-affe-28e1b791163a)
  5523. (property "Reference" "R17" (id 0) (at 257.81 142.24 90))
  5524. (property "Value" "1k" (id 1) (at 260.35 142.24 90))
  5525. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 144.018 90)
  5526. (effects (font (size 1.27 1.27)) hide)
  5527. )
  5528. (property "Datasheet" "~" (id 3) (at 259.08 142.24 0)
  5529. (effects (font (size 1.27 1.27)) hide)
  5530. )
  5531. (pin "1" (uuid 23aceff7-8327-4801-ad28-6f031fa3ad8d))
  5532. (pin "2" (uuid 1fb27993-1691-42f2-aca5-128ffbf2b2f1))
  5533. )
  5534. (symbol (lib_id "Device:R") (at 260.35 30.48 90) (unit 1)
  5535. (in_bom yes) (on_board yes)
  5536. (uuid 8d0ca099-2d49-4b7e-b6d5-400f7b40bc35)
  5537. (property "Reference" "R53" (id 0) (at 259.08 30.48 90))
  5538. (property "Value" "1k" (id 1) (at 261.62 30.48 90))
  5539. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 260.35 32.258 90)
  5540. (effects (font (size 1.27 1.27)) hide)
  5541. )
  5542. (property "Datasheet" "~" (id 3) (at 260.35 30.48 0)
  5543. (effects (font (size 1.27 1.27)) hide)
  5544. )
  5545. (pin "1" (uuid fe30d94f-39e1-426b-a150-3163c61f8457))
  5546. (pin "2" (uuid 05eb86be-03d7-4c92-80fc-0f374758a538))
  5547. )
  5548. (symbol (lib_id "Device:R") (at 123.19 162.56 90) (unit 1)
  5549. (in_bom yes) (on_board yes)
  5550. (uuid 8d832796-c8da-4cdb-aa2b-5814686409fb)
  5551. (property "Reference" "R23" (id 0) (at 121.92 160.02 90))
  5552. (property "Value" "1k" (id 1) (at 123.19 162.56 90))
  5553. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 123.19 164.338 90)
  5554. (effects (font (size 1.27 1.27)) hide)
  5555. )
  5556. (property "Datasheet" "~" (id 3) (at 123.19 162.56 0)
  5557. (effects (font (size 1.27 1.27)) hide)
  5558. )
  5559. (pin "1" (uuid 2ed1eab9-6cc4-4e3f-bb66-cfb49251b75a))
  5560. (pin "2" (uuid 7a0e6b92-78ed-4198-a600-b59ce1e10d48))
  5561. )
  5562. (symbol (lib_id "Device:R") (at 154.94 147.32 270) (unit 1)
  5563. (in_bom yes) (on_board yes)
  5564. (uuid 8eb58152-4298-46a8-be82-cb7a4c68472b)
  5565. (property "Reference" "R24" (id 0) (at 153.67 144.78 90))
  5566. (property "Value" "1k" (id 1) (at 154.94 147.32 90))
  5567. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 154.94 145.542 90)
  5568. (effects (font (size 1.27 1.27)) hide)
  5569. )
  5570. (property "Datasheet" "~" (id 3) (at 154.94 147.32 0)
  5571. (effects (font (size 1.27 1.27)) hide)
  5572. )
  5573. (pin "1" (uuid 8e191159-8a07-468e-af42-261ef3b84920))
  5574. (pin "2" (uuid 3c415729-c74b-4df8-87e4-0b04b05e965b))
  5575. )
  5576. (symbol (lib_id "Device:R") (at 184.15 27.94 90) (unit 1)
  5577. (in_bom yes) (on_board yes)
  5578. (uuid 8f352475-5d9c-4281-873d-9d7d2a6dec5a)
  5579. (property "Reference" "R11" (id 0) (at 182.88 27.94 90))
  5580. (property "Value" "1k" (id 1) (at 185.42 27.94 90))
  5581. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 184.15 29.718 90)
  5582. (effects (font (size 1.27 1.27)) hide)
  5583. )
  5584. (property "Datasheet" "~" (id 3) (at 184.15 27.94 0)
  5585. (effects (font (size 1.27 1.27)) hide)
  5586. )
  5587. (pin "1" (uuid 6b16dbf1-b5d7-4d98-ae6e-8aad294c3768))
  5588. (pin "2" (uuid 5d3ba85f-831c-4602-9891-f1e79cee2dd8))
  5589. )
  5590. (symbol (lib_id "power:GND") (at 187.96 45.72 270) (unit 1)
  5591. (in_bom yes) (on_board yes)
  5592. (uuid 92040d75-677e-408b-b41d-a9e5389e97b7)
  5593. (property "Reference" "#PWR02" (id 0) (at 181.61 45.72 0)
  5594. (effects (font (size 1.27 1.27)) hide)
  5595. )
  5596. (property "Value" "GND" (id 1) (at 183.5658 45.847 90))
  5597. (property "Footprint" "" (id 2) (at 187.96 45.72 0)
  5598. (effects (font (size 1.27 1.27)) hide)
  5599. )
  5600. (property "Datasheet" "" (id 3) (at 187.96 45.72 0)
  5601. (effects (font (size 1.27 1.27)) hide)
  5602. )
  5603. (pin "1" (uuid e207fd53-1005-4aef-9659-b21f6cb09439))
  5604. )
  5605. (symbol (lib_id "power:+2V8") (at 66.04 19.05 0) (unit 1)
  5606. (in_bom yes) (on_board yes)
  5607. (uuid 92f6a093-be10-45da-8d18-1aeb366bcf3f)
  5608. (property "Reference" "#PWR01" (id 0) (at 66.04 22.86 0)
  5609. (effects (font (size 1.27 1.27)) hide)
  5610. )
  5611. (property "Value" "+2V8" (id 1) (at 66.421 14.6558 0))
  5612. (property "Footprint" "" (id 2) (at 66.04 19.05 0)
  5613. (effects (font (size 1.27 1.27)) hide)
  5614. )
  5615. (property "Datasheet" "" (id 3) (at 66.04 19.05 0)
  5616. (effects (font (size 1.27 1.27)) hide)
  5617. )
  5618. (pin "1" (uuid 39022813-0f82-4c8b-b3ad-b618b0da16a3))
  5619. )
  5620. (symbol (lib_id "power:+5F") (at 64.77 74.93 0) (unit 1)
  5621. (in_bom yes) (on_board yes)
  5622. (uuid 983dbc47-4e11-47dc-8748-3fc9db245e95)
  5623. (property "Reference" "#PWR0118" (id 0) (at 64.77 78.74 0)
  5624. (effects (font (size 1.27 1.27)) hide)
  5625. )
  5626. (property "Value" "+5F" (id 1) (at 65.151 71.6788 90)
  5627. (effects (font (size 1.27 1.27)) (justify left))
  5628. )
  5629. (property "Footprint" "" (id 2) (at 64.77 74.93 0)
  5630. (effects (font (size 1.27 1.27)) hide)
  5631. )
  5632. (property "Datasheet" "" (id 3) (at 64.77 74.93 0)
  5633. (effects (font (size 1.27 1.27)) hide)
  5634. )
  5635. (pin "1" (uuid 6b9eb69f-43af-44be-83ab-792ffa9960c0))
  5636. )
  5637. (symbol (lib_id "New_Library:MicroSD-TF-06") (at 231.14 62.23 0) (unit 1)
  5638. (in_bom yes) (on_board yes) (fields_autoplaced)
  5639. (uuid 98449520-73f3-4826-8a06-0144e573c75f)
  5640. (property "Reference" "SD2" (id 0) (at 250.19 72.3899 0)
  5641. (effects (font (size 1.27 1.27)) (justify left))
  5642. )
  5643. (property "Value" "MicroSD-TF-06" (id 1) (at 250.19 74.9299 0)
  5644. (effects (font (size 1.27 1.27)) (justify left))
  5645. )
  5646. (property "Footprint" "Library:TF-06_MicroSD" (id 2) (at 229.87 55.88 0)
  5647. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5648. )
  5649. (property "Datasheet" "" (id 3) (at 243.586 60.579 0)
  5650. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5651. )
  5652. (property "MANUFACTURER_PART_NUMBER" "C693844" (id 4) (at 248.92 57.15 0)
  5653. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5654. )
  5655. (property "HEIGHT" "" (id 5) (at 238.252 80.01 0)
  5656. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5657. )
  5658. (property "MOUSER_PART_NUMBER" "" (id 6) (at 238.76 55.88 0)
  5659. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5660. )
  5661. (property "DESCRIPTION" "" (id 7) (at 248.412 41.402 0)
  5662. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5663. )
  5664. (property "MANUFACTURER_NAME" "" (id 8) (at 245.11 55.88 0)
  5665. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5666. )
  5667. (property "MOUSER_PRICE-STOCK" "" (id 9) (at 251.46 41.275 0)
  5668. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  5669. )
  5670. (pin "1" (uuid 85b2669f-276f-4163-8962-0ec5205a5b97))
  5671. (pin "10" (uuid 44eee2dc-529e-47d4-bd8e-92fc297ce0fe))
  5672. (pin "2" (uuid 97436618-d074-4750-ab27-3ea2957badc7))
  5673. (pin "3" (uuid 3c5cd1f8-aa18-42b4-af8d-e4615307f917))
  5674. (pin "4" (uuid f31c69ff-24e4-47d4-98c5-23a692fae825))
  5675. (pin "5" (uuid 108d5212-29e7-4482-8005-ae3a28f167ac))
  5676. (pin "6" (uuid 2d77015d-4abb-4650-9c51-7292110a41ce))
  5677. (pin "7" (uuid 266023c6-0d19-4779-8ebf-8a009b9dd44c))
  5678. (pin "8" (uuid e8de5b02-90a9-40d6-ae8b-81079970d38c))
  5679. (pin "9" (uuid 6e6e1ee0-c572-4041-8783-aea5ca313013))
  5680. )
  5681. (symbol (lib_id "power:GND") (at 203.2 25.4 90) (unit 1)
  5682. (in_bom yes) (on_board yes)
  5683. (uuid 9a7cf9b8-c05b-4cc0-a147-14aca337cfa3)
  5684. (property "Reference" "#PWR08" (id 0) (at 209.55 25.4 0)
  5685. (effects (font (size 1.27 1.27)) hide)
  5686. )
  5687. (property "Value" "GND" (id 1) (at 207.5942 25.273 90))
  5688. (property "Footprint" "" (id 2) (at 203.2 25.4 0)
  5689. (effects (font (size 1.27 1.27)) hide)
  5690. )
  5691. (property "Datasheet" "" (id 3) (at 203.2 25.4 0)
  5692. (effects (font (size 1.27 1.27)) hide)
  5693. )
  5694. (pin "1" (uuid 577a277a-d284-4bef-8a89-550c6687685d))
  5695. )
  5696. (symbol (lib_id "Device:R") (at 184.15 33.02 90) (unit 1)
  5697. (in_bom yes) (on_board yes)
  5698. (uuid 9de37903-d35d-4e90-bae1-50a4024aefeb)
  5699. (property "Reference" "R43" (id 0) (at 182.88 33.02 90))
  5700. (property "Value" "1k" (id 1) (at 185.42 33.02 90))
  5701. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 184.15 34.798 90)
  5702. (effects (font (size 1.27 1.27)) hide)
  5703. )
  5704. (property "Datasheet" "~" (id 3) (at 184.15 33.02 0)
  5705. (effects (font (size 1.27 1.27)) hide)
  5706. )
  5707. (pin "1" (uuid efe8316b-e60c-4ef8-aba1-2a58b1e1436a))
  5708. (pin "2" (uuid 9c521ca8-2e45-4528-870e-fb59eea1dd03))
  5709. )
  5710. (symbol (lib_id "Device:R") (at 259.08 137.16 90) (unit 1)
  5711. (in_bom yes) (on_board yes)
  5712. (uuid 9e8ff847-a1a6-4ac0-bbc3-a4811f1f75a1)
  5713. (property "Reference" "R15" (id 0) (at 257.81 137.16 90))
  5714. (property "Value" "1k" (id 1) (at 260.35 137.16 90))
  5715. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 138.938 90)
  5716. (effects (font (size 1.27 1.27)) hide)
  5717. )
  5718. (property "Datasheet" "~" (id 3) (at 259.08 137.16 0)
  5719. (effects (font (size 1.27 1.27)) hide)
  5720. )
  5721. (pin "1" (uuid 388f4f2e-c95e-463f-a3b2-c358288841f0))
  5722. (pin "2" (uuid 108e4011-c471-41d4-8643-1dc80f8d6cae))
  5723. )
  5724. (symbol (lib_id "Device:R") (at 156.21 172.72 180) (unit 1)
  5725. (in_bom yes) (on_board yes)
  5726. (uuid a01891ac-7fd3-4375-881c-53b77ca46d87)
  5727. (property "Reference" "R31" (id 0) (at 153.67 173.99 90))
  5728. (property "Value" "4.7k" (id 1) (at 158.75 172.72 90))
  5729. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 157.988 172.72 90)
  5730. (effects (font (size 1.27 1.27)) hide)
  5731. )
  5732. (property "Datasheet" "~" (id 3) (at 156.21 172.72 0)
  5733. (effects (font (size 1.27 1.27)) hide)
  5734. )
  5735. (pin "1" (uuid 70251a49-4aaa-4fdd-a037-dd9863e6ed0c))
  5736. (pin "2" (uuid eb9c45f9-f27c-4b1f-ab6b-bfcb821c72ba))
  5737. )
  5738. (symbol (lib_id "Device:R") (at 68.58 87.63 90) (unit 1)
  5739. (in_bom yes) (on_board yes)
  5740. (uuid a0e275f3-c5e3-4558-9b83-f0d5f6dd03fb)
  5741. (property "Reference" "R8" (id 0) (at 67.4116 85.852 0)
  5742. (effects (font (size 1.27 1.27)) (justify left))
  5743. )
  5744. (property "Value" "R" (id 1) (at 69.723 85.852 0)
  5745. (effects (font (size 1.27 1.27)) (justify left))
  5746. )
  5747. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 68.58 89.408 90)
  5748. (effects (font (size 1.27 1.27)) hide)
  5749. )
  5750. (property "Datasheet" "~" (id 3) (at 68.58 87.63 0)
  5751. (effects (font (size 1.27 1.27)) hide)
  5752. )
  5753. (pin "1" (uuid 4040435e-3ee3-4049-acb8-b0ce9bcb6a20))
  5754. (pin "2" (uuid 3372c5ec-a03d-4057-bfa5-52ebb3899d17))
  5755. )
  5756. (symbol (lib_id "power:GND") (at 247.65 147.32 90) (unit 1)
  5757. (in_bom yes) (on_board yes)
  5758. (uuid a0efbb8b-2b88-4279-8882-2279417e29c4)
  5759. (property "Reference" "#PWR067" (id 0) (at 254 147.32 0)
  5760. (effects (font (size 1.27 1.27)) hide)
  5761. )
  5762. (property "Value" "GND" (id 1) (at 250.9012 147.193 90)
  5763. (effects (font (size 1.27 1.27)) (justify right))
  5764. )
  5765. (property "Footprint" "" (id 2) (at 247.65 147.32 0)
  5766. (effects (font (size 1.27 1.27)) hide)
  5767. )
  5768. (property "Datasheet" "" (id 3) (at 247.65 147.32 0)
  5769. (effects (font (size 1.27 1.27)) hide)
  5770. )
  5771. (pin "1" (uuid 373b5181-f467-49a0-b7cd-db3accebb340))
  5772. )
  5773. (symbol (lib_id "Mechanical:MountingHole") (at 199.39 64.77 0) (unit 1)
  5774. (in_bom yes) (on_board yes) (fields_autoplaced)
  5775. (uuid a6d08546-d3df-466e-971b-1f257119ed34)
  5776. (property "Reference" "H4" (id 0) (at 201.93 63.4999 0)
  5777. (effects (font (size 1.27 1.27)) (justify left))
  5778. )
  5779. (property "Value" "MountingHole" (id 1) (at 201.93 66.0399 0)
  5780. (effects (font (size 1.27 1.27)) (justify left))
  5781. )
  5782. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 199.39 64.77 0)
  5783. (effects (font (size 1.27 1.27)) hide)
  5784. )
  5785. (property "Datasheet" "~" (id 3) (at 199.39 64.77 0)
  5786. (effects (font (size 1.27 1.27)) hide)
  5787. )
  5788. )
  5789. (symbol (lib_id "Device:R") (at 195.58 101.6 180) (unit 1)
  5790. (in_bom yes) (on_board yes)
  5791. (uuid a91925ab-fe56-445c-9bca-b898e4af9a64)
  5792. (property "Reference" "R28" (id 0) (at 193.04 102.87 90))
  5793. (property "Value" "1k" (id 1) (at 198.12 101.6 90))
  5794. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 197.358 101.6 90)
  5795. (effects (font (size 1.27 1.27)) hide)
  5796. )
  5797. (property "Datasheet" "~" (id 3) (at 195.58 101.6 0)
  5798. (effects (font (size 1.27 1.27)) hide)
  5799. )
  5800. (pin "1" (uuid d3f34f53-340a-4736-8509-f2d5a176f0af))
  5801. (pin "2" (uuid ebd8b72b-4b62-472e-bfa8-333cb5b83687))
  5802. )
  5803. (symbol (lib_id "Switch:SW_MEC_5E") (at 163.83 149.86 0) (unit 1)
  5804. (in_bom yes) (on_board yes)
  5805. (uuid a98f7f2f-d3b8-48bf-b0d4-56422eeea66b)
  5806. (property "Reference" "SW1" (id 0) (at 163.83 139.7 0))
  5807. (property "Value" "SW_MEC_5E" (id 1) (at 165.1 142.24 0))
  5808. (property "Footprint" "Library:TS-1187A-B-A-B" (id 2) (at 163.83 142.24 0)
  5809. (effects (font (size 1.27 1.27)) hide)
  5810. )
  5811. (property "Datasheet" "http://www.apem.com/int/index.php?controller=attachment&id_attachment=1371" (id 3) (at 163.83 142.24 0)
  5812. (effects (font (size 1.27 1.27)) hide)
  5813. )
  5814. (pin "1" (uuid 522a5f93-66b5-4ec1-891c-5a43557baf8d))
  5815. (pin "1" (uuid 522a5f93-66b5-4ec1-891c-5a43557baf8d))
  5816. (pin "2" (uuid ec6c1b89-932d-4653-81c7-c489b8b89efc))
  5817. (pin "2" (uuid ec6c1b89-932d-4653-81c7-c489b8b89efc))
  5818. )
  5819. (symbol (lib_id "power:GND") (at 210.82 121.92 270) (unit 1)
  5820. (in_bom yes) (on_board yes)
  5821. (uuid ab2ae690-6deb-47e6-ab98-640a9c621344)
  5822. (property "Reference" "#PWR062" (id 0) (at 204.47 121.92 0)
  5823. (effects (font (size 1.27 1.27)) hide)
  5824. )
  5825. (property "Value" "GND" (id 1) (at 207.5688 122.047 90)
  5826. (effects (font (size 1.27 1.27)) (justify right))
  5827. )
  5828. (property "Footprint" "" (id 2) (at 210.82 121.92 0)
  5829. (effects (font (size 1.27 1.27)) hide)
  5830. )
  5831. (property "Datasheet" "" (id 3) (at 210.82 121.92 0)
  5832. (effects (font (size 1.27 1.27)) hide)
  5833. )
  5834. (pin "1" (uuid dbac0c5a-0d04-436d-8586-435fb5f29f07))
  5835. )
  5836. (symbol (lib_id "Device:R") (at 68.58 77.47 90) (unit 1)
  5837. (in_bom yes) (on_board yes)
  5838. (uuid ac035f58-a21c-4346-b948-ebc616aaf95d)
  5839. (property "Reference" "R6" (id 0) (at 67.4116 75.692 0)
  5840. (effects (font (size 1.27 1.27)) (justify left))
  5841. )
  5842. (property "Value" "R" (id 1) (at 69.723 75.692 0)
  5843. (effects (font (size 1.27 1.27)) (justify left))
  5844. )
  5845. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 68.58 79.248 90)
  5846. (effects (font (size 1.27 1.27)) hide)
  5847. )
  5848. (property "Datasheet" "~" (id 3) (at 68.58 77.47 0)
  5849. (effects (font (size 1.27 1.27)) hide)
  5850. )
  5851. (pin "1" (uuid 0cce7016-8f51-4e57-bec2-1734d71050c4))
  5852. (pin "2" (uuid c2fbb35c-f25b-4dc1-8cf3-8ea70a58dd77))
  5853. )
  5854. (symbol (lib_id "power:+5VA") (at 25.4 176.53 90) (unit 1)
  5855. (in_bom yes) (on_board yes)
  5856. (uuid ac218391-799b-4e3f-9524-9a89664a1094)
  5857. (property "Reference" "#PWR017" (id 0) (at 29.21 176.53 0)
  5858. (effects (font (size 1.27 1.27)) hide)
  5859. )
  5860. (property "Value" "+5VA" (id 1) (at 16.51 176.53 90)
  5861. (effects (font (size 1.27 1.27)) (justify right))
  5862. )
  5863. (property "Footprint" "" (id 2) (at 25.4 176.53 0)
  5864. (effects (font (size 1.27 1.27)) hide)
  5865. )
  5866. (property "Datasheet" "" (id 3) (at 25.4 176.53 0)
  5867. (effects (font (size 1.27 1.27)) hide)
  5868. )
  5869. (pin "1" (uuid 8293dd89-2b22-4be4-82cd-366f88e0ca9f))
  5870. )
  5871. (symbol (lib_id "Device:C") (at 139.7 106.68 180) (unit 1)
  5872. (in_bom yes) (on_board yes)
  5873. (uuid acd9e539-01ce-4514-ab7d-bb6dddb62a5d)
  5874. (property "Reference" "C13" (id 0) (at 133.2992 106.68 90))
  5875. (property "Value" "0.1uF" (id 1) (at 135.6106 106.68 90))
  5876. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 138.7348 102.87 0)
  5877. (effects (font (size 1.27 1.27)) hide)
  5878. )
  5879. (property "Datasheet" "~" (id 3) (at 139.7 106.68 0)
  5880. (effects (font (size 1.27 1.27)) hide)
  5881. )
  5882. (pin "1" (uuid fd872bfe-55b0-454b-bd28-1c690552fc91))
  5883. (pin "2" (uuid 1f5519cd-ca7e-41df-a693-04724c6db534))
  5884. )
  5885. (symbol (lib_id "Device:C") (at 149.86 106.68 180) (unit 1)
  5886. (in_bom yes) (on_board yes)
  5887. (uuid af20f6b5-3525-4421-9baf-551c51fc9eed)
  5888. (property "Reference" "C14" (id 0) (at 143.4592 106.68 90))
  5889. (property "Value" "0.1uF" (id 1) (at 145.7706 106.68 90))
  5890. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 148.8948 102.87 0)
  5891. (effects (font (size 1.27 1.27)) hide)
  5892. )
  5893. (property "Datasheet" "~" (id 3) (at 149.86 106.68 0)
  5894. (effects (font (size 1.27 1.27)) hide)
  5895. )
  5896. (pin "1" (uuid 6b46401d-6992-4a7a-9d35-bbb91b107c40))
  5897. (pin "2" (uuid 84e0fdc4-8138-42d1-ae8c-4c46776c279d))
  5898. )
  5899. (symbol (lib_id "New_Library:LVT125") (at 160.02 115.57 0) (unit 1)
  5900. (in_bom yes) (on_board yes) (fields_autoplaced)
  5901. (uuid b278ef84-b28f-424d-bcab-60b9aa5859b8)
  5902. (property "Reference" "U5" (id 0) (at 160.02 113.03 0))
  5903. (property "Value" "LVT125" (id 1) (at 160.02 115.57 0))
  5904. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 160.02 115.57 0)
  5905. (effects (font (size 1.27 1.27)) hide)
  5906. )
  5907. (property "Datasheet" "" (id 3) (at 160.02 115.57 0)
  5908. (effects (font (size 1.27 1.27)) hide)
  5909. )
  5910. (pin "1" (uuid c7c4b013-f602-4dfd-9848-da697ec675b2))
  5911. (pin "10" (uuid fb88be17-d8b7-4e7a-a4ca-812bb444b4d9))
  5912. (pin "11" (uuid 6148457a-2302-4e5b-b9e4-a86aa655604e))
  5913. (pin "12" (uuid f9bb3a12-789b-4f4b-b243-88cd1c5172a5))
  5914. (pin "13" (uuid f9bf76b8-aec2-4eac-8702-225b0dd09abb))
  5915. (pin "14" (uuid f8d9ac45-0ea4-459c-98fc-8edfdc8fac4a))
  5916. (pin "2" (uuid 2b3ffe51-ed67-4d12-b719-bd16699057d4))
  5917. (pin "3" (uuid ba542518-7695-49ee-ad78-ecb99e15b009))
  5918. (pin "4" (uuid 91b4d386-d07c-4a33-835b-934fd8171ed7))
  5919. (pin "5" (uuid 54be7f2f-bed8-4f94-938d-0453a88c3d54))
  5920. (pin "6" (uuid 02836f4c-7064-4cff-8ae8-61e7beab6a32))
  5921. (pin "7" (uuid 41710596-823c-4db2-be86-4ec1ab577501))
  5922. (pin "8" (uuid 17864a87-e8b4-4aca-bb1a-02853ab40c0d))
  5923. (pin "9" (uuid a4d809a8-e967-4c81-9f80-eb989f17e6c2))
  5924. )
  5925. (symbol (lib_id "power:GND") (at 68.58 175.26 0) (unit 1)
  5926. (in_bom yes) (on_board yes)
  5927. (uuid b3719c08-71c8-4818-9c77-f965cba6f25f)
  5928. (property "Reference" "#PWR026" (id 0) (at 68.58 181.61 0)
  5929. (effects (font (size 1.27 1.27)) hide)
  5930. )
  5931. (property "Value" "GND" (id 1) (at 68.707 179.6542 0))
  5932. (property "Footprint" "" (id 2) (at 68.58 175.26 0)
  5933. (effects (font (size 1.27 1.27)) hide)
  5934. )
  5935. (property "Datasheet" "" (id 3) (at 68.58 175.26 0)
  5936. (effects (font (size 1.27 1.27)) hide)
  5937. )
  5938. (pin "1" (uuid 9fc767e3-8d15-415e-a9e0-596a6f54c5bf))
  5939. )
  5940. (symbol (lib_id "Device:D") (at 29.21 168.91 180) (unit 1)
  5941. (in_bom yes) (on_board yes)
  5942. (uuid b4eb6c3f-3a64-456a-b15c-67feae99bf43)
  5943. (property "Reference" "D2" (id 0) (at 28.0416 166.878 90)
  5944. (effects (font (size 1.27 1.27)) (justify right))
  5945. )
  5946. (property "Value" "D" (id 1) (at 30.353 166.878 90)
  5947. (effects (font (size 1.27 1.27)) (justify right))
  5948. )
  5949. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 29.21 168.91 0)
  5950. (effects (font (size 1.27 1.27)) hide)
  5951. )
  5952. (property "Datasheet" "~" (id 3) (at 29.21 168.91 0)
  5953. (effects (font (size 1.27 1.27)) hide)
  5954. )
  5955. (pin "1" (uuid 0255fd8f-cefd-43cf-b2ed-ed1171cf07f4))
  5956. (pin "2" (uuid 0258774f-37a7-4f3e-ba38-6d4b458d9f5a))
  5957. )
  5958. (symbol (lib_id "Device:Polyfuse") (at 57.15 156.21 0) (unit 1)
  5959. (in_bom yes) (on_board yes)
  5960. (uuid b710020c-0f3a-4776-a938-eddc58b26b95)
  5961. (property "Reference" "F2" (id 0) (at 52.07 156.21 0)
  5962. (effects (font (size 1.27 1.27)) (justify left))
  5963. )
  5964. (property "Value" "Polyfuse" (id 1) (at 46.99 158.75 0)
  5965. (effects (font (size 1.27 1.27)) (justify left))
  5966. )
  5967. (property "Footprint" "Fuse:Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 58.42 161.29 0)
  5968. (effects (font (size 1.27 1.27)) (justify left) hide)
  5969. )
  5970. (property "Datasheet" "~" (id 3) (at 57.15 156.21 0)
  5971. (effects (font (size 1.27 1.27)) hide)
  5972. )
  5973. (pin "1" (uuid cba8ab97-0377-43bd-bef7-6314ce99d4ae))
  5974. (pin "2" (uuid 17ae423f-6f17-4fd2-aea5-d3d8c77fc776))
  5975. )
  5976. (symbol (lib_id "Device:R") (at 67.31 35.56 270) (unit 1)
  5977. (in_bom yes) (on_board yes)
  5978. (uuid b9eb0571-f2e8-4038-b2cc-6af37a8bae59)
  5979. (property "Reference" "R33" (id 0) (at 64.77 40.64 0)
  5980. (effects (font (size 1.27 1.27)) (justify left))
  5981. )
  5982. (property "Value" "R" (id 1) (at 67.31 41.91 0)
  5983. (effects (font (size 1.27 1.27)) (justify left))
  5984. )
  5985. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 67.31 33.782 90)
  5986. (effects (font (size 1.27 1.27)) hide)
  5987. )
  5988. (property "Datasheet" "~" (id 3) (at 67.31 35.56 0)
  5989. (effects (font (size 1.27 1.27)) hide)
  5990. )
  5991. (pin "1" (uuid 0299f53d-7af8-45eb-a85c-e2e9342bb6b7))
  5992. (pin "2" (uuid 957b4ef8-a946-43c9-9bbf-ab8bf1859ec1))
  5993. )
  5994. (symbol (lib_id "Mechanical:MountingHole") (at 201.93 59.69 0) (unit 1)
  5995. (in_bom yes) (on_board yes) (fields_autoplaced)
  5996. (uuid bbc443df-065d-468c-82e3-44848bb71a89)
  5997. (property "Reference" "H5" (id 0) (at 204.47 58.4199 0)
  5998. (effects (font (size 1.27 1.27)) (justify left))
  5999. )
  6000. (property "Value" "MountingHole" (id 1) (at 204.47 60.9599 0)
  6001. (effects (font (size 1.27 1.27)) (justify left))
  6002. )
  6003. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 201.93 59.69 0)
  6004. (effects (font (size 1.27 1.27)) hide)
  6005. )
  6006. (property "Datasheet" "~" (id 3) (at 201.93 59.69 0)
  6007. (effects (font (size 1.27 1.27)) hide)
  6008. )
  6009. )
  6010. (symbol (lib_id "power:GND") (at 149.86 133.35 270) (unit 1)
  6011. (in_bom yes) (on_board yes)
  6012. (uuid bcc53cc9-59ce-4a1f-bf14-1e027fbf53d9)
  6013. (property "Reference" "#PWR024" (id 0) (at 143.51 133.35 0)
  6014. (effects (font (size 1.27 1.27)) hide)
  6015. )
  6016. (property "Value" "GND" (id 1) (at 145.4658 133.477 90))
  6017. (property "Footprint" "" (id 2) (at 149.86 133.35 0)
  6018. (effects (font (size 1.27 1.27)) hide)
  6019. )
  6020. (property "Datasheet" "" (id 3) (at 149.86 133.35 0)
  6021. (effects (font (size 1.27 1.27)) hide)
  6022. )
  6023. (pin "1" (uuid e38a5e57-1ac0-499a-8ddd-080643e023d8))
  6024. )
  6025. (symbol (lib_id "Device:C") (at 218.44 26.67 0) (unit 1)
  6026. (in_bom yes) (on_board yes)
  6027. (uuid c4191605-68bf-48a0-9b68-c834c5af8008)
  6028. (property "Reference" "C8" (id 0) (at 212.0392 26.67 90))
  6029. (property "Value" "0.1uF" (id 1) (at 214.3506 26.67 90))
  6030. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 219.4052 30.48 0)
  6031. (effects (font (size 1.27 1.27)) hide)
  6032. )
  6033. (property "Datasheet" "~" (id 3) (at 218.44 26.67 0)
  6034. (effects (font (size 1.27 1.27)) hide)
  6035. )
  6036. (pin "1" (uuid 0434f562-4926-45ab-bffe-a556eb421e2d))
  6037. (pin "2" (uuid d84e14de-d593-4f6a-a1f2-f68cc27cff99))
  6038. )
  6039. (symbol (lib_id "power:GND") (at 176.53 147.32 90) (unit 1)
  6040. (in_bom yes) (on_board yes)
  6041. (uuid c472fc16-211d-4dc3-8e0c-1abdd6b46429)
  6042. (property "Reference" "#PWR0113" (id 0) (at 182.88 147.32 0)
  6043. (effects (font (size 1.27 1.27)) hide)
  6044. )
  6045. (property "Value" "GND" (id 1) (at 180.9242 147.193 90))
  6046. (property "Footprint" "" (id 2) (at 176.53 147.32 0)
  6047. (effects (font (size 1.27 1.27)) hide)
  6048. )
  6049. (property "Datasheet" "" (id 3) (at 176.53 147.32 0)
  6050. (effects (font (size 1.27 1.27)) hide)
  6051. )
  6052. (pin "1" (uuid c8a3456c-f42d-4249-8bed-43a04ed881e3))
  6053. )
  6054. (symbol (lib_id "Device:CP") (at 223.52 26.67 0) (unit 1)
  6055. (in_bom yes) (on_board yes)
  6056. (uuid c59cd08b-a1eb-41f1-9fb2-4ec532edfc41)
  6057. (property "Reference" "C10" (id 0) (at 226.5172 25.5016 0)
  6058. (effects (font (size 1.27 1.27)) (justify left))
  6059. )
  6060. (property "Value" "4.7uF" (id 1) (at 226.5172 27.813 0)
  6061. (effects (font (size 1.27 1.27)) (justify left))
  6062. )
  6063. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 224.4852 30.48 0)
  6064. (effects (font (size 1.27 1.27)) hide)
  6065. )
  6066. (property "Datasheet" "~" (id 3) (at 223.52 26.67 0)
  6067. (effects (font (size 1.27 1.27)) hide)
  6068. )
  6069. (pin "1" (uuid 1474ca17-4450-4779-b563-b5f332bdccd2))
  6070. (pin "2" (uuid c5cb6e97-1b82-4da8-874e-eb0e8e5ef607))
  6071. )
  6072. (symbol (lib_id "Device:R") (at 260.35 35.56 90) (unit 1)
  6073. (in_bom yes) (on_board yes)
  6074. (uuid c8a92bd7-4067-4791-b799-90c90ad33c92)
  6075. (property "Reference" "R54" (id 0) (at 259.08 35.56 90))
  6076. (property "Value" "1k" (id 1) (at 261.62 35.56 90))
  6077. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 260.35 37.338 90)
  6078. (effects (font (size 1.27 1.27)) hide)
  6079. )
  6080. (property "Datasheet" "~" (id 3) (at 260.35 35.56 0)
  6081. (effects (font (size 1.27 1.27)) hide)
  6082. )
  6083. (pin "1" (uuid 42541572-9989-4d51-b35b-05778bda0d3a))
  6084. (pin "2" (uuid 90a6bf76-af0c-480d-bb01-925e4c0d6acf))
  6085. )
  6086. (symbol (lib_id "power:+2V8") (at 218.44 22.86 0) (unit 1)
  6087. (in_bom yes) (on_board yes)
  6088. (uuid cbb97826-b405-4910-ba34-f12bf73a4ac6)
  6089. (property "Reference" "#PWR09" (id 0) (at 218.44 26.67 0)
  6090. (effects (font (size 1.27 1.27)) hide)
  6091. )
  6092. (property "Value" "+2V8" (id 1) (at 218.821 18.4658 0))
  6093. (property "Footprint" "" (id 2) (at 218.44 22.86 0)
  6094. (effects (font (size 1.27 1.27)) hide)
  6095. )
  6096. (property "Datasheet" "" (id 3) (at 218.44 22.86 0)
  6097. (effects (font (size 1.27 1.27)) hide)
  6098. )
  6099. (pin "1" (uuid 129c7533-d0c3-45a9-af9d-1c2cb5459db1))
  6100. )
  6101. (symbol (lib_id "Device:R") (at 260.35 43.18 90) (unit 1)
  6102. (in_bom yes) (on_board yes)
  6103. (uuid cc7587b2-2135-4ab8-8587-8b5a9b248b30)
  6104. (property "Reference" "R55" (id 0) (at 259.08 43.18 90))
  6105. (property "Value" "1k" (id 1) (at 261.62 43.18 90))
  6106. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 260.35 44.958 90)
  6107. (effects (font (size 1.27 1.27)) hide)
  6108. )
  6109. (property "Datasheet" "~" (id 3) (at 260.35 43.18 0)
  6110. (effects (font (size 1.27 1.27)) hide)
  6111. )
  6112. (pin "1" (uuid 5a38d578-ab11-4bc5-88c4-739ecca433fc))
  6113. (pin "2" (uuid cc73acde-7c72-4e59-8559-d9510424466b))
  6114. )
  6115. (symbol (lib_id "New_Library:LVT125") (at 170.18 54.61 0) (unit 1)
  6116. (in_bom yes) (on_board yes) (fields_autoplaced)
  6117. (uuid cebb5c1e-f296-4040-b1f6-63c5ffc061bf)
  6118. (property "Reference" "U7" (id 0) (at 170.18 52.07 0))
  6119. (property "Value" "LVT125" (id 1) (at 170.18 54.61 0))
  6120. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (id 2) (at 170.18 54.61 0)
  6121. (effects (font (size 1.27 1.27)) hide)
  6122. )
  6123. (property "Datasheet" "" (id 3) (at 170.18 54.61 0)
  6124. (effects (font (size 1.27 1.27)) hide)
  6125. )
  6126. (pin "1" (uuid 90e981ea-96c9-43b1-ac6e-b1e97ff507c2))
  6127. (pin "10" (uuid 1b2886f1-b4d9-4df1-beb0-f0e9c2228aa7))
  6128. (pin "11" (uuid 75a32aaa-9161-4dd2-a598-e78bbea08f01))
  6129. (pin "12" (uuid 49768290-ec7c-439c-a2ff-d76f1a2d0631))
  6130. (pin "13" (uuid dbec9a7f-de3f-4002-a235-a40447187f9f))
  6131. (pin "14" (uuid 9b63b8a6-b7ec-438f-a5f9-31200c7f93f6))
  6132. (pin "2" (uuid be4d4e99-8bd1-40ae-82bf-4c8419b359ac))
  6133. (pin "3" (uuid a0a93ffa-6960-4a61-b143-ba858e5cb3c6))
  6134. (pin "4" (uuid c6372dd3-ccf5-48b1-9124-d6e67b1a474d))
  6135. (pin "5" (uuid 3f2f8415-95a8-4213-af1f-d008b5ae3f21))
  6136. (pin "6" (uuid faf66190-8931-41e4-a9ae-894f694b486d))
  6137. (pin "7" (uuid 42bc3d11-a746-42ad-a3fa-3e09bf2d2fd3))
  6138. (pin "8" (uuid f0845ac0-39c5-4dcb-a336-2db4c2536a8a))
  6139. (pin "9" (uuid 03bb5a85-136b-424f-9ba9-fafdfa66f640))
  6140. )
  6141. (symbol (lib_id "Device:R") (at 92.71 35.56 90) (unit 1)
  6142. (in_bom yes) (on_board yes)
  6143. (uuid d06a9a79-7d53-413c-9256-1f2b0418c15b)
  6144. (property "Reference" "R38" (id 0) (at 91.5416 33.782 0)
  6145. (effects (font (size 1.27 1.27)) (justify left))
  6146. )
  6147. (property "Value" "R" (id 1) (at 93.853 33.782 0)
  6148. (effects (font (size 1.27 1.27)) (justify left))
  6149. )
  6150. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 92.71 37.338 90)
  6151. (effects (font (size 1.27 1.27)) hide)
  6152. )
  6153. (property "Datasheet" "~" (id 3) (at 92.71 35.56 0)
  6154. (effects (font (size 1.27 1.27)) hide)
  6155. )
  6156. (pin "1" (uuid 0c65a01c-9588-4b90-9050-11e611d77173))
  6157. (pin "2" (uuid c6809829-bdfd-4f91-bee3-640c458a6d79))
  6158. )
  6159. (symbol (lib_id "Device:R") (at 184.15 40.64 90) (unit 1)
  6160. (in_bom yes) (on_board yes)
  6161. (uuid d1220611-313c-4632-a992-795036749ed9)
  6162. (property "Reference" "R45" (id 0) (at 182.88 40.64 90))
  6163. (property "Value" "1k" (id 1) (at 185.42 40.64 90))
  6164. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 184.15 42.418 90)
  6165. (effects (font (size 1.27 1.27)) hide)
  6166. )
  6167. (property "Datasheet" "~" (id 3) (at 184.15 40.64 0)
  6168. (effects (font (size 1.27 1.27)) hide)
  6169. )
  6170. (pin "1" (uuid c7c1fb54-7700-47a7-8598-07686d65d08d))
  6171. (pin "2" (uuid ec6a947d-d5dc-443f-ad94-c21b2da7f785))
  6172. )
  6173. (symbol (lib_id "power:+2V8") (at 179.07 57.15 270) (unit 1)
  6174. (in_bom yes) (on_board yes)
  6175. (uuid d31500c7-5cd6-4f9e-975b-07404745c548)
  6176. (property "Reference" "#PWR060" (id 0) (at 175.26 57.15 0)
  6177. (effects (font (size 1.27 1.27)) hide)
  6178. )
  6179. (property "Value" "+2V8" (id 1) (at 183.4642 57.531 90))
  6180. (property "Footprint" "" (id 2) (at 179.07 57.15 0)
  6181. (effects (font (size 1.27 1.27)) hide)
  6182. )
  6183. (property "Datasheet" "" (id 3) (at 179.07 57.15 0)
  6184. (effects (font (size 1.27 1.27)) hide)
  6185. )
  6186. (pin "1" (uuid 4610ca8f-eda7-4d95-a2f3-a3d4aefe08f7))
  6187. )
  6188. (symbol (lib_id "Device:C") (at 271.78 26.67 0) (unit 1)
  6189. (in_bom yes) (on_board yes)
  6190. (uuid d35a1688-c174-4ea8-a25d-8782d5f9a928)
  6191. (property "Reference" "C11" (id 0) (at 265.3792 26.67 90))
  6192. (property "Value" "0.1uF" (id 1) (at 267.6906 26.67 90))
  6193. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 272.7452 30.48 0)
  6194. (effects (font (size 1.27 1.27)) hide)
  6195. )
  6196. (property "Datasheet" "~" (id 3) (at 271.78 26.67 0)
  6197. (effects (font (size 1.27 1.27)) hide)
  6198. )
  6199. (pin "1" (uuid 8b95e477-499a-4645-ae20-d1bc622fb81b))
  6200. (pin "2" (uuid d0ed75d8-f9ba-4488-8a28-5e0a65454dea))
  6201. )
  6202. (symbol (lib_id "Device:CP") (at 267.97 97.79 90) (unit 1)
  6203. (in_bom yes) (on_board yes)
  6204. (uuid d5134e87-aa80-4414-a674-e59e54ad24ed)
  6205. (property "Reference" "C7" (id 0) (at 266.8016 94.7928 0)
  6206. (effects (font (size 1.27 1.27)) (justify left))
  6207. )
  6208. (property "Value" "4.7uF" (id 1) (at 269.113 94.7928 0)
  6209. (effects (font (size 1.27 1.27)) (justify left))
  6210. )
  6211. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 271.78 96.8248 0)
  6212. (effects (font (size 1.27 1.27)) hide)
  6213. )
  6214. (property "Datasheet" "~" (id 3) (at 267.97 97.79 0)
  6215. (effects (font (size 1.27 1.27)) hide)
  6216. )
  6217. (pin "1" (uuid 39eb1f13-2a74-46be-9fb9-c41b9edc99eb))
  6218. (pin "2" (uuid 36c7afb8-c9c9-4b4c-9803-756bd7e7167d))
  6219. )
  6220. (symbol (lib_id "Device:R") (at 67.31 45.72 270) (unit 1)
  6221. (in_bom yes) (on_board yes)
  6222. (uuid d55cc04d-788a-42ba-a149-99196a85fed4)
  6223. (property "Reference" "R1" (id 0) (at 68.4784 47.498 0)
  6224. (effects (font (size 1.27 1.27)) (justify left))
  6225. )
  6226. (property "Value" "R" (id 1) (at 66.167 47.498 0)
  6227. (effects (font (size 1.27 1.27)) (justify left))
  6228. )
  6229. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 67.31 43.942 90)
  6230. (effects (font (size 1.27 1.27)) hide)
  6231. )
  6232. (property "Datasheet" "~" (id 3) (at 67.31 45.72 0)
  6233. (effects (font (size 1.27 1.27)) hide)
  6234. )
  6235. (pin "1" (uuid 0ce2a018-b2bb-4c7f-8f5c-61deb4f34b4f))
  6236. (pin "2" (uuid 91d1b014-d7da-466f-936e-d69aa5a47ef1))
  6237. )
  6238. (symbol (lib_id "power:+2V8") (at 68.58 71.12 0) (unit 1)
  6239. (in_bom yes) (on_board yes)
  6240. (uuid d59ac02e-1875-46b2-aa8d-e821b7d5d6b1)
  6241. (property "Reference" "#PWR0117" (id 0) (at 68.58 74.93 0)
  6242. (effects (font (size 1.27 1.27)) hide)
  6243. )
  6244. (property "Value" "+2V8" (id 1) (at 68.961 66.7258 0))
  6245. (property "Footprint" "" (id 2) (at 68.58 71.12 0)
  6246. (effects (font (size 1.27 1.27)) hide)
  6247. )
  6248. (property "Datasheet" "" (id 3) (at 68.58 71.12 0)
  6249. (effects (font (size 1.27 1.27)) hide)
  6250. )
  6251. (pin "1" (uuid 5b987096-38fa-49de-a548-5375f15f6e0d))
  6252. )
  6253. (symbol (lib_id "Device:R") (at 207.01 30.48 90) (unit 1)
  6254. (in_bom yes) (on_board yes)
  6255. (uuid de89df10-e597-421d-ae3d-a5cc07a76da8)
  6256. (property "Reference" "R46" (id 0) (at 205.74 30.48 90))
  6257. (property "Value" "1k" (id 1) (at 208.28 30.48 90))
  6258. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 207.01 32.258 90)
  6259. (effects (font (size 1.27 1.27)) hide)
  6260. )
  6261. (property "Datasheet" "~" (id 3) (at 207.01 30.48 0)
  6262. (effects (font (size 1.27 1.27)) hide)
  6263. )
  6264. (pin "1" (uuid 4f54d320-491f-4696-96de-216211f34ae5))
  6265. (pin "2" (uuid f76ecbc8-0e13-4886-a34a-a0520e2ff0b3))
  6266. )
  6267. (symbol (lib_id "power:+2V8") (at 138.43 72.39 270) (unit 1)
  6268. (in_bom yes) (on_board yes)
  6269. (uuid dfc68250-1adb-4edd-af55-159d2fe0ce21)
  6270. (property "Reference" "#PWR054" (id 0) (at 134.62 72.39 0)
  6271. (effects (font (size 1.27 1.27)) hide)
  6272. )
  6273. (property "Value" "+2V8" (id 1) (at 142.8242 72.771 90))
  6274. (property "Footprint" "" (id 2) (at 138.43 72.39 0)
  6275. (effects (font (size 1.27 1.27)) hide)
  6276. )
  6277. (property "Datasheet" "" (id 3) (at 138.43 72.39 0)
  6278. (effects (font (size 1.27 1.27)) hide)
  6279. )
  6280. (pin "1" (uuid 7b0c81c4-d6c3-4a58-aa38-a61df41f6958))
  6281. )
  6282. (symbol (lib_id "Device:R") (at 123.19 128.27 90) (unit 1)
  6283. (in_bom yes) (on_board yes)
  6284. (uuid e0a8732e-1d87-42a5-8b7a-9d44ca6b005b)
  6285. (property "Reference" "R20" (id 0) (at 121.92 125.73 90))
  6286. (property "Value" "10k" (id 1) (at 123.19 128.27 90))
  6287. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 123.19 130.048 90)
  6288. (effects (font (size 1.27 1.27)) hide)
  6289. )
  6290. (property "Datasheet" "~" (id 3) (at 123.19 128.27 0)
  6291. (effects (font (size 1.27 1.27)) hide)
  6292. )
  6293. (pin "1" (uuid ec576061-7f28-45a1-927c-845dcf7ade7e))
  6294. (pin "2" (uuid f232aeb9-0df3-43e8-8701-5477416e4953))
  6295. )
  6296. (symbol (lib_id "Device:R") (at 140.97 182.88 0) (unit 1)
  6297. (in_bom yes) (on_board yes)
  6298. (uuid e20bb894-0df4-42be-92e0-2e00d2b1ae74)
  6299. (property "Reference" "R27" (id 0) (at 143.51 181.61 90))
  6300. (property "Value" "1k" (id 1) (at 140.97 181.61 90))
  6301. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 139.192 182.88 90)
  6302. (effects (font (size 1.27 1.27)) hide)
  6303. )
  6304. (property "Datasheet" "~" (id 3) (at 140.97 182.88 0)
  6305. (effects (font (size 1.27 1.27)) hide)
  6306. )
  6307. (pin "1" (uuid 2b8512ff-563b-4167-a6b1-f98bccfff347))
  6308. (pin "2" (uuid d6aa0316-ef41-4c0d-b425-62df7fc7bc0e))
  6309. )
  6310. (symbol (lib_id "Device:R") (at 67.31 25.4 270) (unit 1)
  6311. (in_bom yes) (on_board yes)
  6312. (uuid e248ac27-5c84-4ccf-8acf-9333febfca16)
  6313. (property "Reference" "R35" (id 0) (at 68.4784 27.178 0)
  6314. (effects (font (size 1.27 1.27)) (justify left))
  6315. )
  6316. (property "Value" "R" (id 1) (at 66.167 27.178 0)
  6317. (effects (font (size 1.27 1.27)) (justify left))
  6318. )
  6319. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 67.31 23.622 90)
  6320. (effects (font (size 1.27 1.27)) hide)
  6321. )
  6322. (property "Datasheet" "~" (id 3) (at 67.31 25.4 0)
  6323. (effects (font (size 1.27 1.27)) hide)
  6324. )
  6325. (pin "1" (uuid d2f4a61c-b9d1-411f-b407-3c8dd7d4284d))
  6326. (pin "2" (uuid d459a5e7-53d1-48a8-b872-4964d7ec3f6c))
  6327. )
  6328. (symbol (lib_id "power:GND") (at 100.33 171.45 90) (unit 1)
  6329. (in_bom yes) (on_board yes)
  6330. (uuid e27ae3d1-f1c8-4938-ab6a-f15c1c3a67bb)
  6331. (property "Reference" "#PWR044" (id 0) (at 106.68 171.45 0)
  6332. (effects (font (size 1.27 1.27)) hide)
  6333. )
  6334. (property "Value" "GND" (id 1) (at 104.7242 171.323 90))
  6335. (property "Footprint" "" (id 2) (at 100.33 171.45 0)
  6336. (effects (font (size 1.27 1.27)) hide)
  6337. )
  6338. (property "Datasheet" "" (id 3) (at 100.33 171.45 0)
  6339. (effects (font (size 1.27 1.27)) hide)
  6340. )
  6341. (pin "1" (uuid ab128f85-3907-4ad5-abb7-10a3b102e267))
  6342. )
  6343. (symbol (lib_id "Device:R") (at 207.01 43.18 90) (unit 1)
  6344. (in_bom yes) (on_board yes)
  6345. (uuid e56f05de-9f17-481c-9024-0e3090a26572)
  6346. (property "Reference" "R49" (id 0) (at 205.74 43.18 90))
  6347. (property "Value" "1k" (id 1) (at 208.28 43.18 90))
  6348. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 207.01 44.958 90)
  6349. (effects (font (size 1.27 1.27)) hide)
  6350. )
  6351. (property "Datasheet" "~" (id 3) (at 207.01 43.18 0)
  6352. (effects (font (size 1.27 1.27)) hide)
  6353. )
  6354. (pin "1" (uuid 1694619b-5ba1-46fe-bffb-27e17e9b6219))
  6355. (pin "2" (uuid 0939b358-741d-4f6e-b706-a39ce7a9b020))
  6356. )
  6357. (symbol (lib_id "power:GND") (at 140.97 186.69 0) (unit 1)
  6358. (in_bom yes) (on_board yes)
  6359. (uuid ebbb33a0-20da-4c65-8e67-77bd82c281b1)
  6360. (property "Reference" "#PWR0110" (id 0) (at 140.97 193.04 0)
  6361. (effects (font (size 1.27 1.27)) hide)
  6362. )
  6363. (property "Value" "GND" (id 1) (at 141.097 191.0842 90))
  6364. (property "Footprint" "" (id 2) (at 140.97 186.69 0)
  6365. (effects (font (size 1.27 1.27)) hide)
  6366. )
  6367. (property "Datasheet" "" (id 3) (at 140.97 186.69 0)
  6368. (effects (font (size 1.27 1.27)) hide)
  6369. )
  6370. (pin "1" (uuid b435be6a-9618-415e-aa26-1c0a7b47ed93))
  6371. )
  6372. (symbol (lib_id "power:+2V8") (at 24.13 17.78 0) (unit 1)
  6373. (in_bom yes) (on_board yes)
  6374. (uuid ee9a2c34-175f-4ae3-af7c-180468204166)
  6375. (property "Reference" "#PWR058" (id 0) (at 24.13 21.59 0)
  6376. (effects (font (size 1.27 1.27)) hide)
  6377. )
  6378. (property "Value" "+2V8" (id 1) (at 24.511 13.3858 0))
  6379. (property "Footprint" "" (id 2) (at 24.13 17.78 0)
  6380. (effects (font (size 1.27 1.27)) hide)
  6381. )
  6382. (property "Datasheet" "" (id 3) (at 24.13 17.78 0)
  6383. (effects (font (size 1.27 1.27)) hide)
  6384. )
  6385. (pin "1" (uuid 22edb73c-0b1b-43ac-ab04-1a2f9629df33))
  6386. )
  6387. (symbol (lib_id "custom_symbols:PB_SCSI_HD_Pins") (at 88.9 149.86 0) (unit 1)
  6388. (in_bom yes) (on_board yes)
  6389. (uuid f05f8e26-6ea8-46d5-89a2-2ea7e4119a94)
  6390. (property "Reference" "J2" (id 0) (at 88.265 120.015 0))
  6391. (property "Value" "PB_SCSI_HD_Pins" (id 1) (at 88.265 122.3264 0))
  6392. (property "Footprint" "Library:PowerBook_SCSI_40Pin_UpsideDown" (id 2) (at 88.646 121.92 0)
  6393. (effects (font (size 1.27 1.27)) hide)
  6394. )
  6395. (property "Datasheet" "~" (id 3) (at 81.026 148.59 0)
  6396. (effects (font (size 1.27 1.27)) hide)
  6397. )
  6398. (pin "1" (uuid 21a7e134-9b83-44a9-ad42-59f537461c24))
  6399. (pin "10" (uuid 279b3706-a1c5-45e9-aea8-acc91a865c1d))
  6400. (pin "11" (uuid bee1c83e-92d6-4762-9662-d2044cf633c3))
  6401. (pin "12" (uuid 5a363675-d286-4aba-88ee-1b89f721a68f))
  6402. (pin "13" (uuid 79c8349b-4fa2-4995-9e35-3c2a83fc877e))
  6403. (pin "14" (uuid 64cb7661-2949-4e33-b21f-32e0ee084d24))
  6404. (pin "15" (uuid 1a9b2b78-748c-4a05-aea5-0684f910852c))
  6405. (pin "16" (uuid 0a34d0cf-908e-4f0b-9ea7-01dac1e02416))
  6406. (pin "18" (uuid 278eb971-27e6-4f3c-9dbd-a982311c604d))
  6407. (pin "19" (uuid 6ae8e2e1-6308-42d3-8d69-ea3708b44a29))
  6408. (pin "2" (uuid 7bab7c54-14ba-4334-8083-12290013b212))
  6409. (pin "20" (uuid 01778132-e554-45ab-ac7b-1366b6f50536))
  6410. (pin "21" (uuid fa987b78-393c-4b52-8387-0cae1a6f61da))
  6411. (pin "22" (uuid 873db3e7-76e3-4c9b-b6c7-5889a05b9d2e))
  6412. (pin "23" (uuid a2737bba-93af-4d9d-98b9-0661170dfc92))
  6413. (pin "24" (uuid 865f7303-503e-4fe0-8988-3f6b238601d0))
  6414. (pin "25" (uuid 18928c3f-6fc0-4584-96a7-e7c0ee57d55e))
  6415. (pin "26" (uuid 18795498-84b2-40e7-ae15-23e332b8bf20))
  6416. (pin "27" (uuid a6a8d870-f076-4b57-adb2-395457cdee40))
  6417. (pin "28" (uuid fad8b1b6-8f54-4799-8b3c-45503519e8cc))
  6418. (pin "29" (uuid 7ecaefed-4fe2-4246-97f4-4093dcc5a123))
  6419. (pin "3" (uuid ca2e2cd3-29bd-4836-9ead-a2a51cd6742f))
  6420. (pin "30" (uuid 6f708792-b56f-4c46-b311-7f457c42e8c3))
  6421. (pin "31" (uuid a44c9a09-2c10-480c-95bd-e562c6a8d764))
  6422. (pin "32" (uuid d040b0bc-2f76-4767-98f9-68726068be02))
  6423. (pin "33" (uuid 1b33e2ad-83c8-4012-993c-cac5602b82ce))
  6424. (pin "34" (uuid 034868e5-397b-4f4c-8c9b-6d3ef280a9fb))
  6425. (pin "35" (uuid 64132634-705c-4846-b25f-993ba608af88))
  6426. (pin "36" (uuid 73dccef8-89a9-4a30-b89f-d9cfde492644))
  6427. (pin "37" (uuid c595eebf-82d5-49f8-899c-d8de78b56f88))
  6428. (pin "38" (uuid c6176888-2c50-426d-8914-a895aeaccac7))
  6429. (pin "39" (uuid 1a5f18bf-0b50-480f-8a56-da67d079325c))
  6430. (pin "4" (uuid 315dff16-9be8-422d-a6f7-842a321557e0))
  6431. (pin "40" (uuid 4fa19643-4b9e-416e-aa27-8b997cb1d1e8))
  6432. (pin "5" (uuid fa55be1c-322a-47c0-9014-b43dd06731ee))
  6433. (pin "6" (uuid 3caebd02-fa83-4387-a80d-1b0b95b3784a))
  6434. (pin "7" (uuid 70a79cf1-3696-4ccb-970e-165eaa5f4d4f))
  6435. (pin "8" (uuid da9e6bcf-2f75-4978-8a48-b48b68d1dda6))
  6436. (pin "9" (uuid 437dc8ea-e62f-426e-8feb-32d703410563))
  6437. )
  6438. (symbol (lib_id "power:GND") (at 134.62 184.15 0) (unit 1)
  6439. (in_bom yes) (on_board yes)
  6440. (uuid f064aced-ebca-4cab-9e46-ab5f975c04ff)
  6441. (property "Reference" "#PWR0109" (id 0) (at 134.62 190.5 0)
  6442. (effects (font (size 1.27 1.27)) hide)
  6443. )
  6444. (property "Value" "GND" (id 1) (at 134.747 188.5442 90))
  6445. (property "Footprint" "" (id 2) (at 134.62 184.15 0)
  6446. (effects (font (size 1.27 1.27)) hide)
  6447. )
  6448. (property "Datasheet" "" (id 3) (at 134.62 184.15 0)
  6449. (effects (font (size 1.27 1.27)) hide)
  6450. )
  6451. (pin "1" (uuid 4ff082c3-a761-40ae-86f1-4803c9b5cd61))
  6452. )
  6453. (symbol (lib_id "Device:R") (at 259.08 127 90) (unit 1)
  6454. (in_bom yes) (on_board yes)
  6455. (uuid f106194f-fc99-48da-8a15-f309a62d019b)
  6456. (property "Reference" "R12" (id 0) (at 257.81 127 90))
  6457. (property "Value" "1k" (id 1) (at 260.35 127 90))
  6458. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 259.08 128.778 90)
  6459. (effects (font (size 1.27 1.27)) hide)
  6460. )
  6461. (property "Datasheet" "~" (id 3) (at 259.08 127 0)
  6462. (effects (font (size 1.27 1.27)) hide)
  6463. )
  6464. (pin "1" (uuid a3b561d4-d070-429a-b193-6bfdf6dd2343))
  6465. (pin "2" (uuid 63209779-5aae-415b-b0bf-530adefef120))
  6466. )
  6467. (symbol (lib_id "power:+2V8") (at 127 134.62 270) (unit 1)
  6468. (in_bom yes) (on_board yes)
  6469. (uuid f17ef868-5919-4be7-8f83-52876b7e8db3)
  6470. (property "Reference" "#PWR039" (id 0) (at 123.19 134.62 0)
  6471. (effects (font (size 1.27 1.27)) hide)
  6472. )
  6473. (property "Value" "+2V8" (id 1) (at 131.3942 135.001 90))
  6474. (property "Footprint" "" (id 2) (at 127 134.62 0)
  6475. (effects (font (size 1.27 1.27)) hide)
  6476. )
  6477. (property "Datasheet" "" (id 3) (at 127 134.62 0)
  6478. (effects (font (size 1.27 1.27)) hide)
  6479. )
  6480. (pin "1" (uuid e463557d-3e9b-4e07-8ca8-213c877805e0))
  6481. )
  6482. (symbol (lib_id "power:+5VA") (at 100.33 125.73 0) (unit 1)
  6483. (in_bom yes) (on_board yes) (fields_autoplaced)
  6484. (uuid f2285cea-eae0-44f5-be59-69a318c91f3f)
  6485. (property "Reference" "#PWR041" (id 0) (at 100.33 129.54 0)
  6486. (effects (font (size 1.27 1.27)) hide)
  6487. )
  6488. (property "Value" "+5VA" (id 1) (at 100.33 120.65 0))
  6489. (property "Footprint" "" (id 2) (at 100.33 125.73 0)
  6490. (effects (font (size 1.27 1.27)) hide)
  6491. )
  6492. (property "Datasheet" "" (id 3) (at 100.33 125.73 0)
  6493. (effects (font (size 1.27 1.27)) hide)
  6494. )
  6495. (pin "1" (uuid eb430dc7-cc9a-46b4-a4cb-f2ec221ecce6))
  6496. )
  6497. (symbol (lib_id "New_Library:LVT245") (at 195.58 19.05 0) (unit 1)
  6498. (in_bom yes) (on_board yes) (fields_autoplaced)
  6499. (uuid f24e6ed5-549c-4de4-b3b1-561de9e64e4a)
  6500. (property "Reference" "U4" (id 0) (at 195.58 17.78 0))
  6501. (property "Value" "LVT245" (id 1) (at 195.58 20.32 0))
  6502. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 195.58 13.97 0)
  6503. (effects (font (size 1.27 1.27)) hide)
  6504. )
  6505. (property "Datasheet" "" (id 3) (at 195.58 19.05 0)
  6506. (effects (font (size 1.27 1.27)) hide)
  6507. )
  6508. (pin "1" (uuid 92b32272-c220-4da3-b102-b1f5d40ed39c))
  6509. (pin "10" (uuid 42455a7a-1887-4afa-976a-fb9c27358a8c))
  6510. (pin "11" (uuid 2f66da2e-f239-4cfe-8b84-6ef03430a3cf))
  6511. (pin "12" (uuid f403a249-f6f3-4f56-b58c-84581d8b5303))
  6512. (pin "13" (uuid dcf23bbb-5feb-47cc-b296-6a7c678c7575))
  6513. (pin "14" (uuid 3084540b-0a2b-47ba-b1b1-8f49c55959a2))
  6514. (pin "15" (uuid 81801738-c298-420b-9a94-27fc58c8c9d7))
  6515. (pin "16" (uuid d320f19c-8698-417d-a95c-4312bbfc3584))
  6516. (pin "17" (uuid c39a1bd6-43f6-46df-a7e1-0d0393213440))
  6517. (pin "18" (uuid 6a12efd5-fe7d-46e2-b704-f640c0d4777e))
  6518. (pin "19" (uuid a1bb59ec-d207-4993-8b26-45e6417367c2))
  6519. (pin "2" (uuid a680d3c5-daf0-427f-9918-8799ba7392cc))
  6520. (pin "20" (uuid ed4ebf17-f614-44a5-be9f-a6cae9401a61))
  6521. (pin "3" (uuid 87069093-9ec7-4bc7-9757-60d320b10272))
  6522. (pin "4" (uuid 381f339d-59dd-4108-903a-9505d279b4c0))
  6523. (pin "5" (uuid 538fc7eb-c88d-40e0-993c-728a1bcd8e81))
  6524. (pin "6" (uuid 6d4e5261-49bc-4523-9d3c-efef7fe3a392))
  6525. (pin "7" (uuid c3ffdf2f-86c7-4b56-ab58-e9ceb2dba206))
  6526. (pin "8" (uuid b3c73a96-92c9-48f6-a487-1ad0d1151175))
  6527. (pin "9" (uuid d4ec2757-fdec-4cef-8f84-6775da50736a))
  6528. )
  6529. (symbol (lib_id "power:GND") (at 247.65 121.92 90) (unit 1)
  6530. (in_bom yes) (on_board yes)
  6531. (uuid f2532300-ecfd-4f24-8281-1c26cae31fc2)
  6532. (property "Reference" "#PWR065" (id 0) (at 254 121.92 0)
  6533. (effects (font (size 1.27 1.27)) hide)
  6534. )
  6535. (property "Value" "GND" (id 1) (at 250.9012 121.793 90)
  6536. (effects (font (size 1.27 1.27)) (justify right))
  6537. )
  6538. (property "Footprint" "" (id 2) (at 247.65 121.92 0)
  6539. (effects (font (size 1.27 1.27)) hide)
  6540. )
  6541. (property "Datasheet" "" (id 3) (at 247.65 121.92 0)
  6542. (effects (font (size 1.27 1.27)) hide)
  6543. )
  6544. (pin "1" (uuid 757ac08c-3518-4bd3-b3e7-0c95c4762784))
  6545. )
  6546. (symbol (lib_id "Device:D") (at 29.21 176.53 180) (unit 1)
  6547. (in_bom yes) (on_board yes)
  6548. (uuid f2bd2386-90ad-40ed-ac60-ba08818ae7f1)
  6549. (property "Reference" "D3" (id 0) (at 28.0416 174.498 90)
  6550. (effects (font (size 1.27 1.27)) (justify right))
  6551. )
  6552. (property "Value" "D" (id 1) (at 30.353 174.498 90)
  6553. (effects (font (size 1.27 1.27)) (justify right))
  6554. )
  6555. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 29.21 176.53 0)
  6556. (effects (font (size 1.27 1.27)) hide)
  6557. )
  6558. (property "Datasheet" "~" (id 3) (at 29.21 176.53 0)
  6559. (effects (font (size 1.27 1.27)) hide)
  6560. )
  6561. (pin "1" (uuid 118c5a26-c9e1-444b-9ebc-489b64d183d6))
  6562. (pin "2" (uuid 711651ae-aef5-45fe-b5f8-335f83256570))
  6563. )
  6564. (symbol (lib_id "Device:R") (at 68.58 95.25 90) (unit 1)
  6565. (in_bom yes) (on_board yes)
  6566. (uuid f339d02f-3618-4b55-a8b7-d8e04e42ff42)
  6567. (property "Reference" "R9" (id 0) (at 67.4116 93.472 0)
  6568. (effects (font (size 1.27 1.27)) (justify left))
  6569. )
  6570. (property "Value" "R" (id 1) (at 69.723 93.472 0)
  6571. (effects (font (size 1.27 1.27)) (justify left))
  6572. )
  6573. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 68.58 97.028 90)
  6574. (effects (font (size 1.27 1.27)) hide)
  6575. )
  6576. (property "Datasheet" "~" (id 3) (at 68.58 95.25 0)
  6577. (effects (font (size 1.27 1.27)) hide)
  6578. )
  6579. (pin "1" (uuid 3f15efa4-dd3f-4eea-836b-fc61f7df7ebd))
  6580. (pin "2" (uuid c067d274-0a0a-493a-84ad-25a0a69b9923))
  6581. )
  6582. (symbol (lib_id "power:GND") (at 231.14 85.09 270) (unit 1)
  6583. (in_bom yes) (on_board yes)
  6584. (uuid f42a9905-725b-456a-bb59-34e5c5de4e9a)
  6585. (property "Reference" "#PWR0102" (id 0) (at 224.79 85.09 0)
  6586. (effects (font (size 1.27 1.27)) hide)
  6587. )
  6588. (property "Value" "GND" (id 1) (at 227.8888 85.217 90)
  6589. (effects (font (size 1.27 1.27)) (justify right))
  6590. )
  6591. (property "Footprint" "" (id 2) (at 231.14 85.09 0)
  6592. (effects (font (size 1.27 1.27)) hide)
  6593. )
  6594. (property "Datasheet" "" (id 3) (at 231.14 85.09 0)
  6595. (effects (font (size 1.27 1.27)) hide)
  6596. )
  6597. (pin "1" (uuid a50bb2e0-d74b-4df1-a2b0-619261289f2d))
  6598. )
  6599. (symbol (lib_id "power:GND") (at 241.3 45.72 270) (unit 1)
  6600. (in_bom yes) (on_board yes)
  6601. (uuid f46ae0d3-a892-41a4-8f6f-ef2801a31335)
  6602. (property "Reference" "#PWR011" (id 0) (at 234.95 45.72 0)
  6603. (effects (font (size 1.27 1.27)) hide)
  6604. )
  6605. (property "Value" "GND" (id 1) (at 236.9058 45.847 90))
  6606. (property "Footprint" "" (id 2) (at 241.3 45.72 0)
  6607. (effects (font (size 1.27 1.27)) hide)
  6608. )
  6609. (property "Datasheet" "" (id 3) (at 241.3 45.72 0)
  6610. (effects (font (size 1.27 1.27)) hide)
  6611. )
  6612. (pin "1" (uuid b7353eea-c2a6-4597-aa9c-760dc3cd4394))
  6613. )
  6614. (symbol (lib_id "custom_symbols:+5V_TPWR") (at 100.33 153.67 270) (unit 1)
  6615. (in_bom yes) (on_board yes)
  6616. (uuid f5798511-2402-4b18-8c16-4b3569a0728b)
  6617. (property "Reference" "#PWR043" (id 0) (at 96.52 153.67 0)
  6618. (effects (font (size 1.27 1.27)) hide)
  6619. )
  6620. (property "Value" "+5V_TPWR" (id 1) (at 103.5812 154.051 90)
  6621. (effects (font (size 1.27 1.27)) (justify left))
  6622. )
  6623. (property "Footprint" "" (id 2) (at 100.33 153.67 0)
  6624. (effects (font (size 1.27 1.27)) hide)
  6625. )
  6626. (property "Datasheet" "" (id 3) (at 100.33 153.67 0)
  6627. (effects (font (size 1.27 1.27)) hide)
  6628. )
  6629. (pin "1" (uuid 39708ae3-7bcc-46d1-a7d9-d3918747d1a0))
  6630. )
  6631. (sheet (at 125.73 27.94) (size 21.59 3.81) (fields_autoplaced)
  6632. (stroke (width 0.1524) (type solid) (color 0 0 0 0))
  6633. (fill (color 0 0 0 0.0000))
  6634. (uuid fdcde0ff-5e8f-44b0-a02c-21e908a3ec10)
  6635. (property "Sheet name" "LED_Indicators" (id 0) (at 125.73 27.2284 0)
  6636. (effects (font (size 1.27 1.27)) (justify left bottom))
  6637. )
  6638. (property "Sheet file" "LED_Indicators.kicad_sch" (id 1) (at 125.73 32.3346 0)
  6639. (effects (font (size 1.27 1.27)) (justify left top))
  6640. )
  6641. )
  6642. (sheet_instances
  6643. (path "/" (page "1"))
  6644. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10" (page "2"))
  6645. )
  6646. (symbol_instances
  6647. (path "/92f6a093-be10-45da-8d18-1aeb366bcf3f"
  6648. (reference "#PWR01") (unit 1) (value "+2V8") (footprint "")
  6649. )
  6650. (path "/92040d75-677e-408b-b41d-a9e5389e97b7"
  6651. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  6652. )
  6653. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/e559ff9b-dcf9-4dcf-b4c8-4ab448f87cc9"
  6654. (reference "#PWR03") (unit 1) (value "GND") (footprint "")
  6655. )
  6656. (path "/00000000-0000-0000-0000-00006225dfcd"
  6657. (reference "#PWR04") (unit 1) (value "GND") (footprint "")
  6658. )
  6659. (path "/00000000-0000-0000-0000-0000620b4134"
  6660. (reference "#PWR05") (unit 1) (value "GND") (footprint "")
  6661. )
  6662. (path "/00000000-0000-0000-0000-000060a46e5b"
  6663. (reference "#PWR06") (unit 1) (value "+5F") (footprint "")
  6664. )
  6665. (path "/00000000-0000-0000-0000-00006045bfed"
  6666. (reference "#PWR07") (unit 1) (value "GND") (footprint "")
  6667. )
  6668. (path "/9a7cf9b8-c05b-4cc0-a147-14aca337cfa3"
  6669. (reference "#PWR08") (unit 1) (value "GND") (footprint "")
  6670. )
  6671. (path "/cbb97826-b405-4910-ba34-f12bf73a4ac6"
  6672. (reference "#PWR09") (unit 1) (value "+2V8") (footprint "")
  6673. )
  6674. (path "/4fa411ec-2740-4e95-ac94-e10999c53b4c"
  6675. (reference "#PWR010") (unit 1) (value "GND") (footprint "")
  6676. )
  6677. (path "/f46ae0d3-a892-41a4-8f6f-ef2801a31335"
  6678. (reference "#PWR011") (unit 1) (value "GND") (footprint "")
  6679. )
  6680. (path "/00000000-0000-0000-0000-0000604542f6"
  6681. (reference "#PWR012") (unit 1) (value "GND") (footprint "")
  6682. )
  6683. (path "/00000000-0000-0000-0000-00006045c342"
  6684. (reference "#PWR013") (unit 1) (value "GND") (footprint "")
  6685. )
  6686. (path "/551312e2-9236-46bf-b24e-dd79268636e8"
  6687. (reference "#PWR014") (unit 1) (value "+5VD") (footprint "")
  6688. )
  6689. (path "/00000000-0000-0000-0000-0000604599aa"
  6690. (reference "#PWR015") (unit 1) (value "+2V8") (footprint "")
  6691. )
  6692. (path "/00000000-0000-0000-0000-0000620974b3"
  6693. (reference "#PWR016") (unit 1) (value "GND") (footprint "")
  6694. )
  6695. (path "/ac218391-799b-4e3f-9524-9a89664a1094"
  6696. (reference "#PWR017") (unit 1) (value "+5VA") (footprint "")
  6697. )
  6698. (path "/00000000-0000-0000-0000-0000620e7a64"
  6699. (reference "#PWR018") (unit 1) (value "GND") (footprint "")
  6700. )
  6701. (path "/00000000-0000-0000-0000-0000605263e4"
  6702. (reference "#PWR019") (unit 1) (value "+5V_TPWR") (footprint "")
  6703. )
  6704. (path "/29cefbf4-f394-4720-bff7-30d843d32f60"
  6705. (reference "#PWR020") (unit 1) (value "GND") (footprint "")
  6706. )
  6707. (path "/8bc17f34-10f7-42ff-9329-698e138a3e0c"
  6708. (reference "#PWR021") (unit 1) (value "+2V8") (footprint "")
  6709. )
  6710. (path "/095735aa-ddd8-4263-8867-631a651120f2"
  6711. (reference "#PWR022") (unit 1) (value "GND") (footprint "")
  6712. )
  6713. (path "/670f3273-8a72-4075-9f94-55a584dbacb3"
  6714. (reference "#PWR023") (unit 1) (value "GND") (footprint "")
  6715. )
  6716. (path "/bcc53cc9-59ce-4a1f-bf14-1e027fbf53d9"
  6717. (reference "#PWR024") (unit 1) (value "GND") (footprint "")
  6718. )
  6719. (path "/00000000-0000-0000-0000-000060aa70a1"
  6720. (reference "#PWR025") (unit 1) (value "+5VP") (footprint "")
  6721. )
  6722. (path "/b3719c08-71c8-4818-9c77-f965cba6f25f"
  6723. (reference "#PWR026") (unit 1) (value "GND") (footprint "")
  6724. )
  6725. (path "/00000000-0000-0000-0000-000060a54b3e"
  6726. (reference "#PWR027") (unit 1) (value "+5F") (footprint "")
  6727. )
  6728. (path "/4df327fb-40bd-4678-adb0-cb272ec5feaa"
  6729. (reference "#PWR028") (unit 1) (value "GND") (footprint "")
  6730. )
  6731. (path "/549a41ac-0f13-4ae7-abc8-b559f0d7a298"
  6732. (reference "#PWR029") (unit 1) (value "GND") (footprint "")
  6733. )
  6734. (path "/1a6177e1-1bd9-4caa-bfec-8785d0b6c848"
  6735. (reference "#PWR030") (unit 1) (value "GND") (footprint "")
  6736. )
  6737. (path "/782b4bac-1551-4a65-9b81-069846741654"
  6738. (reference "#PWR031") (unit 1) (value "GND") (footprint "")
  6739. )
  6740. (path "/0886cb74-606a-4d52-9ccf-31726a6ede0c"
  6741. (reference "#PWR032") (unit 1) (value "GND") (footprint "")
  6742. )
  6743. (path "/18c17605-62db-400f-bc22-1ca2c83ed9e1"
  6744. (reference "#PWR033") (unit 1) (value "GND") (footprint "")
  6745. )
  6746. (path "/1ae034cc-cef3-4497-9406-a36b776a1b08"
  6747. (reference "#PWR034") (unit 1) (value "+2V8") (footprint "")
  6748. )
  6749. (path "/2f3fa7e6-49a6-4adc-9591-8c6911770fea"
  6750. (reference "#PWR035") (unit 1) (value "+5VA") (footprint "")
  6751. )
  6752. (path "/00000000-0000-0000-0000-0000608add8a"
  6753. (reference "#PWR036") (unit 1) (value "+5VP") (footprint "")
  6754. )
  6755. (path "/00000000-0000-0000-0000-000060ae7910"
  6756. (reference "#PWR037") (unit 1) (value "GND") (footprint "")
  6757. )
  6758. (path "/12e48db6-8eac-47f9-9e49-a5ed5707c406"
  6759. (reference "#PWR038") (unit 1) (value "+5VD") (footprint "")
  6760. )
  6761. (path "/f17ef868-5919-4be7-8f83-52876b7e8db3"
  6762. (reference "#PWR039") (unit 1) (value "+2V8") (footprint "")
  6763. )
  6764. (path "/717d2f57-c4d2-4d17-b94a-1431d5969ce3"
  6765. (reference "#PWR040") (unit 1) (value "+2V8") (footprint "")
  6766. )
  6767. (path "/f2285cea-eae0-44f5-be59-69a318c91f3f"
  6768. (reference "#PWR041") (unit 1) (value "+5VA") (footprint "")
  6769. )
  6770. (path "/88e6f979-4a58-4a0c-82ee-cccfcb840b1e"
  6771. (reference "#PWR042") (unit 1) (value "GND") (footprint "")
  6772. )
  6773. (path "/f5798511-2402-4b18-8c16-4b3569a0728b"
  6774. (reference "#PWR043") (unit 1) (value "+5V_TPWR") (footprint "")
  6775. )
  6776. (path "/e27ae3d1-f1c8-4938-ab6a-f15c1c3a67bb"
  6777. (reference "#PWR044") (unit 1) (value "GND") (footprint "")
  6778. )
  6779. (path "/5e135c68-2f82-4d52-8b2f-4d2e73e945ed"
  6780. (reference "#PWR045") (unit 1) (value "+5VD") (footprint "")
  6781. )
  6782. (path "/5c1a2741-1d97-49f6-a353-78939740670d"
  6783. (reference "#PWR046") (unit 1) (value "GND") (footprint "")
  6784. )
  6785. (path "/00000000-0000-0000-0000-00006083f3ec"
  6786. (reference "#PWR047") (unit 1) (value "+3V3") (footprint "")
  6787. )
  6788. (path "/00000000-0000-0000-0000-00006210d951"
  6789. (reference "#PWR048") (unit 1) (value "+3V3") (footprint "")
  6790. )
  6791. (path "/88f6b8dd-123f-41c7-92de-606e911690b3"
  6792. (reference "#PWR049") (unit 1) (value "+5F") (footprint "")
  6793. )
  6794. (path "/00000000-0000-0000-0000-000062115e1c"
  6795. (reference "#PWR050") (unit 1) (value "GND") (footprint "")
  6796. )
  6797. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/ec40f99c-1b32-4f56-a021-9233dee0cda0"
  6798. (reference "#PWR051") (unit 1) (value "+3.3V") (footprint "")
  6799. )
  6800. (path "/7bf736c7-8a81-4fa8-8945-e1787643fb2f"
  6801. (reference "#PWR052") (unit 1) (value "+2V8") (footprint "")
  6802. )
  6803. (path "/5bad8d7f-8626-44e7-a80d-c852acae5cdd"
  6804. (reference "#PWR053") (unit 1) (value "+2V8") (footprint "")
  6805. )
  6806. (path "/dfc68250-1adb-4edd-af55-159d2fe0ce21"
  6807. (reference "#PWR054") (unit 1) (value "+2V8") (footprint "")
  6808. )
  6809. (path "/3d998970-975b-4df4-8d2c-e26cbe5d87a8"
  6810. (reference "#PWR055") (unit 1) (value "+2V8") (footprint "")
  6811. )
  6812. (path "/7a3bc616-6c5f-4b6b-9ab9-fc557e3747d5"
  6813. (reference "#PWR056") (unit 1) (value "GND") (footprint "")
  6814. )
  6815. (path "/84b0f185-2932-4b58-9196-65d2b163f636"
  6816. (reference "#PWR057") (unit 1) (value "GND") (footprint "")
  6817. )
  6818. (path "/ee9a2c34-175f-4ae3-af7c-180468204166"
  6819. (reference "#PWR058") (unit 1) (value "+2V8") (footprint "")
  6820. )
  6821. (path "/d31500c7-5cd6-4f9e-975b-07404745c548"
  6822. (reference "#PWR060") (unit 1) (value "+2V8") (footprint "")
  6823. )
  6824. (path "/147842c0-fd7a-45c3-bcca-8e6b219b503c"
  6825. (reference "#PWR061") (unit 1) (value "GND") (footprint "")
  6826. )
  6827. (path "/ab2ae690-6deb-47e6-ab98-640a9c621344"
  6828. (reference "#PWR062") (unit 1) (value "GND") (footprint "")
  6829. )
  6830. (path "/2f5b7208-ba9d-4e5f-b5fa-1edbd65e2d1d"
  6831. (reference "#PWR063") (unit 1) (value "GND") (footprint "")
  6832. )
  6833. (path "/21b7d809-8773-4902-9010-08ad303d3a73"
  6834. (reference "#PWR064") (unit 1) (value "GND") (footprint "")
  6835. )
  6836. (path "/f2532300-ecfd-4f24-8281-1c26cae31fc2"
  6837. (reference "#PWR065") (unit 1) (value "GND") (footprint "")
  6838. )
  6839. (path "/69e72ffc-cc4c-4585-bfe1-2f783f8da8fb"
  6840. (reference "#PWR066") (unit 1) (value "GND") (footprint "")
  6841. )
  6842. (path "/a0efbb8b-2b88-4279-8882-2279417e29c4"
  6843. (reference "#PWR067") (unit 1) (value "GND") (footprint "")
  6844. )
  6845. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/505006ae-3aac-4c80-bd24-0067581dd15f"
  6846. (reference "#PWR068") (unit 1) (value "GND") (footprint "")
  6847. )
  6848. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/c39680dd-95ef-4a21-ba8b-fb50d1a80b1e"
  6849. (reference "#PWR069") (unit 1) (value "GND") (footprint "")
  6850. )
  6851. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/30b8f85e-e70f-4613-975e-fc919173e66d"
  6852. (reference "#PWR070") (unit 1) (value "GND") (footprint "")
  6853. )
  6854. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/09e5af85-fa15-4f16-a00b-505a6921dea4"
  6855. (reference "#PWR071") (unit 1) (value "GND") (footprint "")
  6856. )
  6857. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/89c9db85-7e1b-4d6b-ac82-349cad9970bc"
  6858. (reference "#PWR072") (unit 1) (value "GND") (footprint "")
  6859. )
  6860. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/fb7b6d67-63a4-41e8-97be-1c58f6129a46"
  6861. (reference "#PWR073") (unit 1) (value "GND") (footprint "")
  6862. )
  6863. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/5f216df2-9913-43cb-8650-1476ade6ac8d"
  6864. (reference "#PWR075") (unit 1) (value "GND") (footprint "")
  6865. )
  6866. (path "/0d3158d8-126d-4ee8-93bd-fcb2b0c14a18"
  6867. (reference "#PWR0101") (unit 1) (value "+3V3") (footprint "")
  6868. )
  6869. (path "/f42a9905-725b-456a-bb59-34e5c5de4e9a"
  6870. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  6871. )
  6872. (path "/1557db5f-effa-4bbe-b487-15625e4b297d"
  6873. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  6874. )
  6875. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/5fbbab8d-3021-4901-b0fd-39b771b3e267"
  6876. (reference "#PWR0104") (unit 1) (value "+5F") (footprint "")
  6877. )
  6878. (path "/6266cb10-8d45-4d13-a0d7-9e82125746ed"
  6879. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  6880. )
  6881. (path "/1416caaa-51bf-495a-95c0-580a73f485a9"
  6882. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  6883. )
  6884. (path "/880c8c19-58db-43fe-9d69-a20aeac720b2"
  6885. (reference "#PWR0108") (unit 1) (value "+2V8") (footprint "")
  6886. )
  6887. (path "/f064aced-ebca-4cab-9e46-ab5f975c04ff"
  6888. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  6889. )
  6890. (path "/ebbb33a0-20da-4c65-8e67-77bd82c281b1"
  6891. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  6892. )
  6893. (path "/61108e1a-8767-476c-bd5f-d4afc3774b98"
  6894. (reference "#PWR0111") (unit 1) (value "+2V8") (footprint "")
  6895. )
  6896. (path "/1189f306-dc3b-4904-b0ea-590f85949252"
  6897. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  6898. )
  6899. (path "/c472fc16-211d-4dc3-8e0c-1abdd6b46429"
  6900. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  6901. )
  6902. (path "/19718f2b-7324-4f6f-b87a-42b4887538aa"
  6903. (reference "#PWR0114") (unit 1) (value "+2V8") (footprint "")
  6904. )
  6905. (path "/556f9010-28aa-4580-ba99-ef3941c5933d"
  6906. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  6907. )
  6908. (path "/70a3b4a9-34a4-4812-875b-c79bc733552c"
  6909. (reference "#PWR0116") (unit 1) (value "+5F") (footprint "")
  6910. )
  6911. (path "/d59ac02e-1875-46b2-aa8d-e821b7d5d6b1"
  6912. (reference "#PWR0117") (unit 1) (value "+2V8") (footprint "")
  6913. )
  6914. (path "/983dbc47-4e11-47dc-8748-3fc9db245e95"
  6915. (reference "#PWR0118") (unit 1) (value "+5F") (footprint "")
  6916. )
  6917. (path "/17678da5-d093-4b8d-814f-456bc855a8de"
  6918. (reference "#PWR0119") (unit 1) (value "+2V8") (footprint "")
  6919. )
  6920. (path "/00000000-0000-0000-0000-0000620b413a"
  6921. (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  6922. )
  6923. (path "/00000000-0000-0000-0000-00006045a89e"
  6924. (reference "C3") (unit 1) (value "20uF") (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder")
  6925. )
  6926. (path "/00000000-0000-0000-0000-000060459e94"
  6927. (reference "C4") (unit 1) (value "20uF") (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder")
  6928. )
  6929. (path "/00000000-0000-0000-0000-0000620974b9"
  6930. (reference "C5") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  6931. )
  6932. (path "/00000000-0000-0000-0000-0000620e7a6a"
  6933. (reference "C6") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  6934. )
  6935. (path "/d5134e87-aa80-4414-a674-e59e54ad24ed"
  6936. (reference "C7") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6937. )
  6938. (path "/c4191605-68bf-48a0-9b68-c834c5af8008"
  6939. (reference "C8") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6940. )
  6941. (path "/87731753-e67d-4f55-8a27-44a3ad4fe1e9"
  6942. (reference "C9") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6943. )
  6944. (path "/c59cd08b-a1eb-41f1-9fb2-4ec532edfc41"
  6945. (reference "C10") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6946. )
  6947. (path "/d35a1688-c174-4ea8-a25d-8782d5f9a928"
  6948. (reference "C11") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6949. )
  6950. (path "/00000000-0000-0000-0000-000062115e22"
  6951. (reference "C12") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6952. )
  6953. (path "/acd9e539-01ce-4514-ab7d-bb6dddb62a5d"
  6954. (reference "C13") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6955. )
  6956. (path "/af20f6b5-3525-4421-9baf-551c51fc9eed"
  6957. (reference "C14") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6958. )
  6959. (path "/29562875-7091-49f3-ae5f-38d2449ff6ee"
  6960. (reference "C15") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder")
  6961. )
  6962. (path "/00000000-0000-0000-0000-0000620c30d1"
  6963. (reference "D1") (unit 1) (value "D") (footprint "Diode_SMD:D_SMA")
  6964. )
  6965. (path "/b4eb6c3f-3a64-456a-b15c-67feae99bf43"
  6966. (reference "D2") (unit 1) (value "D") (footprint "Diode_SMD:D_SMA")
  6967. )
  6968. (path "/f2bd2386-90ad-40ed-ac60-ba08818ae7f1"
  6969. (reference "D3") (unit 1) (value "D") (footprint "Diode_SMD:D_SMA")
  6970. )
  6971. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/9cfb703e-ccbb-4a40-be4f-dd7895fb1422"
  6972. (reference "D4") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder")
  6973. )
  6974. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/d00adb1c-a0e3-4b8a-8f7c-e1b1f3d1a010"
  6975. (reference "D5") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder")
  6976. )
  6977. (path "/b710020c-0f3a-4776-a938-eddc58b26b95"
  6978. (reference "F2") (unit 1) (value "Polyfuse") (footprint "Fuse:Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  6979. )
  6980. (path "/158e366d-4f48-4ba0-a1f9-c0f1ed045281"
  6981. (reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  6982. )
  6983. (path "/1312fbcf-80de-48eb-991c-a203983890d1"
  6984. (reference "H3") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  6985. )
  6986. (path "/a6d08546-d3df-466e-971b-1f257119ed34"
  6987. (reference "H4") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  6988. )
  6989. (path "/bbc443df-065d-468c-82e3-44848bb71a89"
  6990. (reference "H5") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
  6991. )
  6992. (path "/00000000-0000-0000-0000-00006225438d"
  6993. (reference "J1") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical")
  6994. )
  6995. (path "/f05f8e26-6ea8-46d5-89a2-2ea7e4119a94"
  6996. (reference "J2") (unit 1) (value "PB_SCSI_HD_Pins") (footprint "Library:PowerBook_SCSI_40Pin_UpsideDown")
  6997. )
  6998. (path "/7a317133-a9aa-4e92-bc61-5429ccd5ee34"
  6999. (reference "J4") (unit 1) (value "SW") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical")
  7000. )
  7001. (path "/47da6c1a-7392-462c-8943-21ca2644ac0d"
  7002. (reference "J6") (unit 1) (value "Conn_01x02_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical")
  7003. )
  7004. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/a4a17b51-6e17-4a02-9aea-8e9d13874e4a"
  7005. (reference "JP1") (unit 1) (value "Jumper_2_Open") (footprint "Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm")
  7006. )
  7007. (path "/d55cc04d-788a-42ba-a149-99196a85fed4"
  7008. (reference "R1") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7009. )
  7010. (path "/547f854c-809f-4d9a-bed1-99f94d9cfbe8"
  7011. (reference "R2") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7012. )
  7013. (path "/5480b7c9-e7b6-477f-88f2-37811efd3a65"
  7014. (reference "R3") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7015. )
  7016. (path "/6c179abf-6553-4c89-b67b-91134e77d610"
  7017. (reference "R4") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7018. )
  7019. (path "/69140b34-6405-4617-8e1d-b20cdbc477da"
  7020. (reference "R5") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7021. )
  7022. (path "/ac035f58-a21c-4346-b948-ebc616aaf95d"
  7023. (reference "R6") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7024. )
  7025. (path "/2c2472f8-2509-4a9f-be36-0a8d5fd45923"
  7026. (reference "R7") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7027. )
  7028. (path "/a0e275f3-c5e3-4558-9b83-f0d5f6dd03fb"
  7029. (reference "R8") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7030. )
  7031. (path "/f339d02f-3618-4b55-a8b7-d8e04e42ff42"
  7032. (reference "R9") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7033. )
  7034. (path "/2aacc089-5ad1-4daa-ad3c-c778a777df54"
  7035. (reference "R10") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7036. )
  7037. (path "/8f352475-5d9c-4281-873d-9d7d2a6dec5a"
  7038. (reference "R11") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7039. )
  7040. (path "/f106194f-fc99-48da-8a15-f309a62d019b"
  7041. (reference "R12") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7042. )
  7043. (path "/45612d4c-703d-4a83-97e9-e6f23982080a"
  7044. (reference "R13") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7045. )
  7046. (path "/253b0d6b-ffe7-4cbf-ac40-eeb40dc36d64"
  7047. (reference "R14") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7048. )
  7049. (path "/9e8ff847-a1a6-4ac0-bbc3-a4811f1f75a1"
  7050. (reference "R15") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7051. )
  7052. (path "/704df935-5853-4445-8385-36e1eb54bf1d"
  7053. (reference "R16") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7054. )
  7055. (path "/8c674a62-096c-453a-affe-28e1b791163a"
  7056. (reference "R17") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7057. )
  7058. (path "/773dba32-4bf0-46f0-8868-b7ac10ad8702"
  7059. (reference "R18") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7060. )
  7061. (path "/60ed3edb-5bb4-4c48-966e-50df259296e8"
  7062. (reference "R19") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7063. )
  7064. (path "/e0a8732e-1d87-42a5-8b7a-9d44ca6b005b"
  7065. (reference "R20") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7066. )
  7067. (path "/19143b55-66a8-4627-820e-890bcfa18dca"
  7068. (reference "R21") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7069. )
  7070. (path "/72d51e25-b8cb-4e11-a9be-3d47c85ae9f1"
  7071. (reference "R22") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7072. )
  7073. (path "/8d832796-c8da-4cdb-aa2b-5814686409fb"
  7074. (reference "R23") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7075. )
  7076. (path "/8eb58152-4298-46a8-be82-cb7a4c68472b"
  7077. (reference "R24") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7078. )
  7079. (path "/52a5054b-f9b4-46c9-8eca-152a8f1baa5a"
  7080. (reference "R25") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7081. )
  7082. (path "/652b1960-8dfd-48dc-befa-6a052fa5e7dd"
  7083. (reference "R26") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7084. )
  7085. (path "/e20bb894-0df4-42be-92e0-2e00d2b1ae74"
  7086. (reference "R27") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7087. )
  7088. (path "/a91925ab-fe56-445c-9bca-b898e4af9a64"
  7089. (reference "R28") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7090. )
  7091. (path "/2a7cf715-54e1-4a1f-ab87-6611957d8a99"
  7092. (reference "R29") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7093. )
  7094. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/adb874a3-18c5-4ab0-a3f0-9670f10f659a"
  7095. (reference "R30") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7096. )
  7097. (path "/a01891ac-7fd3-4375-881c-53b77ca46d87"
  7098. (reference "R31") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7099. )
  7100. (path "/1059c071-1344-4c06-bfeb-6bb258be5caf"
  7101. (reference "R32") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7102. )
  7103. (path "/b9eb0571-f2e8-4038-b2cc-6af37a8bae59"
  7104. (reference "R33") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7105. )
  7106. (path "/224b526f-d4bf-40ee-af49-967fa35e696e"
  7107. (reference "R34") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7108. )
  7109. (path "/e248ac27-5c84-4ccf-8acf-9333febfca16"
  7110. (reference "R35") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7111. )
  7112. (path "/87d95ea6-623e-46c6-aa7f-8e6aeac1e4c2"
  7113. (reference "R36") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7114. )
  7115. (path "/2f4df532-4212-49ea-815b-f21ebb8e35ee"
  7116. (reference "R37") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7117. )
  7118. (path "/d06a9a79-7d53-413c-9256-1f2b0418c15b"
  7119. (reference "R38") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7120. )
  7121. (path "/19f1c57a-acc4-41a5-9982-d86f42346fa7"
  7122. (reference "R39") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7123. )
  7124. (path "/63acbd49-4c30-4f9f-a12b-866bae4c802e"
  7125. (reference "R40") (unit 1) (value "R") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7126. )
  7127. (path "/035dc70d-e8aa-4b6b-b88c-1e59c5c6f6cb"
  7128. (reference "R41") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7129. )
  7130. (path "/482779d0-bc8d-4d3f-b57e-dc5f602f2746"
  7131. (reference "R42") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7132. )
  7133. (path "/9de37903-d35d-4e90-bae1-50a4024aefeb"
  7134. (reference "R43") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7135. )
  7136. (path "/3e79ae51-6fff-425a-8563-bcde1b95ae5c"
  7137. (reference "R44") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7138. )
  7139. (path "/d1220611-313c-4632-a992-795036749ed9"
  7140. (reference "R45") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7141. )
  7142. (path "/de89df10-e597-421d-ae3d-a5cc07a76da8"
  7143. (reference "R46") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7144. )
  7145. (path "/1dda851c-2a65-4298-b294-a9961073aaa9"
  7146. (reference "R47") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7147. )
  7148. (path "/01517c18-9701-48be-800b-d7035922ca55"
  7149. (reference "R48") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7150. )
  7151. (path "/e56f05de-9f17-481c-9024-0e3090a26572"
  7152. (reference "R49") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7153. )
  7154. (path "/5ad6a62b-3735-4bd2-b03c-8d3cc33f3dad"
  7155. (reference "R50") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7156. )
  7157. (path "/708635f1-b827-4e01-8f03-671a256bb282"
  7158. (reference "R51") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7159. )
  7160. (path "/224684c6-3a2a-4db8-9637-7240fcf2a5b0"
  7161. (reference "R52") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7162. )
  7163. (path "/8d0ca099-2d49-4b7e-b6d5-400f7b40bc35"
  7164. (reference "R53") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7165. )
  7166. (path "/c8a92bd7-4067-4791-b799-90c90ad33c92"
  7167. (reference "R54") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7168. )
  7169. (path "/cc7587b2-2135-4ab8-8587-8b5a9b248b30"
  7170. (reference "R55") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7171. )
  7172. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/6da048c9-f0c8-4f1b-8efc-3f455f48f5a5"
  7173. (reference "R56") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
  7174. )
  7175. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/76792fd2-eb96-4ff1-8b87-dc7f3fb3877b"
  7176. (reference "R57") (unit 1) (value "470") (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder")
  7177. )
  7178. (path "/00000000-0000-0000-0000-000060ad3c40"
  7179. (reference "RP1") (unit 1) (value "Pico_Footprint") (footprint "CustomFootprints:BluePillModule")
  7180. )
  7181. (path "/98449520-73f3-4826-8a06-0144e573c75f"
  7182. (reference "SD2") (unit 1) (value "MicroSD-TF-06") (footprint "Library:TF-06_MicroSD")
  7183. )
  7184. (path "/a98f7f2f-d3b8-48bf-b0d4-56422eeea66b"
  7185. (reference "SW1") (unit 1) (value "SW_MEC_5E") (footprint "Library:TS-1187A-B-A-B")
  7186. )
  7187. (path "/30ab7a9e-6453-4f73-8467-e65a1142499e"
  7188. (reference "U1") (unit 1) (value "SN74CBTD3384") (footprint "Package_SO:TSSOP-24_4.4x7.8mm_P0.65mm")
  7189. )
  7190. (path "/8786032c-35f4-4851-a7c1-b933c66f2579"
  7191. (reference "U2") (unit 1) (value "SN74CBTD3384") (footprint "Package_SO:TSSOP-24_4.4x7.8mm_P0.65mm")
  7192. )
  7193. (path "/00000000-0000-0000-0000-0000604489c4"
  7194. (reference "U3") (unit 1) (value "AMS1117-2.85") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  7195. )
  7196. (path "/f24e6ed5-549c-4de4-b3b1-561de9e64e4a"
  7197. (reference "U4") (unit 1) (value "LVT245") (footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm")
  7198. )
  7199. (path "/b278ef84-b28f-424d-bcab-60b9aa5859b8"
  7200. (reference "U5") (unit 1) (value "LVT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  7201. )
  7202. (path "/7ef4bec5-9c91-43ab-9d2a-0b90842aaec1"
  7203. (reference "U6") (unit 1) (value "LVT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  7204. )
  7205. (path "/cebb5c1e-f296-4040-b1f6-63c5ffc061bf"
  7206. (reference "U7") (unit 1) (value "LVT125") (footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm")
  7207. )
  7208. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/92fbae86-3a73-41d1-bf13-9e9d80c8f2c9"
  7209. (reference "U8") (unit 1) (value "74HC14") (footprint "")
  7210. )
  7211. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/5c44acf0-977e-4b1b-aa69-a1628101d8b3"
  7212. (reference "U8") (unit 2) (value "74HC14") (footprint "")
  7213. )
  7214. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/0d67463b-3f4e-4e64-85a8-97bd31503254"
  7215. (reference "U8") (unit 3) (value "74HC14") (footprint "")
  7216. )
  7217. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/030414a6-84f7-4cef-8037-6bb3cad53a9c"
  7218. (reference "U8") (unit 4) (value "74HC14") (footprint "")
  7219. )
  7220. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/da1bd2ba-22d3-4cbd-a2b3-306d8f14919c"
  7221. (reference "U8") (unit 5) (value "74HC14") (footprint "")
  7222. )
  7223. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/8d0fec02-db29-44a3-8d38-c6b7074e1b00"
  7224. (reference "U8") (unit 6) (value "74HC14") (footprint "")
  7225. )
  7226. (path "/fdcde0ff-5e8f-44b0-a02c-21e908a3ec10/e39d8de4-556b-4dd7-946c-2ae5a7f37215"
  7227. (reference "U8") (unit 7) (value "74HC14") (footprint "Package_SO:SO-14_3.9x8.65mm_P1.27mm")
  7228. )
  7229. (path "/02a5e4cf-cf8f-424d-98d2-b0a0b1565138"
  7230. (reference "U9") (unit 1) (value "LVT245") (footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm")
  7231. )
  7232. )
  7233. )