PowerBook.kicad_sch 273 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid e40e8cef-4fb0-4fc3-be09-3875b2cc8469)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  6. (property "Reference" "J" (at 0 5.08 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "Conn_01x03_Male" (at 0 -5.08 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "~" (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_keywords" "connector" (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (symbol "Conn_01x03_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))
  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))
  42. (fill (type none))
  43. )
  44. (polyline
  45. (pts
  46. (xy 1.27 2.54)
  47. (xy 0.8636 2.54)
  48. )
  49. (stroke (width 0.1524) (type default))
  50. (fill (type none))
  51. )
  52. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  53. (stroke (width 0.1524) (type default))
  54. (fill (type outline))
  55. )
  56. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  57. (stroke (width 0.1524) (type default))
  58. (fill (type outline))
  59. )
  60. (rectangle (start 0.8636 2.667) (end 0 2.413)
  61. (stroke (width 0.1524) (type default))
  62. (fill (type outline))
  63. )
  64. (pin passive line (at 5.08 2.54 180) (length 3.81)
  65. (name "Pin_1" (effects (font (size 1.27 1.27))))
  66. (number "1" (effects (font (size 1.27 1.27))))
  67. )
  68. (pin passive line (at 5.08 0 180) (length 3.81)
  69. (name "Pin_2" (effects (font (size 1.27 1.27))))
  70. (number "2" (effects (font (size 1.27 1.27))))
  71. )
  72. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  73. (name "Pin_3" (effects (font (size 1.27 1.27))))
  74. (number "3" (effects (font (size 1.27 1.27))))
  75. )
  76. )
  77. )
  78. (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  79. (property "Reference" "C" (at 0.635 2.54 0)
  80. (effects (font (size 1.27 1.27)) (justify left))
  81. )
  82. (property "Value" "C" (at 0.635 -2.54 0)
  83. (effects (font (size 1.27 1.27)) (justify left))
  84. )
  85. (property "Footprint" "" (at 0.9652 -3.81 0)
  86. (effects (font (size 1.27 1.27)) hide)
  87. )
  88. (property "Datasheet" "~" (at 0 0 0)
  89. (effects (font (size 1.27 1.27)) hide)
  90. )
  91. (property "ki_keywords" "cap capacitor" (at 0 0 0)
  92. (effects (font (size 1.27 1.27)) hide)
  93. )
  94. (property "ki_description" "Unpolarized capacitor" (at 0 0 0)
  95. (effects (font (size 1.27 1.27)) hide)
  96. )
  97. (property "ki_fp_filters" "C_*" (at 0 0 0)
  98. (effects (font (size 1.27 1.27)) hide)
  99. )
  100. (symbol "C_0_1"
  101. (polyline
  102. (pts
  103. (xy -2.032 -0.762)
  104. (xy 2.032 -0.762)
  105. )
  106. (stroke (width 0.508) (type default))
  107. (fill (type none))
  108. )
  109. (polyline
  110. (pts
  111. (xy -2.032 0.762)
  112. (xy 2.032 0.762)
  113. )
  114. (stroke (width 0.508) (type default))
  115. (fill (type none))
  116. )
  117. )
  118. (symbol "C_1_1"
  119. (pin passive line (at 0 3.81 270) (length 2.794)
  120. (name "~" (effects (font (size 1.27 1.27))))
  121. (number "1" (effects (font (size 1.27 1.27))))
  122. )
  123. (pin passive line (at 0 -3.81 90) (length 2.794)
  124. (name "~" (effects (font (size 1.27 1.27))))
  125. (number "2" (effects (font (size 1.27 1.27))))
  126. )
  127. )
  128. )
  129. (symbol "Device:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  130. (property "Reference" "C" (at 0.635 2.54 0)
  131. (effects (font (size 1.27 1.27)) (justify left))
  132. )
  133. (property "Value" "Device_CP" (at 0.635 -2.54 0)
  134. (effects (font (size 1.27 1.27)) (justify left))
  135. )
  136. (property "Footprint" "" (at 0.9652 -3.81 0)
  137. (effects (font (size 1.27 1.27)) hide)
  138. )
  139. (property "Datasheet" "" (at 0 0 0)
  140. (effects (font (size 1.27 1.27)) hide)
  141. )
  142. (property "ki_fp_filters" "CP_*" (at 0 0 0)
  143. (effects (font (size 1.27 1.27)) hide)
  144. )
  145. (symbol "CP_0_1"
  146. (rectangle (start -2.286 0.508) (end 2.286 1.016)
  147. (stroke (width 0) (type default))
  148. (fill (type none))
  149. )
  150. (polyline
  151. (pts
  152. (xy -1.778 2.286)
  153. (xy -0.762 2.286)
  154. )
  155. (stroke (width 0) (type default))
  156. (fill (type none))
  157. )
  158. (polyline
  159. (pts
  160. (xy -1.27 2.794)
  161. (xy -1.27 1.778)
  162. )
  163. (stroke (width 0) (type default))
  164. (fill (type none))
  165. )
  166. (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
  167. (stroke (width 0) (type default))
  168. (fill (type outline))
  169. )
  170. )
  171. (symbol "CP_1_1"
  172. (pin passive line (at 0 3.81 270) (length 2.794)
  173. (name "~" (effects (font (size 1.27 1.27))))
  174. (number "1" (effects (font (size 1.27 1.27))))
  175. )
  176. (pin passive line (at 0 -3.81 90) (length 2.794)
  177. (name "~" (effects (font (size 1.27 1.27))))
  178. (number "2" (effects (font (size 1.27 1.27))))
  179. )
  180. )
  181. )
  182. (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  183. (property "Reference" "D" (at 0 2.54 0)
  184. (effects (font (size 1.27 1.27)))
  185. )
  186. (property "Value" "D" (at 0 -2.54 0)
  187. (effects (font (size 1.27 1.27)))
  188. )
  189. (property "Footprint" "" (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "Datasheet" "~" (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (property "ki_keywords" "diode" (at 0 0 0)
  196. (effects (font (size 1.27 1.27)) hide)
  197. )
  198. (property "ki_description" "Diode" (at 0 0 0)
  199. (effects (font (size 1.27 1.27)) hide)
  200. )
  201. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
  202. (effects (font (size 1.27 1.27)) hide)
  203. )
  204. (symbol "D_0_1"
  205. (polyline
  206. (pts
  207. (xy -1.27 1.27)
  208. (xy -1.27 -1.27)
  209. )
  210. (stroke (width 0.254) (type default))
  211. (fill (type none))
  212. )
  213. (polyline
  214. (pts
  215. (xy 1.27 0)
  216. (xy -1.27 0)
  217. )
  218. (stroke (width 0) (type default))
  219. (fill (type none))
  220. )
  221. (polyline
  222. (pts
  223. (xy 1.27 1.27)
  224. (xy 1.27 -1.27)
  225. (xy -1.27 0)
  226. (xy 1.27 1.27)
  227. )
  228. (stroke (width 0.254) (type default))
  229. (fill (type none))
  230. )
  231. )
  232. (symbol "D_1_1"
  233. (pin passive line (at -3.81 0 0) (length 2.54)
  234. (name "K" (effects (font (size 1.27 1.27))))
  235. (number "1" (effects (font (size 1.27 1.27))))
  236. )
  237. (pin passive line (at 3.81 0 180) (length 2.54)
  238. (name "A" (effects (font (size 1.27 1.27))))
  239. (number "2" (effects (font (size 1.27 1.27))))
  240. )
  241. )
  242. )
  243. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  244. (property "Reference" "F" (at -2.54 0 90)
  245. (effects (font (size 1.27 1.27)))
  246. )
  247. (property "Value" "Polyfuse" (at 2.54 0 90)
  248. (effects (font (size 1.27 1.27)))
  249. )
  250. (property "Footprint" "" (at 1.27 -5.08 0)
  251. (effects (font (size 1.27 1.27)) (justify left) hide)
  252. )
  253. (property "Datasheet" "~" (at 0 0 0)
  254. (effects (font (size 1.27 1.27)) hide)
  255. )
  256. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0)
  257. (effects (font (size 1.27 1.27)) hide)
  258. )
  259. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0)
  260. (effects (font (size 1.27 1.27)) hide)
  261. )
  262. (property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0)
  263. (effects (font (size 1.27 1.27)) hide)
  264. )
  265. (symbol "Polyfuse_0_1"
  266. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  267. (stroke (width 0.254) (type default))
  268. (fill (type none))
  269. )
  270. (polyline
  271. (pts
  272. (xy 0 2.54)
  273. (xy 0 -2.54)
  274. )
  275. (stroke (width 0) (type default))
  276. (fill (type none))
  277. )
  278. (polyline
  279. (pts
  280. (xy -1.524 2.54)
  281. (xy -1.524 1.524)
  282. (xy 1.524 -1.524)
  283. (xy 1.524 -2.54)
  284. )
  285. (stroke (width 0) (type default))
  286. (fill (type none))
  287. )
  288. )
  289. (symbol "Polyfuse_1_1"
  290. (pin passive line (at 0 3.81 270) (length 1.27)
  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 1.27)
  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:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  301. (property "Reference" "R" (at 2.032 0 90)
  302. (effects (font (size 1.27 1.27)))
  303. )
  304. (property "Value" "R" (at 0 0 90)
  305. (effects (font (size 1.27 1.27)))
  306. )
  307. (property "Footprint" "" (at -1.778 0 90)
  308. (effects (font (size 1.27 1.27)) hide)
  309. )
  310. (property "Datasheet" "~" (at 0 0 0)
  311. (effects (font (size 1.27 1.27)) hide)
  312. )
  313. (property "ki_keywords" "R res resistor" (at 0 0 0)
  314. (effects (font (size 1.27 1.27)) hide)
  315. )
  316. (property "ki_description" "Resistor" (at 0 0 0)
  317. (effects (font (size 1.27 1.27)) hide)
  318. )
  319. (property "ki_fp_filters" "R_*" (at 0 0 0)
  320. (effects (font (size 1.27 1.27)) hide)
  321. )
  322. (symbol "R_0_1"
  323. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  324. (stroke (width 0.254) (type default))
  325. (fill (type none))
  326. )
  327. )
  328. (symbol "R_1_1"
  329. (pin passive line (at 0 3.81 270) (length 1.27)
  330. (name "~" (effects (font (size 1.27 1.27))))
  331. (number "1" (effects (font (size 1.27 1.27))))
  332. )
  333. (pin passive line (at 0 -3.81 90) (length 1.27)
  334. (name "~" (effects (font (size 1.27 1.27))))
  335. (number "2" (effects (font (size 1.27 1.27))))
  336. )
  337. )
  338. )
  339. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  340. (property "Reference" "H" (at 0 5.08 0)
  341. (effects (font (size 1.27 1.27)))
  342. )
  343. (property "Value" "MountingHole" (at 0 3.175 0)
  344. (effects (font (size 1.27 1.27)))
  345. )
  346. (property "Footprint" "" (at 0 0 0)
  347. (effects (font (size 1.27 1.27)) hide)
  348. )
  349. (property "Datasheet" "~" (at 0 0 0)
  350. (effects (font (size 1.27 1.27)) hide)
  351. )
  352. (property "ki_keywords" "mounting hole" (at 0 0 0)
  353. (effects (font (size 1.27 1.27)) hide)
  354. )
  355. (property "ki_description" "Mounting Hole without connection" (at 0 0 0)
  356. (effects (font (size 1.27 1.27)) hide)
  357. )
  358. (property "ki_fp_filters" "MountingHole*" (at 0 0 0)
  359. (effects (font (size 1.27 1.27)) hide)
  360. )
  361. (symbol "MountingHole_0_1"
  362. (circle (center 0 0) (radius 1.27)
  363. (stroke (width 1.27) (type default))
  364. (fill (type none))
  365. )
  366. )
  367. )
  368. (symbol "New_Library:LVT125" (in_bom yes) (on_board yes)
  369. (property "Reference" "U" (at 0 0 0)
  370. (effects (font (size 1.27 1.27)))
  371. )
  372. (property "Value" "LVT125" (at 0 2.54 0)
  373. (effects (font (size 1.27 1.27)))
  374. )
  375. (property "Footprint" "" (at 0 0 0)
  376. (effects (font (size 1.27 1.27)) hide)
  377. )
  378. (property "Datasheet" "" (at 0 0 0)
  379. (effects (font (size 1.27 1.27)) hide)
  380. )
  381. (symbol "LVT125_0_1"
  382. (rectangle (start -7.62 -1.27) (end 6.35 -19.05)
  383. (stroke (width 0) (type default))
  384. (fill (type background))
  385. )
  386. (rectangle (start 7.62 -12.7) (end 7.62 -12.7)
  387. (stroke (width 0) (type default))
  388. (fill (type none))
  389. )
  390. )
  391. (symbol "LVT125_1_1"
  392. (pin input line (at -10.16 -2.54 0) (length 2.54)
  393. (name "1/OE" (effects (font (size 1.27 1.27))))
  394. (number "1" (effects (font (size 1.27 1.27))))
  395. )
  396. (pin bidirectional line (at 8.89 -12.7 180) (length 2.54)
  397. (name "3/OE" (effects (font (size 1.27 1.27))))
  398. (number "10" (effects (font (size 1.27 1.27))))
  399. )
  400. (pin bidirectional line (at 8.89 -10.16 180) (length 2.54)
  401. (name "4Y" (effects (font (size 1.27 1.27))))
  402. (number "11" (effects (font (size 1.27 1.27))))
  403. )
  404. (pin bidirectional line (at 8.89 -7.62 180) (length 2.54)
  405. (name "4A" (effects (font (size 1.27 1.27))))
  406. (number "12" (effects (font (size 1.27 1.27))))
  407. )
  408. (pin bidirectional line (at 8.89 -5.08 180) (length 2.54)
  409. (name "4/OE" (effects (font (size 1.27 1.27))))
  410. (number "13" (effects (font (size 1.27 1.27))))
  411. )
  412. (pin bidirectional line (at 8.89 -2.54 180) (length 2.54)
  413. (name "Vcc" (effects (font (size 1.27 1.27))))
  414. (number "14" (effects (font (size 1.27 1.27))))
  415. )
  416. (pin bidirectional line (at -10.16 -5.08 0) (length 2.54)
  417. (name "1A" (effects (font (size 1.27 1.27))))
  418. (number "2" (effects (font (size 1.27 1.27))))
  419. )
  420. (pin bidirectional line (at -10.16 -7.62 0) (length 2.54)
  421. (name "1Y" (effects (font (size 1.27 1.27))))
  422. (number "3" (effects (font (size 1.27 1.27))))
  423. )
  424. (pin bidirectional line (at -10.16 -10.16 0) (length 2.54)
  425. (name "2/OE" (effects (font (size 1.27 1.27))))
  426. (number "4" (effects (font (size 1.27 1.27))))
  427. )
  428. (pin bidirectional line (at -10.16 -12.7 0) (length 2.54)
  429. (name "2A" (effects (font (size 1.27 1.27))))
  430. (number "5" (effects (font (size 1.27 1.27))))
  431. )
  432. (pin bidirectional line (at -10.16 -15.24 0) (length 2.54)
  433. (name "2Y" (effects (font (size 1.27 1.27))))
  434. (number "6" (effects (font (size 1.27 1.27))))
  435. )
  436. (pin bidirectional line (at -10.16 -17.78 0) (length 2.54)
  437. (name "GND" (effects (font (size 1.27 1.27))))
  438. (number "7" (effects (font (size 1.27 1.27))))
  439. )
  440. (pin bidirectional line (at 8.89 -17.78 180) (length 2.54)
  441. (name "3Y" (effects (font (size 1.27 1.27))))
  442. (number "8" (effects (font (size 1.27 1.27))))
  443. )
  444. (pin bidirectional line (at 8.89 -15.24 180) (length 2.54)
  445. (name "3A" (effects (font (size 1.27 1.27))))
  446. (number "9" (effects (font (size 1.27 1.27))))
  447. )
  448. )
  449. )
  450. (symbol "New_Library:LVT245" (in_bom yes) (on_board yes)
  451. (property "Reference" "U" (at 0 0 0)
  452. (effects (font (size 1.27 1.27)))
  453. )
  454. (property "Value" "LVT245" (at 0 2.54 0)
  455. (effects (font (size 1.27 1.27)))
  456. )
  457. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (at 0 5.08 0)
  458. (effects (font (size 1.27 1.27)) hide)
  459. )
  460. (property "Datasheet" "" (at 0 0 0)
  461. (effects (font (size 1.27 1.27)) hide)
  462. )
  463. (symbol "LVT245_0_1"
  464. (rectangle (start 5.08 -2.54) (end -5.08 -27.94)
  465. (stroke (width 0) (type default))
  466. (fill (type background))
  467. )
  468. )
  469. (symbol "LVT245_1_1"
  470. (pin input line (at -7.62 -3.81 0) (length 2.54)
  471. (name "DIR" (effects (font (size 1.27 1.27))))
  472. (number "1" (effects (font (size 1.27 1.27))))
  473. )
  474. (pin input line (at -7.62 -26.67 0) (length 2.54)
  475. (name "GND" (effects (font (size 1.27 1.27))))
  476. (number "10" (effects (font (size 1.27 1.27))))
  477. )
  478. (pin input line (at 7.62 -26.67 180) (length 2.54)
  479. (name "B8" (effects (font (size 1.27 1.27))))
  480. (number "11" (effects (font (size 1.27 1.27))))
  481. )
  482. (pin input line (at 7.62 -24.13 180) (length 2.54)
  483. (name "B7" (effects (font (size 1.27 1.27))))
  484. (number "12" (effects (font (size 1.27 1.27))))
  485. )
  486. (pin input line (at 7.62 -21.59 180) (length 2.54)
  487. (name "B6" (effects (font (size 1.27 1.27))))
  488. (number "13" (effects (font (size 1.27 1.27))))
  489. )
  490. (pin input line (at 7.62 -19.05 180) (length 2.54)
  491. (name "B5" (effects (font (size 1.27 1.27))))
  492. (number "14" (effects (font (size 1.27 1.27))))
  493. )
  494. (pin input line (at 7.62 -16.51 180) (length 2.54)
  495. (name "B4" (effects (font (size 1.27 1.27))))
  496. (number "15" (effects (font (size 1.27 1.27))))
  497. )
  498. (pin input line (at 7.62 -13.97 180) (length 2.54)
  499. (name "B3" (effects (font (size 1.27 1.27))))
  500. (number "16" (effects (font (size 1.27 1.27))))
  501. )
  502. (pin input line (at 7.62 -11.43 180) (length 2.54)
  503. (name "B2" (effects (font (size 1.27 1.27))))
  504. (number "17" (effects (font (size 1.27 1.27))))
  505. )
  506. (pin input line (at 7.62 -8.89 180) (length 2.54)
  507. (name "B1" (effects (font (size 1.27 1.27))))
  508. (number "18" (effects (font (size 1.27 1.27))))
  509. )
  510. (pin input line (at 7.62 -6.35 180) (length 2.54)
  511. (name "/OE" (effects (font (size 1.27 1.27))))
  512. (number "19" (effects (font (size 1.27 1.27))))
  513. )
  514. (pin input line (at -7.62 -6.35 0) (length 2.54)
  515. (name "A1" (effects (font (size 1.27 1.27))))
  516. (number "2" (effects (font (size 1.27 1.27))))
  517. )
  518. (pin input line (at 7.62 -3.81 180) (length 2.54)
  519. (name "Vcc" (effects (font (size 1.27 1.27))))
  520. (number "20" (effects (font (size 1.27 1.27))))
  521. )
  522. (pin input line (at -7.62 -8.89 0) (length 2.54)
  523. (name "A2" (effects (font (size 1.27 1.27))))
  524. (number "3" (effects (font (size 1.27 1.27))))
  525. )
  526. (pin input line (at -7.62 -11.43 0) (length 2.54)
  527. (name "A3" (effects (font (size 1.27 1.27))))
  528. (number "4" (effects (font (size 1.27 1.27))))
  529. )
  530. (pin input line (at -7.62 -13.97 0) (length 2.54)
  531. (name "A4" (effects (font (size 1.27 1.27))))
  532. (number "5" (effects (font (size 1.27 1.27))))
  533. )
  534. (pin input line (at -7.62 -16.51 0) (length 2.54)
  535. (name "A5" (effects (font (size 1.27 1.27))))
  536. (number "6" (effects (font (size 1.27 1.27))))
  537. )
  538. (pin input line (at -7.62 -19.05 0) (length 2.54)
  539. (name "A6" (effects (font (size 1.27 1.27))))
  540. (number "7" (effects (font (size 1.27 1.27))))
  541. )
  542. (pin input line (at -7.62 -21.59 0) (length 2.54)
  543. (name "A7" (effects (font (size 1.27 1.27))))
  544. (number "8" (effects (font (size 1.27 1.27))))
  545. )
  546. (pin input line (at -7.62 -24.13 0) (length 2.54)
  547. (name "A8" (effects (font (size 1.27 1.27))))
  548. (number "9" (effects (font (size 1.27 1.27))))
  549. )
  550. )
  551. )
  552. (symbol "New_Library:MicroSD-TF-06" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  553. (property "Reference" "SD1" (at 8.89 8.89 0)
  554. (effects (font (size 1.27 1.27)) (justify left))
  555. )
  556. (property "Value" "MicroSD-TF-06" (at 3.81 5.08 0)
  557. (effects (font (size 1.27 1.27)) (justify left))
  558. )
  559. (property "Footprint" "Library:TF-06_MicroSD" (at -1.27 6.35 0)
  560. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  561. )
  562. (property "Datasheet" "" (at 12.446 1.651 0)
  563. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  564. )
  565. (property "MANUFACTURER_PART_NUMBER" "" (at 17.78 5.08 0)
  566. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  567. )
  568. (property "HEIGHT" "" (at 7.112 -17.78 0)
  569. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  570. )
  571. (property "MOUSER_PART_NUMBER" "" (at 7.62 6.35 0)
  572. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  573. )
  574. (property "DESCRIPTION" "" (at 17.272 20.828 0)
  575. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  576. )
  577. (property "MANUFACTURER_NAME" "" (at 13.97 6.35 0)
  578. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  579. )
  580. (property "MOUSER_PRICE-STOCK" "" (at 20.32 20.955 0)
  581. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  582. )
  583. (symbol "MicroSD-TF-06_0_0"
  584. (polyline
  585. (pts
  586. (xy 5.08 2.54)
  587. (xy 5.08 -25.4)
  588. )
  589. (stroke (width 0.254) (type default))
  590. (fill (type none))
  591. )
  592. (polyline
  593. (pts
  594. (xy 5.08 2.54)
  595. (xy 17.78 2.54)
  596. )
  597. (stroke (width 0.254) (type default))
  598. (fill (type none))
  599. )
  600. (polyline
  601. (pts
  602. (xy 17.78 -25.4)
  603. (xy 5.08 -25.4)
  604. )
  605. (stroke (width 0.254) (type default))
  606. (fill (type none))
  607. )
  608. (polyline
  609. (pts
  610. (xy 17.78 -25.4)
  611. (xy 17.78 2.54)
  612. )
  613. (stroke (width 0.254) (type default))
  614. (fill (type none))
  615. )
  616. (pin bidirectional line (at 0 0 0) (length 5.08)
  617. (name "DAT2" (effects (font (size 1.016 1.016))))
  618. (number "1" (effects (font (size 1.016 1.016))))
  619. )
  620. (pin bidirectional line (at 0 -22.86 0) (length 5.08)
  621. (name "CASE_GND" (effects (font (size 1.016 1.016))))
  622. (number "10" (effects (font (size 1.016 1.016))))
  623. )
  624. (pin bidirectional line (at 0 -2.54 0) (length 5.08)
  625. (name "CD/CS/DAT3" (effects (font (size 1.016 1.016))))
  626. (number "2" (effects (font (size 1.016 1.016))))
  627. )
  628. (pin bidirectional line (at 0 -5.08 0) (length 5.08)
  629. (name "CMD/MOSI" (effects (font (size 1.016 1.016))))
  630. (number "3" (effects (font (size 1.016 1.016))))
  631. )
  632. (pin bidirectional line (at 0 -7.62 0) (length 5.08)
  633. (name "VDD" (effects (font (size 1.016 1.016))))
  634. (number "4" (effects (font (size 1.016 1.016))))
  635. )
  636. (pin bidirectional line (at 0 -10.16 0) (length 5.08)
  637. (name "SD_DET" (effects (font (size 1.016 1.016))))
  638. (number "5" (effects (font (size 1.016 1.016))))
  639. )
  640. (pin bidirectional line (at 0 -12.7 0) (length 5.08)
  641. (name "CLK" (effects (font (size 1.016 1.016))))
  642. (number "6" (effects (font (size 1.016 1.016))))
  643. )
  644. (pin bidirectional line (at 0 -15.24 0) (length 5.08)
  645. (name "VSS" (effects (font (size 1.016 1.016))))
  646. (number "7" (effects (font (size 1.016 1.016))))
  647. )
  648. (pin bidirectional line (at 0 -17.78 0) (length 5.08)
  649. (name "DAT0/MISO" (effects (font (size 1.016 1.016))))
  650. (number "8" (effects (font (size 1.016 1.016))))
  651. )
  652. (pin bidirectional line (at 0 -20.32 0) (length 5.08)
  653. (name "DAT1" (effects (font (size 1.016 1.016))))
  654. (number "9" (effects (font (size 1.016 1.016))))
  655. )
  656. )
  657. )
  658. (symbol "New_Library:SM04B-SRSS-TB(LF)(SN)" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  659. (property "Reference" "J" (at -5.0831 8.1433 0)
  660. (effects (font (size 1.27 1.27)) (justify left bottom))
  661. )
  662. (property "Value" "SM04B-SRSS-TB(LF)(SN)" (at 7.62 -15.24 90)
  663. (effects (font (size 1.27 1.27)) (justify left bottom))
  664. )
  665. (property "Footprint" "SM04B-SRSS-TB(LF)(SN):JST_SM04B-SRSS-TB(LF)(SN)" (at 0 15.24 0)
  666. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  667. )
  668. (property "Datasheet" "" (at 0 0 0)
  669. (effects (font (size 1.27 1.27)) hide)
  670. )
  671. (property "MF" "" (at 0 17.78 0)
  672. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  673. )
  674. (property "Description" "" (at 0 0 0)
  675. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  676. )
  677. (property "Package" "" (at 0 5.08 0)
  678. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  679. )
  680. (property "Price" "" (at 0 0 0)
  681. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  682. )
  683. (property "Check_prices" "" (at 0 12.7 0)
  684. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  685. )
  686. (property "STANDARD" "Manufacturer recommendations" (at 0 10.16 0)
  687. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  688. )
  689. (property "SnapEDA_Link" "" (at -1.27 12.7 0)
  690. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  691. )
  692. (property "MP" "SM04B-SRSS-TB(LF)(SN)" (at -1.27 12.7 0)
  693. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  694. )
  695. (property "Availability" "" (at 0 20.32 0)
  696. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  697. )
  698. (property "MANUFACTURER" "" (at 0 3.81 0)
  699. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  700. )
  701. (symbol "SM04B-SRSS-TB(LF)(SN)_0_0"
  702. (rectangle (start -5.08 -10.16) (end 5.08 7.62)
  703. (stroke (width 0.254) (type default))
  704. (fill (type background))
  705. )
  706. (pin passive line (at -7.62 5.08 0) (length 2.54)
  707. (name "1" (effects (font (size 1.016 1.016))))
  708. (number "1" (effects (font (size 1.016 1.016))))
  709. )
  710. (pin passive line (at -7.62 2.54 0) (length 2.54)
  711. (name "2" (effects (font (size 1.016 1.016))))
  712. (number "2" (effects (font (size 1.016 1.016))))
  713. )
  714. (pin passive line (at -7.62 0 0) (length 2.54)
  715. (name "3" (effects (font (size 1.016 1.016))))
  716. (number "3" (effects (font (size 1.016 1.016))))
  717. )
  718. (pin passive line (at -7.62 -2.54 0) (length 2.54)
  719. (name "4" (effects (font (size 1.016 1.016))))
  720. (number "4" (effects (font (size 1.016 1.016))))
  721. )
  722. (pin passive line (at -7.62 -7.62 0) (length 2.54)
  723. (name "SHIELD" (effects (font (size 1.016 1.016))))
  724. (number "S1" (effects (font (size 1.016 1.016))))
  725. )
  726. (pin passive line (at -7.62 -7.62 0) (length 2.54)
  727. (name "SHIELD" (effects (font (size 1.016 1.016))))
  728. (number "S2" (effects (font (size 1.016 1.016))))
  729. )
  730. )
  731. )
  732. (symbol "Regulator_Linear:AMS1117CD-2.85" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  733. (property "Reference" "U" (at -3.81 3.175 0)
  734. (effects (font (size 1.27 1.27)))
  735. )
  736. (property "Value" "AMS1117CD-2.85" (at 0 3.175 0)
  737. (effects (font (size 1.27 1.27)) (justify left))
  738. )
  739. (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2" (at 0 5.08 0)
  740. (effects (font (size 1.27 1.27)) hide)
  741. )
  742. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (at 2.54 -6.35 0)
  743. (effects (font (size 1.27 1.27)) hide)
  744. )
  745. (property "ki_keywords" "linear regulator ldo fixed positive" (at 0 0 0)
  746. (effects (font (size 1.27 1.27)) hide)
  747. )
  748. (property "ki_description" "1A Low Dropout regulator, positive, 2.85V fixed output, TO-252" (at 0 0 0)
  749. (effects (font (size 1.27 1.27)) hide)
  750. )
  751. (property "ki_fp_filters" "TO?252*TabPin2*" (at 0 0 0)
  752. (effects (font (size 1.27 1.27)) hide)
  753. )
  754. (symbol "AMS1117CD-2.85_0_1"
  755. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  756. (stroke (width 0.254) (type default))
  757. (fill (type background))
  758. )
  759. )
  760. (symbol "AMS1117CD-2.85_1_1"
  761. (pin power_in line (at 0 -7.62 90) (length 2.54)
  762. (name "GND" (effects (font (size 1.27 1.27))))
  763. (number "1" (effects (font (size 1.27 1.27))))
  764. )
  765. (pin power_out line (at 7.62 0 180) (length 2.54)
  766. (name "VO" (effects (font (size 1.27 1.27))))
  767. (number "2" (effects (font (size 1.27 1.27))))
  768. )
  769. (pin power_in line (at -7.62 0 0) (length 2.54)
  770. (name "VI" (effects (font (size 1.27 1.27))))
  771. (number "3" (effects (font (size 1.27 1.27))))
  772. )
  773. )
  774. )
  775. (symbol "Transistor_FET:AO3401A" (pin_names hide) (in_bom yes) (on_board yes)
  776. (property "Reference" "Q" (at 5.08 1.905 0)
  777. (effects (font (size 1.27 1.27)) (justify left))
  778. )
  779. (property "Value" "AO3401A" (at 5.08 0 0)
  780. (effects (font (size 1.27 1.27)) (justify left))
  781. )
  782. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0)
  783. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  784. )
  785. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (at 0 0 0)
  786. (effects (font (size 1.27 1.27)) (justify left) hide)
  787. )
  788. (property "ki_keywords" "P-Channel MOSFET" (at 0 0 0)
  789. (effects (font (size 1.27 1.27)) hide)
  790. )
  791. (property "ki_description" "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23" (at 0 0 0)
  792. (effects (font (size 1.27 1.27)) hide)
  793. )
  794. (property "ki_fp_filters" "SOT?23*" (at 0 0 0)
  795. (effects (font (size 1.27 1.27)) hide)
  796. )
  797. (symbol "AO3401A_0_1"
  798. (polyline
  799. (pts
  800. (xy 0.254 0)
  801. (xy -2.54 0)
  802. )
  803. (stroke (width 0) (type default))
  804. (fill (type none))
  805. )
  806. (polyline
  807. (pts
  808. (xy 0.254 1.905)
  809. (xy 0.254 -1.905)
  810. )
  811. (stroke (width 0.254) (type default))
  812. (fill (type none))
  813. )
  814. (polyline
  815. (pts
  816. (xy 0.762 -1.27)
  817. (xy 0.762 -2.286)
  818. )
  819. (stroke (width 0.254) (type default))
  820. (fill (type none))
  821. )
  822. (polyline
  823. (pts
  824. (xy 0.762 0.508)
  825. (xy 0.762 -0.508)
  826. )
  827. (stroke (width 0.254) (type default))
  828. (fill (type none))
  829. )
  830. (polyline
  831. (pts
  832. (xy 0.762 2.286)
  833. (xy 0.762 1.27)
  834. )
  835. (stroke (width 0.254) (type default))
  836. (fill (type none))
  837. )
  838. (polyline
  839. (pts
  840. (xy 2.54 2.54)
  841. (xy 2.54 1.778)
  842. )
  843. (stroke (width 0) (type default))
  844. (fill (type none))
  845. )
  846. (polyline
  847. (pts
  848. (xy 2.54 -2.54)
  849. (xy 2.54 0)
  850. (xy 0.762 0)
  851. )
  852. (stroke (width 0) (type default))
  853. (fill (type none))
  854. )
  855. (polyline
  856. (pts
  857. (xy 0.762 1.778)
  858. (xy 3.302 1.778)
  859. (xy 3.302 -1.778)
  860. (xy 0.762 -1.778)
  861. )
  862. (stroke (width 0) (type default))
  863. (fill (type none))
  864. )
  865. (polyline
  866. (pts
  867. (xy 2.286 0)
  868. (xy 1.27 0.381)
  869. (xy 1.27 -0.381)
  870. (xy 2.286 0)
  871. )
  872. (stroke (width 0) (type default))
  873. (fill (type outline))
  874. )
  875. (polyline
  876. (pts
  877. (xy 2.794 -0.508)
  878. (xy 2.921 -0.381)
  879. (xy 3.683 -0.381)
  880. (xy 3.81 -0.254)
  881. )
  882. (stroke (width 0) (type default))
  883. (fill (type none))
  884. )
  885. (polyline
  886. (pts
  887. (xy 3.302 -0.381)
  888. (xy 2.921 0.254)
  889. (xy 3.683 0.254)
  890. (xy 3.302 -0.381)
  891. )
  892. (stroke (width 0) (type default))
  893. (fill (type none))
  894. )
  895. (circle (center 1.651 0) (radius 2.794)
  896. (stroke (width 0.254) (type default))
  897. (fill (type none))
  898. )
  899. (circle (center 2.54 -1.778) (radius 0.254)
  900. (stroke (width 0) (type default))
  901. (fill (type outline))
  902. )
  903. (circle (center 2.54 1.778) (radius 0.254)
  904. (stroke (width 0) (type default))
  905. (fill (type outline))
  906. )
  907. )
  908. (symbol "AO3401A_1_1"
  909. (pin input line (at -5.08 0 0) (length 2.54)
  910. (name "G" (effects (font (size 1.27 1.27))))
  911. (number "1" (effects (font (size 1.27 1.27))))
  912. )
  913. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  914. (name "S" (effects (font (size 1.27 1.27))))
  915. (number "2" (effects (font (size 1.27 1.27))))
  916. )
  917. (pin passive line (at 2.54 5.08 270) (length 2.54)
  918. (name "D" (effects (font (size 1.27 1.27))))
  919. (number "3" (effects (font (size 1.27 1.27))))
  920. )
  921. )
  922. )
  923. (symbol "custom_symbols:+5V_TPWR" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  924. (property "Reference" "#PWR" (at 0 -3.81 0)
  925. (effects (font (size 1.27 1.27)) hide)
  926. )
  927. (property "Value" "custom_symbols_+5V_TPWR" (at 0 3.556 0)
  928. (effects (font (size 1.27 1.27)))
  929. )
  930. (property "Footprint" "" (at 0 0 0)
  931. (effects (font (size 1.27 1.27)) hide)
  932. )
  933. (property "Datasheet" "" (at 0 0 0)
  934. (effects (font (size 1.27 1.27)) hide)
  935. )
  936. (symbol "+5V_TPWR_0_1"
  937. (polyline
  938. (pts
  939. (xy -0.762 1.27)
  940. (xy 0 2.54)
  941. )
  942. (stroke (width 0) (type default))
  943. (fill (type none))
  944. )
  945. (polyline
  946. (pts
  947. (xy 0 0)
  948. (xy 0 2.54)
  949. )
  950. (stroke (width 0) (type default))
  951. (fill (type none))
  952. )
  953. (polyline
  954. (pts
  955. (xy 0 2.54)
  956. (xy 0.762 1.27)
  957. )
  958. (stroke (width 0) (type default))
  959. (fill (type none))
  960. )
  961. )
  962. (symbol "+5V_TPWR_1_1"
  963. (pin power_in line (at 0 0 90) (length 0) hide
  964. (name "+5V" (effects (font (size 1.27 1.27))))
  965. (number "1" (effects (font (size 1.27 1.27))))
  966. )
  967. )
  968. )
  969. (symbol "custom_symbols:BlackSCSI" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  970. (property "Reference" "RP1" (at -0.635 -2.921 0)
  971. (effects (font (size 1.27 1.27)))
  972. )
  973. (property "Value" "Pico_Footprint" (at -0.635 -0.6096 0)
  974. (effects (font (size 1.27 1.27)))
  975. )
  976. (property "Footprint" "CustomFootprints:BluePillModule" (at 0 2.54 0)
  977. (effects (font (size 1.27 1.27)) hide)
  978. )
  979. (property "Datasheet" "" (at 2.54 -3.81 0)
  980. (effects (font (size 1.27 1.27)) hide)
  981. )
  982. (symbol "BlackSCSI_0_0"
  983. (text "USB Here" (at 1.27 -3.81 0)
  984. (effects (font (size 1.27 1.27)))
  985. )
  986. )
  987. (symbol "BlackSCSI_0_1"
  988. (rectangle (start 16.51 -1.27) (end -15.24 -54.61)
  989. (stroke (width 0) (type default))
  990. (fill (type background))
  991. )
  992. )
  993. (symbol "BlackSCSI_1_1"
  994. (pin bidirectional line (at -17.78 -3.81 0) (length 2.54)
  995. (name "G0" (effects (font (size 1.27 1.27))))
  996. (number "1" (effects (font (size 1.27 1.27))))
  997. )
  998. (pin bidirectional line (at -17.78 -26.67 0) (length 2.54)
  999. (name "G7" (effects (font (size 1.27 1.27))))
  1000. (number "10" (effects (font (size 1.27 1.27))))
  1001. )
  1002. (pin bidirectional line (at -17.78 -29.21 0) (length 2.54)
  1003. (name "G8" (effects (font (size 1.27 1.27))))
  1004. (number "11" (effects (font (size 1.27 1.27))))
  1005. )
  1006. (pin bidirectional line (at -17.78 -31.75 0) (length 2.54)
  1007. (name "G9" (effects (font (size 1.27 1.27))))
  1008. (number "12" (effects (font (size 1.27 1.27))))
  1009. )
  1010. (pin bidirectional line (at -17.78 -34.29 0) (length 2.54)
  1011. (name "GND" (effects (font (size 1.27 1.27))))
  1012. (number "13" (effects (font (size 1.27 1.27))))
  1013. )
  1014. (pin bidirectional line (at -17.78 -36.83 0) (length 2.54)
  1015. (name "G10" (effects (font (size 1.27 1.27))))
  1016. (number "14" (effects (font (size 1.27 1.27))))
  1017. )
  1018. (pin bidirectional line (at -17.78 -39.37 0) (length 2.54)
  1019. (name "G11" (effects (font (size 1.27 1.27))))
  1020. (number "15" (effects (font (size 1.27 1.27))))
  1021. )
  1022. (pin bidirectional line (at -17.78 -41.91 0) (length 2.54)
  1023. (name "G12" (effects (font (size 1.27 1.27))))
  1024. (number "16" (effects (font (size 1.27 1.27))))
  1025. )
  1026. (pin bidirectional line (at -17.78 -44.45 0) (length 2.54)
  1027. (name "G13" (effects (font (size 1.27 1.27))))
  1028. (number "17" (effects (font (size 1.27 1.27))))
  1029. )
  1030. (pin power_in line (at -17.78 -46.99 0) (length 2.54)
  1031. (name "GND" (effects (font (size 1.27 1.27))))
  1032. (number "18" (effects (font (size 1.27 1.27))))
  1033. )
  1034. (pin power_in line (at -17.78 -49.53 0) (length 2.54)
  1035. (name "G14" (effects (font (size 1.27 1.27))))
  1036. (number "19" (effects (font (size 1.27 1.27))))
  1037. )
  1038. (pin bidirectional line (at -17.78 -6.35 0) (length 2.54)
  1039. (name "G1" (effects (font (size 1.27 1.27))))
  1040. (number "2" (effects (font (size 1.27 1.27))))
  1041. )
  1042. (pin power_in line (at -17.78 -52.07 0) (length 2.54)
  1043. (name "G15" (effects (font (size 1.27 1.27))))
  1044. (number "20" (effects (font (size 1.27 1.27))))
  1045. )
  1046. (pin power_in line (at 19.05 -52.07 180) (length 2.54)
  1047. (name "G16" (effects (font (size 1.27 1.27))))
  1048. (number "21" (effects (font (size 1.27 1.27))))
  1049. )
  1050. (pin bidirectional line (at 19.05 -49.53 180) (length 2.54)
  1051. (name "G17" (effects (font (size 1.27 1.27))))
  1052. (number "22" (effects (font (size 1.27 1.27))))
  1053. )
  1054. (pin bidirectional line (at 19.05 -46.99 180) (length 2.54)
  1055. (name "GND" (effects (font (size 1.27 1.27))))
  1056. (number "23" (effects (font (size 1.27 1.27))))
  1057. )
  1058. (pin bidirectional line (at 19.05 -44.45 180) (length 2.54)
  1059. (name "G18" (effects (font (size 1.27 1.27))))
  1060. (number "24" (effects (font (size 1.27 1.27))))
  1061. )
  1062. (pin input line (at 19.05 -41.91 180) (length 2.54)
  1063. (name "G19" (effects (font (size 1.27 1.27))))
  1064. (number "25" (effects (font (size 1.27 1.27))))
  1065. )
  1066. (pin bidirectional line (at 19.05 -39.37 180) (length 2.54)
  1067. (name "G20" (effects (font (size 1.27 1.27))))
  1068. (number "26" (effects (font (size 1.27 1.27))))
  1069. )
  1070. (pin bidirectional line (at 19.05 -36.83 180) (length 2.54)
  1071. (name "G21" (effects (font (size 1.27 1.27))))
  1072. (number "27" (effects (font (size 1.27 1.27))))
  1073. )
  1074. (pin bidirectional line (at 19.05 -34.29 180) (length 2.54)
  1075. (name "GND" (effects (font (size 1.27 1.27))))
  1076. (number "28" (effects (font (size 1.27 1.27))))
  1077. )
  1078. (pin bidirectional line (at 19.05 -31.75 180) (length 2.54)
  1079. (name "G22" (effects (font (size 1.27 1.27))))
  1080. (number "29" (effects (font (size 1.27 1.27))))
  1081. )
  1082. (pin bidirectional line (at -17.78 -8.89 0) (length 2.54)
  1083. (name "GND" (effects (font (size 1.27 1.27))))
  1084. (number "3" (effects (font (size 1.27 1.27))))
  1085. )
  1086. (pin bidirectional line (at 19.05 -29.21 180) (length 2.54)
  1087. (name "RUN" (effects (font (size 1.27 1.27))))
  1088. (number "30" (effects (font (size 1.27 1.27))))
  1089. )
  1090. (pin bidirectional line (at 19.05 -26.67 180) (length 2.54)
  1091. (name "G26" (effects (font (size 1.27 1.27))))
  1092. (number "31" (effects (font (size 1.27 1.27))))
  1093. )
  1094. (pin bidirectional line (at 19.05 -24.13 180) (length 2.54)
  1095. (name "G27" (effects (font (size 1.27 1.27))))
  1096. (number "32" (effects (font (size 1.27 1.27))))
  1097. )
  1098. (pin bidirectional line (at 19.05 -21.59 180) (length 2.54)
  1099. (name "A_GND" (effects (font (size 1.27 1.27))))
  1100. (number "33" (effects (font (size 1.27 1.27))))
  1101. )
  1102. (pin bidirectional line (at 19.05 -19.05 180) (length 2.54)
  1103. (name "G28" (effects (font (size 1.27 1.27))))
  1104. (number "34" (effects (font (size 1.27 1.27))))
  1105. )
  1106. (pin bidirectional line (at 19.05 -16.51 180) (length 2.54)
  1107. (name "ADC_VREF" (effects (font (size 1.27 1.27))))
  1108. (number "35" (effects (font (size 1.27 1.27))))
  1109. )
  1110. (pin bidirectional line (at 19.05 -13.97 180) (length 2.54)
  1111. (name "3v3" (effects (font (size 1.27 1.27))))
  1112. (number "36" (effects (font (size 1.27 1.27))))
  1113. )
  1114. (pin bidirectional line (at 19.05 -11.43 180) (length 2.54)
  1115. (name "3v3_EN" (effects (font (size 1.27 1.27))))
  1116. (number "37" (effects (font (size 1.27 1.27))))
  1117. )
  1118. (pin power_in line (at 19.05 -8.89 180) (length 2.54)
  1119. (name "GND" (effects (font (size 1.27 1.27))))
  1120. (number "38" (effects (font (size 1.27 1.27))))
  1121. )
  1122. (pin power_in line (at 19.05 -6.35 180) (length 2.54)
  1123. (name "VSYS" (effects (font (size 1.27 1.27))))
  1124. (number "39" (effects (font (size 1.27 1.27))))
  1125. )
  1126. (pin bidirectional line (at -17.78 -11.43 0) (length 2.54)
  1127. (name "G2" (effects (font (size 1.27 1.27))))
  1128. (number "4" (effects (font (size 1.27 1.27))))
  1129. )
  1130. (pin power_in line (at 19.05 -3.81 180) (length 2.54)
  1131. (name "VBUS_5V" (effects (font (size 1.27 1.27))))
  1132. (number "40" (effects (font (size 1.27 1.27))))
  1133. )
  1134. (pin bidirectional line (at -17.78 -13.97 0) (length 2.54)
  1135. (name "G3" (effects (font (size 1.27 1.27))))
  1136. (number "5" (effects (font (size 1.27 1.27))))
  1137. )
  1138. (pin bidirectional line (at -17.78 -16.51 0) (length 2.54)
  1139. (name "G4" (effects (font (size 1.27 1.27))))
  1140. (number "6" (effects (font (size 1.27 1.27))))
  1141. )
  1142. (pin bidirectional line (at -17.78 -19.05 0) (length 2.54)
  1143. (name "G5" (effects (font (size 1.27 1.27))))
  1144. (number "7" (effects (font (size 1.27 1.27))))
  1145. )
  1146. (pin bidirectional line (at -17.78 -21.59 0) (length 2.54)
  1147. (name "GND" (effects (font (size 1.27 1.27))))
  1148. (number "8" (effects (font (size 1.27 1.27))))
  1149. )
  1150. (pin bidirectional line (at -17.78 -24.13 0) (length 2.54)
  1151. (name "G6" (effects (font (size 1.27 1.27))))
  1152. (number "9" (effects (font (size 1.27 1.27))))
  1153. )
  1154. )
  1155. )
  1156. (symbol "custom_symbols:PB_SCSI_HD_Pins" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1157. (property "Reference" "J" (at -0.508 26.67 0)
  1158. (effects (font (size 1.27 1.27)))
  1159. )
  1160. (property "Value" "custom_symbols_PB_SCSI_HD_Pins" (at -0.508 -28.702 0)
  1161. (effects (font (size 1.27 1.27)))
  1162. )
  1163. (property "Footprint" "CustomFootprints:PowerBook_SCSI_40Pin" (at -0.254 27.94 0)
  1164. (effects (font (size 1.27 1.27)) hide)
  1165. )
  1166. (property "Datasheet" "" (at -7.874 1.27 0)
  1167. (effects (font (size 1.27 1.27)) hide)
  1168. )
  1169. (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
  1170. (effects (font (size 1.27 1.27)) hide)
  1171. )
  1172. (symbol "PB_SCSI_HD_Pins_0_1"
  1173. (rectangle (start -8.128 -25.4) (end 7.366 25.146)
  1174. (stroke (width 0) (type default))
  1175. (fill (type background))
  1176. )
  1177. )
  1178. (symbol "PB_SCSI_HD_Pins_1_1"
  1179. (rectangle (start -9.144 -24.003) (end -7.874 -24.257)
  1180. (stroke (width 0.1524) (type default))
  1181. (fill (type none))
  1182. )
  1183. (rectangle (start -9.144 -21.463) (end -7.874 -21.717)
  1184. (stroke (width 0.1524) (type default))
  1185. (fill (type none))
  1186. )
  1187. (rectangle (start -9.144 -18.923) (end -7.874 -19.177)
  1188. (stroke (width 0.1524) (type default))
  1189. (fill (type none))
  1190. )
  1191. (rectangle (start -9.144 -16.383) (end -7.874 -16.637)
  1192. (stroke (width 0.1524) (type default))
  1193. (fill (type none))
  1194. )
  1195. (rectangle (start -9.144 -13.843) (end -7.874 -14.097)
  1196. (stroke (width 0.1524) (type default))
  1197. (fill (type none))
  1198. )
  1199. (rectangle (start -9.144 -11.303) (end -7.874 -11.557)
  1200. (stroke (width 0.1524) (type default))
  1201. (fill (type none))
  1202. )
  1203. (rectangle (start -9.144 -8.763) (end -7.874 -9.017)
  1204. (stroke (width 0.1524) (type default))
  1205. (fill (type none))
  1206. )
  1207. (rectangle (start -9.144 -6.223) (end -7.874 -6.477)
  1208. (stroke (width 0.1524) (type default))
  1209. (fill (type none))
  1210. )
  1211. (rectangle (start -9.144 -3.683) (end -7.874 -3.937)
  1212. (stroke (width 0.1524) (type default))
  1213. (fill (type none))
  1214. )
  1215. (rectangle (start -9.144 -1.143) (end -7.874 -1.397)
  1216. (stroke (width 0.1524) (type default))
  1217. (fill (type none))
  1218. )
  1219. (rectangle (start -9.144 1.397) (end -7.874 1.143)
  1220. (stroke (width 0.1524) (type default))
  1221. (fill (type none))
  1222. )
  1223. (rectangle (start -9.144 6.477) (end -7.874 6.223)
  1224. (stroke (width 0.1524) (type default))
  1225. (fill (type none))
  1226. )
  1227. (rectangle (start -9.144 9.017) (end -7.874 8.763)
  1228. (stroke (width 0.1524) (type default))
  1229. (fill (type none))
  1230. )
  1231. (rectangle (start -9.144 11.557) (end -7.874 11.303)
  1232. (stroke (width 0.1524) (type default))
  1233. (fill (type none))
  1234. )
  1235. (rectangle (start -9.144 14.097) (end -7.874 13.843)
  1236. (stroke (width 0.1524) (type default))
  1237. (fill (type none))
  1238. )
  1239. (rectangle (start -9.144 16.637) (end -7.874 16.383)
  1240. (stroke (width 0.1524) (type default))
  1241. (fill (type none))
  1242. )
  1243. (rectangle (start -9.144 19.177) (end -7.874 18.923)
  1244. (stroke (width 0.1524) (type default))
  1245. (fill (type none))
  1246. )
  1247. (rectangle (start -9.144 21.717) (end -7.874 21.463)
  1248. (stroke (width 0.1524) (type default))
  1249. (fill (type none))
  1250. )
  1251. (rectangle (start -9.144 24.257) (end -7.874 24.003)
  1252. (stroke (width 0.1524) (type default))
  1253. (fill (type none))
  1254. )
  1255. (rectangle (start 8.382 -24.003) (end 7.112 -24.257)
  1256. (stroke (width 0.1524) (type default))
  1257. (fill (type none))
  1258. )
  1259. (rectangle (start 8.382 -21.463) (end 7.112 -21.717)
  1260. (stroke (width 0.1524) (type default))
  1261. (fill (type none))
  1262. )
  1263. (rectangle (start 8.382 -18.923) (end 7.112 -19.177)
  1264. (stroke (width 0.1524) (type default))
  1265. (fill (type none))
  1266. )
  1267. (rectangle (start 8.382 -16.383) (end 7.112 -16.637)
  1268. (stroke (width 0.1524) (type default))
  1269. (fill (type none))
  1270. )
  1271. (rectangle (start 8.382 -13.843) (end 7.112 -14.097)
  1272. (stroke (width 0.1524) (type default))
  1273. (fill (type none))
  1274. )
  1275. (rectangle (start 8.382 -11.303) (end 7.112 -11.557)
  1276. (stroke (width 0.1524) (type default))
  1277. (fill (type none))
  1278. )
  1279. (rectangle (start 8.382 -8.763) (end 7.112 -9.017)
  1280. (stroke (width 0.1524) (type default))
  1281. (fill (type none))
  1282. )
  1283. (rectangle (start 8.382 -6.223) (end 7.112 -6.477)
  1284. (stroke (width 0.1524) (type default))
  1285. (fill (type none))
  1286. )
  1287. (rectangle (start 8.382 -3.683) (end 7.112 -3.937)
  1288. (stroke (width 0.1524) (type default))
  1289. (fill (type none))
  1290. )
  1291. (rectangle (start 8.382 -1.143) (end 7.112 -1.397)
  1292. (stroke (width 0.1524) (type default))
  1293. (fill (type none))
  1294. )
  1295. (rectangle (start 8.382 1.397) (end 7.112 1.143)
  1296. (stroke (width 0.1524) (type default))
  1297. (fill (type none))
  1298. )
  1299. (rectangle (start 8.382 3.937) (end 7.112 3.683)
  1300. (stroke (width 0.1524) (type default))
  1301. (fill (type none))
  1302. )
  1303. (rectangle (start 8.382 6.477) (end 7.112 6.223)
  1304. (stroke (width 0.1524) (type default))
  1305. (fill (type none))
  1306. )
  1307. (rectangle (start 8.382 9.017) (end 7.112 8.763)
  1308. (stroke (width 0.1524) (type default))
  1309. (fill (type none))
  1310. )
  1311. (rectangle (start 8.382 11.557) (end 7.112 11.303)
  1312. (stroke (width 0.1524) (type default))
  1313. (fill (type none))
  1314. )
  1315. (rectangle (start 8.382 14.097) (end 7.112 13.843)
  1316. (stroke (width 0.1524) (type default))
  1317. (fill (type none))
  1318. )
  1319. (rectangle (start 8.382 16.637) (end 7.112 16.383)
  1320. (stroke (width 0.1524) (type default))
  1321. (fill (type none))
  1322. )
  1323. (rectangle (start 8.382 19.177) (end 7.112 18.923)
  1324. (stroke (width 0.1524) (type default))
  1325. (fill (type none))
  1326. )
  1327. (rectangle (start 8.382 21.717) (end 7.112 21.463)
  1328. (stroke (width 0.1524) (type default))
  1329. (fill (type none))
  1330. )
  1331. (rectangle (start 8.382 24.257) (end 7.112 24.003)
  1332. (stroke (width 0.1524) (type default))
  1333. (fill (type none))
  1334. )
  1335. (pin power_in line (at -12.7 24.13 0) (length 3.81)
  1336. (name "+5_L" (effects (font (size 1.27 1.27))))
  1337. (number "1" (effects (font (size 1.27 1.27))))
  1338. )
  1339. (pin passive line (at 11.43 13.97 180) (length 3.81)
  1340. (name "DB2" (effects (font (size 1.27 1.27))))
  1341. (number "10" (effects (font (size 1.27 1.27))))
  1342. )
  1343. (pin power_in line (at -12.7 11.43 0) (length 3.81)
  1344. (name "GND" (effects (font (size 1.27 1.27))))
  1345. (number "11" (effects (font (size 1.27 1.27))))
  1346. )
  1347. (pin passive line (at 11.43 11.43 180) (length 3.81)
  1348. (name "DB3" (effects (font (size 1.27 1.27))))
  1349. (number "12" (effects (font (size 1.27 1.27))))
  1350. )
  1351. (pin power_in line (at -12.7 8.89 0) (length 3.81)
  1352. (name "GND" (effects (font (size 1.27 1.27))))
  1353. (number "13" (effects (font (size 1.27 1.27))))
  1354. )
  1355. (pin passive line (at 11.43 8.89 180) (length 3.81)
  1356. (name "DB4" (effects (font (size 1.27 1.27))))
  1357. (number "14" (effects (font (size 1.27 1.27))))
  1358. )
  1359. (pin power_in line (at -12.7 6.35 0) (length 3.81)
  1360. (name "GND" (effects (font (size 1.27 1.27))))
  1361. (number "15" (effects (font (size 1.27 1.27))))
  1362. )
  1363. (pin passive line (at 11.43 6.35 180) (length 3.81)
  1364. (name "DB5" (effects (font (size 1.27 1.27))))
  1365. (number "16" (effects (font (size 1.27 1.27))))
  1366. )
  1367. (pin passive line (at 11.43 3.81 180) (length 3.81)
  1368. (name "DB6" (effects (font (size 1.27 1.27))))
  1369. (number "18" (effects (font (size 1.27 1.27))))
  1370. )
  1371. (pin power_in line (at -12.7 1.27 0) (length 3.81)
  1372. (name "GND" (effects (font (size 1.27 1.27))))
  1373. (number "19" (effects (font (size 1.27 1.27))))
  1374. )
  1375. (pin power_in line (at 11.43 24.13 180) (length 3.81)
  1376. (name "+5_L" (effects (font (size 1.27 1.27))))
  1377. (number "2" (effects (font (size 1.27 1.27))))
  1378. )
  1379. (pin passive line (at 11.43 1.27 180) (length 3.81)
  1380. (name "DB7" (effects (font (size 1.27 1.27))))
  1381. (number "20" (effects (font (size 1.27 1.27))))
  1382. )
  1383. (pin power_in line (at -12.7 -1.27 0) (length 3.81)
  1384. (name "GND" (effects (font (size 1.27 1.27))))
  1385. (number "21" (effects (font (size 1.27 1.27))))
  1386. )
  1387. (pin passive line (at 11.43 -1.27 180) (length 3.81)
  1388. (name "PARITY" (effects (font (size 1.27 1.27))))
  1389. (number "22" (effects (font (size 1.27 1.27))))
  1390. )
  1391. (pin power_in line (at -12.7 -3.81 0) (length 3.81)
  1392. (name "GND" (effects (font (size 1.27 1.27))))
  1393. (number "23" (effects (font (size 1.27 1.27))))
  1394. )
  1395. (pin passive line (at 11.43 -3.81 180) (length 3.81)
  1396. (name "TERMPWR" (effects (font (size 1.27 1.27))))
  1397. (number "24" (effects (font (size 1.27 1.27))))
  1398. )
  1399. (pin passive line (at -12.7 -6.35 0) (length 3.81)
  1400. (name "ATN" (effects (font (size 1.27 1.27))))
  1401. (number "25" (effects (font (size 1.27 1.27))))
  1402. )
  1403. (pin passive line (at 11.43 -6.35 180) (length 3.81)
  1404. (name "BSY" (effects (font (size 1.27 1.27))))
  1405. (number "26" (effects (font (size 1.27 1.27))))
  1406. )
  1407. (pin power_in line (at -12.7 -8.89 0) (length 3.81)
  1408. (name "GND" (effects (font (size 1.27 1.27))))
  1409. (number "27" (effects (font (size 1.27 1.27))))
  1410. )
  1411. (pin passive line (at 11.43 -8.89 180) (length 3.81)
  1412. (name "ACK" (effects (font (size 1.27 1.27))))
  1413. (number "28" (effects (font (size 1.27 1.27))))
  1414. )
  1415. (pin passive line (at -12.7 -11.43 0) (length 3.81)
  1416. (name "RST" (effects (font (size 1.27 1.27))))
  1417. (number "29" (effects (font (size 1.27 1.27))))
  1418. )
  1419. (pin power_in line (at -12.7 21.59 0) (length 3.81)
  1420. (name "GND" (effects (font (size 1.27 1.27))))
  1421. (number "3" (effects (font (size 1.27 1.27))))
  1422. )
  1423. (pin passive line (at 11.43 -11.43 180) (length 3.81)
  1424. (name "MSG" (effects (font (size 1.27 1.27))))
  1425. (number "30" (effects (font (size 1.27 1.27))))
  1426. )
  1427. (pin power_in line (at -12.7 -13.97 0) (length 3.81)
  1428. (name "GND" (effects (font (size 1.27 1.27))))
  1429. (number "31" (effects (font (size 1.27 1.27))))
  1430. )
  1431. (pin passive line (at 11.43 -13.97 180) (length 3.81)
  1432. (name "SEL" (effects (font (size 1.27 1.27))))
  1433. (number "32" (effects (font (size 1.27 1.27))))
  1434. )
  1435. (pin passive line (at -12.7 -16.51 0) (length 3.81)
  1436. (name "I/O" (effects (font (size 1.27 1.27))))
  1437. (number "33" (effects (font (size 1.27 1.27))))
  1438. )
  1439. (pin passive line (at 11.43 -16.51 180) (length 3.81)
  1440. (name "C/D" (effects (font (size 1.27 1.27))))
  1441. (number "34" (effects (font (size 1.27 1.27))))
  1442. )
  1443. (pin power_in line (at -12.7 -19.05 0) (length 3.81)
  1444. (name "GND" (effects (font (size 1.27 1.27))))
  1445. (number "35" (effects (font (size 1.27 1.27))))
  1446. )
  1447. (pin passive line (at 11.43 -19.05 180) (length 3.81)
  1448. (name "REQ" (effects (font (size 1.27 1.27))))
  1449. (number "36" (effects (font (size 1.27 1.27))))
  1450. )
  1451. (pin power_in line (at -12.7 -21.59 0) (length 3.81)
  1452. (name "GND" (effects (font (size 1.27 1.27))))
  1453. (number "37" (effects (font (size 1.27 1.27))))
  1454. )
  1455. (pin power_in line (at 11.43 -21.59 180) (length 3.81)
  1456. (name "GND" (effects (font (size 1.27 1.27))))
  1457. (number "38" (effects (font (size 1.27 1.27))))
  1458. )
  1459. (pin power_in line (at -12.7 -24.13 0) (length 3.81)
  1460. (name "+5_M" (effects (font (size 1.27 1.27))))
  1461. (number "39" (effects (font (size 1.27 1.27))))
  1462. )
  1463. (pin power_in line (at 11.43 21.59 180) (length 3.81)
  1464. (name "GND" (effects (font (size 1.27 1.27))))
  1465. (number "4" (effects (font (size 1.27 1.27))))
  1466. )
  1467. (pin power_in line (at 11.43 -24.13 180) (length 3.81)
  1468. (name "+5_M" (effects (font (size 1.27 1.27))))
  1469. (number "40" (effects (font (size 1.27 1.27))))
  1470. )
  1471. (pin power_in line (at -12.7 19.05 0) (length 3.81)
  1472. (name "GND" (effects (font (size 1.27 1.27))))
  1473. (number "5" (effects (font (size 1.27 1.27))))
  1474. )
  1475. (pin passive line (at 11.43 19.05 180) (length 3.81)
  1476. (name "DB0" (effects (font (size 1.27 1.27))))
  1477. (number "6" (effects (font (size 1.27 1.27))))
  1478. )
  1479. (pin power_in line (at -12.7 16.51 0) (length 3.81)
  1480. (name "GND" (effects (font (size 1.27 1.27))))
  1481. (number "7" (effects (font (size 1.27 1.27))))
  1482. )
  1483. (pin passive line (at 11.43 16.51 180) (length 3.81)
  1484. (name "DB1" (effects (font (size 1.27 1.27))))
  1485. (number "8" (effects (font (size 1.27 1.27))))
  1486. )
  1487. (pin power_in line (at -12.7 13.97 0) (length 3.81)
  1488. (name "GND" (effects (font (size 1.27 1.27))))
  1489. (number "9" (effects (font (size 1.27 1.27))))
  1490. )
  1491. )
  1492. )
  1493. (symbol "power:+2V8" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1494. (property "Reference" "#PWR" (at 0 -3.81 0)
  1495. (effects (font (size 1.27 1.27)) hide)
  1496. )
  1497. (property "Value" "+2V8" (at 0 3.556 0)
  1498. (effects (font (size 1.27 1.27)))
  1499. )
  1500. (property "Footprint" "" (at 0 0 0)
  1501. (effects (font (size 1.27 1.27)) hide)
  1502. )
  1503. (property "Datasheet" "" (at 0 0 0)
  1504. (effects (font (size 1.27 1.27)) hide)
  1505. )
  1506. (property "ki_keywords" "power-flag" (at 0 0 0)
  1507. (effects (font (size 1.27 1.27)) hide)
  1508. )
  1509. (property "ki_description" "Power symbol creates a global label with name \"+2V8\"" (at 0 0 0)
  1510. (effects (font (size 1.27 1.27)) hide)
  1511. )
  1512. (symbol "+2V8_0_1"
  1513. (polyline
  1514. (pts
  1515. (xy -0.762 1.27)
  1516. (xy 0 2.54)
  1517. )
  1518. (stroke (width 0) (type default))
  1519. (fill (type none))
  1520. )
  1521. (polyline
  1522. (pts
  1523. (xy 0 0)
  1524. (xy 0 2.54)
  1525. )
  1526. (stroke (width 0) (type default))
  1527. (fill (type none))
  1528. )
  1529. (polyline
  1530. (pts
  1531. (xy 0 2.54)
  1532. (xy 0.762 1.27)
  1533. )
  1534. (stroke (width 0) (type default))
  1535. (fill (type none))
  1536. )
  1537. )
  1538. (symbol "+2V8_1_1"
  1539. (pin power_in line (at 0 0 90) (length 0) hide
  1540. (name "+2V8" (effects (font (size 1.27 1.27))))
  1541. (number "1" (effects (font (size 1.27 1.27))))
  1542. )
  1543. )
  1544. )
  1545. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1546. (property "Reference" "#PWR" (at 0 -3.81 0)
  1547. (effects (font (size 1.27 1.27)) hide)
  1548. )
  1549. (property "Value" "+3V3" (at 0 3.556 0)
  1550. (effects (font (size 1.27 1.27)))
  1551. )
  1552. (property "Footprint" "" (at 0 0 0)
  1553. (effects (font (size 1.27 1.27)) hide)
  1554. )
  1555. (property "Datasheet" "" (at 0 0 0)
  1556. (effects (font (size 1.27 1.27)) hide)
  1557. )
  1558. (property "ki_keywords" "power-flag" (at 0 0 0)
  1559. (effects (font (size 1.27 1.27)) hide)
  1560. )
  1561. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
  1562. (effects (font (size 1.27 1.27)) hide)
  1563. )
  1564. (symbol "+3V3_0_1"
  1565. (polyline
  1566. (pts
  1567. (xy -0.762 1.27)
  1568. (xy 0 2.54)
  1569. )
  1570. (stroke (width 0) (type default))
  1571. (fill (type none))
  1572. )
  1573. (polyline
  1574. (pts
  1575. (xy 0 0)
  1576. (xy 0 2.54)
  1577. )
  1578. (stroke (width 0) (type default))
  1579. (fill (type none))
  1580. )
  1581. (polyline
  1582. (pts
  1583. (xy 0 2.54)
  1584. (xy 0.762 1.27)
  1585. )
  1586. (stroke (width 0) (type default))
  1587. (fill (type none))
  1588. )
  1589. )
  1590. (symbol "+3V3_1_1"
  1591. (pin power_in line (at 0 0 90) (length 0) hide
  1592. (name "+3V3" (effects (font (size 1.27 1.27))))
  1593. (number "1" (effects (font (size 1.27 1.27))))
  1594. )
  1595. )
  1596. )
  1597. (symbol "power:+5F" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1598. (property "Reference" "#PWR" (at 0 -3.81 0)
  1599. (effects (font (size 1.27 1.27)) hide)
  1600. )
  1601. (property "Value" "+5F" (at 0 3.556 0)
  1602. (effects (font (size 1.27 1.27)))
  1603. )
  1604. (property "Footprint" "" (at 0 0 0)
  1605. (effects (font (size 1.27 1.27)) hide)
  1606. )
  1607. (property "Datasheet" "" (at 0 0 0)
  1608. (effects (font (size 1.27 1.27)) hide)
  1609. )
  1610. (property "ki_keywords" "power-flag" (at 0 0 0)
  1611. (effects (font (size 1.27 1.27)) hide)
  1612. )
  1613. (property "ki_description" "Power symbol creates a global label with name \"+5F\"" (at 0 0 0)
  1614. (effects (font (size 1.27 1.27)) hide)
  1615. )
  1616. (symbol "+5F_0_1"
  1617. (polyline
  1618. (pts
  1619. (xy -0.762 1.27)
  1620. (xy 0 2.54)
  1621. )
  1622. (stroke (width 0) (type default))
  1623. (fill (type none))
  1624. )
  1625. (polyline
  1626. (pts
  1627. (xy 0 0)
  1628. (xy 0 2.54)
  1629. )
  1630. (stroke (width 0) (type default))
  1631. (fill (type none))
  1632. )
  1633. (polyline
  1634. (pts
  1635. (xy 0 2.54)
  1636. (xy 0.762 1.27)
  1637. )
  1638. (stroke (width 0) (type default))
  1639. (fill (type none))
  1640. )
  1641. )
  1642. (symbol "+5F_1_1"
  1643. (pin power_in line (at 0 0 90) (length 0) hide
  1644. (name "+5F" (effects (font (size 1.27 1.27))))
  1645. (number "1" (effects (font (size 1.27 1.27))))
  1646. )
  1647. )
  1648. )
  1649. (symbol "power:+5VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1650. (property "Reference" "#PWR" (at 0 -3.81 0)
  1651. (effects (font (size 1.27 1.27)) hide)
  1652. )
  1653. (property "Value" "+5VA" (at 0 3.556 0)
  1654. (effects (font (size 1.27 1.27)))
  1655. )
  1656. (property "Footprint" "" (at 0 0 0)
  1657. (effects (font (size 1.27 1.27)) hide)
  1658. )
  1659. (property "Datasheet" "" (at 0 0 0)
  1660. (effects (font (size 1.27 1.27)) hide)
  1661. )
  1662. (property "ki_keywords" "power-flag" (at 0 0 0)
  1663. (effects (font (size 1.27 1.27)) hide)
  1664. )
  1665. (property "ki_description" "Power symbol creates a global label with name \"+5VA\"" (at 0 0 0)
  1666. (effects (font (size 1.27 1.27)) hide)
  1667. )
  1668. (symbol "+5VA_0_1"
  1669. (polyline
  1670. (pts
  1671. (xy -0.762 1.27)
  1672. (xy 0 2.54)
  1673. )
  1674. (stroke (width 0) (type default))
  1675. (fill (type none))
  1676. )
  1677. (polyline
  1678. (pts
  1679. (xy 0 0)
  1680. (xy 0 2.54)
  1681. )
  1682. (stroke (width 0) (type default))
  1683. (fill (type none))
  1684. )
  1685. (polyline
  1686. (pts
  1687. (xy 0 2.54)
  1688. (xy 0.762 1.27)
  1689. )
  1690. (stroke (width 0) (type default))
  1691. (fill (type none))
  1692. )
  1693. )
  1694. (symbol "+5VA_1_1"
  1695. (pin power_in line (at 0 0 90) (length 0) hide
  1696. (name "+5VA" (effects (font (size 1.27 1.27))))
  1697. (number "1" (effects (font (size 1.27 1.27))))
  1698. )
  1699. )
  1700. )
  1701. (symbol "power:+5VD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1702. (property "Reference" "#PWR" (at 0 -3.81 0)
  1703. (effects (font (size 1.27 1.27)) hide)
  1704. )
  1705. (property "Value" "+5VD" (at 0 3.556 0)
  1706. (effects (font (size 1.27 1.27)))
  1707. )
  1708. (property "Footprint" "" (at 0 0 0)
  1709. (effects (font (size 1.27 1.27)) hide)
  1710. )
  1711. (property "Datasheet" "" (at 0 0 0)
  1712. (effects (font (size 1.27 1.27)) hide)
  1713. )
  1714. (property "ki_keywords" "power-flag" (at 0 0 0)
  1715. (effects (font (size 1.27 1.27)) hide)
  1716. )
  1717. (property "ki_description" "Power symbol creates a global label with name \"+5VD\"" (at 0 0 0)
  1718. (effects (font (size 1.27 1.27)) hide)
  1719. )
  1720. (symbol "+5VD_0_1"
  1721. (polyline
  1722. (pts
  1723. (xy -0.762 1.27)
  1724. (xy 0 2.54)
  1725. )
  1726. (stroke (width 0) (type default))
  1727. (fill (type none))
  1728. )
  1729. (polyline
  1730. (pts
  1731. (xy 0 0)
  1732. (xy 0 2.54)
  1733. )
  1734. (stroke (width 0) (type default))
  1735. (fill (type none))
  1736. )
  1737. (polyline
  1738. (pts
  1739. (xy 0 2.54)
  1740. (xy 0.762 1.27)
  1741. )
  1742. (stroke (width 0) (type default))
  1743. (fill (type none))
  1744. )
  1745. )
  1746. (symbol "+5VD_1_1"
  1747. (pin power_in line (at 0 0 90) (length 0) hide
  1748. (name "+5VD" (effects (font (size 1.27 1.27))))
  1749. (number "1" (effects (font (size 1.27 1.27))))
  1750. )
  1751. )
  1752. )
  1753. (symbol "power:+5VP" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1754. (property "Reference" "#PWR" (at 0 -3.81 0)
  1755. (effects (font (size 1.27 1.27)) hide)
  1756. )
  1757. (property "Value" "+5VP" (at 0 3.556 0)
  1758. (effects (font (size 1.27 1.27)))
  1759. )
  1760. (property "Footprint" "" (at 0 0 0)
  1761. (effects (font (size 1.27 1.27)) hide)
  1762. )
  1763. (property "Datasheet" "" (at 0 0 0)
  1764. (effects (font (size 1.27 1.27)) hide)
  1765. )
  1766. (property "ki_keywords" "power-flag" (at 0 0 0)
  1767. (effects (font (size 1.27 1.27)) hide)
  1768. )
  1769. (property "ki_description" "Power symbol creates a global label with name \"+5VP\"" (at 0 0 0)
  1770. (effects (font (size 1.27 1.27)) hide)
  1771. )
  1772. (symbol "+5VP_0_1"
  1773. (polyline
  1774. (pts
  1775. (xy -0.762 1.27)
  1776. (xy 0 2.54)
  1777. )
  1778. (stroke (width 0) (type default))
  1779. (fill (type none))
  1780. )
  1781. (polyline
  1782. (pts
  1783. (xy 0 0)
  1784. (xy 0 2.54)
  1785. )
  1786. (stroke (width 0) (type default))
  1787. (fill (type none))
  1788. )
  1789. (polyline
  1790. (pts
  1791. (xy 0 2.54)
  1792. (xy 0.762 1.27)
  1793. )
  1794. (stroke (width 0) (type default))
  1795. (fill (type none))
  1796. )
  1797. )
  1798. (symbol "+5VP_1_1"
  1799. (pin power_in line (at 0 0 90) (length 0) hide
  1800. (name "+5VP" (effects (font (size 1.27 1.27))))
  1801. (number "1" (effects (font (size 1.27 1.27))))
  1802. )
  1803. )
  1804. )
  1805. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1806. (property "Reference" "#PWR" (at 0 -6.35 0)
  1807. (effects (font (size 1.27 1.27)) hide)
  1808. )
  1809. (property "Value" "GND" (at 0 -3.81 0)
  1810. (effects (font (size 1.27 1.27)))
  1811. )
  1812. (property "Footprint" "" (at 0 0 0)
  1813. (effects (font (size 1.27 1.27)) hide)
  1814. )
  1815. (property "Datasheet" "" (at 0 0 0)
  1816. (effects (font (size 1.27 1.27)) hide)
  1817. )
  1818. (property "ki_keywords" "power-flag" (at 0 0 0)
  1819. (effects (font (size 1.27 1.27)) hide)
  1820. )
  1821. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  1822. (effects (font (size 1.27 1.27)) hide)
  1823. )
  1824. (symbol "GND_0_1"
  1825. (polyline
  1826. (pts
  1827. (xy 0 0)
  1828. (xy 0 -1.27)
  1829. (xy 1.27 -1.27)
  1830. (xy 0 -2.54)
  1831. (xy -1.27 -1.27)
  1832. (xy 0 -1.27)
  1833. )
  1834. (stroke (width 0) (type default))
  1835. (fill (type none))
  1836. )
  1837. )
  1838. (symbol "GND_1_1"
  1839. (pin power_in line (at 0 0 270) (length 0) hide
  1840. (name "GND" (effects (font (size 1.27 1.27))))
  1841. (number "1" (effects (font (size 1.27 1.27))))
  1842. )
  1843. )
  1844. )
  1845. )
  1846. (junction (at 75.565 183.515) (diameter 0) (color 0 0 0 0)
  1847. (uuid 01da83ba-b7d7-4348-80da-77ae7b0bdf40)
  1848. )
  1849. (junction (at 22.225 151.13) (diameter 0) (color 0 0 0 0)
  1850. (uuid 0a3564d6-d974-4c4a-b8fd-c6472bd43a66)
  1851. )
  1852. (junction (at 270.51 72.39) (diameter 0) (color 0 0 0 0)
  1853. (uuid 0a61c0ac-c22c-4c49-8d20-b84432b55636)
  1854. )
  1855. (junction (at 39.37 188.595) (diameter 0) (color 0 0 0 0)
  1856. (uuid 0d59f3b8-4f9c-49f9-b9cd-08ac4e3dad8a)
  1857. )
  1858. (junction (at 22.86 111.76) (diameter 0) (color 0 0 0 0)
  1859. (uuid 19918bb8-e570-4bb1-bfa3-c55c905d4dae)
  1860. )
  1861. (junction (at 20.32 64.77) (diameter 0) (color 0 0 0 0)
  1862. (uuid 1a9d5889-4e19-4773-95c4-b4714fe08ce6)
  1863. )
  1864. (junction (at 187.96 27.94) (diameter 0) (color 0 0 0 0)
  1865. (uuid 1e1b8369-76fa-4417-9534-d3a08f3cb791)
  1866. )
  1867. (junction (at 22.86 114.3) (diameter 0) (color 0 0 0 0)
  1868. (uuid 2244d628-c65f-447c-a0c9-50a521e15240)
  1869. )
  1870. (junction (at 240.03 74.93) (diameter 0) (color 0 0 0 0)
  1871. (uuid 24e03471-854b-400a-95f8-9efca52948c5)
  1872. )
  1873. (junction (at 20.32 69.85) (diameter 0) (color 0 0 0 0)
  1874. (uuid 2b159765-7cad-4849-8e18-7508f807e757)
  1875. )
  1876. (junction (at 55.88 179.705) (diameter 0) (color 0 0 0 0)
  1877. (uuid 2dd1b4f7-a660-4be1-b8c7-42e362688154)
  1878. )
  1879. (junction (at 39.37 179.705) (diameter 0) (color 0 0 0 0)
  1880. (uuid 2f424da3-8fae-4941-bc6d-20044787372f)
  1881. )
  1882. (junction (at 22.86 101.6) (diameter 0) (color 0 0 0 0)
  1883. (uuid 3d10c67e-7810-485f-baa5-58b6e12ff060)
  1884. )
  1885. (junction (at 83.185 21.59) (diameter 0) (color 0 0 0 0)
  1886. (uuid 3fa64784-4e55-4fd0-bd53-09c5cc1d3b00)
  1887. )
  1888. (junction (at 240.03 67.31) (diameter 0) (color 0 0 0 0)
  1889. (uuid 4a92382d-f77e-49c3-aed2-5a28adfd6e16)
  1890. )
  1891. (junction (at 20.32 77.47) (diameter 0) (color 0 0 0 0)
  1892. (uuid 4b0eb142-7010-449f-a479-256010e96784)
  1893. )
  1894. (junction (at 195.58 105.41) (diameter 0) (color 0 0 0 0)
  1895. (uuid 4bdb86f8-6942-4676-971e-fbde3ccb4eab)
  1896. )
  1897. (junction (at 22.86 116.84) (diameter 0) (color 0 0 0 0)
  1898. (uuid 508a8f73-fb81-47ca-bc61-77560e18bfe6)
  1899. )
  1900. (junction (at 83.185 145.415) (diameter 0) (color 0 0 0 0)
  1901. (uuid 62a85416-7946-4631-83f9-63278165a17d)
  1902. )
  1903. (junction (at 81.915 21.59) (diameter 0) (color 0 0 0 0)
  1904. (uuid 6e7c2045-2bc7-46aa-8e43-f2f49236058b)
  1905. )
  1906. (junction (at 83.185 142.875) (diameter 0) (color 0 0 0 0)
  1907. (uuid 6f8f3833-808a-4381-9130-c809b41e99d4)
  1908. )
  1909. (junction (at 83.185 155.575) (diameter 0) (color 0 0 0 0)
  1910. (uuid 7d5256dc-078c-40d1-964e-aa17fd8488b3)
  1911. )
  1912. (junction (at 22.86 104.14) (diameter 0) (color 0 0 0 0)
  1913. (uuid 8168f876-987a-44c0-80ec-809fac3b1b35)
  1914. )
  1915. (junction (at 20.32 67.31) (diameter 0) (color 0 0 0 0)
  1916. (uuid 8366af70-aa55-42a3-91ef-4406e7e2dd49)
  1917. )
  1918. (junction (at 83.185 160.655) (diameter 0) (color 0 0 0 0)
  1919. (uuid 84ac9a05-15b6-4005-9a8a-e151f18467cc)
  1920. )
  1921. (junction (at 185.42 20.32) (diameter 0) (color 0 0 0 0)
  1922. (uuid 89848a97-4d29-49c1-8d6e-00831b590e14)
  1923. )
  1924. (junction (at 59.055 151.13) (diameter 0) (color 0 0 0 0)
  1925. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  1926. )
  1927. (junction (at 238.76 20.32) (diameter 0) (color 0 0 0 0)
  1928. (uuid 8ccb24b4-0e44-4932-814f-8fa97f8263ba)
  1929. )
  1930. (junction (at 22.86 99.06) (diameter 0) (color 0 0 0 0)
  1931. (uuid 8dda914d-fddc-4ae2-ae07-b6a80d8f1fd0)
  1932. )
  1933. (junction (at 47.625 151.13) (diameter 0) (color 0 0 0 0)
  1934. (uuid 91fc5800-6029-46b1-848d-ca0091f97267)
  1935. )
  1936. (junction (at 262.89 72.39) (diameter 0) (color 0 0 0 0)
  1937. (uuid 9cb3a541-53a3-456e-878a-1ee036457b68)
  1938. )
  1939. (junction (at 20.32 72.39) (diameter 0) (color 0 0 0 0)
  1940. (uuid a279bd56-4cc5-4669-b621-b86d71033314)
  1941. )
  1942. (junction (at 75.565 175.895) (diameter 0) (color 0 0 0 0)
  1943. (uuid a38a540f-ea5d-44ed-9e0b-f00c4012e9c5)
  1944. )
  1945. (junction (at 83.185 147.955) (diameter 0) (color 0 0 0 0)
  1946. (uuid aa917246-bae8-44b4-bdce-bea4144e351a)
  1947. )
  1948. (junction (at 83.185 165.735) (diameter 0) (color 0 0 0 0)
  1949. (uuid afc08a7a-71f1-4948-9c3c-43e20cb88874)
  1950. )
  1951. (junction (at 75.565 170.815) (diameter 0) (color 0 0 0 0)
  1952. (uuid b058cf5e-0ca8-4161-be5f-ffb49a10c435)
  1953. )
  1954. (junction (at 196.85 116.84) (diameter 0) (color 0 0 0 0)
  1955. (uuid b21a3308-654f-4b8e-80d7-e17fb91af683)
  1956. )
  1957. (junction (at 241.3 27.94) (diameter 0) (color 0 0 0 0)
  1958. (uuid bb223671-4868-4e4d-b7ea-158d7aaa7ce4)
  1959. )
  1960. (junction (at 83.185 163.195) (diameter 0) (color 0 0 0 0)
  1961. (uuid bf888ecc-a536-4cd0-bb23-ddbb5f10af18)
  1962. )
  1963. (junction (at 20.32 82.55) (diameter 0) (color 0 0 0 0)
  1964. (uuid d5d1c7bf-0819-4361-a515-349586f99388)
  1965. )
  1966. (junction (at 75.565 180.975) (diameter 0) (color 0 0 0 0)
  1967. (uuid e87b5f99-5602-4ad6-933f-ef5ac40bfcba)
  1968. )
  1969. (junction (at 22.86 109.22) (diameter 0) (color 0 0 0 0)
  1970. (uuid e93b3a94-f896-4b0e-82d4-bbceda747c20)
  1971. )
  1972. (junction (at 83.185 153.035) (diameter 0) (color 0 0 0 0)
  1973. (uuid ecfc1b87-0617-4556-abf0-ba31fa2b9826)
  1974. )
  1975. (junction (at 20.32 74.93) (diameter 0) (color 0 0 0 0)
  1976. (uuid edc7fb35-723b-413a-b0f7-2a68cd66346d)
  1977. )
  1978. (junction (at 20.32 80.01) (diameter 0) (color 0 0 0 0)
  1979. (uuid f37969dd-af95-4a8e-b20b-4c5dbbd56bf4)
  1980. )
  1981. (junction (at 83.185 150.495) (diameter 0) (color 0 0 0 0)
  1982. (uuid f592741b-ee87-4c95-8f57-6e9bf8044aef)
  1983. )
  1984. (junction (at 22.86 106.68) (diameter 0) (color 0 0 0 0)
  1985. (uuid feb7a499-4e0f-43a7-8dfa-b17df7e78f50)
  1986. )
  1987. (wire (pts (xy 194.31 116.84) (xy 196.85 116.84))
  1988. (stroke (width 0) (type default))
  1989. (uuid 01b7d12d-abdb-4997-b2ea-69f29781be0e)
  1990. )
  1991. (wire (pts (xy 75.565 170.815) (xy 75.565 165.735))
  1992. (stroke (width 0) (type default))
  1993. (uuid 045aa366-f8b9-4746-aabf-1894fb15986b)
  1994. )
  1995. (wire (pts (xy 185.42 20.32) (xy 170.18 20.32))
  1996. (stroke (width 0) (type default))
  1997. (uuid 04d8e6b4-0757-435b-9134-440b470177d5)
  1998. )
  1999. (polyline (pts (xy 12.7 142.24) (xy 12.7 165.735))
  2000. (stroke (width 0) (type default))
  2001. (uuid 073a068b-f5a0-4bc6-9f35-f7eddd8724e4)
  2002. )
  2003. (polyline (pts (xy 278.765 50.8) (xy 253.365 50.8))
  2004. (stroke (width 0) (type default))
  2005. (uuid 0d0014a6-fbed-473a-8c18-97551a96d074)
  2006. )
  2007. (wire (pts (xy 22.86 111.76) (xy 22.86 114.3))
  2008. (stroke (width 0) (type default))
  2009. (uuid 11534cea-c0be-4148-81e7-6226485fd534)
  2010. )
  2011. (polyline (pts (xy 12.7 12.7) (xy 60.325 12.7))
  2012. (stroke (width 0) (type default))
  2013. (uuid 117bf403-4eec-4afb-9b04-523f3c52000e)
  2014. )
  2015. (wire (pts (xy 83.185 153.035) (xy 83.185 155.575))
  2016. (stroke (width 0) (type default))
  2017. (uuid 124aaffd-8faf-46a0-a697-4004343b3dfa)
  2018. )
  2019. (polyline (pts (xy 12.7 165.735) (xy 12.7 198.12))
  2020. (stroke (width 0) (type default))
  2021. (uuid 12b26838-f08a-4314-b977-8ba3b0165090)
  2022. )
  2023. (wire (pts (xy 75.565 180.975) (xy 75.565 175.895))
  2024. (stroke (width 0) (type default))
  2025. (uuid 13af6d0b-e7f1-4b31-be75-eaf950ab7631)
  2026. )
  2027. (wire (pts (xy 75.565 170.815) (xy 75.565 175.895))
  2028. (stroke (width 0) (type default))
  2029. (uuid 145f6a29-a86e-46eb-9791-8f733f58b45e)
  2030. )
  2031. (wire (pts (xy 241.3 27.94) (xy 241.3 29.21))
  2032. (stroke (width 0) (type default))
  2033. (uuid 14f60314-3390-4b57-85d9-4fbb1c7180a8)
  2034. )
  2035. (polyline (pts (xy 278.765 88.265) (xy 278.765 50.8))
  2036. (stroke (width 0) (type default))
  2037. (uuid 16850e47-1acc-490f-8565-75654a9f659e)
  2038. )
  2039. (polyline (pts (xy 126.365 97.155) (xy 153.67 97.155))
  2040. (stroke (width 0) (type default))
  2041. (uuid 18dd8126-6c70-412c-ab2d-42be44fa8cec)
  2042. )
  2043. (polyline (pts (xy 205.74 50.8) (xy 205.74 88.265))
  2044. (stroke (width 0) (type default))
  2045. (uuid 19ad4b4c-ccc2-4baa-972b-9485525cd7a8)
  2046. )
  2047. (polyline (pts (xy 125.73 92.71) (xy 177.8 92.71))
  2048. (stroke (width 0) (type default))
  2049. (uuid 1a9f03ac-fdd3-4907-9182-f18d40549fa3)
  2050. )
  2051. (wire (pts (xy 75.565 183.515) (xy 75.565 180.975))
  2052. (stroke (width 0) (type default))
  2053. (uuid 1b826b20-3d81-4303-abc7-eae7aefcc71b)
  2054. )
  2055. (wire (pts (xy 45.72 114.3) (xy 46.99 114.3))
  2056. (stroke (width 0) (type default))
  2057. (uuid 1efea006-bd29-42ec-88de-d295cbe0aeb7)
  2058. )
  2059. (wire (pts (xy 238.76 27.94) (xy 241.3 27.94))
  2060. (stroke (width 0) (type default))
  2061. (uuid 20d01bbf-a4ec-441a-80e5-4f80c3a0cf61)
  2062. )
  2063. (wire (pts (xy 185.42 27.94) (xy 187.96 27.94))
  2064. (stroke (width 0) (type default))
  2065. (uuid 238aff97-c41c-47eb-bac3-cfaecd4c809e)
  2066. )
  2067. (wire (pts (xy 270.51 72.39) (xy 270.51 83.82))
  2068. (stroke (width 0) (type default))
  2069. (uuid 25cf5a75-1ea4-4230-a3d1-5edd822ee5af)
  2070. )
  2071. (polyline (pts (xy 177.165 93.98) (xy 178.435 93.98))
  2072. (stroke (width 0) (type default))
  2073. (uuid 27ad9467-0110-437b-8d43-acd6e1d29ce8)
  2074. )
  2075. (wire (pts (xy 240.03 74.93) (xy 250.19 74.93))
  2076. (stroke (width 0) (type default))
  2077. (uuid 27e1e514-3f09-4c64-a24e-07e55830d86d)
  2078. )
  2079. (wire (pts (xy 229.87 67.31) (xy 240.03 67.31))
  2080. (stroke (width 0) (type default))
  2081. (uuid 2800cd5d-5013-41ce-9bb4-bec8c2bf62c4)
  2082. )
  2083. (wire (pts (xy 43.18 87.63) (xy 45.72 87.63))
  2084. (stroke (width 0) (type default))
  2085. (uuid 29d7e400-6202-4736-b49f-bba357907bcc)
  2086. )
  2087. (wire (pts (xy 20.32 77.47) (xy 20.32 80.01))
  2088. (stroke (width 0) (type default))
  2089. (uuid 2fbfb9d5-85c2-4840-9f3c-1609f9a44ec2)
  2090. )
  2091. (wire (pts (xy 262.89 72.39) (xy 262.89 83.82))
  2092. (stroke (width 0) (type default))
  2093. (uuid 31eb8621-9985-462b-ae53-47150461458d)
  2094. )
  2095. (polyline (pts (xy 271.78 163.83) (xy 177.165 163.83))
  2096. (stroke (width 0) (type default))
  2097. (uuid 328e25c9-603f-4c8a-9c5e-59a2aa96af45)
  2098. )
  2099. (polyline (pts (xy 69.215 165.735) (xy 69.215 142.24))
  2100. (stroke (width 0) (type default))
  2101. (uuid 34ed101b-8755-4755-b98c-98ab0a5b9a9c)
  2102. )
  2103. (polyline (pts (xy 12.7 12.7) (xy 12.7 142.24))
  2104. (stroke (width 0) (type default))
  2105. (uuid 36b098e8-3421-42bd-b043-a8d8b61701f0)
  2106. )
  2107. (wire (pts (xy 20.32 72.39) (xy 20.32 74.93))
  2108. (stroke (width 0) (type default))
  2109. (uuid 36e9229c-7bfe-4a1f-a186-db2269dc7cc9)
  2110. )
  2111. (wire (pts (xy 247.65 139.7) (xy 255.27 139.7))
  2112. (stroke (width 0) (type default))
  2113. (uuid 388a31c7-9129-4758-abb1-d8603a38a3ee)
  2114. )
  2115. (wire (pts (xy 270.51 60.325) (xy 270.51 72.39))
  2116. (stroke (width 0) (type default))
  2117. (uuid 3ac4ba1d-145b-430d-99a8-c3767c454039)
  2118. )
  2119. (wire (pts (xy 247.65 149.86) (xy 255.27 149.86))
  2120. (stroke (width 0) (type default))
  2121. (uuid 3c1fb1b2-ce6c-4557-84f0-d4326fb86a06)
  2122. )
  2123. (wire (pts (xy 75.565 165.735) (xy 83.185 165.735))
  2124. (stroke (width 0) (type default))
  2125. (uuid 3d5c6227-de2a-4ae5-a171-95bafe63692f)
  2126. )
  2127. (wire (pts (xy 247.65 132.08) (xy 255.27 132.08))
  2128. (stroke (width 0) (type default))
  2129. (uuid 3d9703bd-c5c0-4a4b-bfe4-0c754b6013cf)
  2130. )
  2131. (polyline (pts (xy 205.74 88.265) (xy 278.765 88.265))
  2132. (stroke (width 0) (type default))
  2133. (uuid 3dc5d30c-ed5f-467c-8516-a96c3d135cd5)
  2134. )
  2135. (polyline (pts (xy 177.165 163.83) (xy 177.165 93.98))
  2136. (stroke (width 0) (type default))
  2137. (uuid 43fe4364-5a4b-4819-9328-da72648fef84)
  2138. )
  2139. (wire (pts (xy 48.26 109.22) (xy 45.72 109.22))
  2140. (stroke (width 0) (type default))
  2141. (uuid 468652a9-ecbc-4f8a-9e52-805cd4103819)
  2142. )
  2143. (wire (pts (xy 20.32 61.595) (xy 20.32 64.77))
  2144. (stroke (width 0) (type default))
  2145. (uuid 47c6bf1d-a304-41de-8a86-e760497eac4e)
  2146. )
  2147. (wire (pts (xy 197.485 131.445) (xy 197.485 119.38))
  2148. (stroke (width 0) (type default))
  2149. (uuid 49e28785-58d2-4e35-a21d-7cb3f7f28de9)
  2150. )
  2151. (wire (pts (xy 247.65 142.24) (xy 255.27 142.24))
  2152. (stroke (width 0) (type default))
  2153. (uuid 4a9336e2-e75a-4b76-b26a-8f93f87d3868)
  2154. )
  2155. (wire (pts (xy 83.185 183.515) (xy 75.565 183.515))
  2156. (stroke (width 0) (type default))
  2157. (uuid 4d3b469f-9986-4651-93a9-aa2aacbed144)
  2158. )
  2159. (wire (pts (xy 43.18 85.09) (xy 45.72 85.09))
  2160. (stroke (width 0) (type default))
  2161. (uuid 50647abc-517d-4d7e-ae68-0b501840a2fb)
  2162. )
  2163. (wire (pts (xy 31.75 188.595) (xy 39.37 188.595))
  2164. (stroke (width 0) (type default))
  2165. (uuid 55d6f510-4537-47a0-8fa1-f72f9eb17fb1)
  2166. )
  2167. (wire (pts (xy 210.82 111.76) (xy 195.58 111.76))
  2168. (stroke (width 0) (type default))
  2169. (uuid 58bc0d94-ad09-47be-bb78-c048eab594f8)
  2170. )
  2171. (wire (pts (xy 14.605 151.13) (xy 22.225 151.13))
  2172. (stroke (width 0) (type default))
  2173. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  2174. )
  2175. (polyline (pts (xy 126.365 97.155) (xy 126.365 123.19))
  2176. (stroke (width 0) (type default))
  2177. (uuid 5d15cae3-1ef0-4bff-a3f2-11a15eecda43)
  2178. )
  2179. (wire (pts (xy 185.42 20.32) (xy 190.5 20.32))
  2180. (stroke (width 0) (type default))
  2181. (uuid 5d3c5225-9052-4562-83ca-c9aba3ecc347)
  2182. )
  2183. (wire (pts (xy 191.77 105.41) (xy 195.58 105.41))
  2184. (stroke (width 0) (type default))
  2185. (uuid 6034ad4c-748b-4f93-8095-ab021baddcd7)
  2186. )
  2187. (polyline (pts (xy 71.12 125.73) (xy 122.555 125.73))
  2188. (stroke (width 0) (type default))
  2189. (uuid 6233cbc2-7f82-426c-a410-c5ac16a851a1)
  2190. )
  2191. (polyline (pts (xy 12.7 165.735) (xy 69.215 165.735))
  2192. (stroke (width 0) (type default))
  2193. (uuid 62fcce5e-fbc6-496a-a34f-e186d6c40a47)
  2194. )
  2195. (wire (pts (xy 45.72 104.14) (xy 48.26 104.14))
  2196. (stroke (width 0) (type default))
  2197. (uuid 63abffb1-6f35-4db2-8c2a-bd25b9c35f3e)
  2198. )
  2199. (wire (pts (xy 75.565 175.895) (xy 83.185 175.895))
  2200. (stroke (width 0) (type default))
  2201. (uuid 64c8f2f5-7a4c-4408-b4f9-72475bd07ec6)
  2202. )
  2203. (polyline (pts (xy 125.73 55.88) (xy 177.8 55.88))
  2204. (stroke (width 0) (type default))
  2205. (uuid 65290ad4-f2fe-470b-aea6-bf187e652d33)
  2206. )
  2207. (wire (pts (xy 81.915 21.59) (xy 83.185 21.59))
  2208. (stroke (width 0) (type default))
  2209. (uuid 65d1d085-8c5c-4a6a-b2ca-fbf359339e66)
  2210. )
  2211. (wire (pts (xy 20.32 69.85) (xy 20.32 72.39))
  2212. (stroke (width 0) (type default))
  2213. (uuid 662a5bcb-ea6b-44b7-8fea-347656cb97af)
  2214. )
  2215. (wire (pts (xy 43.18 72.39) (xy 45.72 72.39))
  2216. (stroke (width 0) (type default))
  2217. (uuid 66f69e18-72ff-450b-98f4-de6aeca7088e)
  2218. )
  2219. (wire (pts (xy 38.735 139.7) (xy 36.195 139.7))
  2220. (stroke (width 0) (type default))
  2221. (uuid 6a769106-5b1e-445a-9bfd-a3bf5ba898cb)
  2222. )
  2223. (wire (pts (xy 22.86 109.22) (xy 22.86 111.76))
  2224. (stroke (width 0) (type default))
  2225. (uuid 6b8b86b4-62f9-4ee6-b5a5-04af26241b72)
  2226. )
  2227. (wire (pts (xy 75.565 183.515) (xy 75.565 187.325))
  2228. (stroke (width 0) (type default))
  2229. (uuid 6be820e1-5a23-41d8-9a90-b537312251b4)
  2230. )
  2231. (wire (pts (xy 45.72 80.01) (xy 43.18 80.01))
  2232. (stroke (width 0) (type default))
  2233. (uuid 6d8e4355-ea4c-4fe3-a458-49bd2a9004b7)
  2234. )
  2235. (wire (pts (xy 28.575 27.305) (xy 28.575 31.115))
  2236. (stroke (width 0) (type default))
  2237. (uuid 6feb1714-a5ae-4479-9ced-420db7ce8340)
  2238. )
  2239. (wire (pts (xy 187.96 27.94) (xy 187.96 29.21))
  2240. (stroke (width 0) (type default))
  2241. (uuid 7061d9ed-fc6d-4fd8-ab12-5ff2d9ac389f)
  2242. )
  2243. (wire (pts (xy 45.72 82.55) (xy 43.18 82.55))
  2244. (stroke (width 0) (type default))
  2245. (uuid 70693697-494f-4850-915f-3a74070a1124)
  2246. )
  2247. (wire (pts (xy 22.86 101.6) (xy 22.86 104.14))
  2248. (stroke (width 0) (type default))
  2249. (uuid 718c292f-58a5-47d6-b95e-38542e9866a5)
  2250. )
  2251. (wire (pts (xy 195.58 111.76) (xy 195.58 105.41))
  2252. (stroke (width 0) (type default))
  2253. (uuid 74c474fb-f49a-4778-8f4f-420682e4d4d9)
  2254. )
  2255. (wire (pts (xy 83.185 147.955) (xy 83.185 150.495))
  2256. (stroke (width 0) (type default))
  2257. (uuid 75da0c34-4a4f-4bd6-8f01-22a1646b557d)
  2258. )
  2259. (wire (pts (xy 212.725 66.675) (xy 212.725 67.945))
  2260. (stroke (width 0) (type default))
  2261. (uuid 768fe194-17fb-4a10-b5fe-66b77ba582e3)
  2262. )
  2263. (wire (pts (xy 45.72 116.84) (xy 48.26 116.84))
  2264. (stroke (width 0) (type default))
  2265. (uuid 79319527-7737-4271-83d4-a3305b1ca871)
  2266. )
  2267. (wire (pts (xy 36.195 24.765) (xy 26.035 24.765))
  2268. (stroke (width 0) (type default))
  2269. (uuid 79476267-290e-445f-995b-0afd0e11a4b5)
  2270. )
  2271. (wire (pts (xy 83.185 21.59) (xy 84.455 21.59))
  2272. (stroke (width 0) (type default))
  2273. (uuid 7c339254-e6ea-4309-bd38-d3d7b8bb76ac)
  2274. )
  2275. (wire (pts (xy 196.85 116.84) (xy 210.82 116.84))
  2276. (stroke (width 0) (type default))
  2277. (uuid 7caae0a2-8607-4da0-b24f-0995bad01e6a)
  2278. )
  2279. (polyline (pts (xy 125.73 55.88) (xy 125.73 92.71))
  2280. (stroke (width 0) (type default))
  2281. (uuid 7ceabcb8-7164-41e3-8943-56331016b201)
  2282. )
  2283. (polyline (pts (xy 73.025 194.31) (xy 121.92 194.31))
  2284. (stroke (width 0) (type default))
  2285. (uuid 7d5ec93f-6f97-4dba-af9d-9bcd6f2cd196)
  2286. )
  2287. (polyline (pts (xy 69.215 142.24) (xy 60.325 142.24))
  2288. (stroke (width 0) (type default))
  2289. (uuid 7db45ae8-e44f-4211-a77b-8bb928ec4ac0)
  2290. )
  2291. (polyline (pts (xy 144.78 12.065) (xy 144.78 50.8))
  2292. (stroke (width 0) (type default))
  2293. (uuid 7dd6f478-680e-4e09-be0b-778b08cee689)
  2294. )
  2295. (polyline (pts (xy 67.31 12.7) (xy 67.31 45.72))
  2296. (stroke (width 0) (type default))
  2297. (uuid 7df1ea34-41e4-4929-8347-3fe260349e7f)
  2298. )
  2299. (wire (pts (xy 20.32 82.55) (xy 20.32 85.09))
  2300. (stroke (width 0) (type default))
  2301. (uuid 7df9acad-ba94-4199-965d-2e2bfbd9dc76)
  2302. )
  2303. (wire (pts (xy 83.185 170.815) (xy 75.565 170.815))
  2304. (stroke (width 0) (type default))
  2305. (uuid 8378365f-bf03-40ae-9894-5a1fba79ced1)
  2306. )
  2307. (wire (pts (xy 20.32 64.77) (xy 20.32 67.31))
  2308. (stroke (width 0) (type default))
  2309. (uuid 84f7eaa6-59a6-4634-b0b5-54536da839fa)
  2310. )
  2311. (wire (pts (xy 22.86 104.14) (xy 22.86 106.68))
  2312. (stroke (width 0) (type default))
  2313. (uuid 85081407-df21-4c39-a28b-35f45545527c)
  2314. )
  2315. (polyline (pts (xy 121.92 130.175) (xy 73.025 130.175))
  2316. (stroke (width 0) (type default))
  2317. (uuid 861bafcb-437a-4d91-a6bc-ba3fadcafedf)
  2318. )
  2319. (wire (pts (xy 22.86 116.84) (xy 22.86 119.38))
  2320. (stroke (width 0) (type default))
  2321. (uuid 89029c9d-b5ec-4046-bad2-5f33e2dd2819)
  2322. )
  2323. (wire (pts (xy 20.32 67.31) (xy 20.32 69.85))
  2324. (stroke (width 0) (type default))
  2325. (uuid 8e232cf9-ee67-42c3-8628-d09cda2262c6)
  2326. )
  2327. (wire (pts (xy 22.225 151.13) (xy 27.305 151.13))
  2328. (stroke (width 0) (type default))
  2329. (uuid 8f4ac7ce-7590-40c5-98d1-89d99fb00d0c)
  2330. )
  2331. (wire (pts (xy 83.185 145.415) (xy 83.185 147.955))
  2332. (stroke (width 0) (type default))
  2333. (uuid 90f82a9d-42dc-48fc-90e9-f4947d45acf2)
  2334. )
  2335. (wire (pts (xy 47.625 151.13) (xy 59.055 151.13))
  2336. (stroke (width 0) (type default))
  2337. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  2338. )
  2339. (wire (pts (xy 83.185 142.875) (xy 83.185 145.415))
  2340. (stroke (width 0) (type default))
  2341. (uuid 931f0535-5881-4b28-9a39-07bf637e2ec9)
  2342. )
  2343. (wire (pts (xy 240.03 67.31) (xy 250.19 67.31))
  2344. (stroke (width 0) (type default))
  2345. (uuid 95a69561-0418-4ef4-b8f8-fff17d299c3a)
  2346. )
  2347. (wire (pts (xy 39.37 178.435) (xy 39.37 179.705))
  2348. (stroke (width 0) (type default))
  2349. (uuid 98f51f5d-88ef-49b9-a20f-fe32c3cacf46)
  2350. )
  2351. (wire (pts (xy 247.65 137.16) (xy 255.27 137.16))
  2352. (stroke (width 0) (type default))
  2353. (uuid 9cc95975-965e-4b12-9e01-27665c42613d)
  2354. )
  2355. (wire (pts (xy 31.75 179.705) (xy 39.37 179.705))
  2356. (stroke (width 0) (type default))
  2357. (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
  2358. )
  2359. (polyline (pts (xy 121.92 194.31) (xy 121.92 130.175))
  2360. (stroke (width 0) (type default))
  2361. (uuid 9fcd9dc7-bff6-4490-b962-9f88c101f206)
  2362. )
  2363. (wire (pts (xy 187.96 27.94) (xy 190.5 27.94))
  2364. (stroke (width 0) (type default))
  2365. (uuid a31010c1-1452-4734-b445-35c653872929)
  2366. )
  2367. (polyline (pts (xy 253.365 12.7) (xy 253.365 50.8))
  2368. (stroke (width 0) (type default))
  2369. (uuid a41be785-b276-433a-964a-bcc6922311f9)
  2370. )
  2371. (wire (pts (xy 38.1 55.245) (xy 35.56 55.245))
  2372. (stroke (width 0) (type default))
  2373. (uuid a6e464b2-6818-4a0e-9215-8abfad834fe5)
  2374. )
  2375. (polyline (pts (xy 126.365 123.19) (xy 153.67 123.19))
  2376. (stroke (width 0) (type default))
  2377. (uuid a9113276-db0b-41a7-9cc7-75faba30308d)
  2378. )
  2379. (polyline (pts (xy 71.12 45.72) (xy 71.12 125.73))
  2380. (stroke (width 0) (type default))
  2381. (uuid aa2b1952-d7b4-40b6-824f-3d7f7bdb4e01)
  2382. )
  2383. (polyline (pts (xy 12.7 198.12) (xy 60.96 198.12))
  2384. (stroke (width 0) (type default))
  2385. (uuid ab2f4398-c846-4901-905b-35786e201d2a)
  2386. )
  2387. (wire (pts (xy 22.86 99.06) (xy 22.86 101.6))
  2388. (stroke (width 0) (type default))
  2389. (uuid af0a8e30-2913-4a60-a901-8e3fffab4ea1)
  2390. )
  2391. (wire (pts (xy 42.545 151.13) (xy 47.625 151.13))
  2392. (stroke (width 0) (type default))
  2393. (uuid af186015-d283-4209-aade-a247e5de01df)
  2394. )
  2395. (wire (pts (xy 240.03 63.5) (xy 240.03 67.31))
  2396. (stroke (width 0) (type default))
  2397. (uuid b0e91245-e619-46e0-8c79-43598f45910e)
  2398. )
  2399. (wire (pts (xy 262.89 60.325) (xy 262.89 72.39))
  2400. (stroke (width 0) (type default))
  2401. (uuid b1dc922d-0bd8-4496-8e4f-287e94966a21)
  2402. )
  2403. (wire (pts (xy 83.185 160.655) (xy 83.185 163.195))
  2404. (stroke (width 0) (type default))
  2405. (uuid b326b989-7191-4b69-a3a7-f0fec7f92a02)
  2406. )
  2407. (polyline (pts (xy 67.31 12.7) (xy 112.395 12.7))
  2408. (stroke (width 0) (type default))
  2409. (uuid b3282b94-6fc9-4a51-ad5f-ded10b49e44f)
  2410. )
  2411. (wire (pts (xy 196.85 120.015) (xy 196.85 116.84))
  2412. (stroke (width 0) (type default))
  2413. (uuid b5378072-7900-4541-8509-7aa09a529326)
  2414. )
  2415. (wire (pts (xy 247.65 144.78) (xy 255.27 144.78))
  2416. (stroke (width 0) (type default))
  2417. (uuid b659d838-f156-4cc3-993e-6ecbf11291a0)
  2418. )
  2419. (wire (pts (xy 48.26 111.76) (xy 45.72 111.76))
  2420. (stroke (width 0) (type default))
  2421. (uuid bb730b65-a8d7-4867-bafc-f20b14dd7d07)
  2422. )
  2423. (wire (pts (xy 31.75 196.215) (xy 39.37 196.215))
  2424. (stroke (width 0) (type default))
  2425. (uuid be14b7fe-1976-4433-b004-673fe57424ca)
  2426. )
  2427. (polyline (pts (xy 177.8 92.71) (xy 177.8 55.88))
  2428. (stroke (width 0) (type default))
  2429. (uuid be62d84f-d513-4eb0-9caa-1be1edb9a35a)
  2430. )
  2431. (wire (pts (xy 43.18 77.47) (xy 45.72 77.47))
  2432. (stroke (width 0) (type default))
  2433. (uuid be792050-cc06-477b-a5d4-65cb74351d22)
  2434. )
  2435. (wire (pts (xy 39.37 179.705) (xy 55.88 179.705))
  2436. (stroke (width 0) (type default))
  2437. (uuid bf0862f0-7b4d-4da4-a5e8-91a9bdbee56f)
  2438. )
  2439. (polyline (pts (xy 153.67 123.19) (xy 153.67 97.155))
  2440. (stroke (width 0) (type default))
  2441. (uuid c0ec0f9e-ca5a-4847-96d1-d14e3cab80cd)
  2442. )
  2443. (wire (pts (xy 83.185 180.975) (xy 75.565 180.975))
  2444. (stroke (width 0) (type default))
  2445. (uuid c2afe911-c5cc-4c44-8b9e-210f5608c245)
  2446. )
  2447. (wire (pts (xy 247.65 124.46) (xy 255.27 124.46))
  2448. (stroke (width 0) (type default))
  2449. (uuid c8ca2d9b-237d-4a3b-8fe1-05ccf83c4aaa)
  2450. )
  2451. (polyline (pts (xy 122.555 45.72) (xy 112.395 45.72))
  2452. (stroke (width 0) (type default))
  2453. (uuid c8f45d7b-7299-4a2e-bf9d-c92026c64588)
  2454. )
  2455. (wire (pts (xy 247.65 129.54) (xy 255.27 129.54))
  2456. (stroke (width 0) (type default))
  2457. (uuid ca167c75-32b2-451a-859b-eef424c8ad6c)
  2458. )
  2459. (wire (pts (xy 22.86 95.885) (xy 22.86 99.06))
  2460. (stroke (width 0) (type default))
  2461. (uuid cc2a10a2-77d3-45dc-ad45-a9902e2fd37b)
  2462. )
  2463. (wire (pts (xy 39.37 188.595) (xy 39.37 179.705))
  2464. (stroke (width 0) (type default))
  2465. (uuid cc5f502c-d197-4177-a104-84dac270a708)
  2466. )
  2467. (wire (pts (xy 247.65 152.4) (xy 255.27 152.4))
  2468. (stroke (width 0) (type default))
  2469. (uuid cd4da435-e4b7-4f11-970f-f993b191fb30)
  2470. )
  2471. (wire (pts (xy 43.18 69.85) (xy 45.72 69.85))
  2472. (stroke (width 0) (type default))
  2473. (uuid ce97abce-aca6-4c1b-a51c-5bc99e9b2d0a)
  2474. )
  2475. (polyline (pts (xy 60.325 142.24) (xy 60.325 12.7))
  2476. (stroke (width 0) (type default))
  2477. (uuid d14528ff-2df4-4599-bf0f-cbf0ed476465)
  2478. )
  2479. (polyline (pts (xy 73.025 130.175) (xy 73.025 194.31))
  2480. (stroke (width 0) (type default))
  2481. (uuid d156d793-7c4e-4f02-87ef-29971334cb3d)
  2482. )
  2483. (polyline (pts (xy 122.555 125.73) (xy 122.555 45.72))
  2484. (stroke (width 0) (type default))
  2485. (uuid d24d2374-f45d-4761-90c1-9772ecee086d)
  2486. )
  2487. (polyline (pts (xy 271.78 93.98) (xy 271.78 163.83))
  2488. (stroke (width 0) (type default))
  2489. (uuid d38a8b02-9606-4bc6-a29c-3680547a2510)
  2490. )
  2491. (wire (pts (xy 39.37 196.215) (xy 39.37 188.595))
  2492. (stroke (width 0) (type default))
  2493. (uuid d47505f1-5520-43a5-a724-9f7a5a862d2d)
  2494. )
  2495. (polyline (pts (xy 112.395 45.72) (xy 112.395 12.7))
  2496. (stroke (width 0) (type default))
  2497. (uuid d4909a60-e437-4fd3-b493-ecd566d3c5e2)
  2498. )
  2499. (polyline (pts (xy 178.435 93.98) (xy 271.78 93.98))
  2500. (stroke (width 0) (type default))
  2501. (uuid d54aa61d-87ab-4233-a1e6-341c450e99fc)
  2502. )
  2503. (wire (pts (xy 20.32 74.93) (xy 20.32 77.47))
  2504. (stroke (width 0) (type default))
  2505. (uuid d6d9978a-6fa3-4453-b368-9be0a99154fc)
  2506. )
  2507. (wire (pts (xy 45.72 121.92) (xy 48.26 121.92))
  2508. (stroke (width 0) (type default))
  2509. (uuid da71bd65-9834-4bd5-a36c-00578b61cfc7)
  2510. )
  2511. (wire (pts (xy 22.86 106.68) (xy 22.86 109.22))
  2512. (stroke (width 0) (type default))
  2513. (uuid dc7f64a9-1766-4ede-84cd-dee93f5eec15)
  2514. )
  2515. (wire (pts (xy 48.26 119.38) (xy 45.72 119.38))
  2516. (stroke (width 0) (type default))
  2517. (uuid dc92c41a-1881-4301-90d1-5fbc35c00da5)
  2518. )
  2519. (wire (pts (xy 247.65 127) (xy 255.27 127))
  2520. (stroke (width 0) (type default))
  2521. (uuid de04028b-b742-4a42-a045-7fec45155979)
  2522. )
  2523. (wire (pts (xy 241.3 27.94) (xy 243.84 27.94))
  2524. (stroke (width 0) (type default))
  2525. (uuid dedb19e8-6bdc-4eb0-b26d-f054f369b30d)
  2526. )
  2527. (wire (pts (xy 83.185 150.495) (xy 83.185 153.035))
  2528. (stroke (width 0) (type default))
  2529. (uuid e1700aa2-4af4-425f-8575-93d862812082)
  2530. )
  2531. (wire (pts (xy 22.86 114.3) (xy 22.86 116.84))
  2532. (stroke (width 0) (type default))
  2533. (uuid e1a80b25-7836-4bce-bfb1-624b358ef96b)
  2534. )
  2535. (polyline (pts (xy 67.31 45.72) (xy 112.395 45.72))
  2536. (stroke (width 0) (type default))
  2537. (uuid e2c7665c-8dcb-44f7-9173-cbf0a5f103e6)
  2538. )
  2539. (wire (pts (xy 197.485 119.38) (xy 210.82 119.38))
  2540. (stroke (width 0) (type default))
  2541. (uuid e2cc9117-ac17-4845-b1a3-d1cc426a4b53)
  2542. )
  2543. (polyline (pts (xy 144.78 12.7) (xy 253.365 12.7))
  2544. (stroke (width 0) (type default))
  2545. (uuid e3a3f899-19a8-4a14-bb4e-0cdccbf8cdb3)
  2546. )
  2547. (wire (pts (xy 75.565 21.59) (xy 81.915 21.59))
  2548. (stroke (width 0) (type default))
  2549. (uuid e40bd9fa-1364-4001-bf8a-47b8398a885a)
  2550. )
  2551. (wire (pts (xy 238.76 20.32) (xy 243.84 20.32))
  2552. (stroke (width 0) (type default))
  2553. (uuid e7c24a92-1bb1-4b79-acc0-5cefbe0870f3)
  2554. )
  2555. (wire (pts (xy 20.32 80.01) (xy 20.32 82.55))
  2556. (stroke (width 0) (type default))
  2557. (uuid e93e1099-41a7-4616-8815-1e2d53be0d56)
  2558. )
  2559. (wire (pts (xy 83.185 140.335) (xy 83.185 142.875))
  2560. (stroke (width 0) (type default))
  2561. (uuid e9f57f40-05a8-41c4-883e-a4497caaa252)
  2562. )
  2563. (polyline (pts (xy 12.7 142.24) (xy 60.325 142.24))
  2564. (stroke (width 0) (type default))
  2565. (uuid eac4dd4b-9366-42f0-96a1-cdf1a8025383)
  2566. )
  2567. (wire (pts (xy 229.87 74.93) (xy 240.03 74.93))
  2568. (stroke (width 0) (type default))
  2569. (uuid f235517c-8e0f-4cf2-af17-013ec727b082)
  2570. )
  2571. (wire (pts (xy 45.72 106.68) (xy 48.26 106.68))
  2572. (stroke (width 0) (type default))
  2573. (uuid f5747526-fb8c-44d1-ad90-201bbddd710e)
  2574. )
  2575. (polyline (pts (xy 253.365 50.8) (xy 144.78 50.8))
  2576. (stroke (width 0) (type default))
  2577. (uuid f7280716-f331-464f-b918-6f363c9ce258)
  2578. )
  2579. (wire (pts (xy 45.72 74.93) (xy 43.18 74.93))
  2580. (stroke (width 0) (type default))
  2581. (uuid f7374db0-2e5c-4dc5-81ca-357127429aae)
  2582. )
  2583. (wire (pts (xy 83.185 155.575) (xy 83.185 160.655))
  2584. (stroke (width 0) (type default))
  2585. (uuid f7d38bdc-bc45-4687-8c00-a70e51f9753f)
  2586. )
  2587. (wire (pts (xy 83.185 163.195) (xy 83.185 165.735))
  2588. (stroke (width 0) (type default))
  2589. (uuid f9117aab-a2c0-4875-be69-1a7a3187c8fc)
  2590. )
  2591. (wire (pts (xy 26.035 27.305) (xy 28.575 27.305))
  2592. (stroke (width 0) (type default))
  2593. (uuid f9eceb57-c0a4-4a9b-829c-1f580bc9e3ff)
  2594. )
  2595. (wire (pts (xy 238.76 20.32) (xy 223.52 20.32))
  2596. (stroke (width 0) (type default))
  2597. (uuid fd199201-2aad-4e05-a4d2-96469507f3d4)
  2598. )
  2599. (polyline (pts (xy 60.96 198.12) (xy 60.96 165.735))
  2600. (stroke (width 0) (type default))
  2601. (uuid fd360a76-5ae9-41bd-9dcd-1870dfc60abc)
  2602. )
  2603. (text "Power Distribution" (at 22.86 169.545 0)
  2604. (effects (font (size 1.27 1.27)) (justify left bottom))
  2605. (uuid 07b33c92-e2cd-4ec1-8e24-885b12ae4c75)
  2606. )
  2607. (text "© 2022 - 2023 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"
  2608. (at 179.07 173.99 0)
  2609. (effects (font (size 1.27 1.27)) (justify left bottom))
  2610. (uuid 19031a68-6f7c-490b-9ac3-1a0fb5922fa3)
  2611. )
  2612. (text "October 2023" (at 205.74 194.31 0)
  2613. (effects (font (size 1.27 1.27)) (justify left bottom))
  2614. (uuid 4a62707e-7c1a-4a19-b9e8-5644f6594929)
  2615. )
  2616. (text "SCSI Connector" (at 87.63 193.04 0)
  2617. (effects (font (size 1.27 1.27)) (justify left bottom))
  2618. (uuid 8c028f75-1e90-4a3d-8b05-71f8bfbec942)
  2619. )
  2620. (text "Active SCSI Termination" (at 33.655 37.465 0)
  2621. (effects (font (size 1.27 1.27)) (justify left bottom))
  2622. (uuid 8c9a9a26-b6f4-4afd-82a2-641b53909b65)
  2623. )
  2624. (text "PUP Necessary" (at 132.08 110.49 0)
  2625. (effects (font (size 1.27 1.27)) (justify left bottom))
  2626. (uuid 93a9691c-32b0-4828-b405-ab241e99f142)
  2627. )
  2628. (text "MicroSD Card" (at 143.51 90.805 0)
  2629. (effects (font (size 1.27 1.27)) (justify left bottom))
  2630. (uuid a4a858b9-91a8-4bde-9b0f-5575d2a92983)
  2631. )
  2632. (text "Data Bus Transceivers" (at 180.34 48.26 0)
  2633. (effects (font (size 1.27 1.27)) (justify left bottom))
  2634. (uuid adf119c2-6c6a-4962-900f-76ba3b84c81e)
  2635. )
  2636. (text "Decoupling Capacitors" (at 229.235 85.725 0)
  2637. (effects (font (size 1.27 1.27)) (justify left bottom))
  2638. (uuid b9c11213-dc01-4955-8d8c-56b12ca5f9f2)
  2639. )
  2640. (text "SM04B-SRSS-TB(LF)(SN) Symbol And Footprint Copyright SnapEDA\nhttps://www.snapeda.com/parts/SM04B-SRSS-TB%28LF%29%28SN%29/JST%20Sales/view-part/\nLicense For This Symbol and Footprint Only: CC-BY-SA 4.0\nhttps://creativecommons.org/licenses/by-sa/4.0/\nThis license contains a warranty disclaimer, please read it in full"
  2641. (at 68.58 9.525 0)
  2642. (effects (font (size 1.27 1.27)) (justify left bottom))
  2643. (uuid c3bba4e8-0582-4f8d-a51b-21e70b100a86)
  2644. )
  2645. (text "BlueSCSI V2, PowerBook 2023_10a" (at 186.69 190.5 0)
  2646. (effects (font (size 1.27 1.27)) (justify left bottom))
  2647. (uuid d044c8a6-f795-448f-8aaf-13c84dc7b52f)
  2648. )
  2649. (text "PDN Necessary" (at 132.715 118.11 0)
  2650. (effects (font (size 1.27 1.27)) (justify left bottom))
  2651. (uuid d43d35fd-6771-4904-972f-bf64b4f30bf3)
  2652. )
  2653. (text "External I2C\n\"qwiic\" by SparkFun" (at 85.725 44.45 0)
  2654. (effects (font (size 1.27 1.27)) (justify left bottom))
  2655. (uuid d7140bf4-977a-44ff-aa3c-2204ae831a75)
  2656. )
  2657. (text "Raspberry Pi Pico (or W)" (at 183.515 158.75 0)
  2658. (effects (font (size 1.27 1.27)) (justify left bottom))
  2659. (uuid e792cd11-28b6-4308-a206-1e7a068d61f2)
  2660. )
  2661. (text "Termination Power" (at 39.37 145.415 0)
  2662. (effects (font (size 1.27 1.27)) (justify left bottom))
  2663. (uuid e7ce2cf7-27e8-4193-8bc0-e9455fbc7f55)
  2664. )
  2665. (text "SCSI Control Line Bus Buffers" (at 81.915 121.285 0)
  2666. (effects (font (size 1.27 1.27)) (justify left bottom))
  2667. (uuid f1b60765-7abb-478d-8426-769d5990a083)
  2668. )
  2669. (global_label "RST" (shape input) (at 48.26 116.84 0) (fields_autoplaced)
  2670. (effects (font (size 1.27 1.27)) (justify left))
  2671. (uuid 011a143c-d966-40ce-9f90-dc3f6cd84e99)
  2672. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  2673. (effects (font (size 1.27 1.27)) hide)
  2674. )
  2675. )
  2676. (global_label "oSEL" (shape input) (at 135.89 101.6 180) (fields_autoplaced)
  2677. (effects (font (size 1.27 1.27)) (justify right))
  2678. (uuid 031ffac4-be21-4786-bdfc-732290128a66)
  2679. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.0301 101.5206 0)
  2680. (effects (font (size 1.27 1.27)) (justify right) hide)
  2681. )
  2682. )
  2683. (global_label "TRM_ON_J" (shape input) (at 29.845 24.765 90) (fields_autoplaced)
  2684. (effects (font (size 1.27 1.27)) (justify left))
  2685. (uuid 0333b164-c577-4cfa-a60c-6abe5d71ab59)
  2686. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 29.9244 13.1879 90)
  2687. (effects (font (size 1.27 1.27)) (justify left) hide)
  2688. )
  2689. )
  2690. (global_label "MSG" (shape input) (at 106.045 60.96 0) (fields_autoplaced)
  2691. (effects (font (size 1.27 1.27)) (justify left))
  2692. (uuid 059c25e8-9f7f-4c85-9a70-e8a5471cafb9)
  2693. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 125.73 0)
  2694. (effects (font (size 1.27 1.27)) hide)
  2695. )
  2696. )
  2697. (global_label "SEL" (shape input) (at 46.99 114.3 0) (fields_autoplaced)
  2698. (effects (font (size 1.27 1.27)) (justify left))
  2699. (uuid 0899ac55-bdfc-401a-947d-b75ecc833d5c)
  2700. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 99.06 213.36 0)
  2701. (effects (font (size 1.27 1.27)) hide)
  2702. )
  2703. )
  2704. (global_label "SD_D1" (shape input) (at 142.875 81.28 180) (fields_autoplaced)
  2705. (effects (font (size 1.27 1.27)) (justify right))
  2706. (uuid 0b94303e-2968-4cd1-9ef1-d640517bee60)
  2707. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 134.6241 81.3594 0)
  2708. (effects (font (size 1.27 1.27)) (justify right) hide)
  2709. )
  2710. )
  2711. (global_label "oBSY" (shape input) (at 106.045 55.88 0) (fields_autoplaced)
  2712. (effects (font (size 1.27 1.27)) (justify left))
  2713. (uuid 0c84b5b1-6e46-404f-a7d6-077e58c2d473)
  2714. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.0863 55.9594 0)
  2715. (effects (font (size 1.27 1.27)) (justify left) hide)
  2716. )
  2717. )
  2718. (global_label "SD_CLK" (shape input) (at 142.875 73.66 180) (fields_autoplaced)
  2719. (effects (font (size 1.27 1.27)) (justify right))
  2720. (uuid 104b4cd0-80d9-41d2-b4b2-5f526f6fa09e)
  2721. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 400.685 193.04 0)
  2722. (effects (font (size 1.27 1.27)) hide)
  2723. )
  2724. )
  2725. (global_label "MSG" (shape input) (at 107.315 173.355 0) (fields_autoplaced)
  2726. (effects (font (size 1.27 1.27)) (justify left))
  2727. (uuid 12f4270f-74f1-464b-87fe-df5e387afcf1)
  2728. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 281.305 0)
  2729. (effects (font (size 1.27 1.27)) hide)
  2730. )
  2731. )
  2732. (global_label "oIO" (shape input) (at 106.045 78.74 0) (fields_autoplaced)
  2733. (effects (font (size 1.27 1.27)) (justify left))
  2734. (uuid 1563acf3-e8fe-446d-9612-3253b52396e6)
  2735. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 111.4535 78.8194 0)
  2736. (effects (font (size 1.27 1.27)) (justify left) hide)
  2737. )
  2738. )
  2739. (global_label "SCL" (shape input) (at 84.455 29.21 270) (fields_autoplaced)
  2740. (effects (font (size 1.27 1.27)) (justify right))
  2741. (uuid 174930ae-2703-49e9-b975-500b925ee3c2)
  2742. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 84.5344 35.0418 90)
  2743. (effects (font (size 1.27 1.27)) (justify left) hide)
  2744. )
  2745. )
  2746. (global_label "DB1" (shape input) (at 170.18 30.48 0) (fields_autoplaced)
  2747. (effects (font (size 1.27 1.27)) (justify left))
  2748. (uuid 17e8c86e-663e-4db2-9ed1-3d633d484965)
  2749. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 193.04 -137.16 0)
  2750. (effects (font (size 1.27 1.27)) hide)
  2751. )
  2752. )
  2753. (global_label "REQ" (shape input) (at 106.045 91.44 0) (fields_autoplaced)
  2754. (effects (font (size 1.27 1.27)) (justify left))
  2755. (uuid 18447e00-40a4-4e22-a8b1-7c4a11cedd7d)
  2756. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 148.59 0)
  2757. (effects (font (size 1.27 1.27)) hide)
  2758. )
  2759. )
  2760. (global_label "CD" (shape input) (at 86.995 58.42 180) (fields_autoplaced)
  2761. (effects (font (size 1.27 1.27)) (justify right))
  2762. (uuid 1b60d9e2-9f95-4fe7-8022-5c9c115f33c1)
  2763. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -22.225 -1.27 0)
  2764. (effects (font (size 1.27 1.27)) hide)
  2765. )
  2766. )
  2767. (global_label "DB1" (shape input) (at 45.72 87.63 0) (fields_autoplaced)
  2768. (effects (font (size 1.27 1.27)) (justify left))
  2769. (uuid 1ba79eea-7124-4c9c-8e47-15bfb1d458d3)
  2770. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 39.37 0)
  2771. (effects (font (size 1.27 1.27)) hide)
  2772. )
  2773. )
  2774. (global_label "DB4" (shape input) (at 107.315 153.035 0) (fields_autoplaced)
  2775. (effects (font (size 1.27 1.27)) (justify left))
  2776. (uuid 1c524c50-ce73-499e-abe7-b70466b0da91)
  2777. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 217.805 0)
  2778. (effects (font (size 1.27 1.27)) hide)
  2779. )
  2780. )
  2781. (global_label "DB1T" (shape input) (at 262.89 149.86 0) (fields_autoplaced)
  2782. (effects (font (size 1.27 1.27)) (justify left))
  2783. (uuid 1cef1abf-5038-4426-9b4f-417cc082f136)
  2784. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 483.87 287.02 0)
  2785. (effects (font (size 1.27 1.27)) hide)
  2786. )
  2787. )
  2788. (global_label "DB2T" (shape input) (at 154.94 35.56 180) (fields_autoplaced)
  2789. (effects (font (size 1.27 1.27)) (justify right))
  2790. (uuid 1f925227-c5c5-45cf-ad9c-559f823505a9)
  2791. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 196.85 -134.62 0)
  2792. (effects (font (size 1.27 1.27)) hide)
  2793. )
  2794. )
  2795. (global_label "oREQ" (shape input) (at 106.045 86.36 0) (fields_autoplaced)
  2796. (effects (font (size 1.27 1.27)) (justify left))
  2797. (uuid 1fa0f19b-63ed-48bc-8817-e4f9a7e43ad5)
  2798. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.2678 86.4394 0)
  2799. (effects (font (size 1.27 1.27)) (justify left) hide)
  2800. )
  2801. )
  2802. (global_label "oIO" (shape input) (at 106.045 81.28 0) (fields_autoplaced)
  2803. (effects (font (size 1.27 1.27)) (justify left))
  2804. (uuid 205140b4-f5b4-476b-80bb-94da1c83b267)
  2805. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 111.4535 81.3594 0)
  2806. (effects (font (size 1.27 1.27)) (justify left) hide)
  2807. )
  2808. )
  2809. (global_label "oIO" (shape input) (at 210.82 124.46 180) (fields_autoplaced)
  2810. (effects (font (size 1.27 1.27)) (justify right))
  2811. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  2812. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 205.4115 124.3806 0)
  2813. (effects (font (size 1.27 1.27)) (justify right) hide)
  2814. )
  2815. )
  2816. (global_label "DB7T" (shape input) (at 208.28 35.56 180) (fields_autoplaced)
  2817. (effects (font (size 1.27 1.27)) (justify right))
  2818. (uuid 219a08ab-0348-40a3-8519-00630acae353)
  2819. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 250.19 -167.64 0)
  2820. (effects (font (size 1.27 1.27)) hide)
  2821. )
  2822. )
  2823. (global_label "oBSY" (shape input) (at 106.045 104.14 0) (fields_autoplaced)
  2824. (effects (font (size 1.27 1.27)) (justify left))
  2825. (uuid 24da7212-2900-4687-aeba-d9952285ef8b)
  2826. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.0863 104.2194 0)
  2827. (effects (font (size 1.27 1.27)) (justify left) hide)
  2828. )
  2829. )
  2830. (global_label "DB3" (shape input) (at 45.72 82.55 0) (fields_autoplaced)
  2831. (effects (font (size 1.27 1.27)) (justify left))
  2832. (uuid 25c5d19c-c320-4d69-97b2-cc03f0b14fc3)
  2833. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 29.21 0)
  2834. (effects (font (size 1.27 1.27)) hide)
  2835. )
  2836. )
  2837. (global_label "DBPTr" (shape input) (at 136.525 114.3 180) (fields_autoplaced)
  2838. (effects (font (size 1.27 1.27)) (justify right))
  2839. (uuid 267dc307-3f82-4650-a39e-580011d87f57)
  2840. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 394.335 243.84 0)
  2841. (effects (font (size 1.27 1.27)) hide)
  2842. )
  2843. )
  2844. (global_label "SEL_BUFF" (shape input) (at 195.58 97.79 180) (fields_autoplaced)
  2845. (effects (font (size 1.27 1.27)) (justify right))
  2846. (uuid 2b03db56-24ac-41fa-86e5-7cd4bf2fea7a)
  2847. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.1239 97.8694 0)
  2848. (effects (font (size 1.27 1.27)) (justify right) hide)
  2849. )
  2850. )
  2851. (global_label "oMSG_iBSY" (shape input) (at 106.045 58.42 0) (fields_autoplaced)
  2852. (effects (font (size 1.27 1.27)) (justify left))
  2853. (uuid 2bdac67e-041d-4faa-9034-fb031e87e9af)
  2854. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.5897 58.4994 0)
  2855. (effects (font (size 1.27 1.27)) (justify left) hide)
  2856. )
  2857. )
  2858. (global_label "CD" (shape input) (at 48.26 106.68 0) (fields_autoplaced)
  2859. (effects (font (size 1.27 1.27)) (justify left))
  2860. (uuid 2c5b3967-6830-48cd-bd57-6064b8e93c60)
  2861. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  2862. (effects (font (size 1.27 1.27)) hide)
  2863. )
  2864. )
  2865. (global_label "SDA" (shape input) (at 95.885 32.385 270) (fields_autoplaced)
  2866. (effects (font (size 1.27 1.27)) (justify right))
  2867. (uuid 2fbc72ed-f79b-4cdc-a978-6916f902d352)
  2868. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 95.9644 38.2773 90)
  2869. (effects (font (size 1.27 1.27)) (justify left) hide)
  2870. )
  2871. )
  2872. (global_label "DBP" (shape input) (at 107.315 163.195 0) (fields_autoplaced)
  2873. (effects (font (size 1.27 1.27)) (justify left))
  2874. (uuid 319bae84-928c-4fdf-993a-7f5897f02973)
  2875. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 83.185 0)
  2876. (effects (font (size 1.27 1.27)) hide)
  2877. )
  2878. )
  2879. (global_label "BSY" (shape input) (at 106.045 106.68 0) (fields_autoplaced)
  2880. (effects (font (size 1.27 1.27)) (justify left))
  2881. (uuid 31cac8fe-2c43-4db3-a8c9-5f1fecf820c9)
  2882. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 179.07 0)
  2883. (effects (font (size 1.27 1.27)) hide)
  2884. )
  2885. )
  2886. (global_label "REQ" (shape input) (at 48.26 104.14 0) (fields_autoplaced)
  2887. (effects (font (size 1.27 1.27)) (justify left))
  2888. (uuid 31fbee47-8d9c-40a6-b87f-380efac36f61)
  2889. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  2890. (effects (font (size 1.27 1.27)) hide)
  2891. )
  2892. )
  2893. (global_label "ACK" (shape input) (at 86.995 109.22 180) (fields_autoplaced)
  2894. (effects (font (size 1.27 1.27)) (justify right))
  2895. (uuid 36c07ff5-fde1-4350-944e-70db62bde85e)
  2896. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -22.225 39.37 0)
  2897. (effects (font (size 1.27 1.27)) hide)
  2898. )
  2899. )
  2900. (global_label "iRST" (shape input) (at 106.045 68.58 0) (fields_autoplaced)
  2901. (effects (font (size 1.27 1.27)) (justify left))
  2902. (uuid 3cc41b11-8798-4864-9c24-cf8610210e0d)
  2903. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 112.4211 68.6594 0)
  2904. (effects (font (size 1.27 1.27)) (justify left) hide)
  2905. )
  2906. )
  2907. (global_label "oBSY" (shape input) (at 86.995 53.34 180) (fields_autoplaced)
  2908. (effects (font (size 1.27 1.27)) (justify right))
  2909. (uuid 3f70e57f-205d-4dfb-8426-0a18c8c519bf)
  2910. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.9537 53.2606 0)
  2911. (effects (font (size 1.27 1.27)) (justify right) hide)
  2912. )
  2913. )
  2914. (global_label "DB4" (shape input) (at 223.52 25.4 0) (fields_autoplaced)
  2915. (effects (font (size 1.27 1.27)) (justify left))
  2916. (uuid 3fdbf6ad-6e7a-4ac4-848f-641dbc407e53)
  2917. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.38 -160.02 0)
  2918. (effects (font (size 1.27 1.27)) hide)
  2919. )
  2920. )
  2921. (global_label "DBP" (shape input) (at 45.72 69.85 0) (fields_autoplaced)
  2922. (effects (font (size 1.27 1.27)) (justify left))
  2923. (uuid 4255f764-d736-4e00-8d8a-38f52c898c6a)
  2924. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 3.81 0)
  2925. (effects (font (size 1.27 1.27)) hide)
  2926. )
  2927. )
  2928. (global_label "DB7" (shape input) (at 107.315 160.655 0) (fields_autoplaced)
  2929. (effects (font (size 1.27 1.27)) (justify left))
  2930. (uuid 443bc5fd-9b74-4e4f-aa44-11bad7a68bbd)
  2931. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 212.725 0)
  2932. (effects (font (size 1.27 1.27)) hide)
  2933. )
  2934. )
  2935. (global_label "RST" (shape input) (at 106.045 66.04 0) (fields_autoplaced)
  2936. (effects (font (size 1.27 1.27)) (justify left))
  2937. (uuid 466fec18-55f4-4810-b4e1-2616a1dc7ea7)
  2938. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 133.35 0)
  2939. (effects (font (size 1.27 1.27)) hide)
  2940. )
  2941. )
  2942. (global_label "oBSY" (shape input) (at 86.995 106.68 180) (fields_autoplaced)
  2943. (effects (font (size 1.27 1.27)) (justify right))
  2944. (uuid 46864922-c2ed-496a-aeb3-9891f4eff2ed)
  2945. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.9537 106.6006 0)
  2946. (effects (font (size 1.27 1.27)) (justify right) hide)
  2947. )
  2948. )
  2949. (global_label "REQ" (shape input) (at 107.315 180.975 0) (fields_autoplaced)
  2950. (effects (font (size 1.27 1.27)) (justify left))
  2951. (uuid 479eb8e7-211f-4763-9235-bfeeb5e7abe0)
  2952. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 294.005 0)
  2953. (effects (font (size 1.27 1.27)) hide)
  2954. )
  2955. )
  2956. (global_label "DBPTr" (shape input) (at 154.94 20.32 180) (fields_autoplaced)
  2957. (effects (font (size 1.27 1.27)) (justify right))
  2958. (uuid 48d7ef29-4098-47e0-879b-0cd3c5101022)
  2959. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 132.08 236.22 0)
  2960. (effects (font (size 1.27 1.27)) hide)
  2961. )
  2962. )
  2963. (global_label "IO" (shape input) (at 83.185 178.435 180) (fields_autoplaced)
  2964. (effects (font (size 1.27 1.27)) (justify right))
  2965. (uuid 4903573b-8416-4f63-9833-311e58d55191)
  2966. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -29.845 75.565 0)
  2967. (effects (font (size 1.27 1.27)) hide)
  2968. )
  2969. )
  2970. (global_label "oBSY" (shape input) (at 106.045 101.6 0) (fields_autoplaced)
  2971. (effects (font (size 1.27 1.27)) (justify left))
  2972. (uuid 4a989a54-f982-4545-ac20-f7da0768f1ac)
  2973. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.0863 101.6794 0)
  2974. (effects (font (size 1.27 1.27)) (justify left) hide)
  2975. )
  2976. )
  2977. (global_label "DB7T" (shape input) (at 262.89 129.54 0) (fields_autoplaced)
  2978. (effects (font (size 1.27 1.27)) (justify left))
  2979. (uuid 53a1144a-4e4d-4cf8-a294-6a1d1f3c33b4)
  2980. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 483.87 233.68 0)
  2981. (effects (font (size 1.27 1.27)) hide)
  2982. )
  2983. )
  2984. (global_label "RST" (shape input) (at 106.045 63.5 0) (fields_autoplaced)
  2985. (effects (font (size 1.27 1.27)) (justify left))
  2986. (uuid 59800730-8d49-40a9-96f4-864143705858)
  2987. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 130.81 0)
  2988. (effects (font (size 1.27 1.27)) hide)
  2989. )
  2990. )
  2991. (global_label "DB7" (shape input) (at 45.72 72.39 0) (fields_autoplaced)
  2992. (effects (font (size 1.27 1.27)) (justify left))
  2993. (uuid 5bd70c8a-b3b7-4357-b86c-7eb454aa1964)
  2994. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 8.89 0)
  2995. (effects (font (size 1.27 1.27)) hide)
  2996. )
  2997. )
  2998. (global_label "SD_D0_MISO" (shape input) (at 247.65 114.3 0) (fields_autoplaced)
  2999. (effects (font (size 1.27 1.27)) (justify left))
  3000. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  3001. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 261.4647 114.2206 0)
  3002. (effects (font (size 1.27 1.27)) (justify left) hide)
  3003. )
  3004. )
  3005. (global_label "DB2" (shape input) (at 45.72 85.09 0) (fields_autoplaced)
  3006. (effects (font (size 1.27 1.27)) (justify left))
  3007. (uuid 5f0b5f28-4580-4d2a-b1d0-1efbd01be54d)
  3008. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 34.29 0)
  3009. (effects (font (size 1.27 1.27)) hide)
  3010. )
  3011. )
  3012. (global_label "DB5T" (shape input) (at 208.28 27.94 180) (fields_autoplaced)
  3013. (effects (font (size 1.27 1.27)) (justify right))
  3014. (uuid 5f3fa2ee-8dae-444d-98b4-01a30508ae0f)
  3015. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 250.19 -160.02 0)
  3016. (effects (font (size 1.27 1.27)) hide)
  3017. )
  3018. )
  3019. (global_label "SEL" (shape input) (at 107.315 175.895 0) (fields_autoplaced)
  3020. (effects (font (size 1.27 1.27)) (justify left))
  3021. (uuid 61c81507-44e9-41f7-ae59-bfad6599c0ef)
  3022. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 260.985 0)
  3023. (effects (font (size 1.27 1.27)) hide)
  3024. )
  3025. )
  3026. (global_label "DB5" (shape input) (at 223.52 30.48 0) (fields_autoplaced)
  3027. (effects (font (size 1.27 1.27)) (justify left))
  3028. (uuid 627f88bc-fac9-43d2-b2b5-8de67eb67aca)
  3029. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.38 -157.48 0)
  3030. (effects (font (size 1.27 1.27)) hide)
  3031. )
  3032. )
  3033. (global_label "DB4" (shape input) (at 45.72 80.01 0) (fields_autoplaced)
  3034. (effects (font (size 1.27 1.27)) (justify left))
  3035. (uuid 63965aff-e125-438e-96d8-deab5c44f09b)
  3036. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 24.13 0)
  3037. (effects (font (size 1.27 1.27)) hide)
  3038. )
  3039. )
  3040. (global_label "DB2" (shape input) (at 170.18 38.1 0) (fields_autoplaced)
  3041. (effects (font (size 1.27 1.27)) (justify left))
  3042. (uuid 67aa1965-d6d5-40a9-8fc6-2f32f96cdbf9)
  3043. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 193.04 -132.08 0)
  3044. (effects (font (size 1.27 1.27)) hide)
  3045. )
  3046. )
  3047. (global_label "oSEL" (shape input) (at 86.995 63.5 180) (fields_autoplaced)
  3048. (effects (font (size 1.27 1.27)) (justify right))
  3049. (uuid 6902bfbe-c625-413b-9cad-fbcf546039a4)
  3050. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 80.1351 63.4206 0)
  3051. (effects (font (size 1.27 1.27)) (justify right) hide)
  3052. )
  3053. )
  3054. (global_label "ATN" (shape input) (at 83.185 168.275 180) (fields_autoplaced)
  3055. (effects (font (size 1.27 1.27)) (justify right))
  3056. (uuid 6c8999fa-b129-4520-a180-0a73ed45b72e)
  3057. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -29.845 73.025 0)
  3058. (effects (font (size 1.27 1.27)) hide)
  3059. )
  3060. )
  3061. (global_label "DB5" (shape input) (at 45.72 77.47 0) (fields_autoplaced)
  3062. (effects (font (size 1.27 1.27)) (justify left))
  3063. (uuid 6dad3d5f-3089-4254-9362-e641c3fcca9a)
  3064. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 19.05 0)
  3065. (effects (font (size 1.27 1.27)) hide)
  3066. )
  3067. )
  3068. (global_label "SD_D3_CS" (shape input) (at 247.65 104.14 0) (fields_autoplaced)
  3069. (effects (font (size 1.27 1.27)) (justify left))
  3070. (uuid 6e31c9ec-6377-4b60-9bd1-f98b587cfcf1)
  3071. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 259.348 104.0606 0)
  3072. (effects (font (size 1.27 1.27)) (justify left) hide)
  3073. )
  3074. )
  3075. (global_label "CD" (shape input) (at 107.315 178.435 0) (fields_autoplaced)
  3076. (effects (font (size 1.27 1.27)) (justify left))
  3077. (uuid 6ee39f9a-55b4-421b-8391-af99f02c3b4d)
  3078. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 283.845 0)
  3079. (effects (font (size 1.27 1.27)) hide)
  3080. )
  3081. )
  3082. (global_label "oMSG_iBSY" (shape input) (at 194.31 116.84 180) (fields_autoplaced)
  3083. (effects (font (size 1.27 1.27)) (justify right))
  3084. (uuid 72541aaf-22f0-4215-be41-c92f98991b37)
  3085. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 181.7653 116.7606 0)
  3086. (effects (font (size 1.27 1.27)) (justify right) hide)
  3087. )
  3088. )
  3089. (global_label "TRM_ON_J" (shape input) (at 35.56 50.165 0) (fields_autoplaced)
  3090. (effects (font (size 1.27 1.27)) (justify left))
  3091. (uuid 7545dff0-01eb-4608-9f54-2a3713a1db79)
  3092. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 47.1371 50.2444 0)
  3093. (effects (font (size 1.27 1.27)) (justify left) hide)
  3094. )
  3095. )
  3096. (global_label "BSY" (shape input) (at 86.995 86.36 180) (fields_autoplaced)
  3097. (effects (font (size 1.27 1.27)) (justify right))
  3098. (uuid 75498b8b-b6a6-401e-b1c3-34599c0902c9)
  3099. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -22.225 13.97 0)
  3100. (effects (font (size 1.27 1.27)) hide)
  3101. )
  3102. )
  3103. (global_label "DB6" (shape input) (at 107.315 158.115 0) (fields_autoplaced)
  3104. (effects (font (size 1.27 1.27)) (justify left))
  3105. (uuid 758f88cf-7e5f-429c-a223-7208e7513a45)
  3106. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 215.265 0)
  3107. (effects (font (size 1.27 1.27)) hide)
  3108. )
  3109. )
  3110. (global_label "oREQ" (shape input) (at 210.82 114.3 180) (fields_autoplaced)
  3111. (effects (font (size 1.27 1.27)) (justify right))
  3112. (uuid 799c8546-a930-4e12-8303-28a140b053c4)
  3113. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.5972 114.2206 0)
  3114. (effects (font (size 1.27 1.27)) (justify right) hide)
  3115. )
  3116. )
  3117. (global_label "SD_CMD_MOSI" (shape input) (at 142.875 66.04 180) (fields_autoplaced)
  3118. (effects (font (size 1.27 1.27)) (justify right))
  3119. (uuid 7c751d0e-4a96-4b7b-84aa-52c0e549591b)
  3120. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.5484 66.1194 0)
  3121. (effects (font (size 1.27 1.27)) (justify right) hide)
  3122. )
  3123. )
  3124. (global_label "DB3" (shape input) (at 170.18 43.18 0) (fields_autoplaced)
  3125. (effects (font (size 1.27 1.27)) (justify left))
  3126. (uuid 7c9b296d-8440-47f8-b369-6dd07bef3f16)
  3127. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 193.04 -132.08 0)
  3128. (effects (font (size 1.27 1.27)) hide)
  3129. )
  3130. )
  3131. (global_label "SEL" (shape input) (at 86.995 66.04 180) (fields_autoplaced)
  3132. (effects (font (size 1.27 1.27)) (justify right))
  3133. (uuid 7d3016df-cdaf-4e50-a2d2-51ef129ae43c)
  3134. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -22.225 3.81 0)
  3135. (effects (font (size 1.27 1.27)) hide)
  3136. )
  3137. )
  3138. (global_label "DB0T" (shape input) (at 154.94 22.86 180) (fields_autoplaced)
  3139. (effects (font (size 1.27 1.27)) (justify right))
  3140. (uuid 80b403f5-ae98-486a-8793-3a6613297718)
  3141. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 196.85 -137.16 0)
  3142. (effects (font (size 1.27 1.27)) hide)
  3143. )
  3144. )
  3145. (global_label "BSY" (shape input) (at 48.26 111.76 0) (fields_autoplaced)
  3146. (effects (font (size 1.27 1.27)) (justify left))
  3147. (uuid 81140ebe-376d-4e5f-8cbe-28278a63a561)
  3148. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  3149. (effects (font (size 1.27 1.27)) hide)
  3150. )
  3151. )
  3152. (global_label "DBPTr" (shape input) (at 255.27 124.46 0) (fields_autoplaced)
  3153. (effects (font (size 1.27 1.27)) (justify left))
  3154. (uuid 82c92ede-d3d4-481e-bc1b-cb94b4f02ca8)
  3155. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -2.54 -5.08 0)
  3156. (effects (font (size 1.27 1.27)) hide)
  3157. )
  3158. )
  3159. (global_label "SCL" (shape input) (at 98.425 32.385 270) (fields_autoplaced)
  3160. (effects (font (size 1.27 1.27)) (justify right))
  3161. (uuid 82ec5fab-86db-4b1f-8503-5b2c0e1fab66)
  3162. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 98.5044 38.2168 90)
  3163. (effects (font (size 1.27 1.27)) (justify left) hide)
  3164. )
  3165. )
  3166. (global_label "oCD_iSEL" (shape input) (at 86.995 55.88 180) (fields_autoplaced)
  3167. (effects (font (size 1.27 1.27)) (justify right))
  3168. (uuid 8c222808-bd60-4612-9cf4-ba9b11c8061a)
  3169. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.0227 55.8006 0)
  3170. (effects (font (size 1.27 1.27)) (justify right) hide)
  3171. )
  3172. )
  3173. (global_label "SD_CMD_MOSI" (shape input) (at 247.65 116.84 0) (fields_autoplaced)
  3174. (effects (font (size 1.27 1.27)) (justify left))
  3175. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  3176. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 262.9766 116.7606 0)
  3177. (effects (font (size 1.27 1.27)) (justify left) hide)
  3178. )
  3179. )
  3180. (global_label "iRST" (shape input) (at 189.865 131.445 180) (fields_autoplaced)
  3181. (effects (font (size 1.27 1.27)) (justify right))
  3182. (uuid 905fd4e5-8e99-493d-92d1-d89410ac3fc4)
  3183. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.4889 131.3656 0)
  3184. (effects (font (size 1.27 1.27)) (justify right) hide)
  3185. )
  3186. )
  3187. (global_label "SEL_BUFF" (shape input) (at 86.995 81.28 180) (fields_autoplaced)
  3188. (effects (font (size 1.27 1.27)) (justify right))
  3189. (uuid 909ed21e-af82-4886-bae1-ee31cd9f335e)
  3190. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.5389 81.3594 0)
  3191. (effects (font (size 1.27 1.27)) (justify right) hide)
  3192. )
  3193. )
  3194. (global_label "DB6T" (shape input) (at 262.89 132.08 0) (fields_autoplaced)
  3195. (effects (font (size 1.27 1.27)) (justify left))
  3196. (uuid 97859ada-005b-435a-bbb4-521298af4cbc)
  3197. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 483.87 233.68 0)
  3198. (effects (font (size 1.27 1.27)) hide)
  3199. )
  3200. )
  3201. (global_label "DB6T" (shape input) (at 208.28 33.02 180) (fields_autoplaced)
  3202. (effects (font (size 1.27 1.27)) (justify right))
  3203. (uuid 9a8a619f-c745-4ccc-88cf-49846ff7e244)
  3204. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 250.19 -165.1 0)
  3205. (effects (font (size 1.27 1.27)) hide)
  3206. )
  3207. )
  3208. (global_label "SDA" (shape input) (at 81.915 29.21 270) (fields_autoplaced)
  3209. (effects (font (size 1.27 1.27)) (justify right))
  3210. (uuid 9c452802-845c-4055-9988-347fcf147036)
  3211. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 81.9944 35.1023 90)
  3212. (effects (font (size 1.27 1.27)) (justify left) hide)
  3213. )
  3214. )
  3215. (global_label "iACK" (shape input) (at 86.995 111.76 180) (fields_autoplaced)
  3216. (effects (font (size 1.27 1.27)) (justify right))
  3217. (uuid 9c74d25f-81a0-4b66-bbd6-6a15dd995bd0)
  3218. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 80.4375 111.6806 0)
  3219. (effects (font (size 1.27 1.27)) (justify right) hide)
  3220. )
  3221. )
  3222. (global_label "iATN" (shape input) (at 210.82 137.16 180) (fields_autoplaced)
  3223. (effects (font (size 1.27 1.27)) (justify right))
  3224. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  3225. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.5044 137.0806 0)
  3226. (effects (font (size 1.27 1.27)) (justify right) hide)
  3227. )
  3228. )
  3229. (global_label "MSG" (shape input) (at 48.26 109.22 0) (fields_autoplaced)
  3230. (effects (font (size 1.27 1.27)) (justify left))
  3231. (uuid 9f02ff99-50b4-4efa-a8c3-586b43223f1e)
  3232. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  3233. (effects (font (size 1.27 1.27)) hide)
  3234. )
  3235. )
  3236. (global_label "SD_D1" (shape input) (at 247.65 111.76 0) (fields_autoplaced)
  3237. (effects (font (size 1.27 1.27)) (justify left))
  3238. (uuid a0bdc364-8100-422f-80a0-5c8d5789da1e)
  3239. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 255.9009 111.6806 0)
  3240. (effects (font (size 1.27 1.27)) (justify left) hide)
  3241. )
  3242. )
  3243. (global_label "ACK" (shape input) (at 48.26 119.38 0) (fields_autoplaced)
  3244. (effects (font (size 1.27 1.27)) (justify left))
  3245. (uuid a49edd88-1d39-4053-a6ec-5161ef62ea8f)
  3246. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  3247. (effects (font (size 1.27 1.27)) hide)
  3248. )
  3249. )
  3250. (global_label "SCL" (shape input) (at 210.82 106.68 180) (fields_autoplaced)
  3251. (effects (font (size 1.27 1.27)) (justify right))
  3252. (uuid a4be706d-b9fe-416d-ba31-a2374a1ebca3)
  3253. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.9882 106.6006 0)
  3254. (effects (font (size 1.27 1.27)) (justify right) hide)
  3255. )
  3256. )
  3257. (global_label "DB5" (shape input) (at 107.315 155.575 0) (fields_autoplaced)
  3258. (effects (font (size 1.27 1.27)) (justify left))
  3259. (uuid a7402e20-6787-427e-b4f1-b35e7eea713b)
  3260. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 217.805 0)
  3261. (effects (font (size 1.27 1.27)) hide)
  3262. )
  3263. )
  3264. (global_label "DB5T" (shape input) (at 262.89 137.16 0) (fields_autoplaced)
  3265. (effects (font (size 1.27 1.27)) (justify left))
  3266. (uuid a75fc903-c39d-4ae7-92ef-b93e1a7376d3)
  3267. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 483.87 236.22 0)
  3268. (effects (font (size 1.27 1.27)) hide)
  3269. )
  3270. )
  3271. (global_label "oSEL" (shape input) (at 86.995 60.96 180) (fields_autoplaced)
  3272. (effects (font (size 1.27 1.27)) (justify right))
  3273. (uuid a8df97fe-19c3-4bc7-9c87-c6a29fd48d2b)
  3274. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 80.1351 60.8806 0)
  3275. (effects (font (size 1.27 1.27)) (justify right) hide)
  3276. )
  3277. )
  3278. (global_label "SD_D0_MISO" (shape input) (at 142.875 78.74 180) (fields_autoplaced)
  3279. (effects (font (size 1.27 1.27)) (justify right))
  3280. (uuid ac0286b6-2487-4507-bf24-7e7d56ee05e1)
  3281. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 129.0603 78.8194 0)
  3282. (effects (font (size 1.27 1.27)) (justify right) hide)
  3283. )
  3284. )
  3285. (global_label "DBPT" (shape input) (at 208.28 40.64 180) (fields_autoplaced)
  3286. (effects (font (size 1.27 1.27)) (justify right))
  3287. (uuid ad596536-c700-4428-a6a5-f14b6017358d)
  3288. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 250.19 -172.72 0)
  3289. (effects (font (size 1.27 1.27)) hide)
  3290. )
  3291. )
  3292. (global_label "SD_D2" (shape input) (at 247.65 106.68 0) (fields_autoplaced)
  3293. (effects (font (size 1.27 1.27)) (justify left))
  3294. (uuid ae2de278-d81f-4738-9940-fd65e33b1735)
  3295. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 255.9009 106.6006 0)
  3296. (effects (font (size 1.27 1.27)) (justify left) hide)
  3297. )
  3298. )
  3299. (global_label "oREQ" (shape input) (at 106.045 88.9 0) (fields_autoplaced)
  3300. (effects (font (size 1.27 1.27)) (justify left))
  3301. (uuid af007f4a-bc02-4a41-9a1d-6f63c5399691)
  3302. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.2678 88.9794 0)
  3303. (effects (font (size 1.27 1.27)) (justify left) hide)
  3304. )
  3305. )
  3306. (global_label "DB3" (shape input) (at 107.315 150.495 0) (fields_autoplaced)
  3307. (effects (font (size 1.27 1.27)) (justify left))
  3308. (uuid af1ec9b8-750b-42a9-ad57-0d91bf781e10)
  3309. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 217.805 0)
  3310. (effects (font (size 1.27 1.27)) hide)
  3311. )
  3312. )
  3313. (global_label "SD_CLK" (shape input) (at 247.65 119.38 0) (fields_autoplaced)
  3314. (effects (font (size 1.27 1.27)) (justify left))
  3315. (uuid b0054ce1-b60e-41de-a6a2-bf712784dd39)
  3316. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -10.16 0 0)
  3317. (effects (font (size 1.27 1.27)) hide)
  3318. )
  3319. )
  3320. (global_label "DB2T" (shape input) (at 262.89 144.78 0) (fields_autoplaced)
  3321. (effects (font (size 1.27 1.27)) (justify left))
  3322. (uuid b13745b0-d58c-43b1-b13f-c7962ef4a3fe)
  3323. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 5.08 40.64 0)
  3324. (effects (font (size 1.27 1.27)) hide)
  3325. )
  3326. )
  3327. (global_label "oCD_iSEL" (shape input) (at 191.77 105.41 180) (fields_autoplaced)
  3328. (effects (font (size 1.27 1.27)) (justify right))
  3329. (uuid b2774bbd-5032-43fb-ae9e-6aeb238fa843)
  3330. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 180.7977 105.3306 0)
  3331. (effects (font (size 1.27 1.27)) (justify right) hide)
  3332. )
  3333. )
  3334. (global_label "SD_D3_CS" (shape input) (at 142.875 63.5 180) (fields_autoplaced)
  3335. (effects (font (size 1.27 1.27)) (justify right))
  3336. (uuid b2b5e1ed-d441-4e41-a7e5-53717989c74c)
  3337. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 131.177 63.5794 0)
  3338. (effects (font (size 1.27 1.27)) (justify right) hide)
  3339. )
  3340. )
  3341. (global_label "oBSY" (shape input) (at 210.82 132.08 180) (fields_autoplaced)
  3342. (effects (font (size 1.27 1.27)) (justify right))
  3343. (uuid ba537eed-9654-4a2e-95de-f322dd620506)
  3344. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 203.7787 132.0006 0)
  3345. (effects (font (size 1.27 1.27)) (justify right) hide)
  3346. )
  3347. )
  3348. (global_label "DB0" (shape input) (at 170.18 25.4 0) (fields_autoplaced)
  3349. (effects (font (size 1.27 1.27)) (justify left))
  3350. (uuid baa4af62-f647-4fd0-bb56-55815b29ba85)
  3351. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 193.04 -134.62 0)
  3352. (effects (font (size 1.27 1.27)) hide)
  3353. )
  3354. )
  3355. (global_label "TRM_ON_J" (shape input) (at 35.56 67.31 0) (fields_autoplaced)
  3356. (effects (font (size 1.27 1.27)) (justify left))
  3357. (uuid bd219ffc-2932-43d3-a162-11744dbe1adf)
  3358. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 47.1371 67.3894 0)
  3359. (effects (font (size 1.27 1.27)) (justify left) hide)
  3360. )
  3361. )
  3362. (global_label "BSY_BUFF" (shape input) (at 86.995 88.9 180) (fields_autoplaced)
  3363. (effects (font (size 1.27 1.27)) (justify right))
  3364. (uuid be3bc0f7-9538-4e5a-92c3-7197e0f5e4b5)
  3365. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.3575 88.8206 0)
  3366. (effects (font (size 1.27 1.27)) (justify right) hide)
  3367. )
  3368. )
  3369. (global_label "DB0" (shape input) (at 38.1 55.245 0) (fields_autoplaced)
  3370. (effects (font (size 1.27 1.27)) (justify left))
  3371. (uuid c0bdf3ee-d2e9-4242-970a-067818f7dbb8)
  3372. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 90.17 9.525 0)
  3373. (effects (font (size 1.27 1.27)) hide)
  3374. )
  3375. )
  3376. (global_label "DB3T" (shape input) (at 262.89 142.24 0) (fields_autoplaced)
  3377. (effects (font (size 1.27 1.27)) (justify left))
  3378. (uuid c258dfa6-516e-4dab-9259-d1c9077c9383)
  3379. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 5.08 35.56 0)
  3380. (effects (font (size 1.27 1.27)) hide)
  3381. )
  3382. )
  3383. (global_label "DB1T" (shape input) (at 154.94 27.94 180) (fields_autoplaced)
  3384. (effects (font (size 1.27 1.27)) (justify right))
  3385. (uuid c269b27f-83b9-42a8-a1f0-d45467b14afd)
  3386. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 196.85 -139.7 0)
  3387. (effects (font (size 1.27 1.27)) hide)
  3388. )
  3389. )
  3390. (global_label "oBSY" (shape input) (at 135.89 106.68 180) (fields_autoplaced)
  3391. (effects (font (size 1.27 1.27)) (justify right))
  3392. (uuid c33b0b2c-f098-4b32-9443-e44b88f2946d)
  3393. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 128.8487 106.6006 0)
  3394. (effects (font (size 1.27 1.27)) (justify right) hide)
  3395. )
  3396. )
  3397. (global_label "DB6" (shape input) (at 223.52 35.56 0) (fields_autoplaced)
  3398. (effects (font (size 1.27 1.27)) (justify left))
  3399. (uuid c45edb97-0660-45c0-b9bd-6c9185a1316f)
  3400. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.38 -162.56 0)
  3401. (effects (font (size 1.27 1.27)) hide)
  3402. )
  3403. )
  3404. (global_label "IO" (shape input) (at 38.735 139.7 0) (fields_autoplaced)
  3405. (effects (font (size 1.27 1.27)) (justify left))
  3406. (uuid c4cf604c-9096-4888-b760-713f393b046c)
  3407. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 90.805 251.46 0)
  3408. (effects (font (size 1.27 1.27)) hide)
  3409. )
  3410. )
  3411. (global_label "SEL" (shape input) (at 86.995 78.74 180) (fields_autoplaced)
  3412. (effects (font (size 1.27 1.27)) (justify right))
  3413. (uuid c62e5c85-c38f-444f-afbe-fbff3a892e13)
  3414. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -22.225 16.51 0)
  3415. (effects (font (size 1.27 1.27)) hide)
  3416. )
  3417. )
  3418. (global_label "SDA" (shape input) (at 210.82 104.14 180) (fields_autoplaced)
  3419. (effects (font (size 1.27 1.27)) (justify right))
  3420. (uuid c636a484-7297-4928-aa48-8c8c772f5ab0)
  3421. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.9277 104.0606 0)
  3422. (effects (font (size 1.27 1.27)) (justify right) hide)
  3423. )
  3424. )
  3425. (global_label "iATN" (shape input) (at 106.045 114.3 0) (fields_autoplaced)
  3426. (effects (font (size 1.27 1.27)) (justify left))
  3427. (uuid c72cafcc-b25b-4a92-9aba-0a621414dcdb)
  3428. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 112.3606 114.3794 0)
  3429. (effects (font (size 1.27 1.27)) (justify left) hide)
  3430. )
  3431. )
  3432. (global_label "RST" (shape input) (at 83.185 173.355 180) (fields_autoplaced)
  3433. (effects (font (size 1.27 1.27)) (justify right))
  3434. (uuid c7424e6a-ab9f-4893-898d-ef06bcbee898)
  3435. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -29.845 75.565 0)
  3436. (effects (font (size 1.27 1.27)) hide)
  3437. )
  3438. )
  3439. (global_label "DBPT" (shape input) (at 262.89 127 0) (fields_autoplaced)
  3440. (effects (font (size 1.27 1.27)) (justify left))
  3441. (uuid c78c5dad-e67e-4be9-adf4-b6891814b87e)
  3442. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 5.08 15.24 0)
  3443. (effects (font (size 1.27 1.27)) hide)
  3444. )
  3445. )
  3446. (global_label "TRM_ON_J" (shape input) (at 38.1 101.6 0) (fields_autoplaced)
  3447. (effects (font (size 1.27 1.27)) (justify left))
  3448. (uuid cb48a116-aeba-4633-98fe-83df2f26a0a1)
  3449. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 49.6771 101.6794 0)
  3450. (effects (font (size 1.27 1.27)) (justify left) hide)
  3451. )
  3452. )
  3453. (global_label "oSEL" (shape input) (at 197.485 126.365 180) (fields_autoplaced)
  3454. (effects (font (size 1.27 1.27)) (justify right))
  3455. (uuid cc599f62-2bee-40a3-a165-4b7f64d230f8)
  3456. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.6251 126.2856 0)
  3457. (effects (font (size 1.27 1.27)) (justify right) hide)
  3458. )
  3459. )
  3460. (global_label "DB6" (shape input) (at 45.72 74.93 0) (fields_autoplaced)
  3461. (effects (font (size 1.27 1.27)) (justify left))
  3462. (uuid d1046d20-d4f2-43a7-8081-acf80fd40cad)
  3463. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 97.79 13.97 0)
  3464. (effects (font (size 1.27 1.27)) hide)
  3465. )
  3466. )
  3467. (global_label "ACK" (shape input) (at 107.315 170.815 0) (fields_autoplaced)
  3468. (effects (font (size 1.27 1.27)) (justify left))
  3469. (uuid d11f3524-972a-4019-bc58-9f7c6b5bdf6d)
  3470. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 263.525 0)
  3471. (effects (font (size 1.27 1.27)) hide)
  3472. )
  3473. )
  3474. (global_label "DB4T" (shape input) (at 262.89 139.7 0) (fields_autoplaced)
  3475. (effects (font (size 1.27 1.27)) (justify left))
  3476. (uuid d3e8e05e-8466-4829-a48e-788d5b3dcd34)
  3477. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 483.87 236.22 0)
  3478. (effects (font (size 1.27 1.27)) hide)
  3479. )
  3480. )
  3481. (global_label "BSY_BUFF" (shape input) (at 189.23 120.015 180) (fields_autoplaced)
  3482. (effects (font (size 1.27 1.27)) (justify right))
  3483. (uuid d4a03d7c-a5b0-4b19-9108-e3e0a5c8ab63)
  3484. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 177.5925 119.9356 0)
  3485. (effects (font (size 1.27 1.27)) (justify right) hide)
  3486. )
  3487. )
  3488. (global_label "DB3T" (shape input) (at 154.94 40.64 180) (fields_autoplaced)
  3489. (effects (font (size 1.27 1.27)) (justify right))
  3490. (uuid dc44399d-a781-4321-bb25-05bc2093dd8b)
  3491. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 196.85 -134.62 0)
  3492. (effects (font (size 1.27 1.27)) hide)
  3493. )
  3494. )
  3495. (global_label "oBSY" (shape input) (at 106.045 109.22 0) (fields_autoplaced)
  3496. (effects (font (size 1.27 1.27)) (justify left))
  3497. (uuid e03c85b0-e19f-4028-9f28-e800c75ea53d)
  3498. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 113.0863 109.2994 0)
  3499. (effects (font (size 1.27 1.27)) (justify left) hide)
  3500. )
  3501. )
  3502. (global_label "BSY" (shape input) (at 107.315 168.275 0) (fields_autoplaced)
  3503. (effects (font (size 1.27 1.27)) (justify left))
  3504. (uuid e4088bff-aae3-4633-a894-50953960e1ab)
  3505. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 255.905 0)
  3506. (effects (font (size 1.27 1.27)) hide)
  3507. )
  3508. )
  3509. (global_label "DB0" (shape input) (at 107.315 142.875 0) (fields_autoplaced)
  3510. (effects (font (size 1.27 1.27)) (justify left))
  3511. (uuid e564877a-0c3a-4a54-bc28-b0a6c56f7200)
  3512. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 220.345 0)
  3513. (effects (font (size 1.27 1.27)) hide)
  3514. )
  3515. )
  3516. (global_label "DB7" (shape input) (at 223.52 38.1 0) (fields_autoplaced)
  3517. (effects (font (size 1.27 1.27)) (justify left))
  3518. (uuid e7b92bb5-5c03-41fa-87f6-e6148f15a880)
  3519. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.38 -165.1 0)
  3520. (effects (font (size 1.27 1.27)) hide)
  3521. )
  3522. )
  3523. (global_label "SD_D2" (shape input) (at 142.875 60.96 180) (fields_autoplaced)
  3524. (effects (font (size 1.27 1.27)) (justify right))
  3525. (uuid eb2afaff-0315-411c-9466-fadf4a394f8f)
  3526. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 134.6241 61.0394 0)
  3527. (effects (font (size 1.27 1.27)) (justify right) hide)
  3528. )
  3529. )
  3530. (global_label "DBPTr" (shape input) (at 208.28 20.32 180) (fields_autoplaced)
  3531. (effects (font (size 1.27 1.27)) (justify right))
  3532. (uuid ed029e94-aaab-4fac-bc1a-1bfc5483a241)
  3533. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 185.42 236.22 0)
  3534. (effects (font (size 1.27 1.27)) hide)
  3535. )
  3536. )
  3537. (global_label "DB4T" (shape input) (at 208.28 22.86 180) (fields_autoplaced)
  3538. (effects (font (size 1.27 1.27)) (justify right))
  3539. (uuid eef6b8cc-133b-4aee-a1b3-467795b3d751)
  3540. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 250.19 -162.56 0)
  3541. (effects (font (size 1.27 1.27)) hide)
  3542. )
  3543. )
  3544. (global_label "DB2" (shape input) (at 107.315 147.955 0) (fields_autoplaced)
  3545. (effects (font (size 1.27 1.27)) (justify left))
  3546. (uuid ef56c368-4c3a-4c4f-856b-e3d20b39ab53)
  3547. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 217.805 0)
  3548. (effects (font (size 1.27 1.27)) hide)
  3549. )
  3550. )
  3551. (global_label "TRM_ON_J" (shape input) (at 36.195 134.62 0) (fields_autoplaced)
  3552. (effects (font (size 1.27 1.27)) (justify left))
  3553. (uuid f4f0decc-4128-47cc-88ec-91a0eda21fff)
  3554. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 47.7721 134.6994 0)
  3555. (effects (font (size 1.27 1.27)) (justify left) hide)
  3556. )
  3557. )
  3558. (global_label "iACK" (shape input) (at 210.82 129.54 180) (fields_autoplaced)
  3559. (effects (font (size 1.27 1.27)) (justify right))
  3560. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  3561. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.2625 129.4606 0)
  3562. (effects (font (size 1.27 1.27)) (justify right) hide)
  3563. )
  3564. )
  3565. (global_label "IO" (shape input) (at 106.045 83.82 0) (fields_autoplaced)
  3566. (effects (font (size 1.27 1.27)) (justify left))
  3567. (uuid f794d074-27b0-464e-8071-d7af18ceb605)
  3568. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 138.43 0)
  3569. (effects (font (size 1.27 1.27)) hide)
  3570. )
  3571. )
  3572. (global_label "DB0T" (shape input) (at 262.89 152.4 0) (fields_autoplaced)
  3573. (effects (font (size 1.27 1.27)) (justify left))
  3574. (uuid fa312dbb-8e1d-465a-9e0a-e885c919c096)
  3575. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 483.87 287.02 0)
  3576. (effects (font (size 1.27 1.27)) hide)
  3577. )
  3578. )
  3579. (global_label "DB1" (shape input) (at 107.315 145.415 0) (fields_autoplaced)
  3580. (effects (font (size 1.27 1.27)) (justify left))
  3581. (uuid fb2e6264-85e6-4087-8897-7c83f0c96bd3)
  3582. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.345 220.345 0)
  3583. (effects (font (size 1.27 1.27)) hide)
  3584. )
  3585. )
  3586. (global_label "ATN" (shape input) (at 106.045 111.76 0) (fields_autoplaced)
  3587. (effects (font (size 1.27 1.27)) (justify left))
  3588. (uuid fbef7ed0-85e2-43db-bc86-b37f2586ba1d)
  3589. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.265 189.23 0)
  3590. (effects (font (size 1.27 1.27)) hide)
  3591. )
  3592. )
  3593. (global_label "DBP" (shape input) (at 223.52 43.18 0) (fields_autoplaced)
  3594. (effects (font (size 1.27 1.27)) (justify left))
  3595. (uuid fc60595d-f956-46ab-b191-f1251bf0d24b)
  3596. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 246.38 -170.18 0)
  3597. (effects (font (size 1.27 1.27)) hide)
  3598. )
  3599. )
  3600. (global_label "ATN" (shape input) (at 48.26 121.92 0) (fields_autoplaced)
  3601. (effects (font (size 1.27 1.27)) (justify left))
  3602. (uuid feb21c89-8c6d-43a0-b20f-42a5473dac45)
  3603. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.33 213.36 0)
  3604. (effects (font (size 1.27 1.27)) hide)
  3605. )
  3606. )
  3607. (symbol (lib_id "Regulator_Linear:AMS1117CD-2.85") (at 34.925 151.13 0) (unit 1)
  3608. (in_bom yes) (on_board yes) (dnp no)
  3609. (uuid 00000000-0000-0000-0000-0000604489c4)
  3610. (property "Reference" "U3" (at 34.925 144.9832 0)
  3611. (effects (font (size 1.27 1.27)))
  3612. )
  3613. (property "Value" "AMS1117-2.85" (at 34.925 147.2946 0)
  3614. (effects (font (size 1.27 1.27)))
  3615. )
  3616. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (at 34.925 146.05 0)
  3617. (effects (font (size 1.27 1.27)) hide)
  3618. )
  3619. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (at 37.465 157.48 0)
  3620. (effects (font (size 1.27 1.27)) hide)
  3621. )
  3622. (pin "1" (uuid 91d911d5-cad3-4a98-ba2b-306af461b4c4))
  3623. (pin "2" (uuid c2b11866-3a23-42a2-9f5e-e75ffe537dc7))
  3624. (pin "3" (uuid c6e03d69-3b57-4242-987e-617ae3e99df4))
  3625. (instances
  3626. (project "PowerBook"
  3627. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3628. (reference "U3") (unit 1)
  3629. )
  3630. )
  3631. )
  3632. )
  3633. (symbol (lib_id "power:GND") (at 34.925 158.75 0) (unit 1)
  3634. (in_bom yes) (on_board yes) (dnp no)
  3635. (uuid 00000000-0000-0000-0000-0000604542f6)
  3636. (property "Reference" "#PWR012" (at 34.925 165.1 0)
  3637. (effects (font (size 1.27 1.27)) hide)
  3638. )
  3639. (property "Value" "GND" (at 35.052 163.1442 0)
  3640. (effects (font (size 1.27 1.27)))
  3641. )
  3642. (property "Footprint" "" (at 34.925 158.75 0)
  3643. (effects (font (size 1.27 1.27)) hide)
  3644. )
  3645. (property "Datasheet" "" (at 34.925 158.75 0)
  3646. (effects (font (size 1.27 1.27)) hide)
  3647. )
  3648. (pin "1" (uuid 514bbe6e-eb18-4ceb-a852-882d1c860c79))
  3649. (instances
  3650. (project "PowerBook"
  3651. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3652. (reference "#PWR012") (unit 1)
  3653. )
  3654. )
  3655. )
  3656. )
  3657. (symbol (lib_id "power:+2V8") (at 59.055 151.13 0) (unit 1)
  3658. (in_bom yes) (on_board yes) (dnp no)
  3659. (uuid 00000000-0000-0000-0000-0000604599aa)
  3660. (property "Reference" "#PWR015" (at 59.055 154.94 0)
  3661. (effects (font (size 1.27 1.27)) hide)
  3662. )
  3663. (property "Value" "+2V8" (at 59.436 146.7358 0)
  3664. (effects (font (size 1.27 1.27)))
  3665. )
  3666. (property "Footprint" "" (at 59.055 151.13 0)
  3667. (effects (font (size 1.27 1.27)) hide)
  3668. )
  3669. (property "Datasheet" "" (at 59.055 151.13 0)
  3670. (effects (font (size 1.27 1.27)) hide)
  3671. )
  3672. (pin "1" (uuid 99f6416c-a895-44fc-8550-e40ab4d3ae17))
  3673. (instances
  3674. (project "PowerBook"
  3675. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3676. (reference "#PWR015") (unit 1)
  3677. )
  3678. )
  3679. )
  3680. )
  3681. (symbol (lib_id "Device:CP") (at 47.625 154.94 0) (unit 1)
  3682. (in_bom yes) (on_board yes) (dnp no)
  3683. (uuid 00000000-0000-0000-0000-000060459e94)
  3684. (property "Reference" "C4" (at 50.6222 153.7716 0)
  3685. (effects (font (size 1.27 1.27)) (justify left))
  3686. )
  3687. (property "Value" "20uF" (at 50.6222 156.083 0)
  3688. (effects (font (size 1.27 1.27)) (justify left))
  3689. )
  3690. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 48.5902 158.75 0)
  3691. (effects (font (size 1.27 1.27)) hide)
  3692. )
  3693. (property "Datasheet" "~" (at 47.625 154.94 0)
  3694. (effects (font (size 1.27 1.27)) hide)
  3695. )
  3696. (pin "1" (uuid 5c15566c-9032-41eb-95de-076e9b65ab4e))
  3697. (pin "2" (uuid 88442892-f29d-4140-ac87-86057b31d44c))
  3698. (instances
  3699. (project "PowerBook"
  3700. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3701. (reference "C4") (unit 1)
  3702. )
  3703. )
  3704. )
  3705. )
  3706. (symbol (lib_id "Device:CP") (at 22.225 154.94 0) (unit 1)
  3707. (in_bom yes) (on_board yes) (dnp no)
  3708. (uuid 00000000-0000-0000-0000-00006045a89e)
  3709. (property "Reference" "C3" (at 19.2278 156.1084 0)
  3710. (effects (font (size 1.27 1.27)) (justify right))
  3711. )
  3712. (property "Value" "20uF" (at 19.2278 153.797 0)
  3713. (effects (font (size 1.27 1.27)) (justify right))
  3714. )
  3715. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 23.1902 158.75 0)
  3716. (effects (font (size 1.27 1.27)) hide)
  3717. )
  3718. (property "Datasheet" "~" (at 22.225 154.94 0)
  3719. (effects (font (size 1.27 1.27)) hide)
  3720. )
  3721. (pin "1" (uuid 75ceeb26-18a5-4360-b8ae-63937e72f4fd))
  3722. (pin "2" (uuid 01867a58-87f0-44a1-ae23-61f079912921))
  3723. (instances
  3724. (project "PowerBook"
  3725. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3726. (reference "C3") (unit 1)
  3727. )
  3728. )
  3729. )
  3730. )
  3731. (symbol (lib_id "power:GND") (at 22.225 158.75 0) (unit 1)
  3732. (in_bom yes) (on_board yes) (dnp no)
  3733. (uuid 00000000-0000-0000-0000-00006045bfed)
  3734. (property "Reference" "#PWR07" (at 22.225 165.1 0)
  3735. (effects (font (size 1.27 1.27)) hide)
  3736. )
  3737. (property "Value" "GND" (at 22.352 163.1442 0)
  3738. (effects (font (size 1.27 1.27)))
  3739. )
  3740. (property "Footprint" "" (at 22.225 158.75 0)
  3741. (effects (font (size 1.27 1.27)) hide)
  3742. )
  3743. (property "Datasheet" "" (at 22.225 158.75 0)
  3744. (effects (font (size 1.27 1.27)) hide)
  3745. )
  3746. (pin "1" (uuid 8edbf0fd-a702-42c5-9e2c-5cc1032dcf05))
  3747. (instances
  3748. (project "PowerBook"
  3749. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3750. (reference "#PWR07") (unit 1)
  3751. )
  3752. )
  3753. )
  3754. )
  3755. (symbol (lib_id "power:GND") (at 47.625 158.75 0) (unit 1)
  3756. (in_bom yes) (on_board yes) (dnp no)
  3757. (uuid 00000000-0000-0000-0000-00006045c342)
  3758. (property "Reference" "#PWR013" (at 47.625 165.1 0)
  3759. (effects (font (size 1.27 1.27)) hide)
  3760. )
  3761. (property "Value" "GND" (at 47.752 163.1442 0)
  3762. (effects (font (size 1.27 1.27)))
  3763. )
  3764. (property "Footprint" "" (at 47.625 158.75 0)
  3765. (effects (font (size 1.27 1.27)) hide)
  3766. )
  3767. (property "Datasheet" "" (at 47.625 158.75 0)
  3768. (effects (font (size 1.27 1.27)) hide)
  3769. )
  3770. (pin "1" (uuid 92321285-141f-48e9-a372-9cc5173abf6d))
  3771. (instances
  3772. (project "PowerBook"
  3773. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3774. (reference "#PWR013") (unit 1)
  3775. )
  3776. )
  3777. )
  3778. )
  3779. (symbol (lib_id "custom_symbols:+5V_TPWR") (at 24.13 179.705 90) (unit 1)
  3780. (in_bom yes) (on_board yes) (dnp no)
  3781. (uuid 00000000-0000-0000-0000-0000605263e4)
  3782. (property "Reference" "#PWR019" (at 27.94 179.705 0)
  3783. (effects (font (size 1.27 1.27)) hide)
  3784. )
  3785. (property "Value" "+5V_TPWR" (at 17.78 177.165 90)
  3786. (effects (font (size 1.27 1.27)))
  3787. )
  3788. (property "Footprint" "" (at 24.13 179.705 0)
  3789. (effects (font (size 1.27 1.27)) hide)
  3790. )
  3791. (property "Datasheet" "" (at 24.13 179.705 0)
  3792. (effects (font (size 1.27 1.27)) hide)
  3793. )
  3794. (pin "1" (uuid 291e6d25-1c1f-4680-8ca9-13d590de3d0d))
  3795. (instances
  3796. (project "PowerBook"
  3797. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3798. (reference "#PWR019") (unit 1)
  3799. )
  3800. )
  3801. )
  3802. )
  3803. (symbol (lib_id "power:+3V3") (at 210.82 142.24 90) (unit 1)
  3804. (in_bom yes) (on_board yes) (dnp no)
  3805. (uuid 00000000-0000-0000-0000-00006083f3ec)
  3806. (property "Reference" "#PWR047" (at 214.63 142.24 0)
  3807. (effects (font (size 1.27 1.27)) hide)
  3808. )
  3809. (property "Value" "+3V3" (at 207.5688 141.859 90)
  3810. (effects (font (size 1.27 1.27)) (justify left))
  3811. )
  3812. (property "Footprint" "" (at 210.82 142.24 0)
  3813. (effects (font (size 1.27 1.27)) hide)
  3814. )
  3815. (property "Datasheet" "" (at 210.82 142.24 0)
  3816. (effects (font (size 1.27 1.27)) hide)
  3817. )
  3818. (pin "1" (uuid d6888254-92b5-42f7-a2cb-268a0ff32eef))
  3819. (instances
  3820. (project "PowerBook"
  3821. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3822. (reference "#PWR047") (unit 1)
  3823. )
  3824. )
  3825. )
  3826. )
  3827. (symbol (lib_id "power:+5VP") (at 210.82 152.4 90) (unit 1)
  3828. (in_bom yes) (on_board yes) (dnp no)
  3829. (uuid 00000000-0000-0000-0000-0000608add8a)
  3830. (property "Reference" "#PWR036" (at 214.63 152.4 0)
  3831. (effects (font (size 1.27 1.27)) hide)
  3832. )
  3833. (property "Value" "+5VP" (at 207.5688 152.019 90)
  3834. (effects (font (size 1.27 1.27)) (justify left))
  3835. )
  3836. (property "Footprint" "" (at 210.82 152.4 0)
  3837. (effects (font (size 1.27 1.27)) hide)
  3838. )
  3839. (property "Datasheet" "" (at 210.82 152.4 0)
  3840. (effects (font (size 1.27 1.27)) hide)
  3841. )
  3842. (pin "1" (uuid 8b64525e-675d-48fe-834e-7d606eb182e3))
  3843. (instances
  3844. (project "PowerBook"
  3845. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3846. (reference "#PWR036") (unit 1)
  3847. )
  3848. )
  3849. )
  3850. )
  3851. (symbol (lib_id "power:+5F") (at 14.605 151.13 0) (unit 1)
  3852. (in_bom yes) (on_board yes) (dnp no)
  3853. (uuid 00000000-0000-0000-0000-000060a46e5b)
  3854. (property "Reference" "#PWR06" (at 14.605 154.94 0)
  3855. (effects (font (size 1.27 1.27)) hide)
  3856. )
  3857. (property "Value" "+5F" (at 14.986 146.7358 0)
  3858. (effects (font (size 1.27 1.27)))
  3859. )
  3860. (property "Footprint" "" (at 14.605 151.13 0)
  3861. (effects (font (size 1.27 1.27)) hide)
  3862. )
  3863. (property "Datasheet" "" (at 14.605 151.13 0)
  3864. (effects (font (size 1.27 1.27)) hide)
  3865. )
  3866. (pin "1" (uuid 812958b4-1883-4e2c-a9b1-f8077b570178))
  3867. (instances
  3868. (project "PowerBook"
  3869. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3870. (reference "#PWR06") (unit 1)
  3871. )
  3872. )
  3873. )
  3874. )
  3875. (symbol (lib_id "power:+5F") (at 55.88 172.085 0) (unit 1)
  3876. (in_bom yes) (on_board yes) (dnp no)
  3877. (uuid 00000000-0000-0000-0000-000060a54b3e)
  3878. (property "Reference" "#PWR027" (at 55.88 175.895 0)
  3879. (effects (font (size 1.27 1.27)) hide)
  3880. )
  3881. (property "Value" "+5F" (at 56.261 167.6908 0)
  3882. (effects (font (size 1.27 1.27)))
  3883. )
  3884. (property "Footprint" "" (at 55.88 172.085 0)
  3885. (effects (font (size 1.27 1.27)) hide)
  3886. )
  3887. (property "Datasheet" "" (at 55.88 172.085 0)
  3888. (effects (font (size 1.27 1.27)) hide)
  3889. )
  3890. (pin "1" (uuid 4d0429a7-4947-405e-9053-8622eed9c80f))
  3891. (instances
  3892. (project "PowerBook"
  3893. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3894. (reference "#PWR027") (unit 1)
  3895. )
  3896. )
  3897. )
  3898. )
  3899. (symbol (lib_id "power:+5VP") (at 39.37 178.435 0) (unit 1)
  3900. (in_bom yes) (on_board yes) (dnp no)
  3901. (uuid 00000000-0000-0000-0000-000060aa70a1)
  3902. (property "Reference" "#PWR025" (at 39.37 182.245 0)
  3903. (effects (font (size 1.27 1.27)) hide)
  3904. )
  3905. (property "Value" "+5VP" (at 39.751 174.0408 0)
  3906. (effects (font (size 1.27 1.27)))
  3907. )
  3908. (property "Footprint" "" (at 39.37 178.435 0)
  3909. (effects (font (size 1.27 1.27)) hide)
  3910. )
  3911. (property "Datasheet" "" (at 39.37 178.435 0)
  3912. (effects (font (size 1.27 1.27)) hide)
  3913. )
  3914. (pin "1" (uuid 63bdded8-3ff5-4c19-8af5-a44eee442a68))
  3915. (instances
  3916. (project "PowerBook"
  3917. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3918. (reference "#PWR025") (unit 1)
  3919. )
  3920. )
  3921. )
  3922. )
  3923. (symbol (lib_id "custom_symbols:BlackSCSI") (at 229.87 156.21 180) (unit 1)
  3924. (in_bom yes) (on_board yes) (dnp no)
  3925. (uuid 00000000-0000-0000-0000-000060ad3c40)
  3926. (property "Reference" "RP1" (at 229.87 160.02 0)
  3927. (effects (font (size 1.27 1.27)))
  3928. )
  3929. (property "Value" "Pico_Footprint" (at 229.87 157.48 0)
  3930. (effects (font (size 1.27 1.27)))
  3931. )
  3932. (property "Footprint" "Library:Raspberry_Pi_PicoW_SMT_THT" (at 229.87 158.75 0)
  3933. (effects (font (size 1.27 1.27)) hide)
  3934. )
  3935. (property "Datasheet" "" (at 227.33 152.4 0)
  3936. (effects (font (size 1.27 1.27)) hide)
  3937. )
  3938. (pin "1" (uuid 831a40cf-d386-48fc-8b39-094a3f71ee27))
  3939. (pin "10" (uuid 9ff6293b-68f9-43a8-970e-2fb5515952e5))
  3940. (pin "11" (uuid 29dafafd-f472-4aaf-8040-c9c0f625eef3))
  3941. (pin "12" (uuid da359725-aee5-4528-9eed-cb94fcb8fffc))
  3942. (pin "13" (uuid f04006fa-35fd-447b-9e95-975e0dec67c8))
  3943. (pin "14" (uuid 9b664edd-9026-46e2-9164-e2b4169d7d7f))
  3944. (pin "15" (uuid 514e2018-feed-4760-81b4-3215fcc3bfa9))
  3945. (pin "16" (uuid c8b29e06-4b17-4bf6-bdbd-dace57e07aaf))
  3946. (pin "17" (uuid 0d5880cb-c997-4346-8a4c-147141cb29ea))
  3947. (pin "18" (uuid c8463c9c-bcb3-4081-a363-16436a3117fc))
  3948. (pin "19" (uuid 8d672489-914c-401a-99dd-9705c8f7dd01))
  3949. (pin "2" (uuid 3c2e7b50-d793-445d-beea-3b8028469b13))
  3950. (pin "20" (uuid c66fd03a-304d-4ccf-a7b5-a6e16da0cf94))
  3951. (pin "21" (uuid 16120cef-f140-4c5a-a97b-1b66f47121c6))
  3952. (pin "22" (uuid a82aead3-1c28-4bb1-af24-ec0cc6d09193))
  3953. (pin "23" (uuid 4f364622-9d70-4c4a-b261-b8fc907c2bd6))
  3954. (pin "24" (uuid 697fe063-3f61-4af8-9e92-d4f79be169d4))
  3955. (pin "25" (uuid 3bbe6a1d-96f1-494a-b935-f7bb68461f0f))
  3956. (pin "26" (uuid 3599987d-dd58-415c-81c6-0f3c5336daee))
  3957. (pin "27" (uuid d0df5f81-4fcf-4bc9-a1dd-e56e02c93b9c))
  3958. (pin "28" (uuid 427aa9d6-e998-4da6-91fa-7d5a0801f566))
  3959. (pin "29" (uuid 9fb734cc-b170-47bd-9e75-57b6ea379ba1))
  3960. (pin "3" (uuid a5b742f3-f79e-4eab-98b1-2a8b131ffd3e))
  3961. (pin "30" (uuid 0731282d-d301-44e9-9695-aa41790843fa))
  3962. (pin "31" (uuid 18a6a6fa-7e7e-4839-abf8-d8ab2a813e55))
  3963. (pin "32" (uuid bf3f2f8b-374a-402c-9535-545bd1c1e241))
  3964. (pin "33" (uuid 739eb9ad-e4de-4927-b449-da751f1e3764))
  3965. (pin "34" (uuid 533b4e25-b956-4c6d-98d2-eb15a3b80d64))
  3966. (pin "35" (uuid 90cb83dc-1a11-45a5-97ad-621fae129bf9))
  3967. (pin "36" (uuid 41a93f37-be40-44dd-bab4-e8de0e81606a))
  3968. (pin "37" (uuid 980124dd-3bf4-462f-9ff4-1300576a994a))
  3969. (pin "38" (uuid 8d7ce083-660c-4822-a9fe-7a9920cea1aa))
  3970. (pin "39" (uuid 46b2da9b-f25f-40d0-bae8-be60a1cafa29))
  3971. (pin "4" (uuid 1e4a1739-fbcb-4101-8bb4-4a741cb898fb))
  3972. (pin "40" (uuid e8afcab6-de9c-4817-8bef-e17660351ece))
  3973. (pin "5" (uuid 0105d941-5d5a-4d59-affb-f30e1bb44e51))
  3974. (pin "6" (uuid 04f2e26f-5c63-4ec2-ac3e-3302b942de6d))
  3975. (pin "7" (uuid f941df0b-ee4b-43bf-bf78-09491735ff0c))
  3976. (pin "8" (uuid 0359b9a0-08f9-40cc-89a0-75de82fb29d3))
  3977. (pin "9" (uuid 393931f4-4966-4f33-9fbd-067637052de6))
  3978. (instances
  3979. (project "PowerBook"
  3980. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  3981. (reference "RP1") (unit 1)
  3982. )
  3983. )
  3984. )
  3985. )
  3986. (symbol (lib_id "power:GND") (at 210.82 134.62 270) (unit 1)
  3987. (in_bom yes) (on_board yes) (dnp no)
  3988. (uuid 00000000-0000-0000-0000-000060ae7910)
  3989. (property "Reference" "#PWR037" (at 204.47 134.62 0)
  3990. (effects (font (size 1.27 1.27)) hide)
  3991. )
  3992. (property "Value" "GND" (at 207.5688 134.747 90)
  3993. (effects (font (size 1.27 1.27)) (justify right))
  3994. )
  3995. (property "Footprint" "" (at 210.82 134.62 0)
  3996. (effects (font (size 1.27 1.27)) hide)
  3997. )
  3998. (property "Datasheet" "" (at 210.82 134.62 0)
  3999. (effects (font (size 1.27 1.27)) hide)
  4000. )
  4001. (pin "1" (uuid 2a6fdd99-5deb-4b9c-a810-445d6b23b46c))
  4002. (instances
  4003. (project "PowerBook"
  4004. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4005. (reference "#PWR037") (unit 1)
  4006. )
  4007. )
  4008. )
  4009. )
  4010. (symbol (lib_id "power:GND") (at 59.055 158.75 0) (unit 1)
  4011. (in_bom yes) (on_board yes) (dnp no)
  4012. (uuid 00000000-0000-0000-0000-0000620974b3)
  4013. (property "Reference" "#PWR016" (at 59.055 165.1 0)
  4014. (effects (font (size 1.27 1.27)) hide)
  4015. )
  4016. (property "Value" "GND" (at 59.182 163.1442 0)
  4017. (effects (font (size 1.27 1.27)))
  4018. )
  4019. (property "Footprint" "" (at 59.055 158.75 0)
  4020. (effects (font (size 1.27 1.27)) hide)
  4021. )
  4022. (property "Datasheet" "" (at 59.055 158.75 0)
  4023. (effects (font (size 1.27 1.27)) hide)
  4024. )
  4025. (pin "1" (uuid 8c54937d-9ea6-4999-a298-1d663afd5ff5))
  4026. (instances
  4027. (project "PowerBook"
  4028. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4029. (reference "#PWR016") (unit 1)
  4030. )
  4031. )
  4032. )
  4033. )
  4034. (symbol (lib_id "Device:CP") (at 59.055 154.94 0) (unit 1)
  4035. (in_bom yes) (on_board yes) (dnp no)
  4036. (uuid 00000000-0000-0000-0000-0000620974b9)
  4037. (property "Reference" "C5" (at 62.0522 153.7716 0)
  4038. (effects (font (size 1.27 1.27)) (justify left))
  4039. )
  4040. (property "Value" "0.1uF" (at 62.0522 156.083 0)
  4041. (effects (font (size 1.27 1.27)) (justify left))
  4042. )
  4043. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 60.0202 158.75 0)
  4044. (effects (font (size 1.27 1.27)) hide)
  4045. )
  4046. (property "Datasheet" "~" (at 59.055 154.94 0)
  4047. (effects (font (size 1.27 1.27)) hide)
  4048. )
  4049. (pin "1" (uuid 0c0b82a0-19b3-45c0-a98f-0104b6ac7cfa))
  4050. (pin "2" (uuid af073fa6-a783-40f2-9751-692984a62ffc))
  4051. (instances
  4052. (project "PowerBook"
  4053. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4054. (reference "C5") (unit 1)
  4055. )
  4056. )
  4057. )
  4058. )
  4059. (symbol (lib_id "power:GND") (at 212.725 75.565 0) (unit 1)
  4060. (in_bom yes) (on_board yes) (dnp no)
  4061. (uuid 00000000-0000-0000-0000-0000620b4134)
  4062. (property "Reference" "#PWR05" (at 212.725 81.915 0)
  4063. (effects (font (size 1.27 1.27)) hide)
  4064. )
  4065. (property "Value" "GND" (at 212.852 79.9592 0)
  4066. (effects (font (size 1.27 1.27)))
  4067. )
  4068. (property "Footprint" "" (at 212.725 75.565 0)
  4069. (effects (font (size 1.27 1.27)) hide)
  4070. )
  4071. (property "Datasheet" "" (at 212.725 75.565 0)
  4072. (effects (font (size 1.27 1.27)) hide)
  4073. )
  4074. (pin "1" (uuid a99c7862-d7cf-4bec-8254-d072b34fb419))
  4075. (instances
  4076. (project "PowerBook"
  4077. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4078. (reference "#PWR05") (unit 1)
  4079. )
  4080. )
  4081. )
  4082. )
  4083. (symbol (lib_id "Device:CP") (at 212.725 71.755 0) (unit 1)
  4084. (in_bom yes) (on_board yes) (dnp no)
  4085. (uuid 00000000-0000-0000-0000-0000620b413a)
  4086. (property "Reference" "C2" (at 215.7222 70.5866 0)
  4087. (effects (font (size 1.27 1.27)) (justify left))
  4088. )
  4089. (property "Value" "0.1uF" (at 215.7222 72.898 0)
  4090. (effects (font (size 1.27 1.27)) (justify left))
  4091. )
  4092. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 213.6902 75.565 0)
  4093. (effects (font (size 1.27 1.27)) hide)
  4094. )
  4095. (property "Datasheet" "~" (at 212.725 71.755 0)
  4096. (effects (font (size 1.27 1.27)) hide)
  4097. )
  4098. (pin "1" (uuid b3ca0ab9-5855-4dc9-9928-3bc761aa3040))
  4099. (pin "2" (uuid 2d0ccb5a-fc90-4652-9eb5-b711001eb4d0))
  4100. (instances
  4101. (project "PowerBook"
  4102. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4103. (reference "C2") (unit 1)
  4104. )
  4105. )
  4106. )
  4107. )
  4108. (symbol (lib_id "Device:D") (at 27.94 179.705 180) (unit 1)
  4109. (in_bom yes) (on_board yes) (dnp no)
  4110. (uuid 00000000-0000-0000-0000-0000620c30d1)
  4111. (property "Reference" "D1" (at 26.7716 177.673 90)
  4112. (effects (font (size 1.27 1.27)) (justify right))
  4113. )
  4114. (property "Value" "D" (at 29.083 177.673 90)
  4115. (effects (font (size 1.27 1.27)) (justify right))
  4116. )
  4117. (property "Footprint" "Diode_SMD:D_SMA" (at 27.94 179.705 0)
  4118. (effects (font (size 1.27 1.27)) hide)
  4119. )
  4120. (property "Datasheet" "~" (at 27.94 179.705 0)
  4121. (effects (font (size 1.27 1.27)) hide)
  4122. )
  4123. (pin "1" (uuid 7d45845a-6d69-45af-97de-5bc02297b233))
  4124. (pin "2" (uuid d178a976-ceac-4446-92bd-a15abdb74d2c))
  4125. (instances
  4126. (project "PowerBook"
  4127. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4128. (reference "D1") (unit 1)
  4129. )
  4130. )
  4131. )
  4132. )
  4133. (symbol (lib_id "power:GND") (at 55.88 187.325 0) (unit 1)
  4134. (in_bom yes) (on_board yes) (dnp no)
  4135. (uuid 00000000-0000-0000-0000-0000620e7a64)
  4136. (property "Reference" "#PWR018" (at 55.88 193.675 0)
  4137. (effects (font (size 1.27 1.27)) hide)
  4138. )
  4139. (property "Value" "GND" (at 56.007 191.7192 0)
  4140. (effects (font (size 1.27 1.27)))
  4141. )
  4142. (property "Footprint" "" (at 55.88 187.325 0)
  4143. (effects (font (size 1.27 1.27)) hide)
  4144. )
  4145. (property "Datasheet" "" (at 55.88 187.325 0)
  4146. (effects (font (size 1.27 1.27)) hide)
  4147. )
  4148. (pin "1" (uuid 6462a321-f55a-4682-a2db-a4cf030e708a))
  4149. (instances
  4150. (project "PowerBook"
  4151. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4152. (reference "#PWR018") (unit 1)
  4153. )
  4154. )
  4155. )
  4156. )
  4157. (symbol (lib_id "Device:CP") (at 55.88 183.515 0) (unit 1)
  4158. (in_bom yes) (on_board yes) (dnp no)
  4159. (uuid 00000000-0000-0000-0000-0000620e7a6a)
  4160. (property "Reference" "C6" (at 49.53 182.245 0)
  4161. (effects (font (size 1.27 1.27)) (justify left))
  4162. )
  4163. (property "Value" "4.7uF" (at 46.99 186.055 0)
  4164. (effects (font (size 1.27 1.27)) (justify left))
  4165. )
  4166. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 56.8452 187.325 0)
  4167. (effects (font (size 1.27 1.27)) hide)
  4168. )
  4169. (property "Datasheet" "~" (at 55.88 183.515 0)
  4170. (effects (font (size 1.27 1.27)) hide)
  4171. )
  4172. (pin "1" (uuid 752dd0db-3350-432a-a4ea-3cbf975365ef))
  4173. (pin "2" (uuid a7ab4152-eb90-46e8-bf7c-a531751f058e))
  4174. (instances
  4175. (project "PowerBook"
  4176. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4177. (reference "C6") (unit 1)
  4178. )
  4179. )
  4180. )
  4181. )
  4182. (symbol (lib_id "power:+3V3") (at 262.89 72.39 90) (unit 1)
  4183. (in_bom yes) (on_board yes) (dnp no)
  4184. (uuid 00000000-0000-0000-0000-00006210d951)
  4185. (property "Reference" "#PWR048" (at 266.7 72.39 0)
  4186. (effects (font (size 1.27 1.27)) hide)
  4187. )
  4188. (property "Value" "+3V3" (at 259.6388 72.009 90)
  4189. (effects (font (size 1.27 1.27)) (justify left))
  4190. )
  4191. (property "Footprint" "" (at 262.89 72.39 0)
  4192. (effects (font (size 1.27 1.27)) hide)
  4193. )
  4194. (property "Datasheet" "" (at 262.89 72.39 0)
  4195. (effects (font (size 1.27 1.27)) hide)
  4196. )
  4197. (pin "1" (uuid 29c77663-b78a-4771-9dd7-00994536f2b2))
  4198. (instances
  4199. (project "PowerBook"
  4200. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4201. (reference "#PWR048") (unit 1)
  4202. )
  4203. )
  4204. )
  4205. )
  4206. (symbol (lib_id "power:GND") (at 270.51 72.39 90) (unit 1)
  4207. (in_bom yes) (on_board yes) (dnp no)
  4208. (uuid 00000000-0000-0000-0000-000062115e1c)
  4209. (property "Reference" "#PWR050" (at 276.86 72.39 0)
  4210. (effects (font (size 1.27 1.27)) hide)
  4211. )
  4212. (property "Value" "GND" (at 274.9042 72.263 0)
  4213. (effects (font (size 1.27 1.27)))
  4214. )
  4215. (property "Footprint" "" (at 270.51 72.39 0)
  4216. (effects (font (size 1.27 1.27)) hide)
  4217. )
  4218. (property "Datasheet" "" (at 270.51 72.39 0)
  4219. (effects (font (size 1.27 1.27)) hide)
  4220. )
  4221. (pin "1" (uuid fc7e5eed-d585-4c99-a52a-3167fcb43cc9))
  4222. (instances
  4223. (project "PowerBook"
  4224. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4225. (reference "#PWR050") (unit 1)
  4226. )
  4227. )
  4228. )
  4229. )
  4230. (symbol (lib_id "Device:CP") (at 266.7 72.39 90) (unit 1)
  4231. (in_bom yes) (on_board yes) (dnp no)
  4232. (uuid 00000000-0000-0000-0000-000062115e22)
  4233. (property "Reference" "C12" (at 265.5316 69.3928 0)
  4234. (effects (font (size 1.27 1.27)) (justify left))
  4235. )
  4236. (property "Value" "0.1uF" (at 267.843 69.3928 0)
  4237. (effects (font (size 1.27 1.27)) (justify left))
  4238. )
  4239. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 270.51 71.4248 0)
  4240. (effects (font (size 1.27 1.27)) hide)
  4241. )
  4242. (property "Datasheet" "~" (at 266.7 72.39 0)
  4243. (effects (font (size 1.27 1.27)) hide)
  4244. )
  4245. (pin "1" (uuid 199c9d7d-1017-4719-8a87-dec201b08eca))
  4246. (pin "2" (uuid 8d19e530-0d8d-4cca-abb0-093052442c2b))
  4247. (instances
  4248. (project "PowerBook"
  4249. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4250. (reference "C12") (unit 1)
  4251. )
  4252. )
  4253. )
  4254. )
  4255. (symbol (lib_id "Connector:Conn_01x03_Male") (at 20.955 24.765 0) (unit 1)
  4256. (in_bom yes) (on_board yes) (dnp no)
  4257. (uuid 00000000-0000-0000-0000-00006225438d)
  4258. (property "Reference" "J1" (at 20.955 19.685 90)
  4259. (effects (font (size 1.27 1.27)) (justify right))
  4260. )
  4261. (property "Value" "Conn_01x03_Male" (at 19.685 18.415 90)
  4262. (effects (font (size 1.27 1.27)) (justify right))
  4263. )
  4264. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 20.955 24.765 0)
  4265. (effects (font (size 1.27 1.27)) hide)
  4266. )
  4267. (property "Datasheet" "~" (at 20.955 24.765 0)
  4268. (effects (font (size 1.27 1.27)) hide)
  4269. )
  4270. (pin "1" (uuid 5ce820f8-0590-4206-a242-9d059c237716))
  4271. (pin "2" (uuid 19d92275-d7f0-4fcf-8cba-f8ade0f21094))
  4272. (pin "3" (uuid 1db6e4d9-ee99-4684-81cb-6a407937070e))
  4273. (instances
  4274. (project "PowerBook"
  4275. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4276. (reference "J1") (unit 1)
  4277. )
  4278. )
  4279. )
  4280. )
  4281. (symbol (lib_id "power:GND") (at 28.575 31.115 270) (unit 1)
  4282. (in_bom yes) (on_board yes) (dnp no)
  4283. (uuid 00000000-0000-0000-0000-00006225dfcd)
  4284. (property "Reference" "#PWR04" (at 22.225 31.115 0)
  4285. (effects (font (size 1.27 1.27)) hide)
  4286. )
  4287. (property "Value" "GND" (at 24.1808 31.242 0)
  4288. (effects (font (size 1.27 1.27)))
  4289. )
  4290. (property "Footprint" "" (at 28.575 31.115 0)
  4291. (effects (font (size 1.27 1.27)) hide)
  4292. )
  4293. (property "Datasheet" "" (at 28.575 31.115 0)
  4294. (effects (font (size 1.27 1.27)) hide)
  4295. )
  4296. (pin "1" (uuid 514d6ae7-d013-4d42-acf7-b646b84d84e8))
  4297. (instances
  4298. (project "PowerBook"
  4299. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4300. (reference "#PWR04") (unit 1)
  4301. )
  4302. )
  4303. )
  4304. )
  4305. (symbol (lib_id "New_Library:LVT245") (at 215.9 16.51 0) (unit 1)
  4306. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4307. (uuid 02a5e4cf-cf8f-424d-98d2-b0a0b1565138)
  4308. (property "Reference" "U9" (at 215.9 13.97 0)
  4309. (effects (font (size 1.27 1.27)))
  4310. )
  4311. (property "Value" "LVTH245" (at 215.9 16.51 0)
  4312. (effects (font (size 1.27 1.27)))
  4313. )
  4314. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (at 215.9 11.43 0)
  4315. (effects (font (size 1.27 1.27)) hide)
  4316. )
  4317. (property "Datasheet" "" (at 215.9 16.51 0)
  4318. (effects (font (size 1.27 1.27)) hide)
  4319. )
  4320. (pin "1" (uuid 4c7e63e2-ef93-4976-a548-c1ef700dc51e))
  4321. (pin "10" (uuid 88c3e1d8-920e-4412-b2a4-614d8d03a70a))
  4322. (pin "11" (uuid b7331558-b45a-4c85-9ba7-556c7497aa6c))
  4323. (pin "12" (uuid 1b825145-4b64-4f30-a1c4-29b937e25d1d))
  4324. (pin "13" (uuid 523e32a0-8bce-484a-8f4a-d7b56c2efefb))
  4325. (pin "14" (uuid fb071c2b-453e-4bd0-8769-a03ae1f46a00))
  4326. (pin "15" (uuid ca76311c-47f8-4eff-992d-4622e299211a))
  4327. (pin "16" (uuid 29a302e6-2a1c-42c7-80d4-5f52fcf60d76))
  4328. (pin "17" (uuid 6d27b974-4072-4295-b32a-6a62fe668a2c))
  4329. (pin "18" (uuid 826c58bc-a9be-4844-b982-09004f49fbbb))
  4330. (pin "19" (uuid a04c5350-085a-4f30-96e5-2205680b81dd))
  4331. (pin "2" (uuid f516cfbf-e7f0-462c-9ad7-de2a606289be))
  4332. (pin "20" (uuid f2ca9619-6bf3-44f3-929d-70102c242f21))
  4333. (pin "3" (uuid d3ad5113-0193-44f6-908e-5a9da6dab832))
  4334. (pin "4" (uuid 4100ac4e-ce5c-4703-8da9-fcd68c8b4032))
  4335. (pin "5" (uuid 38ab38d4-f3ba-426e-befa-6bb1bcd30a2c))
  4336. (pin "6" (uuid 7e65e077-8ccd-48e3-9f66-1a7de0f291d7))
  4337. (pin "7" (uuid e7ba17d2-2547-4b6b-9f6a-1ff9181a20cc))
  4338. (pin "8" (uuid 1d43e50d-64b4-48b5-8912-d743a6f80d22))
  4339. (pin "9" (uuid 052deeb3-0657-46ef-9f0f-c3ef755f481a))
  4340. (instances
  4341. (project "PowerBook"
  4342. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4343. (reference "U9") (unit 1)
  4344. )
  4345. )
  4346. )
  4347. )
  4348. (symbol (lib_id "Device:R") (at 40.005 24.765 90) (unit 1)
  4349. (in_bom yes) (on_board yes) (dnp no)
  4350. (uuid 035dc70d-e8aa-4b6b-b88c-1e59c5c6f6cb)
  4351. (property "Reference" "R41" (at 40.005 30.0228 90)
  4352. (effects (font (size 1.27 1.27)))
  4353. )
  4354. (property "Value" "4.7k" (at 40.005 27.7114 90)
  4355. (effects (font (size 1.27 1.27)))
  4356. )
  4357. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 40.005 26.543 90)
  4358. (effects (font (size 1.27 1.27)) hide)
  4359. )
  4360. (property "Datasheet" "~" (at 40.005 24.765 0)
  4361. (effects (font (size 1.27 1.27)) hide)
  4362. )
  4363. (pin "1" (uuid 869a3629-b021-4843-b65d-0970215d8ede))
  4364. (pin "2" (uuid 6598c396-ad5d-44bd-bc8b-028eead07608))
  4365. (instances
  4366. (project "PowerBook"
  4367. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4368. (reference "R41") (unit 1)
  4369. )
  4370. )
  4371. )
  4372. )
  4373. (symbol (lib_id "Device:R") (at 84.455 25.4 0) (unit 1)
  4374. (in_bom yes) (on_board yes) (dnp no)
  4375. (uuid 07760295-4f28-4b06-854c-ed3785b08c1f)
  4376. (property "Reference" "R20" (at 86.995 24.13 90)
  4377. (effects (font (size 1.27 1.27)))
  4378. )
  4379. (property "Value" "4.7k" (at 84.455 25.4 90)
  4380. (effects (font (size 1.27 1.27)))
  4381. )
  4382. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 82.677 25.4 90)
  4383. (effects (font (size 1.27 1.27)) hide)
  4384. )
  4385. (property "Datasheet" "~" (at 84.455 25.4 0)
  4386. (effects (font (size 1.27 1.27)) hide)
  4387. )
  4388. (pin "1" (uuid 791079dd-8037-4899-afcd-a4a76ac71c94))
  4389. (pin "2" (uuid 044350ed-0b76-4411-b91e-a108aeebcbbb))
  4390. (instances
  4391. (project "PowerBook"
  4392. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4393. (reference "R20") (unit 1)
  4394. )
  4395. )
  4396. )
  4397. )
  4398. (symbol (lib_id "power:GND") (at 241.3 29.21 0) (unit 1)
  4399. (in_bom yes) (on_board yes) (dnp no)
  4400. (uuid 095735aa-ddd8-4263-8867-631a651120f2)
  4401. (property "Reference" "#PWR022" (at 241.3 35.56 0)
  4402. (effects (font (size 1.27 1.27)) hide)
  4403. )
  4404. (property "Value" "GND" (at 241.427 33.6042 0)
  4405. (effects (font (size 1.27 1.27)))
  4406. )
  4407. (property "Footprint" "" (at 241.3 29.21 0)
  4408. (effects (font (size 1.27 1.27)) hide)
  4409. )
  4410. (property "Datasheet" "" (at 241.3 29.21 0)
  4411. (effects (font (size 1.27 1.27)) hide)
  4412. )
  4413. (pin "1" (uuid dc7adde5-2f89-495f-b439-197a381da337))
  4414. (instances
  4415. (project "PowerBook"
  4416. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4417. (reference "#PWR022") (unit 1)
  4418. )
  4419. )
  4420. )
  4421. )
  4422. (symbol (lib_id "power:+3V3") (at 142.875 68.58 90) (unit 1)
  4423. (in_bom yes) (on_board yes) (dnp no)
  4424. (uuid 0d3158d8-126d-4ee8-93bd-fcb2b0c14a18)
  4425. (property "Reference" "#PWR0101" (at 146.685 68.58 0)
  4426. (effects (font (size 1.27 1.27)) hide)
  4427. )
  4428. (property "Value" "+3V3" (at 139.6238 68.199 90)
  4429. (effects (font (size 1.27 1.27)) (justify left))
  4430. )
  4431. (property "Footprint" "" (at 142.875 68.58 0)
  4432. (effects (font (size 1.27 1.27)) hide)
  4433. )
  4434. (property "Datasheet" "" (at 142.875 68.58 0)
  4435. (effects (font (size 1.27 1.27)) hide)
  4436. )
  4437. (pin "1" (uuid 3608277b-1411-4c19-85b6-02f9d1479cde))
  4438. (instances
  4439. (project "PowerBook"
  4440. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4441. (reference "#PWR0101") (unit 1)
  4442. )
  4443. )
  4444. )
  4445. )
  4446. (symbol (lib_id "power:+2V8") (at 38.1 99.06 270) (unit 1)
  4447. (in_bom yes) (on_board yes) (dnp no)
  4448. (uuid 110ee2d9-214b-4063-b966-daae9b2133f5)
  4449. (property "Reference" "#PWR030" (at 34.29 99.06 0)
  4450. (effects (font (size 1.27 1.27)) hide)
  4451. )
  4452. (property "Value" "+2V8" (at 42.4942 99.441 90)
  4453. (effects (font (size 1.27 1.27)))
  4454. )
  4455. (property "Footprint" "" (at 38.1 99.06 0)
  4456. (effects (font (size 1.27 1.27)) hide)
  4457. )
  4458. (property "Datasheet" "" (at 38.1 99.06 0)
  4459. (effects (font (size 1.27 1.27)) hide)
  4460. )
  4461. (pin "1" (uuid 15e511fd-c0d9-411d-bd21-8d7523c6bf68))
  4462. (instances
  4463. (project "PowerBook"
  4464. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4465. (reference "#PWR030") (unit 1)
  4466. )
  4467. )
  4468. )
  4469. )
  4470. (symbol (lib_id "power:+5VD") (at 83.185 186.055 180) (unit 1)
  4471. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4472. (uuid 12e48db6-8eac-47f9-9e49-a5ed5707c406)
  4473. (property "Reference" "#PWR038" (at 83.185 182.245 0)
  4474. (effects (font (size 1.27 1.27)) hide)
  4475. )
  4476. (property "Value" "+5VD" (at 83.185 191.135 0)
  4477. (effects (font (size 1.27 1.27)))
  4478. )
  4479. (property "Footprint" "" (at 83.185 186.055 0)
  4480. (effects (font (size 1.27 1.27)) hide)
  4481. )
  4482. (property "Datasheet" "" (at 83.185 186.055 0)
  4483. (effects (font (size 1.27 1.27)) hide)
  4484. )
  4485. (pin "1" (uuid 8c4a93bc-6d08-4a0e-a19b-232c8c4eee09))
  4486. (instances
  4487. (project "PowerBook"
  4488. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4489. (reference "#PWR038") (unit 1)
  4490. )
  4491. )
  4492. )
  4493. )
  4494. (symbol (lib_id "Mechanical:MountingHole") (at 123.19 27.305 0) (unit 1)
  4495. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4496. (uuid 1312fbcf-80de-48eb-991c-a203983890d1)
  4497. (property "Reference" "H3" (at 125.73 26.0349 0)
  4498. (effects (font (size 1.27 1.27)) (justify left))
  4499. )
  4500. (property "Value" "MountingHole" (at 125.73 28.5749 0)
  4501. (effects (font (size 1.27 1.27)) (justify left))
  4502. )
  4503. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 123.19 27.305 0)
  4504. (effects (font (size 1.27 1.27)) hide)
  4505. )
  4506. (property "Datasheet" "~" (at 123.19 27.305 0)
  4507. (effects (font (size 1.27 1.27)) hide)
  4508. )
  4509. (instances
  4510. (project "PowerBook"
  4511. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4512. (reference "H3") (unit 1)
  4513. )
  4514. )
  4515. )
  4516. )
  4517. (symbol (lib_id "power:GND") (at 210.82 109.22 270) (unit 1)
  4518. (in_bom yes) (on_board yes) (dnp no)
  4519. (uuid 147842c0-fd7a-45c3-bcca-8e6b219b503c)
  4520. (property "Reference" "#PWR061" (at 204.47 109.22 0)
  4521. (effects (font (size 1.27 1.27)) hide)
  4522. )
  4523. (property "Value" "GND" (at 207.5688 109.347 90)
  4524. (effects (font (size 1.27 1.27)) (justify right))
  4525. )
  4526. (property "Footprint" "" (at 210.82 109.22 0)
  4527. (effects (font (size 1.27 1.27)) hide)
  4528. )
  4529. (property "Datasheet" "" (at 210.82 109.22 0)
  4530. (effects (font (size 1.27 1.27)) hide)
  4531. )
  4532. (pin "1" (uuid 74bc09b9-c613-4477-98c6-c4b39bbc7327))
  4533. (instances
  4534. (project "PowerBook"
  4535. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4536. (reference "#PWR061") (unit 1)
  4537. )
  4538. )
  4539. )
  4540. )
  4541. (symbol (lib_id "power:GND") (at 142.875 76.2 270) (unit 1)
  4542. (in_bom yes) (on_board yes) (dnp no)
  4543. (uuid 1557db5f-effa-4bbe-b487-15625e4b297d)
  4544. (property "Reference" "#PWR0103" (at 136.525 76.2 0)
  4545. (effects (font (size 1.27 1.27)) hide)
  4546. )
  4547. (property "Value" "GND" (at 139.6238 76.327 90)
  4548. (effects (font (size 1.27 1.27)) (justify right))
  4549. )
  4550. (property "Footprint" "" (at 142.875 76.2 0)
  4551. (effects (font (size 1.27 1.27)) hide)
  4552. )
  4553. (property "Datasheet" "" (at 142.875 76.2 0)
  4554. (effects (font (size 1.27 1.27)) hide)
  4555. )
  4556. (pin "1" (uuid b0b3810f-5d6d-4695-a71d-44f6add3c1b4))
  4557. (instances
  4558. (project "PowerBook"
  4559. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4560. (reference "#PWR0103") (unit 1)
  4561. )
  4562. )
  4563. )
  4564. )
  4565. (symbol (lib_id "Mechanical:MountingHole") (at 123.19 34.29 0) (unit 1)
  4566. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4567. (uuid 158e366d-4f48-4ba0-a1f9-c0f1ed045281)
  4568. (property "Reference" "H1" (at 125.73 33.0199 0)
  4569. (effects (font (size 1.27 1.27)) (justify left))
  4570. )
  4571. (property "Value" "MountingHole" (at 125.73 35.5599 0)
  4572. (effects (font (size 1.27 1.27)) (justify left))
  4573. )
  4574. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 123.19 34.29 0)
  4575. (effects (font (size 1.27 1.27)) hide)
  4576. )
  4577. (property "Datasheet" "~" (at 123.19 34.29 0)
  4578. (effects (font (size 1.27 1.27)) hide)
  4579. )
  4580. (instances
  4581. (project "PowerBook"
  4582. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4583. (reference "H1") (unit 1)
  4584. )
  4585. )
  4586. )
  4587. )
  4588. (symbol (lib_id "Device:CP") (at 266.7 60.325 90) (unit 1)
  4589. (in_bom yes) (on_board yes) (dnp no)
  4590. (uuid 1785c381-6dcd-4938-a76c-c73a75982fc7)
  4591. (property "Reference" "C16" (at 265.5316 57.3278 0)
  4592. (effects (font (size 1.27 1.27)) (justify left))
  4593. )
  4594. (property "Value" "0.1uF" (at 267.843 57.3278 0)
  4595. (effects (font (size 1.27 1.27)) (justify left))
  4596. )
  4597. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 270.51 59.3598 0)
  4598. (effects (font (size 1.27 1.27)) hide)
  4599. )
  4600. (property "Datasheet" "~" (at 266.7 60.325 0)
  4601. (effects (font (size 1.27 1.27)) hide)
  4602. )
  4603. (pin "1" (uuid dc7f2170-13d4-4dc9-a598-7b525aa57c4b))
  4604. (pin "2" (uuid 72fcbd7d-64d4-4ab7-859c-35066890279d))
  4605. (instances
  4606. (project "PowerBook"
  4607. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4608. (reference "C16") (unit 1)
  4609. )
  4610. )
  4611. )
  4612. )
  4613. (symbol (lib_id "power:GND") (at 86.995 91.44 270) (unit 1)
  4614. (in_bom yes) (on_board yes) (dnp no)
  4615. (uuid 18c17605-62db-400f-bc22-1ca2c83ed9e1)
  4616. (property "Reference" "#PWR033" (at 80.645 91.44 0)
  4617. (effects (font (size 1.27 1.27)) hide)
  4618. )
  4619. (property "Value" "GND" (at 82.6008 91.567 90)
  4620. (effects (font (size 1.27 1.27)))
  4621. )
  4622. (property "Footprint" "" (at 86.995 91.44 0)
  4623. (effects (font (size 1.27 1.27)) hide)
  4624. )
  4625. (property "Datasheet" "" (at 86.995 91.44 0)
  4626. (effects (font (size 1.27 1.27)) hide)
  4627. )
  4628. (pin "1" (uuid 41a929d0-b420-447c-a02d-0bbe2b7cc86f))
  4629. (instances
  4630. (project "PowerBook"
  4631. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4632. (reference "#PWR033") (unit 1)
  4633. )
  4634. )
  4635. )
  4636. )
  4637. (symbol (lib_id "Device:R") (at 39.37 82.55 90) (unit 1)
  4638. (in_bom yes) (on_board yes) (dnp no)
  4639. (uuid 19f1c57a-acc4-41a5-9982-d86f42346fa7)
  4640. (property "Reference" "R39" (at 41.275 82.55 90)
  4641. (effects (font (size 1.27 1.27)) (justify left))
  4642. )
  4643. (property "Value" "110" (at 55.88 82.55 90)
  4644. (effects (font (size 1.27 1.27)) (justify left))
  4645. )
  4646. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 84.328 90)
  4647. (effects (font (size 1.27 1.27)) hide)
  4648. )
  4649. (property "Datasheet" "~" (at 39.37 82.55 0)
  4650. (effects (font (size 1.27 1.27)) hide)
  4651. )
  4652. (pin "1" (uuid bad36a69-3d2d-479c-a4ea-c36f5b30bcb4))
  4653. (pin "2" (uuid 5e57c37a-4739-4164-b8ab-0d2a29e7170e))
  4654. (instances
  4655. (project "PowerBook"
  4656. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4657. (reference "R39") (unit 1)
  4658. )
  4659. )
  4660. )
  4661. )
  4662. (symbol (lib_id "Device:R") (at 193.675 131.445 90) (unit 1)
  4663. (in_bom yes) (on_board yes) (dnp no)
  4664. (uuid 1d0ec28e-d705-443e-9ba3-9d4321b291df)
  4665. (property "Reference" "R21" (at 192.405 128.905 90)
  4666. (effects (font (size 1.27 1.27)))
  4667. )
  4668. (property "Value" "1k" (at 193.675 133.985 90)
  4669. (effects (font (size 1.27 1.27)))
  4670. )
  4671. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 193.675 133.223 90)
  4672. (effects (font (size 1.27 1.27)) hide)
  4673. )
  4674. (property "Datasheet" "~" (at 193.675 131.445 0)
  4675. (effects (font (size 1.27 1.27)) hide)
  4676. )
  4677. (pin "1" (uuid f063d3ff-9595-4d7e-ba65-b1106403ca8d))
  4678. (pin "2" (uuid ba58adee-8a42-4da6-b929-aed2a09cf828))
  4679. (instances
  4680. (project "PowerBook"
  4681. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4682. (reference "R21") (unit 1)
  4683. )
  4684. )
  4685. )
  4686. )
  4687. (symbol (lib_id "New_Library:SM04B-SRSS-TB(LF)(SN)") (at 95.885 24.765 90) (unit 1)
  4688. (in_bom yes) (on_board yes) (dnp no)
  4689. (uuid 21add2f4-2869-442b-98d7-909b3129edfc)
  4690. (property "Reference" "J3" (at 107.315 23.4949 90)
  4691. (effects (font (size 1.27 1.27)) (justify right))
  4692. )
  4693. (property "Value" "SM04B-SRSS-TB(LF)(SN)" (at 85.09 18.415 90)
  4694. (effects (font (size 1.27 1.27)) (justify right))
  4695. )
  4696. (property "Footprint" "Library:JST_SM04B-SRSS-TB(LF)(SN)" (at 80.645 24.765 0)
  4697. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4698. )
  4699. (property "Datasheet" "" (at 95.885 24.765 0)
  4700. (effects (font (size 1.27 1.27)) hide)
  4701. )
  4702. (property "MF" "" (at 78.105 24.765 0)
  4703. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4704. )
  4705. (property "Description" "" (at 95.885 24.765 0)
  4706. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4707. )
  4708. (property "Package" "" (at 90.805 24.765 0)
  4709. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4710. )
  4711. (property "Price" "" (at 95.885 24.765 0)
  4712. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4713. )
  4714. (property "Check_prices" "" (at 83.185 24.765 0)
  4715. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4716. )
  4717. (property "STANDARD" "Manufacturer recommendations" (at 85.725 24.765 0)
  4718. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4719. )
  4720. (property "SnapEDA_Link" "" (at 83.185 26.035 0)
  4721. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4722. )
  4723. (property "MP" "SM04B-SRSS-TB(LF)(SN)" (at 83.185 26.035 0)
  4724. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4725. )
  4726. (property "Availability" "" (at 75.565 24.765 0)
  4727. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4728. )
  4729. (property "MANUFACTURER" "" (at 92.075 24.765 0)
  4730. (effects (font (size 1.27 1.27)) (justify bottom) hide)
  4731. )
  4732. (pin "1" (uuid aaf96662-9591-42ce-b7db-67a91739af24))
  4733. (pin "2" (uuid f6bcb97b-d14e-444e-bbe0-284d0aa9c15a))
  4734. (pin "3" (uuid 6afcb48f-d988-4583-9fb2-0fa0e8cab10f))
  4735. (pin "4" (uuid ae8f40e4-49e0-4b3d-b03d-dfde500f8f7a))
  4736. (pin "S1" (uuid 5e01779c-5efa-40e7-a9c2-4b57009377ef))
  4737. (pin "S2" (uuid fea8128c-16bb-4d4a-9268-4966fdbb0026))
  4738. (instances
  4739. (project "PowerBook"
  4740. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4741. (reference "J3") (unit 1)
  4742. )
  4743. )
  4744. )
  4745. )
  4746. (symbol (lib_id "power:GND") (at 247.65 109.22 90) (unit 1)
  4747. (in_bom yes) (on_board yes) (dnp no)
  4748. (uuid 21b7d809-8773-4902-9010-08ad303d3a73)
  4749. (property "Reference" "#PWR064" (at 254 109.22 0)
  4750. (effects (font (size 1.27 1.27)) hide)
  4751. )
  4752. (property "Value" "GND" (at 250.9012 109.093 90)
  4753. (effects (font (size 1.27 1.27)) (justify right))
  4754. )
  4755. (property "Footprint" "" (at 247.65 109.22 0)
  4756. (effects (font (size 1.27 1.27)) hide)
  4757. )
  4758. (property "Datasheet" "" (at 247.65 109.22 0)
  4759. (effects (font (size 1.27 1.27)) hide)
  4760. )
  4761. (pin "1" (uuid 76cb73b8-6ea7-412c-928d-fc56b80056f6))
  4762. (instances
  4763. (project "PowerBook"
  4764. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4765. (reference "#PWR064") (unit 1)
  4766. )
  4767. )
  4768. )
  4769. )
  4770. (symbol (lib_id "Device:R") (at 39.37 72.39 90) (unit 1)
  4771. (in_bom yes) (on_board yes) (dnp no)
  4772. (uuid 224b526f-d4bf-40ee-af49-967fa35e696e)
  4773. (property "Reference" "R34" (at 41.275 72.39 90)
  4774. (effects (font (size 1.27 1.27)) (justify left))
  4775. )
  4776. (property "Value" "110" (at 55.88 72.39 90)
  4777. (effects (font (size 1.27 1.27)) (justify left))
  4778. )
  4779. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 74.168 90)
  4780. (effects (font (size 1.27 1.27)) hide)
  4781. )
  4782. (property "Datasheet" "~" (at 39.37 72.39 0)
  4783. (effects (font (size 1.27 1.27)) hide)
  4784. )
  4785. (pin "1" (uuid 123050f9-9510-4eac-bdc6-a1c2d300caea))
  4786. (pin "2" (uuid 1daeea75-dd2d-423a-9f46-f78bc63f4fc6))
  4787. (instances
  4788. (project "PowerBook"
  4789. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4790. (reference "R34") (unit 1)
  4791. )
  4792. )
  4793. )
  4794. )
  4795. (symbol (lib_id "Device:R") (at 259.08 132.08 90) (unit 1)
  4796. (in_bom yes) (on_board yes) (dnp no)
  4797. (uuid 253b0d6b-ffe7-4cbf-ac40-eeb40dc36d64)
  4798. (property "Reference" "R14" (at 257.81 132.08 90)
  4799. (effects (font (size 1.27 1.27)))
  4800. )
  4801. (property "Value" "1k" (at 260.35 132.08 90)
  4802. (effects (font (size 1.27 1.27)))
  4803. )
  4804. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 133.858 90)
  4805. (effects (font (size 1.27 1.27)) hide)
  4806. )
  4807. (property "Datasheet" "~" (at 259.08 132.08 0)
  4808. (effects (font (size 1.27 1.27)) hide)
  4809. )
  4810. (pin "1" (uuid 4331b280-8062-4b29-88f6-da1bf0c5c545))
  4811. (pin "2" (uuid 488c9a02-115f-4275-9571-bffc85bb87ea))
  4812. (instances
  4813. (project "PowerBook"
  4814. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4815. (reference "R14") (unit 1)
  4816. )
  4817. )
  4818. )
  4819. )
  4820. (symbol (lib_id "power:+2V8") (at 28.575 129.54 0) (unit 1)
  4821. (in_bom yes) (on_board yes) (dnp no)
  4822. (uuid 270a4149-8dcd-455a-ae27-1ffbab7016dd)
  4823. (property "Reference" "#PWR032" (at 28.575 133.35 0)
  4824. (effects (font (size 1.27 1.27)) hide)
  4825. )
  4826. (property "Value" "+2V8" (at 28.956 125.1458 0)
  4827. (effects (font (size 1.27 1.27)))
  4828. )
  4829. (property "Footprint" "" (at 28.575 129.54 0)
  4830. (effects (font (size 1.27 1.27)) hide)
  4831. )
  4832. (property "Datasheet" "" (at 28.575 129.54 0)
  4833. (effects (font (size 1.27 1.27)) hide)
  4834. )
  4835. (pin "1" (uuid 1d5414f7-f2e3-4fe9-96c4-dc691632a190))
  4836. (instances
  4837. (project "PowerBook"
  4838. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4839. (reference "#PWR032") (unit 1)
  4840. )
  4841. )
  4842. )
  4843. )
  4844. (symbol (lib_id "Device:CP") (at 243.84 24.13 0) (unit 1)
  4845. (in_bom yes) (on_board yes) (dnp no)
  4846. (uuid 29562875-7091-49f3-ae5f-38d2449ff6ee)
  4847. (property "Reference" "C15" (at 246.8372 22.9616 0)
  4848. (effects (font (size 1.27 1.27)) (justify left))
  4849. )
  4850. (property "Value" "4.7uF" (at 246.8372 25.273 0)
  4851. (effects (font (size 1.27 1.27)) (justify left))
  4852. )
  4853. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 244.8052 27.94 0)
  4854. (effects (font (size 1.27 1.27)) hide)
  4855. )
  4856. (property "Datasheet" "~" (at 243.84 24.13 0)
  4857. (effects (font (size 1.27 1.27)) hide)
  4858. )
  4859. (pin "1" (uuid e101ed8b-0204-451b-ba98-ead9d091967d))
  4860. (pin "2" (uuid 3fe1cebf-4908-4777-987f-dedb29ea029c))
  4861. (instances
  4862. (project "PowerBook"
  4863. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4864. (reference "C15") (unit 1)
  4865. )
  4866. )
  4867. )
  4868. )
  4869. (symbol (lib_id "power:GND") (at 223.52 22.86 90) (unit 1)
  4870. (in_bom yes) (on_board yes) (dnp no)
  4871. (uuid 29cefbf4-f394-4720-bff7-30d843d32f60)
  4872. (property "Reference" "#PWR020" (at 229.87 22.86 0)
  4873. (effects (font (size 1.27 1.27)) hide)
  4874. )
  4875. (property "Value" "GND" (at 227.9142 22.733 90)
  4876. (effects (font (size 1.27 1.27)))
  4877. )
  4878. (property "Footprint" "" (at 223.52 22.86 0)
  4879. (effects (font (size 1.27 1.27)) hide)
  4880. )
  4881. (property "Datasheet" "" (at 223.52 22.86 0)
  4882. (effects (font (size 1.27 1.27)) hide)
  4883. )
  4884. (pin "1" (uuid 9651c7b5-ce6f-4292-8c02-c6f366a37edd))
  4885. (instances
  4886. (project "PowerBook"
  4887. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4888. (reference "#PWR020") (unit 1)
  4889. )
  4890. )
  4891. )
  4892. )
  4893. (symbol (lib_id "Device:R") (at 193.04 120.015 90) (unit 1)
  4894. (in_bom yes) (on_board yes) (dnp no)
  4895. (uuid 2a7cf715-54e1-4a1f-ab87-6611957d8a99)
  4896. (property "Reference" "R29" (at 193.04 120.015 90)
  4897. (effects (font (size 1.27 1.27)))
  4898. )
  4899. (property "Value" "1k" (at 193.04 122.555 90)
  4900. (effects (font (size 1.27 1.27)))
  4901. )
  4902. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 193.04 121.793 90)
  4903. (effects (font (size 1.27 1.27)) hide)
  4904. )
  4905. (property "Datasheet" "~" (at 193.04 120.015 0)
  4906. (effects (font (size 1.27 1.27)) hide)
  4907. )
  4908. (pin "1" (uuid 4c0d34d0-8d1c-482a-bcce-271ba6094c36))
  4909. (pin "2" (uuid e12aceff-e611-4175-8421-eb9dac716fa6))
  4910. (instances
  4911. (project "PowerBook"
  4912. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4913. (reference "R29") (unit 1)
  4914. )
  4915. )
  4916. )
  4917. )
  4918. (symbol (lib_id "Device:R") (at 41.91 111.76 90) (unit 1)
  4919. (in_bom yes) (on_board yes) (dnp no)
  4920. (uuid 2aacc089-5ad1-4daa-ad3c-c778a777df54)
  4921. (property "Reference" "R10" (at 43.815 111.76 90)
  4922. (effects (font (size 1.27 1.27)) (justify left))
  4923. )
  4924. (property "Value" "110" (at 58.42 111.76 90)
  4925. (effects (font (size 1.27 1.27)) (justify left))
  4926. )
  4927. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 113.538 90)
  4928. (effects (font (size 1.27 1.27)) hide)
  4929. )
  4930. (property "Datasheet" "~" (at 41.91 111.76 0)
  4931. (effects (font (size 1.27 1.27)) hide)
  4932. )
  4933. (pin "1" (uuid d0349d77-b1aa-40a0-aaf2-3ae5224328c5))
  4934. (pin "2" (uuid 18da1391-0135-4ff4-8f30-9119cda32eaf))
  4935. (instances
  4936. (project "PowerBook"
  4937. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4938. (reference "R10") (unit 1)
  4939. )
  4940. )
  4941. )
  4942. )
  4943. (symbol (lib_id "Device:R") (at 41.91 104.14 90) (unit 1)
  4944. (in_bom yes) (on_board yes) (dnp no)
  4945. (uuid 2c2472f8-2509-4a9f-be36-0a8d5fd45923)
  4946. (property "Reference" "R7" (at 43.18 104.14 90)
  4947. (effects (font (size 1.27 1.27)) (justify left))
  4948. )
  4949. (property "Value" "110" (at 58.42 104.14 90)
  4950. (effects (font (size 1.27 1.27)) (justify left))
  4951. )
  4952. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 105.918 90)
  4953. (effects (font (size 1.27 1.27)) hide)
  4954. )
  4955. (property "Datasheet" "~" (at 41.91 104.14 0)
  4956. (effects (font (size 1.27 1.27)) hide)
  4957. )
  4958. (pin "1" (uuid 87a29822-1840-4f8b-b4a0-598e28880439))
  4959. (pin "2" (uuid 5fe3f022-4eba-49f0-95af-2110ee8ffca8))
  4960. (instances
  4961. (project "PowerBook"
  4962. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4963. (reference "R7") (unit 1)
  4964. )
  4965. )
  4966. )
  4967. )
  4968. (symbol (lib_id "power:+5VA") (at 83.185 137.795 0) (unit 1)
  4969. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4970. (uuid 2f3fa7e6-49a6-4adc-9591-8c6911770fea)
  4971. (property "Reference" "#PWR035" (at 83.185 141.605 0)
  4972. (effects (font (size 1.27 1.27)) hide)
  4973. )
  4974. (property "Value" "+5VA" (at 83.185 132.715 0)
  4975. (effects (font (size 1.27 1.27)))
  4976. )
  4977. (property "Footprint" "" (at 83.185 137.795 0)
  4978. (effects (font (size 1.27 1.27)) hide)
  4979. )
  4980. (property "Datasheet" "" (at 83.185 137.795 0)
  4981. (effects (font (size 1.27 1.27)) hide)
  4982. )
  4983. (pin "1" (uuid 8d3c7e41-2af0-4988-ad76-edff77927615))
  4984. (instances
  4985. (project "PowerBook"
  4986. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  4987. (reference "#PWR035") (unit 1)
  4988. )
  4989. )
  4990. )
  4991. )
  4992. (symbol (lib_id "Device:R") (at 39.37 87.63 90) (unit 1)
  4993. (in_bom yes) (on_board yes) (dnp no)
  4994. (uuid 2f4df532-4212-49ea-815b-f21ebb8e35ee)
  4995. (property "Reference" "R37" (at 41.275 87.63 90)
  4996. (effects (font (size 1.27 1.27)) (justify left))
  4997. )
  4998. (property "Value" "110" (at 55.88 87.63 90)
  4999. (effects (font (size 1.27 1.27)) (justify left))
  5000. )
  5001. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 89.408 90)
  5002. (effects (font (size 1.27 1.27)) hide)
  5003. )
  5004. (property "Datasheet" "~" (at 39.37 87.63 0)
  5005. (effects (font (size 1.27 1.27)) hide)
  5006. )
  5007. (pin "1" (uuid 47ca8d32-c0f0-45f3-ac3f-9d90bf219778))
  5008. (pin "2" (uuid 5ac9d2a8-b96c-44eb-90f0-058b504265b7))
  5009. (instances
  5010. (project "PowerBook"
  5011. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5012. (reference "R37") (unit 1)
  5013. )
  5014. )
  5015. )
  5016. )
  5017. (symbol (lib_id "power:GND") (at 210.82 147.32 270) (unit 1)
  5018. (in_bom yes) (on_board yes) (dnp no)
  5019. (uuid 2f5b7208-ba9d-4e5f-b5fa-1edbd65e2d1d)
  5020. (property "Reference" "#PWR063" (at 204.47 147.32 0)
  5021. (effects (font (size 1.27 1.27)) hide)
  5022. )
  5023. (property "Value" "GND" (at 207.5688 147.447 90)
  5024. (effects (font (size 1.27 1.27)) (justify right))
  5025. )
  5026. (property "Footprint" "" (at 210.82 147.32 0)
  5027. (effects (font (size 1.27 1.27)) hide)
  5028. )
  5029. (property "Datasheet" "" (at 210.82 147.32 0)
  5030. (effects (font (size 1.27 1.27)) hide)
  5031. )
  5032. (pin "1" (uuid 9a106fe7-670e-4ba9-a740-599c08e19e21))
  5033. (instances
  5034. (project "PowerBook"
  5035. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5036. (reference "#PWR063") (unit 1)
  5037. )
  5038. )
  5039. )
  5040. )
  5041. (symbol (lib_id "power:+3V3") (at 93.345 32.385 0) (mirror x) (unit 1)
  5042. (in_bom yes) (on_board yes) (dnp no)
  5043. (uuid 31dbab6a-35ee-4404-98b2-17949dae22c7)
  5044. (property "Reference" "#PWR0109" (at 93.345 28.575 0)
  5045. (effects (font (size 1.27 1.27)) hide)
  5046. )
  5047. (property "Value" "+3V3" (at 93.726 35.6362 90)
  5048. (effects (font (size 1.27 1.27)) (justify left))
  5049. )
  5050. (property "Footprint" "" (at 93.345 32.385 0)
  5051. (effects (font (size 1.27 1.27)) hide)
  5052. )
  5053. (property "Datasheet" "" (at 93.345 32.385 0)
  5054. (effects (font (size 1.27 1.27)) hide)
  5055. )
  5056. (pin "1" (uuid 86cfb962-27ce-448b-bdb8-fc96c45d3d38))
  5057. (instances
  5058. (project "PowerBook"
  5059. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5060. (reference "#PWR0109") (unit 1)
  5061. )
  5062. )
  5063. )
  5064. )
  5065. (symbol (lib_id "power:+2V8") (at 240.03 63.5 0) (unit 1)
  5066. (in_bom yes) (on_board yes) (dnp no)
  5067. (uuid 3d998970-975b-4df4-8d2c-e26cbe5d87a8)
  5068. (property "Reference" "#PWR055" (at 240.03 67.31 0)
  5069. (effects (font (size 1.27 1.27)) hide)
  5070. )
  5071. (property "Value" "+2V8" (at 240.411 59.1058 0)
  5072. (effects (font (size 1.27 1.27)))
  5073. )
  5074. (property "Footprint" "" (at 240.03 63.5 0)
  5075. (effects (font (size 1.27 1.27)) hide)
  5076. )
  5077. (property "Datasheet" "" (at 240.03 63.5 0)
  5078. (effects (font (size 1.27 1.27)) hide)
  5079. )
  5080. (pin "1" (uuid 5fea8d54-f65e-4fd6-94a2-ecf1fa10cb20))
  5081. (instances
  5082. (project "PowerBook"
  5083. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5084. (reference "#PWR055") (unit 1)
  5085. )
  5086. )
  5087. )
  5088. )
  5089. (symbol (lib_id "New_Library:LVT245") (at 30.48 95.25 0) (unit 1)
  5090. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5091. (uuid 450a2418-8cdb-4640-9016-27f0f775ca0d)
  5092. (property "Reference" "U2" (at 30.48 93.98 0)
  5093. (effects (font (size 1.27 1.27)))
  5094. )
  5095. (property "Value" "LVT245" (at 30.48 96.52 0)
  5096. (effects (font (size 1.27 1.27)))
  5097. )
  5098. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (at 30.48 90.17 0)
  5099. (effects (font (size 1.27 1.27)) hide)
  5100. )
  5101. (property "Datasheet" "" (at 30.48 95.25 0)
  5102. (effects (font (size 1.27 1.27)) hide)
  5103. )
  5104. (pin "1" (uuid 597a4bdb-2888-40f3-93a5-40e6e4f1900a))
  5105. (pin "10" (uuid 9e1d9a75-e3f5-44e7-b288-5fbc9b121e93))
  5106. (pin "11" (uuid eec8d24c-a7c5-4358-a9ce-8be81f6824a2))
  5107. (pin "12" (uuid 6a0b3036-e01e-4959-8231-6c824dba051e))
  5108. (pin "13" (uuid 53baab4d-7fc1-42e9-9577-3007b99a07f6))
  5109. (pin "14" (uuid dd68bb25-12b3-4b16-8008-3f15d5a90437))
  5110. (pin "15" (uuid 427e50c3-11df-4baf-9e34-690288311cf5))
  5111. (pin "16" (uuid 409481d3-fe17-46a9-9258-13d94c28c97e))
  5112. (pin "17" (uuid 9dd2e010-4c67-4166-800e-530864b7444d))
  5113. (pin "18" (uuid c1572846-91b7-4e7b-a0dd-eee921827730))
  5114. (pin "19" (uuid 7557bc6c-dfde-40b8-a4c3-13c444d66e85))
  5115. (pin "2" (uuid cd1fce05-a830-40f8-973e-0189bd90ca49))
  5116. (pin "20" (uuid 3d21c9aa-fa25-4ea8-acad-df13e3bf6ffc))
  5117. (pin "3" (uuid 53b9f2b7-c29f-40a3-87bc-dde2232704e4))
  5118. (pin "4" (uuid 13d66711-e7f4-42ec-91b8-de3b697bf92b))
  5119. (pin "5" (uuid 70947ff6-a3f1-40ab-ab80-b0e1a15bdc42))
  5120. (pin "6" (uuid 95430cab-76de-41be-8a3c-7d9655d33a7d))
  5121. (pin "7" (uuid 33eb6b2e-c396-4de6-9a7f-8a885a854091))
  5122. (pin "8" (uuid a799e6fb-f59a-45ac-954f-37c8678003b2))
  5123. (pin "9" (uuid a3e62c4f-c427-4d5b-bca0-4880a69efc6b))
  5124. (instances
  5125. (project "PowerBook"
  5126. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5127. (reference "U2") (unit 1)
  5128. )
  5129. )
  5130. )
  5131. )
  5132. (symbol (lib_id "Device:R") (at 259.08 129.54 90) (unit 1)
  5133. (in_bom yes) (on_board yes) (dnp no)
  5134. (uuid 45612d4c-703d-4a83-97e9-e6f23982080a)
  5135. (property "Reference" "R13" (at 257.81 129.54 90)
  5136. (effects (font (size 1.27 1.27)))
  5137. )
  5138. (property "Value" "1k" (at 260.35 129.54 90)
  5139. (effects (font (size 1.27 1.27)))
  5140. )
  5141. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 131.318 90)
  5142. (effects (font (size 1.27 1.27)) hide)
  5143. )
  5144. (property "Datasheet" "~" (at 259.08 129.54 0)
  5145. (effects (font (size 1.27 1.27)) hide)
  5146. )
  5147. (pin "1" (uuid f37ea790-f0b4-4a05-be64-2884806caed1))
  5148. (pin "2" (uuid 5aeb18aa-a87e-42b9-b805-0287e0e043cf))
  5149. (instances
  5150. (project "PowerBook"
  5151. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5152. (reference "R13") (unit 1)
  5153. )
  5154. )
  5155. )
  5156. )
  5157. (symbol (lib_id "power:GND") (at 86.995 99.06 270) (unit 1)
  5158. (in_bom yes) (on_board yes) (dnp no)
  5159. (uuid 45801be8-7062-4e81-8176-5d0e2d79bd34)
  5160. (property "Reference" "#PWR0111" (at 80.645 99.06 0)
  5161. (effects (font (size 1.27 1.27)) hide)
  5162. )
  5163. (property "Value" "GND" (at 82.6008 99.187 90)
  5164. (effects (font (size 1.27 1.27)))
  5165. )
  5166. (property "Footprint" "" (at 86.995 99.06 0)
  5167. (effects (font (size 1.27 1.27)) hide)
  5168. )
  5169. (property "Datasheet" "" (at 86.995 99.06 0)
  5170. (effects (font (size 1.27 1.27)) hide)
  5171. )
  5172. (pin "1" (uuid 7c8a2c6e-f53d-422e-bcfb-e1196c02d044))
  5173. (instances
  5174. (project "PowerBook"
  5175. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5176. (reference "#PWR0111") (unit 1)
  5177. )
  5178. )
  5179. )
  5180. )
  5181. (symbol (lib_id "Device:R") (at 259.08 152.4 90) (unit 1)
  5182. (in_bom yes) (on_board yes) (dnp no)
  5183. (uuid 482779d0-bc8d-4d3f-b57e-dc5f602f2746)
  5184. (property "Reference" "R42" (at 257.81 152.4 90)
  5185. (effects (font (size 1.27 1.27)))
  5186. )
  5187. (property "Value" "1k" (at 260.35 152.4 90)
  5188. (effects (font (size 1.27 1.27)))
  5189. )
  5190. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 154.178 90)
  5191. (effects (font (size 1.27 1.27)) hide)
  5192. )
  5193. (property "Datasheet" "~" (at 259.08 152.4 0)
  5194. (effects (font (size 1.27 1.27)) hide)
  5195. )
  5196. (pin "1" (uuid 10a92439-c874-4f39-91ec-1040476a0fc5))
  5197. (pin "2" (uuid dfb3c7c9-7d35-438e-bd52-8b22a89008bc))
  5198. (instances
  5199. (project "PowerBook"
  5200. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5201. (reference "R42") (unit 1)
  5202. )
  5203. )
  5204. )
  5205. )
  5206. (symbol (lib_id "power:GND") (at 86.995 76.2 270) (unit 1)
  5207. (in_bom yes) (on_board yes) (dnp no)
  5208. (uuid 4df327fb-40bd-4678-adb0-cb272ec5feaa)
  5209. (property "Reference" "#PWR028" (at 80.645 76.2 0)
  5210. (effects (font (size 1.27 1.27)) hide)
  5211. )
  5212. (property "Value" "GND" (at 82.6008 76.327 90)
  5213. (effects (font (size 1.27 1.27)))
  5214. )
  5215. (property "Footprint" "" (at 86.995 76.2 0)
  5216. (effects (font (size 1.27 1.27)) hide)
  5217. )
  5218. (property "Datasheet" "" (at 86.995 76.2 0)
  5219. (effects (font (size 1.27 1.27)) hide)
  5220. )
  5221. (pin "1" (uuid 1ef7eeca-c732-4c36-ac11-7a743c8c7b7b))
  5222. (instances
  5223. (project "PowerBook"
  5224. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5225. (reference "#PWR028") (unit 1)
  5226. )
  5227. )
  5228. )
  5229. )
  5230. (symbol (lib_id "power:GND") (at 86.995 101.6 270) (unit 1)
  5231. (in_bom yes) (on_board yes) (dnp no)
  5232. (uuid 4f60ed06-f6f3-4c4e-b261-63cccb3ec337)
  5233. (property "Reference" "#PWR0112" (at 80.645 101.6 0)
  5234. (effects (font (size 1.27 1.27)) hide)
  5235. )
  5236. (property "Value" "GND" (at 82.6008 101.727 90)
  5237. (effects (font (size 1.27 1.27)))
  5238. )
  5239. (property "Footprint" "" (at 86.995 101.6 0)
  5240. (effects (font (size 1.27 1.27)) hide)
  5241. )
  5242. (property "Datasheet" "" (at 86.995 101.6 0)
  5243. (effects (font (size 1.27 1.27)) hide)
  5244. )
  5245. (pin "1" (uuid 9f79881d-2fe1-4a04-90ea-fba3ad26da3e))
  5246. (instances
  5247. (project "PowerBook"
  5248. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5249. (reference "#PWR0112") (unit 1)
  5250. )
  5251. )
  5252. )
  5253. )
  5254. (symbol (lib_id "power:GND") (at 187.96 29.21 0) (unit 1)
  5255. (in_bom yes) (on_board yes) (dnp no)
  5256. (uuid 4fa411ec-2740-4e95-ac94-e10999c53b4c)
  5257. (property "Reference" "#PWR010" (at 187.96 35.56 0)
  5258. (effects (font (size 1.27 1.27)) hide)
  5259. )
  5260. (property "Value" "GND" (at 188.087 33.6042 0)
  5261. (effects (font (size 1.27 1.27)))
  5262. )
  5263. (property "Footprint" "" (at 187.96 29.21 0)
  5264. (effects (font (size 1.27 1.27)) hide)
  5265. )
  5266. (property "Datasheet" "" (at 187.96 29.21 0)
  5267. (effects (font (size 1.27 1.27)) hide)
  5268. )
  5269. (pin "1" (uuid 50a3121c-bff9-44af-8121-006554fc7440))
  5270. (instances
  5271. (project "PowerBook"
  5272. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5273. (reference "#PWR010") (unit 1)
  5274. )
  5275. )
  5276. )
  5277. )
  5278. (symbol (lib_id "Device:R") (at 140.335 114.3 90) (unit 1)
  5279. (in_bom yes) (on_board yes) (dnp no)
  5280. (uuid 52a5054b-f9b4-46c9-8eca-152a8f1baa5a)
  5281. (property "Reference" "R25" (at 139.065 111.76 90)
  5282. (effects (font (size 1.27 1.27)))
  5283. )
  5284. (property "Value" "1k" (at 140.335 114.3 90)
  5285. (effects (font (size 1.27 1.27)))
  5286. )
  5287. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 140.335 116.078 90)
  5288. (effects (font (size 1.27 1.27)) hide)
  5289. )
  5290. (property "Datasheet" "~" (at 140.335 114.3 0)
  5291. (effects (font (size 1.27 1.27)) hide)
  5292. )
  5293. (pin "1" (uuid 3fe24602-d073-40f8-b632-15d16999d754))
  5294. (pin "2" (uuid 42bc0fbf-56ab-48de-8e3b-12ab720cf475))
  5295. (instances
  5296. (project "PowerBook"
  5297. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5298. (reference "R25") (unit 1)
  5299. )
  5300. )
  5301. )
  5302. )
  5303. (symbol (lib_id "Device:R") (at 41.91 121.92 90) (unit 1)
  5304. (in_bom yes) (on_board yes) (dnp no)
  5305. (uuid 547f854c-809f-4d9a-bed1-99f94d9cfbe8)
  5306. (property "Reference" "R2" (at 42.545 121.92 90)
  5307. (effects (font (size 1.27 1.27)) (justify left))
  5308. )
  5309. (property "Value" "110" (at 58.42 121.92 90)
  5310. (effects (font (size 1.27 1.27)) (justify left))
  5311. )
  5312. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 123.698 90)
  5313. (effects (font (size 1.27 1.27)) hide)
  5314. )
  5315. (property "Datasheet" "~" (at 41.91 121.92 0)
  5316. (effects (font (size 1.27 1.27)) hide)
  5317. )
  5318. (pin "1" (uuid 57bfddf9-dd54-491b-8ee3-ecbbfdf9684d))
  5319. (pin "2" (uuid 3bbebb31-8265-4635-aa97-a0ef16eca3a7))
  5320. (instances
  5321. (project "PowerBook"
  5322. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5323. (reference "R2") (unit 1)
  5324. )
  5325. )
  5326. )
  5327. )
  5328. (symbol (lib_id "Device:R") (at 41.91 119.38 90) (unit 1)
  5329. (in_bom yes) (on_board yes) (dnp no)
  5330. (uuid 5480b7c9-e7b6-477f-88f2-37811efd3a65)
  5331. (property "Reference" "R3" (at 43.18 119.38 90)
  5332. (effects (font (size 1.27 1.27)) (justify left))
  5333. )
  5334. (property "Value" "110" (at 58.42 119.38 90)
  5335. (effects (font (size 1.27 1.27)) (justify left))
  5336. )
  5337. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 121.158 90)
  5338. (effects (font (size 1.27 1.27)) hide)
  5339. )
  5340. (property "Datasheet" "~" (at 41.91 119.38 0)
  5341. (effects (font (size 1.27 1.27)) hide)
  5342. )
  5343. (pin "1" (uuid f6447774-d4f9-4da4-a199-db04081151bd))
  5344. (pin "2" (uuid 4b41ebe4-e581-45dc-b24b-c6e0c8af2e3f))
  5345. (instances
  5346. (project "PowerBook"
  5347. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5348. (reference "R3") (unit 1)
  5349. )
  5350. )
  5351. )
  5352. )
  5353. (symbol (lib_id "power:+5VD") (at 24.13 188.595 90) (unit 1)
  5354. (in_bom yes) (on_board yes) (dnp no)
  5355. (uuid 551312e2-9236-46bf-b24e-dd79268636e8)
  5356. (property "Reference" "#PWR014" (at 27.94 188.595 0)
  5357. (effects (font (size 1.27 1.27)) hide)
  5358. )
  5359. (property "Value" "+5VD" (at 15.24 188.595 90)
  5360. (effects (font (size 1.27 1.27)) (justify right))
  5361. )
  5362. (property "Footprint" "" (at 24.13 188.595 0)
  5363. (effects (font (size 1.27 1.27)) hide)
  5364. )
  5365. (property "Datasheet" "" (at 24.13 188.595 0)
  5366. (effects (font (size 1.27 1.27)) hide)
  5367. )
  5368. (pin "1" (uuid da741d9b-7df1-4447-9b57-18e7e8952aa7))
  5369. (instances
  5370. (project "PowerBook"
  5371. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5372. (reference "#PWR014") (unit 1)
  5373. )
  5374. )
  5375. )
  5376. )
  5377. (symbol (lib_id "Transistor_FET:AO3401A") (at 30.48 50.165 180) (unit 1)
  5378. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5379. (uuid 56521329-d943-40cc-afc1-03c212162fbf)
  5380. (property "Reference" "Q2" (at 24.13 48.8949 0)
  5381. (effects (font (size 1.27 1.27)) (justify left))
  5382. )
  5383. (property "Value" "AO3401A" (at 24.13 51.4349 0)
  5384. (effects (font (size 1.27 1.27)) (justify left))
  5385. )
  5386. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 25.4 48.26 0)
  5387. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  5388. )
  5389. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (at 30.48 50.165 0)
  5390. (effects (font (size 1.27 1.27)) (justify left) hide)
  5391. )
  5392. (pin "1" (uuid 89487ce8-07e2-4f4b-91bb-f2417709900d))
  5393. (pin "2" (uuid dbd2bf91-25db-41c6-8960-1d87c6122c75))
  5394. (pin "3" (uuid e74a5d99-1ce9-4513-9094-c27487969179))
  5395. (instances
  5396. (project "PowerBook"
  5397. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5398. (reference "Q2") (unit 1)
  5399. )
  5400. )
  5401. )
  5402. )
  5403. (symbol (lib_id "power:+2V8") (at 106.045 99.06 270) (unit 1)
  5404. (in_bom yes) (on_board yes) (dnp no)
  5405. (uuid 5bad8d7f-8626-44e7-a80d-c852acae5cdd)
  5406. (property "Reference" "#PWR053" (at 102.235 99.06 0)
  5407. (effects (font (size 1.27 1.27)) hide)
  5408. )
  5409. (property "Value" "+2V8" (at 110.4392 99.441 90)
  5410. (effects (font (size 1.27 1.27)))
  5411. )
  5412. (property "Footprint" "" (at 106.045 99.06 0)
  5413. (effects (font (size 1.27 1.27)) hide)
  5414. )
  5415. (property "Datasheet" "" (at 106.045 99.06 0)
  5416. (effects (font (size 1.27 1.27)) hide)
  5417. )
  5418. (pin "1" (uuid cf6e67b4-a374-45e5-8e42-1706aa54ddf2))
  5419. (instances
  5420. (project "PowerBook"
  5421. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5422. (reference "#PWR053") (unit 1)
  5423. )
  5424. )
  5425. )
  5426. )
  5427. (symbol (lib_id "power:GND") (at 20.32 87.63 270) (unit 1)
  5428. (in_bom yes) (on_board yes) (dnp no)
  5429. (uuid 5c1a2741-1d97-49f6-a353-78939740670d)
  5430. (property "Reference" "#PWR046" (at 13.97 87.63 0)
  5431. (effects (font (size 1.27 1.27)) hide)
  5432. )
  5433. (property "Value" "GND" (at 15.9258 87.757 0)
  5434. (effects (font (size 1.27 1.27)))
  5435. )
  5436. (property "Footprint" "" (at 20.32 87.63 0)
  5437. (effects (font (size 1.27 1.27)) hide)
  5438. )
  5439. (property "Datasheet" "" (at 20.32 87.63 0)
  5440. (effects (font (size 1.27 1.27)) hide)
  5441. )
  5442. (pin "1" (uuid 5960a0ae-2877-4c6f-b62b-5805f669c131))
  5443. (instances
  5444. (project "PowerBook"
  5445. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5446. (reference "#PWR046") (unit 1)
  5447. )
  5448. )
  5449. )
  5450. )
  5451. (symbol (lib_id "power:+5VD") (at 107.315 186.055 180) (unit 1)
  5452. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5453. (uuid 5e135c68-2f82-4d52-8b2f-4d2e73e945ed)
  5454. (property "Reference" "#PWR045" (at 107.315 182.245 0)
  5455. (effects (font (size 1.27 1.27)) hide)
  5456. )
  5457. (property "Value" "+5VD" (at 107.315 191.135 0)
  5458. (effects (font (size 1.27 1.27)))
  5459. )
  5460. (property "Footprint" "" (at 107.315 186.055 0)
  5461. (effects (font (size 1.27 1.27)) hide)
  5462. )
  5463. (property "Datasheet" "" (at 107.315 186.055 0)
  5464. (effects (font (size 1.27 1.27)) hide)
  5465. )
  5466. (pin "1" (uuid 5cbf59da-aadb-4332-8ece-60e02a672077))
  5467. (instances
  5468. (project "PowerBook"
  5469. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5470. (reference "#PWR045") (unit 1)
  5471. )
  5472. )
  5473. )
  5474. )
  5475. (symbol (lib_id "Device:R") (at 259.08 149.86 90) (unit 1)
  5476. (in_bom yes) (on_board yes) (dnp no)
  5477. (uuid 60ed3edb-5bb4-4c48-966e-50df259296e8)
  5478. (property "Reference" "R19" (at 257.81 149.86 90)
  5479. (effects (font (size 1.27 1.27)))
  5480. )
  5481. (property "Value" "1k" (at 260.35 149.86 90)
  5482. (effects (font (size 1.27 1.27)))
  5483. )
  5484. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 151.638 90)
  5485. (effects (font (size 1.27 1.27)) hide)
  5486. )
  5487. (property "Datasheet" "~" (at 259.08 149.86 0)
  5488. (effects (font (size 1.27 1.27)) hide)
  5489. )
  5490. (pin "1" (uuid f821c797-2931-4ff3-98d7-9c4818d24090))
  5491. (pin "2" (uuid cc831692-1235-4eef-84a9-0d311eaa5331))
  5492. (instances
  5493. (project "PowerBook"
  5494. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5495. (reference "R19") (unit 1)
  5496. )
  5497. )
  5498. )
  5499. )
  5500. (symbol (lib_id "power:GND") (at 144.145 114.3 90) (unit 1)
  5501. (in_bom yes) (on_board yes) (dnp no)
  5502. (uuid 6266cb10-8d45-4d13-a0d7-9e82125746ed)
  5503. (property "Reference" "#PWR0106" (at 150.495 114.3 0)
  5504. (effects (font (size 1.27 1.27)) hide)
  5505. )
  5506. (property "Value" "GND" (at 148.5392 114.173 90)
  5507. (effects (font (size 1.27 1.27)))
  5508. )
  5509. (property "Footprint" "" (at 144.145 114.3 0)
  5510. (effects (font (size 1.27 1.27)) hide)
  5511. )
  5512. (property "Datasheet" "" (at 144.145 114.3 0)
  5513. (effects (font (size 1.27 1.27)) hide)
  5514. )
  5515. (pin "1" (uuid 6971014d-4cd1-4dfe-a31a-05761df3b0ac))
  5516. (instances
  5517. (project "PowerBook"
  5518. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5519. (reference "#PWR0106") (unit 1)
  5520. )
  5521. )
  5522. )
  5523. )
  5524. (symbol (lib_id "Device:R") (at 39.37 80.01 90) (unit 1)
  5525. (in_bom yes) (on_board yes) (dnp no)
  5526. (uuid 63acbd49-4c30-4f9f-a12b-866bae4c802e)
  5527. (property "Reference" "R40" (at 41.275 80.01 90)
  5528. (effects (font (size 1.27 1.27)) (justify left))
  5529. )
  5530. (property "Value" "110" (at 55.88 80.01 90)
  5531. (effects (font (size 1.27 1.27)) (justify left))
  5532. )
  5533. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 81.788 90)
  5534. (effects (font (size 1.27 1.27)) hide)
  5535. )
  5536. (property "Datasheet" "~" (at 39.37 80.01 0)
  5537. (effects (font (size 1.27 1.27)) hide)
  5538. )
  5539. (pin "1" (uuid 0a684517-9915-4558-8761-ae787dd25632))
  5540. (pin "2" (uuid 119b0757-415d-4757-b606-d6a87549d02c))
  5541. (instances
  5542. (project "PowerBook"
  5543. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5544. (reference "R40") (unit 1)
  5545. )
  5546. )
  5547. )
  5548. )
  5549. (symbol (lib_id "power:+2V8") (at 143.51 106.68 270) (unit 1)
  5550. (in_bom yes) (on_board yes) (dnp no)
  5551. (uuid 65de671e-73d9-4181-94bb-75bbeb3cb20c)
  5552. (property "Reference" "#PWR039" (at 139.7 106.68 0)
  5553. (effects (font (size 1.27 1.27)) hide)
  5554. )
  5555. (property "Value" "+2V8" (at 147.9042 107.061 90)
  5556. (effects (font (size 1.27 1.27)))
  5557. )
  5558. (property "Footprint" "" (at 143.51 106.68 0)
  5559. (effects (font (size 1.27 1.27)) hide)
  5560. )
  5561. (property "Datasheet" "" (at 143.51 106.68 0)
  5562. (effects (font (size 1.27 1.27)) hide)
  5563. )
  5564. (pin "1" (uuid 917bc2f1-7ee0-4f9c-ae60-d306d551253d))
  5565. (instances
  5566. (project "PowerBook"
  5567. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5568. (reference "#PWR039") (unit 1)
  5569. )
  5570. )
  5571. )
  5572. )
  5573. (symbol (lib_id "Device:R") (at 41.91 114.3 90) (unit 1)
  5574. (in_bom yes) (on_board yes) (dnp no)
  5575. (uuid 69140b34-6405-4617-8e1d-b20cdbc477da)
  5576. (property "Reference" "R5" (at 43.18 114.3 90)
  5577. (effects (font (size 1.27 1.27)) (justify left))
  5578. )
  5579. (property "Value" "110" (at 58.42 114.3 90)
  5580. (effects (font (size 1.27 1.27)) (justify left))
  5581. )
  5582. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 116.078 90)
  5583. (effects (font (size 1.27 1.27)) hide)
  5584. )
  5585. (property "Datasheet" "~" (at 41.91 114.3 0)
  5586. (effects (font (size 1.27 1.27)) hide)
  5587. )
  5588. (pin "1" (uuid ed738ef3-cac2-48f2-9da8-a5d59d179bb8))
  5589. (pin "2" (uuid 23ea0413-2a73-4679-984a-8a4935a97113))
  5590. (instances
  5591. (project "PowerBook"
  5592. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5593. (reference "R5") (unit 1)
  5594. )
  5595. )
  5596. )
  5597. )
  5598. (symbol (lib_id "power:GND") (at 247.65 134.62 90) (unit 1)
  5599. (in_bom yes) (on_board yes) (dnp no)
  5600. (uuid 69e72ffc-cc4c-4585-bfe1-2f783f8da8fb)
  5601. (property "Reference" "#PWR066" (at 254 134.62 0)
  5602. (effects (font (size 1.27 1.27)) hide)
  5603. )
  5604. (property "Value" "GND" (at 250.9012 134.493 90)
  5605. (effects (font (size 1.27 1.27)) (justify right))
  5606. )
  5607. (property "Footprint" "" (at 247.65 134.62 0)
  5608. (effects (font (size 1.27 1.27)) hide)
  5609. )
  5610. (property "Datasheet" "" (at 247.65 134.62 0)
  5611. (effects (font (size 1.27 1.27)) hide)
  5612. )
  5613. (pin "1" (uuid 08a0da7d-1538-42f7-96e4-968b0736384d))
  5614. (instances
  5615. (project "PowerBook"
  5616. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5617. (reference "#PWR066") (unit 1)
  5618. )
  5619. )
  5620. )
  5621. )
  5622. (symbol (lib_id "Device:R") (at 41.91 116.84 90) (unit 1)
  5623. (in_bom yes) (on_board yes) (dnp no)
  5624. (uuid 6c179abf-6553-4c89-b67b-91134e77d610)
  5625. (property "Reference" "R4" (at 43.18 116.84 90)
  5626. (effects (font (size 1.27 1.27)) (justify left))
  5627. )
  5628. (property "Value" "110" (at 58.42 116.84 90)
  5629. (effects (font (size 1.27 1.27)) (justify left))
  5630. )
  5631. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 118.618 90)
  5632. (effects (font (size 1.27 1.27)) hide)
  5633. )
  5634. (property "Datasheet" "~" (at 41.91 116.84 0)
  5635. (effects (font (size 1.27 1.27)) hide)
  5636. )
  5637. (pin "1" (uuid 36754573-eac5-48b0-b13d-7deb5489f2d4))
  5638. (pin "2" (uuid 042b565d-3a56-4cee-ab65-41186b82df6e))
  5639. (instances
  5640. (project "PowerBook"
  5641. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5642. (reference "R4") (unit 1)
  5643. )
  5644. )
  5645. )
  5646. )
  5647. (symbol (lib_id "Device:R") (at 259.08 139.7 90) (unit 1)
  5648. (in_bom yes) (on_board yes) (dnp no)
  5649. (uuid 704df935-5853-4445-8385-36e1eb54bf1d)
  5650. (property "Reference" "R16" (at 257.81 139.7 90)
  5651. (effects (font (size 1.27 1.27)))
  5652. )
  5653. (property "Value" "1k" (at 260.35 139.7 90)
  5654. (effects (font (size 1.27 1.27)))
  5655. )
  5656. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 141.478 90)
  5657. (effects (font (size 1.27 1.27)) hide)
  5658. )
  5659. (property "Datasheet" "~" (at 259.08 139.7 0)
  5660. (effects (font (size 1.27 1.27)) hide)
  5661. )
  5662. (pin "1" (uuid 835397a0-9cab-43a0-8de6-3d49a9605ddb))
  5663. (pin "2" (uuid 9411df3e-aa92-4164-a8da-a8cb9f9dddfa))
  5664. (instances
  5665. (project "PowerBook"
  5666. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5667. (reference "R16") (unit 1)
  5668. )
  5669. )
  5670. )
  5671. )
  5672. (symbol (lib_id "power:+5F") (at 212.725 66.675 0) (unit 1)
  5673. (in_bom yes) (on_board yes) (dnp no)
  5674. (uuid 70a3b4a9-34a4-4812-875b-c79bc733552c)
  5675. (property "Reference" "#PWR0116" (at 212.725 70.485 0)
  5676. (effects (font (size 1.27 1.27)) hide)
  5677. )
  5678. (property "Value" "+5F" (at 213.106 63.4238 90)
  5679. (effects (font (size 1.27 1.27)) (justify left))
  5680. )
  5681. (property "Footprint" "" (at 212.725 66.675 0)
  5682. (effects (font (size 1.27 1.27)) hide)
  5683. )
  5684. (property "Datasheet" "" (at 212.725 66.675 0)
  5685. (effects (font (size 1.27 1.27)) hide)
  5686. )
  5687. (pin "1" (uuid 8b4d27d2-dc1c-428f-8d43-4ed8d42fce62))
  5688. (instances
  5689. (project "PowerBook"
  5690. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5691. (reference "#PWR0116") (unit 1)
  5692. )
  5693. )
  5694. )
  5695. )
  5696. (symbol (lib_id "power:+2V8") (at 143.51 101.6 270) (unit 1)
  5697. (in_bom yes) (on_board yes) (dnp no)
  5698. (uuid 717d2f57-c4d2-4d17-b94a-1431d5969ce3)
  5699. (property "Reference" "#PWR040" (at 139.7 101.6 0)
  5700. (effects (font (size 1.27 1.27)) hide)
  5701. )
  5702. (property "Value" "+2V8" (at 147.9042 101.981 90)
  5703. (effects (font (size 1.27 1.27)))
  5704. )
  5705. (property "Footprint" "" (at 143.51 101.6 0)
  5706. (effects (font (size 1.27 1.27)) hide)
  5707. )
  5708. (property "Datasheet" "" (at 143.51 101.6 0)
  5709. (effects (font (size 1.27 1.27)) hide)
  5710. )
  5711. (pin "1" (uuid 13948c97-85d7-4457-969d-695855b61fb2))
  5712. (instances
  5713. (project "PowerBook"
  5714. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5715. (reference "#PWR040") (unit 1)
  5716. )
  5717. )
  5718. )
  5719. )
  5720. (symbol (lib_id "Device:R") (at 139.7 101.6 90) (unit 1)
  5721. (in_bom yes) (on_board yes) (dnp no)
  5722. (uuid 72d51e25-b8cb-4e11-a9be-3d47c85ae9f1)
  5723. (property "Reference" "R22" (at 138.43 99.06 90)
  5724. (effects (font (size 1.27 1.27)))
  5725. )
  5726. (property "Value" "1k" (at 139.7 101.6 90)
  5727. (effects (font (size 1.27 1.27)))
  5728. )
  5729. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 139.7 103.378 90)
  5730. (effects (font (size 1.27 1.27)) hide)
  5731. )
  5732. (property "Datasheet" "~" (at 139.7 101.6 0)
  5733. (effects (font (size 1.27 1.27)) hide)
  5734. )
  5735. (pin "1" (uuid e9e82278-692a-43fb-8c54-009c00b48a3b))
  5736. (pin "2" (uuid 79ffce89-fb39-4580-8a1c-d804d52e1144))
  5737. (instances
  5738. (project "PowerBook"
  5739. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5740. (reference "R22") (unit 1)
  5741. )
  5742. )
  5743. )
  5744. )
  5745. (symbol (lib_id "Device:R") (at 259.08 144.78 90) (unit 1)
  5746. (in_bom yes) (on_board yes) (dnp no)
  5747. (uuid 773dba32-4bf0-46f0-8868-b7ac10ad8702)
  5748. (property "Reference" "R18" (at 257.81 144.78 90)
  5749. (effects (font (size 1.27 1.27)))
  5750. )
  5751. (property "Value" "1k" (at 260.35 144.78 90)
  5752. (effects (font (size 1.27 1.27)))
  5753. )
  5754. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 146.558 90)
  5755. (effects (font (size 1.27 1.27)) hide)
  5756. )
  5757. (property "Datasheet" "~" (at 259.08 144.78 0)
  5758. (effects (font (size 1.27 1.27)) hide)
  5759. )
  5760. (pin "1" (uuid 0a6b6265-0ded-49a2-b2e8-5b2b72c607a1))
  5761. (pin "2" (uuid 2dc2d4a4-38c5-412c-b4f8-a3e14dac65d3))
  5762. (instances
  5763. (project "PowerBook"
  5764. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5765. (reference "R18") (unit 1)
  5766. )
  5767. )
  5768. )
  5769. )
  5770. (symbol (lib_id "power:GND") (at 86.995 83.82 270) (unit 1)
  5771. (in_bom yes) (on_board yes) (dnp no)
  5772. (uuid 782b4bac-1551-4a65-9b81-069846741654)
  5773. (property "Reference" "#PWR031" (at 80.645 83.82 0)
  5774. (effects (font (size 1.27 1.27)) hide)
  5775. )
  5776. (property "Value" "GND" (at 82.6008 83.947 90)
  5777. (effects (font (size 1.27 1.27)))
  5778. )
  5779. (property "Footprint" "" (at 86.995 83.82 0)
  5780. (effects (font (size 1.27 1.27)) hide)
  5781. )
  5782. (property "Datasheet" "" (at 86.995 83.82 0)
  5783. (effects (font (size 1.27 1.27)) hide)
  5784. )
  5785. (pin "1" (uuid 43e320ff-2f51-4a9c-b78f-e9493df7b6cb))
  5786. (instances
  5787. (project "PowerBook"
  5788. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5789. (reference "#PWR031") (unit 1)
  5790. )
  5791. )
  5792. )
  5793. )
  5794. (symbol (lib_id "power:GND") (at 240.03 74.93 0) (unit 1)
  5795. (in_bom yes) (on_board yes) (dnp no)
  5796. (uuid 7a3bc616-6c5f-4b6b-9ab9-fc557e3747d5)
  5797. (property "Reference" "#PWR056" (at 240.03 81.28 0)
  5798. (effects (font (size 1.27 1.27)) hide)
  5799. )
  5800. (property "Value" "GND" (at 240.157 78.1812 90)
  5801. (effects (font (size 1.27 1.27)) (justify right))
  5802. )
  5803. (property "Footprint" "" (at 240.03 74.93 0)
  5804. (effects (font (size 1.27 1.27)) hide)
  5805. )
  5806. (property "Datasheet" "" (at 240.03 74.93 0)
  5807. (effects (font (size 1.27 1.27)) hide)
  5808. )
  5809. (pin "1" (uuid ddccb011-30e4-4f3b-b2f4-59b06f295522))
  5810. (instances
  5811. (project "PowerBook"
  5812. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5813. (reference "#PWR056") (unit 1)
  5814. )
  5815. )
  5816. )
  5817. )
  5818. (symbol (lib_id "New_Library:LVT125") (at 97.155 73.66 0) (unit 1)
  5819. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5820. (uuid 7ef4bec5-9c91-43ab-9d2a-0b90842aaec1)
  5821. (property "Reference" "U6" (at 97.155 71.12 0)
  5822. (effects (font (size 1.27 1.27)))
  5823. )
  5824. (property "Value" "LVT125" (at 97.155 73.66 0)
  5825. (effects (font (size 1.27 1.27)))
  5826. )
  5827. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 97.155 73.66 0)
  5828. (effects (font (size 1.27 1.27)) hide)
  5829. )
  5830. (property "Datasheet" "" (at 97.155 73.66 0)
  5831. (effects (font (size 1.27 1.27)) hide)
  5832. )
  5833. (pin "1" (uuid 17d3d42b-71f8-48f3-90aa-6e3476ba9e7a))
  5834. (pin "10" (uuid b0542b37-db07-4ace-8bf0-2575ba74e330))
  5835. (pin "11" (uuid fb2e629a-de86-46ff-8a7d-eff5e42ba8ec))
  5836. (pin "12" (uuid 7a2667f8-d288-4c4f-a098-4b60520e252b))
  5837. (pin "13" (uuid e9f0ae0a-b596-401b-ac5b-e33b74872d40))
  5838. (pin "14" (uuid 076eea0f-5615-4d4e-9bc0-1d99f47b833f))
  5839. (pin "2" (uuid 4ec45a51-e338-45d5-8e9e-741fcbfec517))
  5840. (pin "3" (uuid c40a78cc-349a-439c-a770-bd708f755673))
  5841. (pin "4" (uuid e576df2a-7eb1-45c2-9cf5-11bbe3c8ec6e))
  5842. (pin "5" (uuid e4877109-ea58-41e6-9627-12f98950d4c1))
  5843. (pin "6" (uuid 1c7edbba-fab4-43c7-96f0-cfd40bf6b667))
  5844. (pin "7" (uuid 5dbfa4cb-cfb3-436c-b0f3-6397ec864346))
  5845. (pin "8" (uuid 67529334-c41f-4992-ab69-da45254522db))
  5846. (pin "9" (uuid 82b1f4b0-59c6-4ab1-b7e0-ac4450f66a26))
  5847. (instances
  5848. (project "PowerBook"
  5849. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5850. (reference "U6") (unit 1)
  5851. )
  5852. )
  5853. )
  5854. )
  5855. (symbol (lib_id "power:GND") (at 75.565 29.21 0) (mirror y) (unit 1)
  5856. (in_bom yes) (on_board yes) (dnp no)
  5857. (uuid 7fac50d9-55b1-4970-a977-9d9d437d75ab)
  5858. (property "Reference" "#PWR0105" (at 75.565 35.56 0)
  5859. (effects (font (size 1.27 1.27)) hide)
  5860. )
  5861. (property "Value" "GND" (at 75.438 33.6042 90)
  5862. (effects (font (size 1.27 1.27)))
  5863. )
  5864. (property "Footprint" "" (at 75.565 29.21 0)
  5865. (effects (font (size 1.27 1.27)) hide)
  5866. )
  5867. (property "Datasheet" "" (at 75.565 29.21 0)
  5868. (effects (font (size 1.27 1.27)) hide)
  5869. )
  5870. (pin "1" (uuid e03da3b5-2a2f-4c19-868f-1cd362d1f735))
  5871. (instances
  5872. (project "PowerBook"
  5873. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5874. (reference "#PWR0105") (unit 1)
  5875. )
  5876. )
  5877. )
  5878. )
  5879. (symbol (lib_id "power:GND") (at 86.995 68.58 270) (unit 1)
  5880. (in_bom yes) (on_board yes) (dnp no)
  5881. (uuid 84b0f185-2932-4b58-9196-65d2b163f636)
  5882. (property "Reference" "#PWR057" (at 80.645 68.58 0)
  5883. (effects (font (size 1.27 1.27)) hide)
  5884. )
  5885. (property "Value" "GND" (at 82.6008 68.707 90)
  5886. (effects (font (size 1.27 1.27)))
  5887. )
  5888. (property "Footprint" "" (at 86.995 68.58 0)
  5889. (effects (font (size 1.27 1.27)) hide)
  5890. )
  5891. (property "Datasheet" "" (at 86.995 68.58 0)
  5892. (effects (font (size 1.27 1.27)) hide)
  5893. )
  5894. (pin "1" (uuid 0cf088b4-4798-4d45-a638-8c486a88213f))
  5895. (instances
  5896. (project "PowerBook"
  5897. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5898. (reference "#PWR057") (unit 1)
  5899. )
  5900. )
  5901. )
  5902. )
  5903. (symbol (lib_id "Device:C") (at 229.87 71.12 180) (unit 1)
  5904. (in_bom yes) (on_board yes) (dnp no)
  5905. (uuid 87731753-e67d-4f55-8a27-44a3ad4fe1e9)
  5906. (property "Reference" "C9" (at 223.4692 71.12 90)
  5907. (effects (font (size 1.27 1.27)))
  5908. )
  5909. (property "Value" "0.1uF" (at 225.7806 71.12 90)
  5910. (effects (font (size 1.27 1.27)))
  5911. )
  5912. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 228.9048 67.31 0)
  5913. (effects (font (size 1.27 1.27)) hide)
  5914. )
  5915. (property "Datasheet" "~" (at 229.87 71.12 0)
  5916. (effects (font (size 1.27 1.27)) hide)
  5917. )
  5918. (pin "1" (uuid ec8d65f2-f56d-4dcd-b1b9-25c7559a4014))
  5919. (pin "2" (uuid d04f95d9-79f2-4e24-9dff-591a3adf7731))
  5920. (instances
  5921. (project "PowerBook"
  5922. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5923. (reference "C9") (unit 1)
  5924. )
  5925. )
  5926. )
  5927. )
  5928. (symbol (lib_id "Device:R") (at 31.75 55.245 90) (unit 1)
  5929. (in_bom yes) (on_board yes) (dnp no)
  5930. (uuid 87d95ea6-623e-46c6-aa7f-8e6aeac1e4c2)
  5931. (property "Reference" "R36" (at 33.655 55.245 90)
  5932. (effects (font (size 1.27 1.27)) (justify left))
  5933. )
  5934. (property "Value" "110" (at 48.26 55.245 90)
  5935. (effects (font (size 1.27 1.27)) (justify left))
  5936. )
  5937. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 31.75 57.023 90)
  5938. (effects (font (size 1.27 1.27)) hide)
  5939. )
  5940. (property "Datasheet" "~" (at 31.75 55.245 0)
  5941. (effects (font (size 1.27 1.27)) hide)
  5942. )
  5943. (pin "1" (uuid 0e5884c3-2c48-4c31-91aa-75b25223b8b3))
  5944. (pin "2" (uuid 0641228e-e25d-435b-81b5-4223b2a9fb1f))
  5945. (instances
  5946. (project "PowerBook"
  5947. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5948. (reference "R36") (unit 1)
  5949. )
  5950. )
  5951. )
  5952. )
  5953. (symbol (lib_id "power:GND") (at 107.315 140.335 90) (unit 1)
  5954. (in_bom yes) (on_board yes) (dnp no)
  5955. (uuid 88e6f979-4a58-4a0c-82ee-cccfcb840b1e)
  5956. (property "Reference" "#PWR042" (at 113.665 140.335 0)
  5957. (effects (font (size 1.27 1.27)) hide)
  5958. )
  5959. (property "Value" "GND" (at 111.7092 140.208 90)
  5960. (effects (font (size 1.27 1.27)))
  5961. )
  5962. (property "Footprint" "" (at 107.315 140.335 0)
  5963. (effects (font (size 1.27 1.27)) hide)
  5964. )
  5965. (property "Datasheet" "" (at 107.315 140.335 0)
  5966. (effects (font (size 1.27 1.27)) hide)
  5967. )
  5968. (pin "1" (uuid 45004e34-eead-4823-b8ab-b06a1f61a0ec))
  5969. (instances
  5970. (project "PowerBook"
  5971. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5972. (reference "#PWR042") (unit 1)
  5973. )
  5974. )
  5975. )
  5976. )
  5977. (symbol (lib_id "Transistor_FET:AO3401A") (at 31.115 134.62 180) (unit 1)
  5978. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  5979. (uuid 898b9c7b-2933-4b16-b27e-668107112882)
  5980. (property "Reference" "Q1" (at 24.765 133.3499 0)
  5981. (effects (font (size 1.27 1.27)) (justify left))
  5982. )
  5983. (property "Value" "AO3401A" (at 24.765 135.8899 0)
  5984. (effects (font (size 1.27 1.27)) (justify left))
  5985. )
  5986. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 26.035 132.715 0)
  5987. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  5988. )
  5989. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (at 31.115 134.62 0)
  5990. (effects (font (size 1.27 1.27)) (justify left) hide)
  5991. )
  5992. (pin "1" (uuid ec78f21e-a2a5-4f8b-b4fa-1fded04aec53))
  5993. (pin "2" (uuid 6da630a1-31d4-48fa-b2b8-2eaf0fb602df))
  5994. (pin "3" (uuid 7fd9db03-159a-405c-af9f-e8c2197987fe))
  5995. (instances
  5996. (project "PowerBook"
  5997. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  5998. (reference "Q1") (unit 1)
  5999. )
  6000. )
  6001. )
  6002. )
  6003. (symbol (lib_id "power:+2V8") (at 238.76 20.32 0) (unit 1)
  6004. (in_bom yes) (on_board yes) (dnp no)
  6005. (uuid 8bc17f34-10f7-42ff-9329-698e138a3e0c)
  6006. (property "Reference" "#PWR021" (at 238.76 24.13 0)
  6007. (effects (font (size 1.27 1.27)) hide)
  6008. )
  6009. (property "Value" "+2V8" (at 239.141 15.9258 0)
  6010. (effects (font (size 1.27 1.27)))
  6011. )
  6012. (property "Footprint" "" (at 238.76 20.32 0)
  6013. (effects (font (size 1.27 1.27)) hide)
  6014. )
  6015. (property "Datasheet" "" (at 238.76 20.32 0)
  6016. (effects (font (size 1.27 1.27)) hide)
  6017. )
  6018. (pin "1" (uuid 2ff0f767-aa0d-40c6-a3f8-8ea46a677a54))
  6019. (instances
  6020. (project "PowerBook"
  6021. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6022. (reference "#PWR021") (unit 1)
  6023. )
  6024. )
  6025. )
  6026. )
  6027. (symbol (lib_id "Device:R") (at 259.08 142.24 90) (unit 1)
  6028. (in_bom yes) (on_board yes) (dnp no)
  6029. (uuid 8c674a62-096c-453a-affe-28e1b791163a)
  6030. (property "Reference" "R17" (at 257.81 142.24 90)
  6031. (effects (font (size 1.27 1.27)))
  6032. )
  6033. (property "Value" "1k" (at 260.35 142.24 90)
  6034. (effects (font (size 1.27 1.27)))
  6035. )
  6036. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 144.018 90)
  6037. (effects (font (size 1.27 1.27)) hide)
  6038. )
  6039. (property "Datasheet" "~" (at 259.08 142.24 0)
  6040. (effects (font (size 1.27 1.27)) hide)
  6041. )
  6042. (pin "1" (uuid 23aceff7-8327-4801-ad28-6f031fa3ad8d))
  6043. (pin "2" (uuid 1fb27993-1691-42f2-aca5-128ffbf2b2f1))
  6044. (instances
  6045. (project "PowerBook"
  6046. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6047. (reference "R17") (unit 1)
  6048. )
  6049. )
  6050. )
  6051. )
  6052. (symbol (lib_id "Device:R") (at 139.7 106.68 90) (unit 1)
  6053. (in_bom yes) (on_board yes) (dnp no)
  6054. (uuid 8d832796-c8da-4cdb-aa2b-5814686409fb)
  6055. (property "Reference" "R23" (at 138.43 104.14 90)
  6056. (effects (font (size 1.27 1.27)))
  6057. )
  6058. (property "Value" "1k" (at 139.7 106.68 90)
  6059. (effects (font (size 1.27 1.27)))
  6060. )
  6061. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 139.7 108.458 90)
  6062. (effects (font (size 1.27 1.27)) hide)
  6063. )
  6064. (property "Datasheet" "~" (at 139.7 106.68 0)
  6065. (effects (font (size 1.27 1.27)) hide)
  6066. )
  6067. (pin "1" (uuid 2ed1eab9-6cc4-4e3f-bb66-cfb49251b75a))
  6068. (pin "2" (uuid 7a0e6b92-78ed-4198-a600-b59ce1e10d48))
  6069. (instances
  6070. (project "PowerBook"
  6071. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6072. (reference "R23") (unit 1)
  6073. )
  6074. )
  6075. )
  6076. )
  6077. (symbol (lib_id "power:GND") (at 154.94 43.18 270) (unit 1)
  6078. (in_bom yes) (on_board yes) (dnp no)
  6079. (uuid 92040d75-677e-408b-b41d-a9e5389e97b7)
  6080. (property "Reference" "#PWR02" (at 148.59 43.18 0)
  6081. (effects (font (size 1.27 1.27)) hide)
  6082. )
  6083. (property "Value" "GND" (at 150.5458 43.307 90)
  6084. (effects (font (size 1.27 1.27)))
  6085. )
  6086. (property "Footprint" "" (at 154.94 43.18 0)
  6087. (effects (font (size 1.27 1.27)) hide)
  6088. )
  6089. (property "Datasheet" "" (at 154.94 43.18 0)
  6090. (effects (font (size 1.27 1.27)) hide)
  6091. )
  6092. (pin "1" (uuid e207fd53-1005-4aef-9659-b21f6cb09439))
  6093. (instances
  6094. (project "PowerBook"
  6095. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6096. (reference "#PWR02") (unit 1)
  6097. )
  6098. )
  6099. )
  6100. )
  6101. (symbol (lib_id "power:+2V8") (at 22.86 95.885 0) (unit 1)
  6102. (in_bom yes) (on_board yes) (dnp no)
  6103. (uuid 92f6a093-be10-45da-8d18-1aeb366bcf3f)
  6104. (property "Reference" "#PWR01" (at 22.86 99.695 0)
  6105. (effects (font (size 1.27 1.27)) hide)
  6106. )
  6107. (property "Value" "+2V8" (at 23.241 91.4908 0)
  6108. (effects (font (size 1.27 1.27)))
  6109. )
  6110. (property "Footprint" "" (at 22.86 95.885 0)
  6111. (effects (font (size 1.27 1.27)) hide)
  6112. )
  6113. (property "Datasheet" "" (at 22.86 95.885 0)
  6114. (effects (font (size 1.27 1.27)) hide)
  6115. )
  6116. (pin "1" (uuid 39022813-0f82-4c8b-b3ad-b618b0da16a3))
  6117. (instances
  6118. (project "PowerBook"
  6119. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6120. (reference "#PWR01") (unit 1)
  6121. )
  6122. )
  6123. )
  6124. )
  6125. (symbol (lib_id "New_Library:MicroSD-TF-06") (at 142.875 60.96 0) (unit 1)
  6126. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  6127. (uuid 98449520-73f3-4826-8a06-0144e573c75f)
  6128. (property "Reference" "SD2" (at 161.925 71.1199 0)
  6129. (effects (font (size 1.27 1.27)) (justify left))
  6130. )
  6131. (property "Value" "MicroSD-TF-06" (at 161.925 73.6599 0)
  6132. (effects (font (size 1.27 1.27)) (justify left))
  6133. )
  6134. (property "Footprint" "Library:TF-06_MicroSD" (at 141.605 54.61 0)
  6135. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6136. )
  6137. (property "Datasheet" "" (at 155.321 59.309 0)
  6138. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6139. )
  6140. (property "MANUFACTURER_PART_NUMBER" "C693844" (at 160.655 55.88 0)
  6141. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6142. )
  6143. (property "HEIGHT" "" (at 149.987 78.74 0)
  6144. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6145. )
  6146. (property "MOUSER_PART_NUMBER" "" (at 150.495 54.61 0)
  6147. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6148. )
  6149. (property "DESCRIPTION" "" (at 160.147 40.132 0)
  6150. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6151. )
  6152. (property "MANUFACTURER_NAME" "" (at 156.845 54.61 0)
  6153. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6154. )
  6155. (property "MOUSER_PRICE-STOCK" "" (at 163.195 40.005 0)
  6156. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6157. )
  6158. (pin "1" (uuid 85b2669f-276f-4163-8962-0ec5205a5b97))
  6159. (pin "10" (uuid 44eee2dc-529e-47d4-bd8e-92fc297ce0fe))
  6160. (pin "2" (uuid 97436618-d074-4750-ab27-3ea2957badc7))
  6161. (pin "3" (uuid 3c5cd1f8-aa18-42b4-af8d-e4615307f917))
  6162. (pin "4" (uuid f31c69ff-24e4-47d4-98c5-23a692fae825))
  6163. (pin "5" (uuid 108d5212-29e7-4482-8005-ae3a28f167ac))
  6164. (pin "6" (uuid 2d77015d-4abb-4650-9c51-7292110a41ce))
  6165. (pin "7" (uuid 266023c6-0d19-4779-8ebf-8a009b9dd44c))
  6166. (pin "8" (uuid e8de5b02-90a9-40d6-ae8b-81079970d38c))
  6167. (pin "9" (uuid 6e6e1ee0-c572-4041-8783-aea5ca313013))
  6168. (instances
  6169. (project "PowerBook"
  6170. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6171. (reference "SD2") (unit 1)
  6172. )
  6173. )
  6174. )
  6175. )
  6176. (symbol (lib_id "power:GND") (at 170.18 22.86 90) (unit 1)
  6177. (in_bom yes) (on_board yes) (dnp no)
  6178. (uuid 9a7cf9b8-c05b-4cc0-a147-14aca337cfa3)
  6179. (property "Reference" "#PWR08" (at 176.53 22.86 0)
  6180. (effects (font (size 1.27 1.27)) hide)
  6181. )
  6182. (property "Value" "GND" (at 174.5742 22.733 90)
  6183. (effects (font (size 1.27 1.27)))
  6184. )
  6185. (property "Footprint" "" (at 170.18 22.86 0)
  6186. (effects (font (size 1.27 1.27)) hide)
  6187. )
  6188. (property "Datasheet" "" (at 170.18 22.86 0)
  6189. (effects (font (size 1.27 1.27)) hide)
  6190. )
  6191. (pin "1" (uuid 577a277a-d284-4bef-8a89-550c6687685d))
  6192. (instances
  6193. (project "PowerBook"
  6194. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6195. (reference "#PWR08") (unit 1)
  6196. )
  6197. )
  6198. )
  6199. )
  6200. (symbol (lib_id "power:+2V8") (at 35.56 64.77 270) (unit 1)
  6201. (in_bom yes) (on_board yes) (dnp no)
  6202. (uuid 9c7d7db3-f15e-48b0-b566-95eadad8d83e)
  6203. (property "Reference" "#PWR029" (at 31.75 64.77 0)
  6204. (effects (font (size 1.27 1.27)) hide)
  6205. )
  6206. (property "Value" "+2V8" (at 39.9542 65.151 90)
  6207. (effects (font (size 1.27 1.27)))
  6208. )
  6209. (property "Footprint" "" (at 35.56 64.77 0)
  6210. (effects (font (size 1.27 1.27)) hide)
  6211. )
  6212. (property "Datasheet" "" (at 35.56 64.77 0)
  6213. (effects (font (size 1.27 1.27)) hide)
  6214. )
  6215. (pin "1" (uuid b5ad4113-2a17-4eb9-a3d0-2b5a97a74cb8))
  6216. (instances
  6217. (project "PowerBook"
  6218. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6219. (reference "#PWR029") (unit 1)
  6220. )
  6221. )
  6222. )
  6223. )
  6224. (symbol (lib_id "Device:R") (at 259.08 137.16 90) (unit 1)
  6225. (in_bom yes) (on_board yes) (dnp no)
  6226. (uuid 9e8ff847-a1a6-4ac0-bbc3-a4811f1f75a1)
  6227. (property "Reference" "R15" (at 257.81 137.16 90)
  6228. (effects (font (size 1.27 1.27)))
  6229. )
  6230. (property "Value" "1k" (at 260.35 137.16 90)
  6231. (effects (font (size 1.27 1.27)))
  6232. )
  6233. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 138.938 90)
  6234. (effects (font (size 1.27 1.27)) hide)
  6235. )
  6236. (property "Datasheet" "~" (at 259.08 137.16 0)
  6237. (effects (font (size 1.27 1.27)) hide)
  6238. )
  6239. (pin "1" (uuid 388f4f2e-c95e-463f-a3b2-c358288841f0))
  6240. (pin "2" (uuid 108e4011-c471-41d4-8643-1dc80f8d6cae))
  6241. (instances
  6242. (project "PowerBook"
  6243. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6244. (reference "R15") (unit 1)
  6245. )
  6246. )
  6247. )
  6248. )
  6249. (symbol (lib_id "Device:R") (at 41.91 106.68 90) (unit 1)
  6250. (in_bom yes) (on_board yes) (dnp no)
  6251. (uuid a0e275f3-c5e3-4558-9b83-f0d5f6dd03fb)
  6252. (property "Reference" "R8" (at 43.18 106.68 90)
  6253. (effects (font (size 1.27 1.27)) (justify left))
  6254. )
  6255. (property "Value" "110" (at 58.42 106.68 90)
  6256. (effects (font (size 1.27 1.27)) (justify left))
  6257. )
  6258. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 108.458 90)
  6259. (effects (font (size 1.27 1.27)) hide)
  6260. )
  6261. (property "Datasheet" "~" (at 41.91 106.68 0)
  6262. (effects (font (size 1.27 1.27)) hide)
  6263. )
  6264. (pin "1" (uuid 4040435e-3ee3-4049-acb8-b0ce9bcb6a20))
  6265. (pin "2" (uuid 3372c5ec-a03d-4057-bfa5-52ebb3899d17))
  6266. (instances
  6267. (project "PowerBook"
  6268. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6269. (reference "R8") (unit 1)
  6270. )
  6271. )
  6272. )
  6273. )
  6274. (symbol (lib_id "power:GND") (at 247.65 147.32 90) (unit 1)
  6275. (in_bom yes) (on_board yes) (dnp no)
  6276. (uuid a0efbb8b-2b88-4279-8882-2279417e29c4)
  6277. (property "Reference" "#PWR067" (at 254 147.32 0)
  6278. (effects (font (size 1.27 1.27)) hide)
  6279. )
  6280. (property "Value" "GND" (at 250.9012 147.193 90)
  6281. (effects (font (size 1.27 1.27)) (justify right))
  6282. )
  6283. (property "Footprint" "" (at 247.65 147.32 0)
  6284. (effects (font (size 1.27 1.27)) hide)
  6285. )
  6286. (property "Datasheet" "" (at 247.65 147.32 0)
  6287. (effects (font (size 1.27 1.27)) hide)
  6288. )
  6289. (pin "1" (uuid 373b5181-f467-49a0-b7cd-db3accebb340))
  6290. (instances
  6291. (project "PowerBook"
  6292. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6293. (reference "#PWR067") (unit 1)
  6294. )
  6295. )
  6296. )
  6297. )
  6298. (symbol (lib_id "Device:R") (at 195.58 101.6 180) (unit 1)
  6299. (in_bom yes) (on_board yes) (dnp no)
  6300. (uuid a91925ab-fe56-445c-9bca-b898e4af9a64)
  6301. (property "Reference" "R28" (at 193.04 102.87 90)
  6302. (effects (font (size 1.27 1.27)))
  6303. )
  6304. (property "Value" "1k" (at 198.12 101.6 90)
  6305. (effects (font (size 1.27 1.27)))
  6306. )
  6307. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 197.358 101.6 90)
  6308. (effects (font (size 1.27 1.27)) hide)
  6309. )
  6310. (property "Datasheet" "~" (at 195.58 101.6 0)
  6311. (effects (font (size 1.27 1.27)) hide)
  6312. )
  6313. (pin "1" (uuid d3f34f53-340a-4736-8509-f2d5a176f0af))
  6314. (pin "2" (uuid ebd8b72b-4b62-472e-bfa8-333cb5b83687))
  6315. (instances
  6316. (project "PowerBook"
  6317. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6318. (reference "R28") (unit 1)
  6319. )
  6320. )
  6321. )
  6322. )
  6323. (symbol (lib_id "power:GND") (at 210.82 121.92 270) (unit 1)
  6324. (in_bom yes) (on_board yes) (dnp no)
  6325. (uuid ab2ae690-6deb-47e6-ab98-640a9c621344)
  6326. (property "Reference" "#PWR062" (at 204.47 121.92 0)
  6327. (effects (font (size 1.27 1.27)) hide)
  6328. )
  6329. (property "Value" "GND" (at 207.5688 122.047 90)
  6330. (effects (font (size 1.27 1.27)) (justify right))
  6331. )
  6332. (property "Footprint" "" (at 210.82 121.92 0)
  6333. (effects (font (size 1.27 1.27)) hide)
  6334. )
  6335. (property "Datasheet" "" (at 210.82 121.92 0)
  6336. (effects (font (size 1.27 1.27)) hide)
  6337. )
  6338. (pin "1" (uuid dbac0c5a-0d04-436d-8586-435fb5f29f07))
  6339. (instances
  6340. (project "PowerBook"
  6341. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6342. (reference "#PWR062") (unit 1)
  6343. )
  6344. )
  6345. )
  6346. )
  6347. (symbol (lib_id "Device:R") (at 32.385 139.7 90) (unit 1)
  6348. (in_bom yes) (on_board yes) (dnp no)
  6349. (uuid ac035f58-a21c-4346-b948-ebc616aaf95d)
  6350. (property "Reference" "R6" (at 33.655 139.7 90)
  6351. (effects (font (size 1.27 1.27)) (justify left))
  6352. )
  6353. (property "Value" "110" (at 46.99 139.7 90)
  6354. (effects (font (size 1.27 1.27)) (justify left))
  6355. )
  6356. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 32.385 141.478 90)
  6357. (effects (font (size 1.27 1.27)) hide)
  6358. )
  6359. (property "Datasheet" "~" (at 32.385 139.7 0)
  6360. (effects (font (size 1.27 1.27)) hide)
  6361. )
  6362. (pin "1" (uuid 0cce7016-8f51-4e57-bec2-1734d71050c4))
  6363. (pin "2" (uuid c2fbb35c-f25b-4dc1-8cf3-8ea70a58dd77))
  6364. (instances
  6365. (project "PowerBook"
  6366. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6367. (reference "R6") (unit 1)
  6368. )
  6369. )
  6370. )
  6371. )
  6372. (symbol (lib_id "power:+5VA") (at 24.13 196.215 90) (unit 1)
  6373. (in_bom yes) (on_board yes) (dnp no)
  6374. (uuid ac218391-799b-4e3f-9524-9a89664a1094)
  6375. (property "Reference" "#PWR017" (at 27.94 196.215 0)
  6376. (effects (font (size 1.27 1.27)) hide)
  6377. )
  6378. (property "Value" "+5VA" (at 15.24 196.215 90)
  6379. (effects (font (size 1.27 1.27)) (justify right))
  6380. )
  6381. (property "Footprint" "" (at 24.13 196.215 0)
  6382. (effects (font (size 1.27 1.27)) hide)
  6383. )
  6384. (property "Datasheet" "" (at 24.13 196.215 0)
  6385. (effects (font (size 1.27 1.27)) hide)
  6386. )
  6387. (pin "1" (uuid 8293dd89-2b22-4be4-82cd-366f88e0ca9f))
  6388. (instances
  6389. (project "PowerBook"
  6390. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6391. (reference "#PWR017") (unit 1)
  6392. )
  6393. )
  6394. )
  6395. )
  6396. (symbol (lib_id "Device:C") (at 240.03 71.12 180) (unit 1)
  6397. (in_bom yes) (on_board yes) (dnp no)
  6398. (uuid acd9e539-01ce-4514-ab7d-bb6dddb62a5d)
  6399. (property "Reference" "C13" (at 233.6292 71.12 90)
  6400. (effects (font (size 1.27 1.27)))
  6401. )
  6402. (property "Value" "0.1uF" (at 235.9406 71.12 90)
  6403. (effects (font (size 1.27 1.27)))
  6404. )
  6405. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 239.0648 67.31 0)
  6406. (effects (font (size 1.27 1.27)) hide)
  6407. )
  6408. (property "Datasheet" "~" (at 240.03 71.12 0)
  6409. (effects (font (size 1.27 1.27)) hide)
  6410. )
  6411. (pin "1" (uuid fd872bfe-55b0-454b-bd28-1c690552fc91))
  6412. (pin "2" (uuid 1f5519cd-ca7e-41df-a693-04724c6db534))
  6413. (instances
  6414. (project "PowerBook"
  6415. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6416. (reference "C13") (unit 1)
  6417. )
  6418. )
  6419. )
  6420. )
  6421. (symbol (lib_id "Device:C") (at 75.565 25.4 180) (unit 1)
  6422. (in_bom yes) (on_board yes) (dnp no)
  6423. (uuid add31292-bae4-4187-b062-5923a807bc51)
  6424. (property "Reference" "C1" (at 69.1642 25.4 90)
  6425. (effects (font (size 1.27 1.27)))
  6426. )
  6427. (property "Value" "0.1uF" (at 71.4756 25.4 90)
  6428. (effects (font (size 1.27 1.27)))
  6429. )
  6430. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 74.5998 21.59 0)
  6431. (effects (font (size 1.27 1.27)) hide)
  6432. )
  6433. (property "Datasheet" "~" (at 75.565 25.4 0)
  6434. (effects (font (size 1.27 1.27)) hide)
  6435. )
  6436. (pin "1" (uuid c2a3e223-4ec0-47c0-98a8-961cf7024019))
  6437. (pin "2" (uuid fc8efa01-0cba-4820-9180-fd4f71415513))
  6438. (instances
  6439. (project "PowerBook"
  6440. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6441. (reference "C1") (unit 1)
  6442. )
  6443. )
  6444. )
  6445. )
  6446. (symbol (lib_id "Device:C") (at 250.19 71.12 180) (unit 1)
  6447. (in_bom yes) (on_board yes) (dnp no)
  6448. (uuid af20f6b5-3525-4421-9baf-551c51fc9eed)
  6449. (property "Reference" "C14" (at 243.7892 71.12 90)
  6450. (effects (font (size 1.27 1.27)))
  6451. )
  6452. (property "Value" "0.1uF" (at 246.1006 71.12 90)
  6453. (effects (font (size 1.27 1.27)))
  6454. )
  6455. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 249.2248 67.31 0)
  6456. (effects (font (size 1.27 1.27)) hide)
  6457. )
  6458. (property "Datasheet" "~" (at 250.19 71.12 0)
  6459. (effects (font (size 1.27 1.27)) hide)
  6460. )
  6461. (pin "1" (uuid 6b46401d-6992-4a7a-9d35-bbb91b107c40))
  6462. (pin "2" (uuid 84e0fdc4-8138-42d1-ae8c-4c46776c279d))
  6463. (instances
  6464. (project "PowerBook"
  6465. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6466. (reference "C14") (unit 1)
  6467. )
  6468. )
  6469. )
  6470. )
  6471. (symbol (lib_id "New_Library:LVT125") (at 97.155 96.52 0) (unit 1)
  6472. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  6473. (uuid b278ef84-b28f-424d-bcab-60b9aa5859b8)
  6474. (property "Reference" "U5" (at 97.155 93.98 0)
  6475. (effects (font (size 1.27 1.27)))
  6476. )
  6477. (property "Value" "LVT125" (at 97.155 96.52 0)
  6478. (effects (font (size 1.27 1.27)))
  6479. )
  6480. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 97.155 96.52 0)
  6481. (effects (font (size 1.27 1.27)) hide)
  6482. )
  6483. (property "Datasheet" "" (at 97.155 96.52 0)
  6484. (effects (font (size 1.27 1.27)) hide)
  6485. )
  6486. (pin "1" (uuid c7c4b013-f602-4dfd-9848-da697ec675b2))
  6487. (pin "10" (uuid fb88be17-d8b7-4e7a-a4ca-812bb444b4d9))
  6488. (pin "11" (uuid 6148457a-2302-4e5b-b9e4-a86aa655604e))
  6489. (pin "12" (uuid f9bb3a12-789b-4f4b-b243-88cd1c5172a5))
  6490. (pin "13" (uuid f9bf76b8-aec2-4eac-8702-225b0dd09abb))
  6491. (pin "14" (uuid f8d9ac45-0ea4-459c-98fc-8edfdc8fac4a))
  6492. (pin "2" (uuid 2b3ffe51-ed67-4d12-b719-bd16699057d4))
  6493. (pin "3" (uuid ba542518-7695-49ee-ad78-ecb99e15b009))
  6494. (pin "4" (uuid 91b4d386-d07c-4a33-835b-934fd8171ed7))
  6495. (pin "5" (uuid 54be7f2f-bed8-4f94-938d-0453a88c3d54))
  6496. (pin "6" (uuid 02836f4c-7064-4cff-8ae8-61e7beab6a32))
  6497. (pin "7" (uuid 41710596-823c-4db2-be86-4ec1ab577501))
  6498. (pin "8" (uuid 17864a87-e8b4-4aca-bb1a-02853ab40c0d))
  6499. (pin "9" (uuid a4d809a8-e967-4c81-9f80-eb989f17e6c2))
  6500. (instances
  6501. (project "PowerBook"
  6502. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6503. (reference "U5") (unit 1)
  6504. )
  6505. )
  6506. )
  6507. )
  6508. (symbol (lib_id "power:GND") (at 75.565 187.325 0) (unit 1)
  6509. (in_bom yes) (on_board yes) (dnp no)
  6510. (uuid b3719c08-71c8-4818-9c77-f965cba6f25f)
  6511. (property "Reference" "#PWR026" (at 75.565 193.675 0)
  6512. (effects (font (size 1.27 1.27)) hide)
  6513. )
  6514. (property "Value" "GND" (at 75.692 191.7192 0)
  6515. (effects (font (size 1.27 1.27)))
  6516. )
  6517. (property "Footprint" "" (at 75.565 187.325 0)
  6518. (effects (font (size 1.27 1.27)) hide)
  6519. )
  6520. (property "Datasheet" "" (at 75.565 187.325 0)
  6521. (effects (font (size 1.27 1.27)) hide)
  6522. )
  6523. (pin "1" (uuid 9fc767e3-8d15-415e-a9e0-596a6f54c5bf))
  6524. (instances
  6525. (project "PowerBook"
  6526. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6527. (reference "#PWR026") (unit 1)
  6528. )
  6529. )
  6530. )
  6531. )
  6532. (symbol (lib_id "Device:D") (at 27.94 188.595 180) (unit 1)
  6533. (in_bom yes) (on_board yes) (dnp no)
  6534. (uuid b4eb6c3f-3a64-456a-b15c-67feae99bf43)
  6535. (property "Reference" "D2" (at 26.7716 186.563 90)
  6536. (effects (font (size 1.27 1.27)) (justify right))
  6537. )
  6538. (property "Value" "D" (at 29.083 186.563 90)
  6539. (effects (font (size 1.27 1.27)) (justify right))
  6540. )
  6541. (property "Footprint" "Diode_SMD:D_SMA" (at 27.94 188.595 0)
  6542. (effects (font (size 1.27 1.27)) hide)
  6543. )
  6544. (property "Datasheet" "~" (at 27.94 188.595 0)
  6545. (effects (font (size 1.27 1.27)) hide)
  6546. )
  6547. (pin "1" (uuid 0255fd8f-cefd-43cf-b2ed-ed1171cf07f4))
  6548. (pin "2" (uuid 0258774f-37a7-4f3e-ba38-6d4b458d9f5a))
  6549. (instances
  6550. (project "PowerBook"
  6551. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6552. (reference "D2") (unit 1)
  6553. )
  6554. )
  6555. )
  6556. )
  6557. (symbol (lib_id "Device:Polyfuse") (at 55.88 175.895 0) (unit 1)
  6558. (in_bom yes) (on_board yes) (dnp no)
  6559. (uuid b710020c-0f3a-4776-a938-eddc58b26b95)
  6560. (property "Reference" "F2" (at 50.8 175.895 0)
  6561. (effects (font (size 1.27 1.27)) (justify left))
  6562. )
  6563. (property "Value" "Polyfuse" (at 45.72 178.435 0)
  6564. (effects (font (size 1.27 1.27)) (justify left))
  6565. )
  6566. (property "Footprint" "Fuse:Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 57.15 180.975 0)
  6567. (effects (font (size 1.27 1.27)) (justify left) hide)
  6568. )
  6569. (property "Datasheet" "~" (at 55.88 175.895 0)
  6570. (effects (font (size 1.27 1.27)) hide)
  6571. )
  6572. (pin "1" (uuid cba8ab97-0377-43bd-bef7-6314ce99d4ae))
  6573. (pin "2" (uuid 17ae423f-6f17-4fd2-aea5-d3d8c77fc776))
  6574. (instances
  6575. (project "PowerBook"
  6576. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6577. (reference "F2") (unit 1)
  6578. )
  6579. )
  6580. )
  6581. )
  6582. (symbol (lib_id "Device:R") (at 81.915 25.4 180) (unit 1)
  6583. (in_bom yes) (on_board yes) (dnp no)
  6584. (uuid b7741e5e-d229-4a62-9d1e-5745aaa716cb)
  6585. (property "Reference" "R11" (at 79.375 26.67 90)
  6586. (effects (font (size 1.27 1.27)))
  6587. )
  6588. (property "Value" "4.7k" (at 81.915 25.4 90)
  6589. (effects (font (size 1.27 1.27)))
  6590. )
  6591. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 83.693 25.4 90)
  6592. (effects (font (size 1.27 1.27)) hide)
  6593. )
  6594. (property "Datasheet" "~" (at 81.915 25.4 0)
  6595. (effects (font (size 1.27 1.27)) hide)
  6596. )
  6597. (pin "1" (uuid 73e5c678-bd77-4b66-b2e5-7d00479312e1))
  6598. (pin "2" (uuid 7c7d90e2-d703-4d67-9864-91b9377da4d7))
  6599. (instances
  6600. (project "PowerBook"
  6601. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6602. (reference "R11") (unit 1)
  6603. )
  6604. )
  6605. )
  6606. )
  6607. (symbol (lib_id "Device:R") (at 39.37 74.93 90) (unit 1)
  6608. (in_bom yes) (on_board yes) (dnp no)
  6609. (uuid b9eb0571-f2e8-4038-b2cc-6af37a8bae59)
  6610. (property "Reference" "R33" (at 41.275 74.93 90)
  6611. (effects (font (size 1.27 1.27)) (justify left))
  6612. )
  6613. (property "Value" "110" (at 55.88 74.93 90)
  6614. (effects (font (size 1.27 1.27)) (justify left))
  6615. )
  6616. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 76.708 90)
  6617. (effects (font (size 1.27 1.27)) hide)
  6618. )
  6619. (property "Datasheet" "~" (at 39.37 74.93 0)
  6620. (effects (font (size 1.27 1.27)) hide)
  6621. )
  6622. (pin "1" (uuid 0299f53d-7af8-45eb-a85c-e2e9342bb6b7))
  6623. (pin "2" (uuid 957b4ef8-a946-43c9-9bbf-ab8bf1859ec1))
  6624. (instances
  6625. (project "PowerBook"
  6626. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6627. (reference "R33") (unit 1)
  6628. )
  6629. )
  6630. )
  6631. )
  6632. (symbol (lib_id "Mechanical:MountingHole") (at 123.19 20.32 0) (unit 1)
  6633. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  6634. (uuid bbc443df-065d-468c-82e3-44848bb71a89)
  6635. (property "Reference" "H5" (at 125.73 19.0499 0)
  6636. (effects (font (size 1.27 1.27)) (justify left))
  6637. )
  6638. (property "Value" "MountingHole" (at 125.73 21.5899 0)
  6639. (effects (font (size 1.27 1.27)) (justify left))
  6640. )
  6641. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 123.19 20.32 0)
  6642. (effects (font (size 1.27 1.27)) hide)
  6643. )
  6644. (property "Datasheet" "~" (at 123.19 20.32 0)
  6645. (effects (font (size 1.27 1.27)) hide)
  6646. )
  6647. (instances
  6648. (project "PowerBook"
  6649. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6650. (reference "H5") (unit 1)
  6651. )
  6652. )
  6653. )
  6654. )
  6655. (symbol (lib_id "power:GND") (at 86.995 114.3 270) (unit 1)
  6656. (in_bom yes) (on_board yes) (dnp no)
  6657. (uuid bcc53cc9-59ce-4a1f-bf14-1e027fbf53d9)
  6658. (property "Reference" "#PWR024" (at 80.645 114.3 0)
  6659. (effects (font (size 1.27 1.27)) hide)
  6660. )
  6661. (property "Value" "GND" (at 82.6008 114.427 90)
  6662. (effects (font (size 1.27 1.27)))
  6663. )
  6664. (property "Footprint" "" (at 86.995 114.3 0)
  6665. (effects (font (size 1.27 1.27)) hide)
  6666. )
  6667. (property "Datasheet" "" (at 86.995 114.3 0)
  6668. (effects (font (size 1.27 1.27)) hide)
  6669. )
  6670. (pin "1" (uuid e38a5e57-1ac0-499a-8ddd-080643e023d8))
  6671. (instances
  6672. (project "PowerBook"
  6673. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6674. (reference "#PWR024") (unit 1)
  6675. )
  6676. )
  6677. )
  6678. )
  6679. (symbol (lib_id "Device:C") (at 185.42 24.13 0) (unit 1)
  6680. (in_bom yes) (on_board yes) (dnp no)
  6681. (uuid c4191605-68bf-48a0-9b68-c834c5af8008)
  6682. (property "Reference" "C8" (at 179.0192 24.13 90)
  6683. (effects (font (size 1.27 1.27)))
  6684. )
  6685. (property "Value" "0.1uF" (at 181.3306 24.13 90)
  6686. (effects (font (size 1.27 1.27)))
  6687. )
  6688. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 186.3852 27.94 0)
  6689. (effects (font (size 1.27 1.27)) hide)
  6690. )
  6691. (property "Datasheet" "~" (at 185.42 24.13 0)
  6692. (effects (font (size 1.27 1.27)) hide)
  6693. )
  6694. (pin "1" (uuid 0434f562-4926-45ab-bffe-a556eb421e2d))
  6695. (pin "2" (uuid d84e14de-d593-4f6a-a1f2-f68cc27cff99))
  6696. (instances
  6697. (project "PowerBook"
  6698. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6699. (reference "C8") (unit 1)
  6700. )
  6701. )
  6702. )
  6703. )
  6704. (symbol (lib_id "Device:CP") (at 190.5 24.13 0) (unit 1)
  6705. (in_bom yes) (on_board yes) (dnp no)
  6706. (uuid c59cd08b-a1eb-41f1-9fb2-4ec532edfc41)
  6707. (property "Reference" "C10" (at 193.4972 22.9616 0)
  6708. (effects (font (size 1.27 1.27)) (justify left))
  6709. )
  6710. (property "Value" "4.7uF" (at 193.4972 25.273 0)
  6711. (effects (font (size 1.27 1.27)) (justify left))
  6712. )
  6713. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 191.4652 27.94 0)
  6714. (effects (font (size 1.27 1.27)) hide)
  6715. )
  6716. (property "Datasheet" "~" (at 190.5 24.13 0)
  6717. (effects (font (size 1.27 1.27)) hide)
  6718. )
  6719. (pin "1" (uuid 1474ca17-4450-4779-b563-b5f332bdccd2))
  6720. (pin "2" (uuid c5cb6e97-1b82-4da8-874e-eb0e8e5ef607))
  6721. (instances
  6722. (project "PowerBook"
  6723. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6724. (reference "C10") (unit 1)
  6725. )
  6726. )
  6727. )
  6728. )
  6729. (symbol (lib_id "power:GND") (at 103.505 32.385 0) (mirror y) (unit 1)
  6730. (in_bom yes) (on_board yes) (dnp no)
  6731. (uuid c7560a94-1694-48a3-9f73-4286a704babe)
  6732. (property "Reference" "#PWR0108" (at 103.505 38.735 0)
  6733. (effects (font (size 1.27 1.27)) hide)
  6734. )
  6735. (property "Value" "GND" (at 103.378 36.7792 90)
  6736. (effects (font (size 1.27 1.27)))
  6737. )
  6738. (property "Footprint" "" (at 103.505 32.385 0)
  6739. (effects (font (size 1.27 1.27)) hide)
  6740. )
  6741. (property "Datasheet" "" (at 103.505 32.385 0)
  6742. (effects (font (size 1.27 1.27)) hide)
  6743. )
  6744. (pin "1" (uuid ee3303be-aee1-46dc-b90e-22a25d844f39))
  6745. (instances
  6746. (project "PowerBook"
  6747. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6748. (reference "#PWR0108") (unit 1)
  6749. )
  6750. )
  6751. )
  6752. )
  6753. (symbol (lib_id "power:+2V8") (at 185.42 20.32 0) (unit 1)
  6754. (in_bom yes) (on_board yes) (dnp no)
  6755. (uuid cbb97826-b405-4910-ba34-f12bf73a4ac6)
  6756. (property "Reference" "#PWR09" (at 185.42 24.13 0)
  6757. (effects (font (size 1.27 1.27)) hide)
  6758. )
  6759. (property "Value" "+2V8" (at 185.801 15.9258 0)
  6760. (effects (font (size 1.27 1.27)))
  6761. )
  6762. (property "Footprint" "" (at 185.42 20.32 0)
  6763. (effects (font (size 1.27 1.27)) hide)
  6764. )
  6765. (property "Datasheet" "" (at 185.42 20.32 0)
  6766. (effects (font (size 1.27 1.27)) hide)
  6767. )
  6768. (pin "1" (uuid 129c7533-d0c3-45a9-af9d-1c2cb5459db1))
  6769. (instances
  6770. (project "PowerBook"
  6771. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6772. (reference "#PWR09") (unit 1)
  6773. )
  6774. )
  6775. )
  6776. )
  6777. (symbol (lib_id "power:GND") (at 22.86 121.92 270) (unit 1)
  6778. (in_bom yes) (on_board yes) (dnp no)
  6779. (uuid cd625c12-af89-4a89-b136-4e9a3ac6d818)
  6780. (property "Reference" "#PWR023" (at 16.51 121.92 0)
  6781. (effects (font (size 1.27 1.27)) hide)
  6782. )
  6783. (property "Value" "GND" (at 18.415 121.92 0)
  6784. (effects (font (size 1.27 1.27)))
  6785. )
  6786. (property "Footprint" "" (at 22.86 121.92 0)
  6787. (effects (font (size 1.27 1.27)) hide)
  6788. )
  6789. (property "Datasheet" "" (at 22.86 121.92 0)
  6790. (effects (font (size 1.27 1.27)) hide)
  6791. )
  6792. (pin "1" (uuid 05d640d3-77e6-4758-aae9-0c0e8f98a6ee))
  6793. (instances
  6794. (project "PowerBook"
  6795. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6796. (reference "#PWR023") (unit 1)
  6797. )
  6798. )
  6799. )
  6800. )
  6801. (symbol (lib_id "New_Library:LVT125") (at 97.155 50.8 0) (unit 1)
  6802. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  6803. (uuid cebb5c1e-f296-4040-b1f6-63c5ffc061bf)
  6804. (property "Reference" "U7" (at 97.155 48.26 0)
  6805. (effects (font (size 1.27 1.27)))
  6806. )
  6807. (property "Value" "LVT125" (at 97.155 50.8 0)
  6808. (effects (font (size 1.27 1.27)))
  6809. )
  6810. (property "Footprint" "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (at 97.155 50.8 0)
  6811. (effects (font (size 1.27 1.27)) hide)
  6812. )
  6813. (property "Datasheet" "" (at 97.155 50.8 0)
  6814. (effects (font (size 1.27 1.27)) hide)
  6815. )
  6816. (pin "1" (uuid 90e981ea-96c9-43b1-ac6e-b1e97ff507c2))
  6817. (pin "10" (uuid 1b2886f1-b4d9-4df1-beb0-f0e9c2228aa7))
  6818. (pin "11" (uuid 75a32aaa-9161-4dd2-a598-e78bbea08f01))
  6819. (pin "12" (uuid 49768290-ec7c-439c-a2ff-d76f1a2d0631))
  6820. (pin "13" (uuid dbec9a7f-de3f-4002-a235-a40447187f9f))
  6821. (pin "14" (uuid 9b63b8a6-b7ec-438f-a5f9-31200c7f93f6))
  6822. (pin "2" (uuid be4d4e99-8bd1-40ae-82bf-4c8419b359ac))
  6823. (pin "3" (uuid a0a93ffa-6960-4a61-b143-ba858e5cb3c6))
  6824. (pin "4" (uuid c6372dd3-ccf5-48b1-9124-d6e67b1a474d))
  6825. (pin "5" (uuid 3f2f8415-95a8-4213-af1f-d008b5ae3f21))
  6826. (pin "6" (uuid faf66190-8931-41e4-a9ae-894f694b486d))
  6827. (pin "7" (uuid 42bc3d11-a746-42ad-a3fa-3e09bf2d2fd3))
  6828. (pin "8" (uuid f0845ac0-39c5-4dcb-a336-2db4c2536a8a))
  6829. (pin "9" (uuid 03bb5a85-136b-424f-9ba9-fafdfa66f640))
  6830. (instances
  6831. (project "PowerBook"
  6832. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6833. (reference "U7") (unit 1)
  6834. )
  6835. )
  6836. )
  6837. )
  6838. (symbol (lib_id "Device:R") (at 39.37 85.09 90) (unit 1)
  6839. (in_bom yes) (on_board yes) (dnp no)
  6840. (uuid d06a9a79-7d53-413c-9256-1f2b0418c15b)
  6841. (property "Reference" "R38" (at 41.275 85.09 90)
  6842. (effects (font (size 1.27 1.27)) (justify left))
  6843. )
  6844. (property "Value" "110" (at 55.88 85.09 90)
  6845. (effects (font (size 1.27 1.27)) (justify left))
  6846. )
  6847. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 86.868 90)
  6848. (effects (font (size 1.27 1.27)) hide)
  6849. )
  6850. (property "Datasheet" "~" (at 39.37 85.09 0)
  6851. (effects (font (size 1.27 1.27)) hide)
  6852. )
  6853. (pin "1" (uuid 0c65a01c-9588-4b90-9050-11e611d77173))
  6854. (pin "2" (uuid c6809829-bdfd-4f91-bee3-640c458a6d79))
  6855. (instances
  6856. (project "PowerBook"
  6857. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6858. (reference "R38") (unit 1)
  6859. )
  6860. )
  6861. )
  6862. )
  6863. (symbol (lib_id "power:+2V8") (at 106.045 53.34 270) (unit 1)
  6864. (in_bom yes) (on_board yes) (dnp no)
  6865. (uuid d31500c7-5cd6-4f9e-975b-07404745c548)
  6866. (property "Reference" "#PWR060" (at 102.235 53.34 0)
  6867. (effects (font (size 1.27 1.27)) hide)
  6868. )
  6869. (property "Value" "+2V8" (at 110.4392 53.721 90)
  6870. (effects (font (size 1.27 1.27)))
  6871. )
  6872. (property "Footprint" "" (at 106.045 53.34 0)
  6873. (effects (font (size 1.27 1.27)) hide)
  6874. )
  6875. (property "Datasheet" "" (at 106.045 53.34 0)
  6876. (effects (font (size 1.27 1.27)) hide)
  6877. )
  6878. (pin "1" (uuid 4610ca8f-eda7-4d95-a2f3-a3d4aefe08f7))
  6879. (instances
  6880. (project "PowerBook"
  6881. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6882. (reference "#PWR060") (unit 1)
  6883. )
  6884. )
  6885. )
  6886. )
  6887. (symbol (lib_id "Device:C") (at 238.76 24.13 0) (unit 1)
  6888. (in_bom yes) (on_board yes) (dnp no)
  6889. (uuid d35a1688-c174-4ea8-a25d-8782d5f9a928)
  6890. (property "Reference" "C11" (at 232.3592 24.13 90)
  6891. (effects (font (size 1.27 1.27)))
  6892. )
  6893. (property "Value" "0.1uF" (at 234.6706 24.13 90)
  6894. (effects (font (size 1.27 1.27)))
  6895. )
  6896. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 239.7252 27.94 0)
  6897. (effects (font (size 1.27 1.27)) hide)
  6898. )
  6899. (property "Datasheet" "~" (at 238.76 24.13 0)
  6900. (effects (font (size 1.27 1.27)) hide)
  6901. )
  6902. (pin "1" (uuid 8b95e477-499a-4645-ae20-d1bc622fb81b))
  6903. (pin "2" (uuid d0ed75d8-f9ba-4488-8a28-5e0a65454dea))
  6904. (instances
  6905. (project "PowerBook"
  6906. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6907. (reference "C11") (unit 1)
  6908. )
  6909. )
  6910. )
  6911. )
  6912. (symbol (lib_id "power:GND") (at 90.805 32.385 0) (mirror y) (unit 1)
  6913. (in_bom yes) (on_board yes) (dnp no)
  6914. (uuid d481df13-0c65-4fe0-b044-5bfe92040998)
  6915. (property "Reference" "#PWR0107" (at 90.805 38.735 0)
  6916. (effects (font (size 1.27 1.27)) hide)
  6917. )
  6918. (property "Value" "GND" (at 90.678 36.7792 90)
  6919. (effects (font (size 1.27 1.27)))
  6920. )
  6921. (property "Footprint" "" (at 90.805 32.385 0)
  6922. (effects (font (size 1.27 1.27)) hide)
  6923. )
  6924. (property "Datasheet" "" (at 90.805 32.385 0)
  6925. (effects (font (size 1.27 1.27)) hide)
  6926. )
  6927. (pin "1" (uuid 1384269a-099e-4c67-a88d-8955b071d44d))
  6928. (instances
  6929. (project "PowerBook"
  6930. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6931. (reference "#PWR0107") (unit 1)
  6932. )
  6933. )
  6934. )
  6935. )
  6936. (symbol (lib_id "Device:CP") (at 266.7 83.82 90) (unit 1)
  6937. (in_bom yes) (on_board yes) (dnp no)
  6938. (uuid d5134e87-aa80-4414-a674-e59e54ad24ed)
  6939. (property "Reference" "C7" (at 265.5316 80.8228 0)
  6940. (effects (font (size 1.27 1.27)) (justify left))
  6941. )
  6942. (property "Value" "4.7uF" (at 267.843 80.8228 0)
  6943. (effects (font (size 1.27 1.27)) (justify left))
  6944. )
  6945. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 270.51 82.8548 0)
  6946. (effects (font (size 1.27 1.27)) hide)
  6947. )
  6948. (property "Datasheet" "~" (at 266.7 83.82 0)
  6949. (effects (font (size 1.27 1.27)) hide)
  6950. )
  6951. (pin "1" (uuid 39eb1f13-2a74-46be-9fb9-c41b9edc99eb))
  6952. (pin "2" (uuid 36c7afb8-c9c9-4b4c-9803-756bd7e7167d))
  6953. (instances
  6954. (project "PowerBook"
  6955. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6956. (reference "C7") (unit 1)
  6957. )
  6958. )
  6959. )
  6960. )
  6961. (symbol (lib_id "Device:R") (at 39.37 77.47 90) (unit 1)
  6962. (in_bom yes) (on_board yes) (dnp no)
  6963. (uuid d55cc04d-788a-42ba-a149-99196a85fed4)
  6964. (property "Reference" "R1" (at 40.64 77.47 90)
  6965. (effects (font (size 1.27 1.27)) (justify left))
  6966. )
  6967. (property "Value" "110" (at 55.88 77.47 90)
  6968. (effects (font (size 1.27 1.27)) (justify left))
  6969. )
  6970. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 79.248 90)
  6971. (effects (font (size 1.27 1.27)) hide)
  6972. )
  6973. (property "Datasheet" "~" (at 39.37 77.47 0)
  6974. (effects (font (size 1.27 1.27)) hide)
  6975. )
  6976. (pin "1" (uuid 0ce2a018-b2bb-4c7f-8f5c-61deb4f34b4f))
  6977. (pin "2" (uuid 91d1b014-d7da-466f-936e-d69aa5a47ef1))
  6978. (instances
  6979. (project "PowerBook"
  6980. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  6981. (reference "R1") (unit 1)
  6982. )
  6983. )
  6984. )
  6985. )
  6986. (symbol (lib_id "power:+2V8") (at 20.32 61.595 0) (unit 1)
  6987. (in_bom yes) (on_board yes) (dnp no)
  6988. (uuid d59ac02e-1875-46b2-aa8d-e821b7d5d6b1)
  6989. (property "Reference" "#PWR0117" (at 20.32 65.405 0)
  6990. (effects (font (size 1.27 1.27)) hide)
  6991. )
  6992. (property "Value" "+2V8" (at 20.701 57.2008 0)
  6993. (effects (font (size 1.27 1.27)))
  6994. )
  6995. (property "Footprint" "" (at 20.32 61.595 0)
  6996. (effects (font (size 1.27 1.27)) hide)
  6997. )
  6998. (property "Datasheet" "" (at 20.32 61.595 0)
  6999. (effects (font (size 1.27 1.27)) hide)
  7000. )
  7001. (pin "1" (uuid 5b987096-38fa-49de-a548-5375f15f6e0d))
  7002. (instances
  7003. (project "PowerBook"
  7004. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7005. (reference "#PWR0117") (unit 1)
  7006. )
  7007. )
  7008. )
  7009. )
  7010. (symbol (lib_id "power:+2V8") (at 27.94 45.085 0) (unit 1)
  7011. (in_bom yes) (on_board yes) (dnp no)
  7012. (uuid d7437542-eb5d-4e71-8df1-f6749280f65c)
  7013. (property "Reference" "#PWR034" (at 27.94 48.895 0)
  7014. (effects (font (size 1.27 1.27)) hide)
  7015. )
  7016. (property "Value" "+2V8" (at 28.321 40.6908 0)
  7017. (effects (font (size 1.27 1.27)))
  7018. )
  7019. (property "Footprint" "" (at 27.94 45.085 0)
  7020. (effects (font (size 1.27 1.27)) hide)
  7021. )
  7022. (property "Datasheet" "" (at 27.94 45.085 0)
  7023. (effects (font (size 1.27 1.27)) hide)
  7024. )
  7025. (pin "1" (uuid 3ec449f3-3fc1-4417-8e7c-03dd2be0357f))
  7026. (instances
  7027. (project "PowerBook"
  7028. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7029. (reference "#PWR034") (unit 1)
  7030. )
  7031. )
  7032. )
  7033. )
  7034. (symbol (lib_id "power:+2V8") (at 106.045 76.2 270) (unit 1)
  7035. (in_bom yes) (on_board yes) (dnp no)
  7036. (uuid dfc68250-1adb-4edd-af55-159d2fe0ce21)
  7037. (property "Reference" "#PWR054" (at 102.235 76.2 0)
  7038. (effects (font (size 1.27 1.27)) hide)
  7039. )
  7040. (property "Value" "+2V8" (at 110.4392 76.581 90)
  7041. (effects (font (size 1.27 1.27)))
  7042. )
  7043. (property "Footprint" "" (at 106.045 76.2 0)
  7044. (effects (font (size 1.27 1.27)) hide)
  7045. )
  7046. (property "Datasheet" "" (at 106.045 76.2 0)
  7047. (effects (font (size 1.27 1.27)) hide)
  7048. )
  7049. (pin "1" (uuid 7b0c81c4-d6c3-4a58-aa38-a61df41f6958))
  7050. (instances
  7051. (project "PowerBook"
  7052. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7053. (reference "#PWR054") (unit 1)
  7054. )
  7055. )
  7056. )
  7057. )
  7058. (symbol (lib_id "Device:R") (at 39.37 69.85 90) (unit 1)
  7059. (in_bom yes) (on_board yes) (dnp no)
  7060. (uuid e248ac27-5c84-4ccf-8acf-9333febfca16)
  7061. (property "Reference" "R35" (at 41.275 69.85 90)
  7062. (effects (font (size 1.27 1.27)) (justify left))
  7063. )
  7064. (property "Value" "110" (at 55.88 69.85 90)
  7065. (effects (font (size 1.27 1.27)) (justify left))
  7066. )
  7067. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 39.37 71.628 90)
  7068. (effects (font (size 1.27 1.27)) hide)
  7069. )
  7070. (property "Datasheet" "~" (at 39.37 69.85 0)
  7071. (effects (font (size 1.27 1.27)) hide)
  7072. )
  7073. (pin "1" (uuid d2f4a61c-b9d1-411f-b407-3c8dd7d4284d))
  7074. (pin "2" (uuid d459a5e7-53d1-48a8-b872-4964d7ec3f6c))
  7075. (instances
  7076. (project "PowerBook"
  7077. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7078. (reference "R35") (unit 1)
  7079. )
  7080. )
  7081. )
  7082. )
  7083. (symbol (lib_id "power:GND") (at 107.315 183.515 90) (unit 1)
  7084. (in_bom yes) (on_board yes) (dnp no)
  7085. (uuid e27ae3d1-f1c8-4938-ab6a-f15c1c3a67bb)
  7086. (property "Reference" "#PWR044" (at 113.665 183.515 0)
  7087. (effects (font (size 1.27 1.27)) hide)
  7088. )
  7089. (property "Value" "GND" (at 111.7092 183.388 90)
  7090. (effects (font (size 1.27 1.27)))
  7091. )
  7092. (property "Footprint" "" (at 107.315 183.515 0)
  7093. (effects (font (size 1.27 1.27)) hide)
  7094. )
  7095. (property "Datasheet" "" (at 107.315 183.515 0)
  7096. (effects (font (size 1.27 1.27)) hide)
  7097. )
  7098. (pin "1" (uuid ab128f85-3907-4ad5-abb7-10a3b102e267))
  7099. (instances
  7100. (project "PowerBook"
  7101. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7102. (reference "#PWR044") (unit 1)
  7103. )
  7104. )
  7105. )
  7106. )
  7107. (symbol (lib_id "power:+3V3") (at 83.185 21.59 0) (mirror y) (unit 1)
  7108. (in_bom yes) (on_board yes) (dnp no)
  7109. (uuid e42de046-9032-4f4d-8bc7-87e9163fff4f)
  7110. (property "Reference" "#PWR0110" (at 83.185 25.4 0)
  7111. (effects (font (size 1.27 1.27)) hide)
  7112. )
  7113. (property "Value" "+3V3" (at 82.804 18.3388 90)
  7114. (effects (font (size 1.27 1.27)) (justify left))
  7115. )
  7116. (property "Footprint" "" (at 83.185 21.59 0)
  7117. (effects (font (size 1.27 1.27)) hide)
  7118. )
  7119. (property "Datasheet" "" (at 83.185 21.59 0)
  7120. (effects (font (size 1.27 1.27)) hide)
  7121. )
  7122. (pin "1" (uuid ffeac5eb-cc34-45d4-8bc2-e699267f9013))
  7123. (instances
  7124. (project "PowerBook"
  7125. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7126. (reference "#PWR0110") (unit 1)
  7127. )
  7128. )
  7129. )
  7130. )
  7131. (symbol (lib_id "power:+2V8") (at 43.815 24.765 270) (unit 1)
  7132. (in_bom yes) (on_board yes) (dnp no)
  7133. (uuid ee9a2c34-175f-4ae3-af7c-180468204166)
  7134. (property "Reference" "#PWR058" (at 40.005 24.765 0)
  7135. (effects (font (size 1.27 1.27)) hide)
  7136. )
  7137. (property "Value" "+2V8" (at 48.2092 25.146 0)
  7138. (effects (font (size 1.27 1.27)))
  7139. )
  7140. (property "Footprint" "" (at 43.815 24.765 0)
  7141. (effects (font (size 1.27 1.27)) hide)
  7142. )
  7143. (property "Datasheet" "" (at 43.815 24.765 0)
  7144. (effects (font (size 1.27 1.27)) hide)
  7145. )
  7146. (pin "1" (uuid 22edb73c-0b1b-43ac-ab04-1a2f9629df33))
  7147. (instances
  7148. (project "PowerBook"
  7149. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7150. (reference "#PWR058") (unit 1)
  7151. )
  7152. )
  7153. )
  7154. )
  7155. (symbol (lib_id "custom_symbols:PB_SCSI_HD_Pins") (at 95.885 161.925 0) (unit 1)
  7156. (in_bom yes) (on_board yes) (dnp no)
  7157. (uuid f05f8e26-6ea8-46d5-89a2-2ea7e4119a94)
  7158. (property "Reference" "J2" (at 95.25 132.08 0)
  7159. (effects (font (size 1.27 1.27)))
  7160. )
  7161. (property "Value" "PB_SCSI_HD_Pins" (at 95.25 134.3914 0)
  7162. (effects (font (size 1.27 1.27)))
  7163. )
  7164. (property "Footprint" "Library:PowerBook_SCSI_40Pin_UpsideDown" (at 95.631 133.985 0)
  7165. (effects (font (size 1.27 1.27)) hide)
  7166. )
  7167. (property "Datasheet" "~" (at 88.011 160.655 0)
  7168. (effects (font (size 1.27 1.27)) hide)
  7169. )
  7170. (pin "1" (uuid 21a7e134-9b83-44a9-ad42-59f537461c24))
  7171. (pin "10" (uuid 279b3706-a1c5-45e9-aea8-acc91a865c1d))
  7172. (pin "11" (uuid bee1c83e-92d6-4762-9662-d2044cf633c3))
  7173. (pin "12" (uuid 5a363675-d286-4aba-88ee-1b89f721a68f))
  7174. (pin "13" (uuid 79c8349b-4fa2-4995-9e35-3c2a83fc877e))
  7175. (pin "14" (uuid 64cb7661-2949-4e33-b21f-32e0ee084d24))
  7176. (pin "15" (uuid 1a9b2b78-748c-4a05-aea5-0684f910852c))
  7177. (pin "16" (uuid 0a34d0cf-908e-4f0b-9ea7-01dac1e02416))
  7178. (pin "18" (uuid 278eb971-27e6-4f3c-9dbd-a982311c604d))
  7179. (pin "19" (uuid 6ae8e2e1-6308-42d3-8d69-ea3708b44a29))
  7180. (pin "2" (uuid 7bab7c54-14ba-4334-8083-12290013b212))
  7181. (pin "20" (uuid 01778132-e554-45ab-ac7b-1366b6f50536))
  7182. (pin "21" (uuid fa987b78-393c-4b52-8387-0cae1a6f61da))
  7183. (pin "22" (uuid 873db3e7-76e3-4c9b-b6c7-5889a05b9d2e))
  7184. (pin "23" (uuid a2737bba-93af-4d9d-98b9-0661170dfc92))
  7185. (pin "24" (uuid 865f7303-503e-4fe0-8988-3f6b238601d0))
  7186. (pin "25" (uuid 18928c3f-6fc0-4584-96a7-e7c0ee57d55e))
  7187. (pin "26" (uuid 18795498-84b2-40e7-ae15-23e332b8bf20))
  7188. (pin "27" (uuid a6a8d870-f076-4b57-adb2-395457cdee40))
  7189. (pin "28" (uuid fad8b1b6-8f54-4799-8b3c-45503519e8cc))
  7190. (pin "29" (uuid 7ecaefed-4fe2-4246-97f4-4093dcc5a123))
  7191. (pin "3" (uuid ca2e2cd3-29bd-4836-9ead-a2a51cd6742f))
  7192. (pin "30" (uuid 6f708792-b56f-4c46-b311-7f457c42e8c3))
  7193. (pin "31" (uuid a44c9a09-2c10-480c-95bd-e562c6a8d764))
  7194. (pin "32" (uuid d040b0bc-2f76-4767-98f9-68726068be02))
  7195. (pin "33" (uuid 1b33e2ad-83c8-4012-993c-cac5602b82ce))
  7196. (pin "34" (uuid 034868e5-397b-4f4c-8c9b-6d3ef280a9fb))
  7197. (pin "35" (uuid 64132634-705c-4846-b25f-993ba608af88))
  7198. (pin "36" (uuid 73dccef8-89a9-4a30-b89f-d9cfde492644))
  7199. (pin "37" (uuid c595eebf-82d5-49f8-899c-d8de78b56f88))
  7200. (pin "38" (uuid c6176888-2c50-426d-8914-a895aeaccac7))
  7201. (pin "39" (uuid 1a5f18bf-0b50-480f-8a56-da67d079325c))
  7202. (pin "4" (uuid 315dff16-9be8-422d-a6f7-842a321557e0))
  7203. (pin "40" (uuid 4fa19643-4b9e-416e-aa27-8b997cb1d1e8))
  7204. (pin "5" (uuid fa55be1c-322a-47c0-9014-b43dd06731ee))
  7205. (pin "6" (uuid 3caebd02-fa83-4387-a80d-1b0b95b3784a))
  7206. (pin "7" (uuid 70a79cf1-3696-4ccb-970e-165eaa5f4d4f))
  7207. (pin "8" (uuid da9e6bcf-2f75-4978-8a48-b48b68d1dda6))
  7208. (pin "9" (uuid 437dc8ea-e62f-426e-8feb-32d703410563))
  7209. (instances
  7210. (project "PowerBook"
  7211. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7212. (reference "J2") (unit 1)
  7213. )
  7214. )
  7215. )
  7216. )
  7217. (symbol (lib_id "Device:R") (at 259.08 127 90) (unit 1)
  7218. (in_bom yes) (on_board yes) (dnp no)
  7219. (uuid f106194f-fc99-48da-8a15-f309a62d019b)
  7220. (property "Reference" "R12" (at 257.81 127 90)
  7221. (effects (font (size 1.27 1.27)))
  7222. )
  7223. (property "Value" "1k" (at 260.35 127 90)
  7224. (effects (font (size 1.27 1.27)))
  7225. )
  7226. (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 259.08 128.778 90)
  7227. (effects (font (size 1.27 1.27)) hide)
  7228. )
  7229. (property "Datasheet" "~" (at 259.08 127 0)
  7230. (effects (font (size 1.27 1.27)) hide)
  7231. )
  7232. (pin "1" (uuid a3b561d4-d070-429a-b193-6bfdf6dd2343))
  7233. (pin "2" (uuid 63209779-5aae-415b-b0bf-530adefef120))
  7234. (instances
  7235. (project "PowerBook"
  7236. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7237. (reference "R12") (unit 1)
  7238. )
  7239. )
  7240. )
  7241. )
  7242. (symbol (lib_id "New_Library:LVT245") (at 27.94 60.96 0) (unit 1)
  7243. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  7244. (uuid f16f872f-323a-4d70-9af2-f2b2c4a8b55f)
  7245. (property "Reference" "U1" (at 27.94 59.69 0)
  7246. (effects (font (size 1.27 1.27)))
  7247. )
  7248. (property "Value" "LVT245" (at 27.94 62.23 0)
  7249. (effects (font (size 1.27 1.27)))
  7250. )
  7251. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (at 27.94 55.88 0)
  7252. (effects (font (size 1.27 1.27)) hide)
  7253. )
  7254. (property "Datasheet" "" (at 27.94 60.96 0)
  7255. (effects (font (size 1.27 1.27)) hide)
  7256. )
  7257. (pin "1" (uuid 0fabd306-edf0-4326-9dbf-fbec3878bbdb))
  7258. (pin "10" (uuid 96d1532d-801c-4d5d-a71c-c134c60a2812))
  7259. (pin "11" (uuid e55a24a0-4f4e-4c4c-a143-c424374fc940))
  7260. (pin "12" (uuid 885d279e-7fd9-4ede-a802-ca76a698be11))
  7261. (pin "13" (uuid 0441d2ce-5fe2-47b7-8726-cbc2b1783d6e))
  7262. (pin "14" (uuid 23567f17-4adf-424c-b8e9-ba051f90feaf))
  7263. (pin "15" (uuid 4a243c63-4ef3-487b-b7fa-0f6c962619e4))
  7264. (pin "16" (uuid b36f839a-2737-4c1a-864f-06b21e5ed61b))
  7265. (pin "17" (uuid f7a0855a-d517-4884-b16f-9620e7c7116f))
  7266. (pin "18" (uuid 8429037b-d053-473e-babc-9adae6a81839))
  7267. (pin "19" (uuid 41fd4b51-58e4-4577-bb40-f49893836ff2))
  7268. (pin "2" (uuid 89b5dfe0-6ef5-4dc4-a128-145382b88795))
  7269. (pin "20" (uuid e347a033-d90b-4edb-9352-0cd99746799f))
  7270. (pin "3" (uuid 86c8c3b6-22e4-414c-b246-159655d65b1f))
  7271. (pin "4" (uuid 71087d91-b60d-43eb-8ddb-923902c0ca29))
  7272. (pin "5" (uuid 9ce70c14-3b07-45f1-b575-42debd8c2686))
  7273. (pin "6" (uuid e57d2422-e78a-4a9e-b24f-5720a0dbc715))
  7274. (pin "7" (uuid 814a4176-7392-4e21-b906-16a7b29c8b57))
  7275. (pin "8" (uuid f3102812-8167-4fd1-b18e-91de969d1dcb))
  7276. (pin "9" (uuid e08d481d-cfcd-47fd-ad5d-d906eec0937c))
  7277. (instances
  7278. (project "PowerBook"
  7279. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7280. (reference "U1") (unit 1)
  7281. )
  7282. )
  7283. )
  7284. )
  7285. (symbol (lib_id "power:+5VA") (at 107.315 137.795 0) (unit 1)
  7286. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  7287. (uuid f2285cea-eae0-44f5-be59-69a318c91f3f)
  7288. (property "Reference" "#PWR041" (at 107.315 141.605 0)
  7289. (effects (font (size 1.27 1.27)) hide)
  7290. )
  7291. (property "Value" "+5VA" (at 107.315 132.715 0)
  7292. (effects (font (size 1.27 1.27)))
  7293. )
  7294. (property "Footprint" "" (at 107.315 137.795 0)
  7295. (effects (font (size 1.27 1.27)) hide)
  7296. )
  7297. (property "Datasheet" "" (at 107.315 137.795 0)
  7298. (effects (font (size 1.27 1.27)) hide)
  7299. )
  7300. (pin "1" (uuid eb430dc7-cc9a-46b4-a4cb-f2ec221ecce6))
  7301. (instances
  7302. (project "PowerBook"
  7303. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7304. (reference "#PWR041") (unit 1)
  7305. )
  7306. )
  7307. )
  7308. )
  7309. (symbol (lib_id "New_Library:LVT245") (at 162.56 16.51 0) (unit 1)
  7310. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  7311. (uuid f24e6ed5-549c-4de4-b3b1-561de9e64e4a)
  7312. (property "Reference" "U4" (at 162.56 13.97 0)
  7313. (effects (font (size 1.27 1.27)))
  7314. )
  7315. (property "Value" "LVTH245" (at 162.56 16.51 0)
  7316. (effects (font (size 1.27 1.27)))
  7317. )
  7318. (property "Footprint" "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (at 162.56 11.43 0)
  7319. (effects (font (size 1.27 1.27)) hide)
  7320. )
  7321. (property "Datasheet" "" (at 162.56 16.51 0)
  7322. (effects (font (size 1.27 1.27)) hide)
  7323. )
  7324. (pin "1" (uuid 92b32272-c220-4da3-b102-b1f5d40ed39c))
  7325. (pin "10" (uuid 42455a7a-1887-4afa-976a-fb9c27358a8c))
  7326. (pin "11" (uuid 2f66da2e-f239-4cfe-8b84-6ef03430a3cf))
  7327. (pin "12" (uuid f403a249-f6f3-4f56-b58c-84581d8b5303))
  7328. (pin "13" (uuid dcf23bbb-5feb-47cc-b296-6a7c678c7575))
  7329. (pin "14" (uuid 3084540b-0a2b-47ba-b1b1-8f49c55959a2))
  7330. (pin "15" (uuid 81801738-c298-420b-9a94-27fc58c8c9d7))
  7331. (pin "16" (uuid d320f19c-8698-417d-a95c-4312bbfc3584))
  7332. (pin "17" (uuid c39a1bd6-43f6-46df-a7e1-0d0393213440))
  7333. (pin "18" (uuid 6a12efd5-fe7d-46e2-b704-f640c0d4777e))
  7334. (pin "19" (uuid a1bb59ec-d207-4993-8b26-45e6417367c2))
  7335. (pin "2" (uuid a680d3c5-daf0-427f-9918-8799ba7392cc))
  7336. (pin "20" (uuid ed4ebf17-f614-44a5-be9f-a6cae9401a61))
  7337. (pin "3" (uuid 87069093-9ec7-4bc7-9757-60d320b10272))
  7338. (pin "4" (uuid 381f339d-59dd-4108-903a-9505d279b4c0))
  7339. (pin "5" (uuid 538fc7eb-c88d-40e0-993c-728a1bcd8e81))
  7340. (pin "6" (uuid 6d4e5261-49bc-4523-9d3c-efef7fe3a392))
  7341. (pin "7" (uuid c3ffdf2f-86c7-4b56-ab58-e9ceb2dba206))
  7342. (pin "8" (uuid b3c73a96-92c9-48f6-a487-1ad0d1151175))
  7343. (pin "9" (uuid d4ec2757-fdec-4cef-8f84-6775da50736a))
  7344. (instances
  7345. (project "PowerBook"
  7346. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7347. (reference "U4") (unit 1)
  7348. )
  7349. )
  7350. )
  7351. )
  7352. (symbol (lib_id "power:GND") (at 247.65 121.92 90) (unit 1)
  7353. (in_bom yes) (on_board yes) (dnp no)
  7354. (uuid f2532300-ecfd-4f24-8281-1c26cae31fc2)
  7355. (property "Reference" "#PWR065" (at 254 121.92 0)
  7356. (effects (font (size 1.27 1.27)) hide)
  7357. )
  7358. (property "Value" "GND" (at 250.9012 121.793 90)
  7359. (effects (font (size 1.27 1.27)) (justify right))
  7360. )
  7361. (property "Footprint" "" (at 247.65 121.92 0)
  7362. (effects (font (size 1.27 1.27)) hide)
  7363. )
  7364. (property "Datasheet" "" (at 247.65 121.92 0)
  7365. (effects (font (size 1.27 1.27)) hide)
  7366. )
  7367. (pin "1" (uuid 757ac08c-3518-4bd3-b3e7-0c95c4762784))
  7368. (instances
  7369. (project "PowerBook"
  7370. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7371. (reference "#PWR065") (unit 1)
  7372. )
  7373. )
  7374. )
  7375. )
  7376. (symbol (lib_id "Device:D") (at 27.94 196.215 180) (unit 1)
  7377. (in_bom yes) (on_board yes) (dnp no)
  7378. (uuid f2bd2386-90ad-40ed-ac60-ba08818ae7f1)
  7379. (property "Reference" "D3" (at 26.7716 194.183 90)
  7380. (effects (font (size 1.27 1.27)) (justify right))
  7381. )
  7382. (property "Value" "D" (at 29.083 194.183 90)
  7383. (effects (font (size 1.27 1.27)) (justify right))
  7384. )
  7385. (property "Footprint" "Diode_SMD:D_SMA" (at 27.94 196.215 0)
  7386. (effects (font (size 1.27 1.27)) hide)
  7387. )
  7388. (property "Datasheet" "~" (at 27.94 196.215 0)
  7389. (effects (font (size 1.27 1.27)) hide)
  7390. )
  7391. (pin "1" (uuid 118c5a26-c9e1-444b-9ebc-489b64d183d6))
  7392. (pin "2" (uuid 711651ae-aef5-45fe-b5f8-335f83256570))
  7393. (instances
  7394. (project "PowerBook"
  7395. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7396. (reference "D3") (unit 1)
  7397. )
  7398. )
  7399. )
  7400. )
  7401. (symbol (lib_id "Device:R") (at 41.91 109.22 90) (unit 1)
  7402. (in_bom yes) (on_board yes) (dnp no)
  7403. (uuid f339d02f-3618-4b55-a8b7-d8e04e42ff42)
  7404. (property "Reference" "R9" (at 43.18 109.22 90)
  7405. (effects (font (size 1.27 1.27)) (justify left))
  7406. )
  7407. (property "Value" "110" (at 58.42 109.22 90)
  7408. (effects (font (size 1.27 1.27)) (justify left))
  7409. )
  7410. (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 41.91 110.998 90)
  7411. (effects (font (size 1.27 1.27)) hide)
  7412. )
  7413. (property "Datasheet" "~" (at 41.91 109.22 0)
  7414. (effects (font (size 1.27 1.27)) hide)
  7415. )
  7416. (pin "1" (uuid 3f15efa4-dd3f-4eea-836b-fc61f7df7ebd))
  7417. (pin "2" (uuid c067d274-0a0a-493a-84ad-25a0a69b9923))
  7418. (instances
  7419. (project "PowerBook"
  7420. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7421. (reference "R9") (unit 1)
  7422. )
  7423. )
  7424. )
  7425. )
  7426. (symbol (lib_id "power:GND") (at 142.875 83.82 270) (unit 1)
  7427. (in_bom yes) (on_board yes) (dnp no)
  7428. (uuid f42a9905-725b-456a-bb59-34e5c5de4e9a)
  7429. (property "Reference" "#PWR0102" (at 136.525 83.82 0)
  7430. (effects (font (size 1.27 1.27)) hide)
  7431. )
  7432. (property "Value" "GND" (at 139.6238 83.947 90)
  7433. (effects (font (size 1.27 1.27)) (justify right))
  7434. )
  7435. (property "Footprint" "" (at 142.875 83.82 0)
  7436. (effects (font (size 1.27 1.27)) hide)
  7437. )
  7438. (property "Datasheet" "" (at 142.875 83.82 0)
  7439. (effects (font (size 1.27 1.27)) hide)
  7440. )
  7441. (pin "1" (uuid a50bb2e0-d74b-4df1-a2b0-619261289f2d))
  7442. (instances
  7443. (project "PowerBook"
  7444. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7445. (reference "#PWR0102") (unit 1)
  7446. )
  7447. )
  7448. )
  7449. )
  7450. (symbol (lib_id "power:GND") (at 208.28 43.18 270) (unit 1)
  7451. (in_bom yes) (on_board yes) (dnp no)
  7452. (uuid f46ae0d3-a892-41a4-8f6f-ef2801a31335)
  7453. (property "Reference" "#PWR011" (at 201.93 43.18 0)
  7454. (effects (font (size 1.27 1.27)) hide)
  7455. )
  7456. (property "Value" "GND" (at 203.8858 43.307 90)
  7457. (effects (font (size 1.27 1.27)))
  7458. )
  7459. (property "Footprint" "" (at 208.28 43.18 0)
  7460. (effects (font (size 1.27 1.27)) hide)
  7461. )
  7462. (property "Datasheet" "" (at 208.28 43.18 0)
  7463. (effects (font (size 1.27 1.27)) hide)
  7464. )
  7465. (pin "1" (uuid b7353eea-c2a6-4597-aa9c-760dc3cd4394))
  7466. (instances
  7467. (project "PowerBook"
  7468. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7469. (reference "#PWR011") (unit 1)
  7470. )
  7471. )
  7472. )
  7473. )
  7474. (symbol (lib_id "custom_symbols:+5V_TPWR") (at 107.315 165.735 270) (unit 1)
  7475. (in_bom yes) (on_board yes) (dnp no)
  7476. (uuid f5798511-2402-4b18-8c16-4b3569a0728b)
  7477. (property "Reference" "#PWR043" (at 103.505 165.735 0)
  7478. (effects (font (size 1.27 1.27)) hide)
  7479. )
  7480. (property "Value" "+5V_TPWR" (at 110.5662 166.116 90)
  7481. (effects (font (size 1.27 1.27)) (justify left))
  7482. )
  7483. (property "Footprint" "" (at 107.315 165.735 0)
  7484. (effects (font (size 1.27 1.27)) hide)
  7485. )
  7486. (property "Datasheet" "" (at 107.315 165.735 0)
  7487. (effects (font (size 1.27 1.27)) hide)
  7488. )
  7489. (pin "1" (uuid 39708ae3-7bcc-46d1-a7d9-d3918747d1a0))
  7490. (instances
  7491. (project "PowerBook"
  7492. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469"
  7493. (reference "#PWR043") (unit 1)
  7494. )
  7495. )
  7496. )
  7497. )
  7498. (sheet (at 133.35 187.96) (size 21.59 3.81) (fields_autoplaced)
  7499. (stroke (width 0.1524) (type solid))
  7500. (fill (color 0 0 0 0.0000))
  7501. (uuid fdcde0ff-5e8f-44b0-a02c-21e908a3ec10)
  7502. (property "Sheetname" "LED_Indicators" (at 133.35 187.2484 0)
  7503. (effects (font (size 1.27 1.27)) (justify left bottom))
  7504. )
  7505. (property "Sheetfile" "LED_Indicators.kicad_sch" (at 133.35 192.3546 0)
  7506. (effects (font (size 1.27 1.27)) (justify left top))
  7507. )
  7508. (instances
  7509. (project "PowerBook"
  7510. (path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469" (page "2"))
  7511. )
  7512. )
  7513. )
  7514. (sheet_instances
  7515. (path "/" (page "1"))
  7516. )
  7517. )