view_base.kicad_sch 328 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
  3. (paper "B")
  4. (title_block
  5. (title "SmartKnob View")
  6. (rev "${RELEASE_VERSION}")
  7. (company "Scott Bezek")
  8. (comment 2 "${COMMIT_DATE_LONG}")
  9. (comment 3 "${COMMIT_HASH}")
  10. )
  11. (lib_symbols
  12. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  13. (property "Reference" "J" (id 0) (at 0 5.08 0)
  14. (effects (font (size 1.27 1.27)))
  15. )
  16. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  17. (effects (font (size 1.27 1.27)))
  18. )
  19. (property "Footprint" "" (id 2) (at 0 0 0)
  20. (effects (font (size 1.27 1.27)) hide)
  21. )
  22. (property "Datasheet" "~" (id 3) (at 0 0 0)
  23. (effects (font (size 1.27 1.27)) hide)
  24. )
  25. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  26. (effects (font (size 1.27 1.27)) hide)
  27. )
  28. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  29. (effects (font (size 1.27 1.27)) hide)
  30. )
  31. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  32. (effects (font (size 1.27 1.27)) hide)
  33. )
  34. (symbol "Conn_01x03_Male_1_1"
  35. (polyline
  36. (pts
  37. (xy 1.27 -2.54)
  38. (xy 0.8636 -2.54)
  39. )
  40. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  41. (fill (type none))
  42. )
  43. (polyline
  44. (pts
  45. (xy 1.27 0)
  46. (xy 0.8636 0)
  47. )
  48. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  49. (fill (type none))
  50. )
  51. (polyline
  52. (pts
  53. (xy 1.27 2.54)
  54. (xy 0.8636 2.54)
  55. )
  56. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  57. (fill (type none))
  58. )
  59. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  60. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  61. (fill (type outline))
  62. )
  63. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  64. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  65. (fill (type outline))
  66. )
  67. (rectangle (start 0.8636 2.667) (end 0 2.413)
  68. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  69. (fill (type outline))
  70. )
  71. (pin passive line (at 5.08 2.54 180) (length 3.81)
  72. (name "Pin_1" (effects (font (size 1.27 1.27))))
  73. (number "1" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin passive line (at 5.08 0 180) (length 3.81)
  76. (name "Pin_2" (effects (font (size 1.27 1.27))))
  77. (number "2" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  80. (name "Pin_3" (effects (font (size 1.27 1.27))))
  81. (number "3" (effects (font (size 1.27 1.27))))
  82. )
  83. )
  84. )
  85. (symbol "Connector:TestPoint_Small" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
  86. (property "Reference" "TP" (id 0) (at 0 3.81 0)
  87. (effects (font (size 1.27 1.27)))
  88. )
  89. (property "Value" "TestPoint_Small" (id 1) (at 0 2.032 0)
  90. (effects (font (size 1.27 1.27)))
  91. )
  92. (property "Footprint" "" (id 2) (at 5.08 0 0)
  93. (effects (font (size 1.27 1.27)) hide)
  94. )
  95. (property "Datasheet" "~" (id 3) (at 5.08 0 0)
  96. (effects (font (size 1.27 1.27)) hide)
  97. )
  98. (property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
  99. (effects (font (size 1.27 1.27)) hide)
  100. )
  101. (property "ki_description" "test point" (id 5) (at 0 0 0)
  102. (effects (font (size 1.27 1.27)) hide)
  103. )
  104. (property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
  105. (effects (font (size 1.27 1.27)) hide)
  106. )
  107. (symbol "TestPoint_Small_0_1"
  108. (circle (center 0 0) (radius 0.508)
  109. (stroke (width 0) (type default) (color 0 0 0 0))
  110. (fill (type none))
  111. )
  112. )
  113. (symbol "TestPoint_Small_1_1"
  114. (pin passive line (at 0 0 90) (length 0)
  115. (name "1" (effects (font (size 1.27 1.27))))
  116. (number "1" (effects (font (size 1.27 1.27))))
  117. )
  118. )
  119. )
  120. (symbol "Connector:USB_C_Receptacle_USB2.0" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  121. (property "Reference" "J" (id 0) (at -10.16 19.05 0)
  122. (effects (font (size 1.27 1.27)) (justify left))
  123. )
  124. (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 19.05 19.05 0)
  125. (effects (font (size 1.27 1.27)) (justify right))
  126. )
  127. (property "Footprint" "" (id 2) (at 3.81 0 0)
  128. (effects (font (size 1.27 1.27)) hide)
  129. )
  130. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 3.81 0 0)
  131. (effects (font (size 1.27 1.27)) hide)
  132. )
  133. (property "ki_keywords" "usb universal serial bus type-C USB2.0" (id 4) (at 0 0 0)
  134. (effects (font (size 1.27 1.27)) hide)
  135. )
  136. (property "ki_description" "USB 2.0-only Type-C Receptacle connector" (id 5) (at 0 0 0)
  137. (effects (font (size 1.27 1.27)) hide)
  138. )
  139. (property "ki_fp_filters" "USB*C*Receptacle*" (id 6) (at 0 0 0)
  140. (effects (font (size 1.27 1.27)) hide)
  141. )
  142. (symbol "USB_C_Receptacle_USB2.0_0_0"
  143. (rectangle (start -0.254 -17.78) (end 0.254 -16.764)
  144. (stroke (width 0) (type default) (color 0 0 0 0))
  145. (fill (type none))
  146. )
  147. (rectangle (start 10.16 -14.986) (end 9.144 -15.494)
  148. (stroke (width 0) (type default) (color 0 0 0 0))
  149. (fill (type none))
  150. )
  151. (rectangle (start 10.16 -12.446) (end 9.144 -12.954)
  152. (stroke (width 0) (type default) (color 0 0 0 0))
  153. (fill (type none))
  154. )
  155. (rectangle (start 10.16 -4.826) (end 9.144 -5.334)
  156. (stroke (width 0) (type default) (color 0 0 0 0))
  157. (fill (type none))
  158. )
  159. (rectangle (start 10.16 -2.286) (end 9.144 -2.794)
  160. (stroke (width 0) (type default) (color 0 0 0 0))
  161. (fill (type none))
  162. )
  163. (rectangle (start 10.16 0.254) (end 9.144 -0.254)
  164. (stroke (width 0) (type default) (color 0 0 0 0))
  165. (fill (type none))
  166. )
  167. (rectangle (start 10.16 2.794) (end 9.144 2.286)
  168. (stroke (width 0) (type default) (color 0 0 0 0))
  169. (fill (type none))
  170. )
  171. (rectangle (start 10.16 7.874) (end 9.144 7.366)
  172. (stroke (width 0) (type default) (color 0 0 0 0))
  173. (fill (type none))
  174. )
  175. (rectangle (start 10.16 10.414) (end 9.144 9.906)
  176. (stroke (width 0) (type default) (color 0 0 0 0))
  177. (fill (type none))
  178. )
  179. (rectangle (start 10.16 15.494) (end 9.144 14.986)
  180. (stroke (width 0) (type default) (color 0 0 0 0))
  181. (fill (type none))
  182. )
  183. )
  184. (symbol "USB_C_Receptacle_USB2.0_0_1"
  185. (rectangle (start -10.16 17.78) (end 10.16 -17.78)
  186. (stroke (width 0.254) (type default) (color 0 0 0 0))
  187. (fill (type background))
  188. )
  189. (arc (start -8.89 -3.81) (mid -6.985 -5.715) (end -5.08 -3.81)
  190. (stroke (width 0.508) (type default) (color 0 0 0 0))
  191. (fill (type none))
  192. )
  193. (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81)
  194. (stroke (width 0.254) (type default) (color 0 0 0 0))
  195. (fill (type none))
  196. )
  197. (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81)
  198. (stroke (width 0.254) (type default) (color 0 0 0 0))
  199. (fill (type outline))
  200. )
  201. (rectangle (start -7.62 -3.81) (end -6.35 3.81)
  202. (stroke (width 0.254) (type default) (color 0 0 0 0))
  203. (fill (type outline))
  204. )
  205. (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81)
  206. (stroke (width 0.254) (type default) (color 0 0 0 0))
  207. (fill (type none))
  208. )
  209. (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81)
  210. (stroke (width 0.254) (type default) (color 0 0 0 0))
  211. (fill (type outline))
  212. )
  213. (arc (start -5.08 3.81) (mid -6.985 5.715) (end -8.89 3.81)
  214. (stroke (width 0.508) (type default) (color 0 0 0 0))
  215. (fill (type none))
  216. )
  217. (circle (center -2.54 1.143) (radius 0.635)
  218. (stroke (width 0.254) (type default) (color 0 0 0 0))
  219. (fill (type outline))
  220. )
  221. (circle (center 0 -5.842) (radius 1.27)
  222. (stroke (width 0) (type default) (color 0 0 0 0))
  223. (fill (type outline))
  224. )
  225. (polyline
  226. (pts
  227. (xy -8.89 -3.81)
  228. (xy -8.89 3.81)
  229. )
  230. (stroke (width 0.508) (type default) (color 0 0 0 0))
  231. (fill (type none))
  232. )
  233. (polyline
  234. (pts
  235. (xy -5.08 3.81)
  236. (xy -5.08 -3.81)
  237. )
  238. (stroke (width 0.508) (type default) (color 0 0 0 0))
  239. (fill (type none))
  240. )
  241. (polyline
  242. (pts
  243. (xy 0 -5.842)
  244. (xy 0 4.318)
  245. )
  246. (stroke (width 0.508) (type default) (color 0 0 0 0))
  247. (fill (type none))
  248. )
  249. (polyline
  250. (pts
  251. (xy 0 -3.302)
  252. (xy -2.54 -0.762)
  253. (xy -2.54 0.508)
  254. )
  255. (stroke (width 0.508) (type default) (color 0 0 0 0))
  256. (fill (type none))
  257. )
  258. (polyline
  259. (pts
  260. (xy 0 -2.032)
  261. (xy 2.54 0.508)
  262. (xy 2.54 1.778)
  263. )
  264. (stroke (width 0.508) (type default) (color 0 0 0 0))
  265. (fill (type none))
  266. )
  267. (polyline
  268. (pts
  269. (xy -1.27 4.318)
  270. (xy 0 6.858)
  271. (xy 1.27 4.318)
  272. (xy -1.27 4.318)
  273. )
  274. (stroke (width 0.254) (type default) (color 0 0 0 0))
  275. (fill (type outline))
  276. )
  277. (rectangle (start 1.905 1.778) (end 3.175 3.048)
  278. (stroke (width 0.254) (type default) (color 0 0 0 0))
  279. (fill (type outline))
  280. )
  281. )
  282. (symbol "USB_C_Receptacle_USB2.0_1_1"
  283. (pin passive line (at 0 -22.86 90) (length 5.08)
  284. (name "GND" (effects (font (size 1.27 1.27))))
  285. (number "A1" (effects (font (size 1.27 1.27))))
  286. )
  287. (pin passive line (at 0 -22.86 90) (length 5.08) hide
  288. (name "GND" (effects (font (size 1.27 1.27))))
  289. (number "A12" (effects (font (size 1.27 1.27))))
  290. )
  291. (pin passive line (at 15.24 15.24 180) (length 5.08)
  292. (name "VBUS" (effects (font (size 1.27 1.27))))
  293. (number "A4" (effects (font (size 1.27 1.27))))
  294. )
  295. (pin bidirectional line (at 15.24 10.16 180) (length 5.08)
  296. (name "CC1" (effects (font (size 1.27 1.27))))
  297. (number "A5" (effects (font (size 1.27 1.27))))
  298. )
  299. (pin bidirectional line (at 15.24 -2.54 180) (length 5.08)
  300. (name "D+" (effects (font (size 1.27 1.27))))
  301. (number "A6" (effects (font (size 1.27 1.27))))
  302. )
  303. (pin bidirectional line (at 15.24 2.54 180) (length 5.08)
  304. (name "D-" (effects (font (size 1.27 1.27))))
  305. (number "A7" (effects (font (size 1.27 1.27))))
  306. )
  307. (pin bidirectional line (at 15.24 -12.7 180) (length 5.08)
  308. (name "SBU1" (effects (font (size 1.27 1.27))))
  309. (number "A8" (effects (font (size 1.27 1.27))))
  310. )
  311. (pin passive line (at 15.24 15.24 180) (length 5.08) hide
  312. (name "VBUS" (effects (font (size 1.27 1.27))))
  313. (number "A9" (effects (font (size 1.27 1.27))))
  314. )
  315. (pin passive line (at 0 -22.86 90) (length 5.08) hide
  316. (name "GND" (effects (font (size 1.27 1.27))))
  317. (number "B1" (effects (font (size 1.27 1.27))))
  318. )
  319. (pin passive line (at 0 -22.86 90) (length 5.08) hide
  320. (name "GND" (effects (font (size 1.27 1.27))))
  321. (number "B12" (effects (font (size 1.27 1.27))))
  322. )
  323. (pin passive line (at 15.24 15.24 180) (length 5.08) hide
  324. (name "VBUS" (effects (font (size 1.27 1.27))))
  325. (number "B4" (effects (font (size 1.27 1.27))))
  326. )
  327. (pin bidirectional line (at 15.24 7.62 180) (length 5.08)
  328. (name "CC2" (effects (font (size 1.27 1.27))))
  329. (number "B5" (effects (font (size 1.27 1.27))))
  330. )
  331. (pin bidirectional line (at 15.24 -5.08 180) (length 5.08)
  332. (name "D+" (effects (font (size 1.27 1.27))))
  333. (number "B6" (effects (font (size 1.27 1.27))))
  334. )
  335. (pin bidirectional line (at 15.24 0 180) (length 5.08)
  336. (name "D-" (effects (font (size 1.27 1.27))))
  337. (number "B7" (effects (font (size 1.27 1.27))))
  338. )
  339. (pin bidirectional line (at 15.24 -15.24 180) (length 5.08)
  340. (name "SBU2" (effects (font (size 1.27 1.27))))
  341. (number "B8" (effects (font (size 1.27 1.27))))
  342. )
  343. (pin passive line (at 15.24 15.24 180) (length 5.08) hide
  344. (name "VBUS" (effects (font (size 1.27 1.27))))
  345. (number "B9" (effects (font (size 1.27 1.27))))
  346. )
  347. (pin passive line (at -7.62 -22.86 90) (length 5.08)
  348. (name "SHIELD" (effects (font (size 1.27 1.27))))
  349. (number "S1" (effects (font (size 1.27 1.27))))
  350. )
  351. )
  352. )
  353. (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  354. (property "Reference" "J" (id 0) (at 0 5.08 0)
  355. (effects (font (size 1.27 1.27)))
  356. )
  357. (property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
  358. (effects (font (size 1.27 1.27)))
  359. )
  360. (property "Footprint" "" (id 2) (at 0 0 0)
  361. (effects (font (size 1.27 1.27)) hide)
  362. )
  363. (property "Datasheet" "~" (id 3) (at 0 0 0)
  364. (effects (font (size 1.27 1.27)) hide)
  365. )
  366. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  367. (effects (font (size 1.27 1.27)) hide)
  368. )
  369. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  370. (effects (font (size 1.27 1.27)) hide)
  371. )
  372. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  373. (effects (font (size 1.27 1.27)) hide)
  374. )
  375. (symbol "Conn_01x03_1_1"
  376. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  377. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  378. (fill (type none))
  379. )
  380. (rectangle (start -1.27 0.127) (end 0 -0.127)
  381. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  382. (fill (type none))
  383. )
  384. (rectangle (start -1.27 2.667) (end 0 2.413)
  385. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  386. (fill (type none))
  387. )
  388. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  389. (stroke (width 0.254) (type default) (color 0 0 0 0))
  390. (fill (type background))
  391. )
  392. (pin passive line (at -5.08 2.54 0) (length 3.81)
  393. (name "Pin_1" (effects (font (size 1.27 1.27))))
  394. (number "1" (effects (font (size 1.27 1.27))))
  395. )
  396. (pin passive line (at -5.08 0 0) (length 3.81)
  397. (name "Pin_2" (effects (font (size 1.27 1.27))))
  398. (number "2" (effects (font (size 1.27 1.27))))
  399. )
  400. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  401. (name "Pin_3" (effects (font (size 1.27 1.27))))
  402. (number "3" (effects (font (size 1.27 1.27))))
  403. )
  404. )
  405. )
  406. (symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  407. (property "Reference" "J" (id 0) (at 0 10.16 0)
  408. (effects (font (size 1.27 1.27)))
  409. )
  410. (property "Value" "Conn_01x08" (id 1) (at 0 -12.7 0)
  411. (effects (font (size 1.27 1.27)))
  412. )
  413. (property "Footprint" "" (id 2) (at 0 0 0)
  414. (effects (font (size 1.27 1.27)) hide)
  415. )
  416. (property "Datasheet" "~" (id 3) (at 0 0 0)
  417. (effects (font (size 1.27 1.27)) hide)
  418. )
  419. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  420. (effects (font (size 1.27 1.27)) hide)
  421. )
  422. (property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  423. (effects (font (size 1.27 1.27)) hide)
  424. )
  425. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  426. (effects (font (size 1.27 1.27)) hide)
  427. )
  428. (symbol "Conn_01x08_1_1"
  429. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  430. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  431. (fill (type none))
  432. )
  433. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  434. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  435. (fill (type none))
  436. )
  437. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  438. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  439. (fill (type none))
  440. )
  441. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  442. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  443. (fill (type none))
  444. )
  445. (rectangle (start -1.27 0.127) (end 0 -0.127)
  446. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  447. (fill (type none))
  448. )
  449. (rectangle (start -1.27 2.667) (end 0 2.413)
  450. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  451. (fill (type none))
  452. )
  453. (rectangle (start -1.27 5.207) (end 0 4.953)
  454. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  455. (fill (type none))
  456. )
  457. (rectangle (start -1.27 7.747) (end 0 7.493)
  458. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  459. (fill (type none))
  460. )
  461. (rectangle (start -1.27 8.89) (end 1.27 -11.43)
  462. (stroke (width 0.254) (type default) (color 0 0 0 0))
  463. (fill (type background))
  464. )
  465. (pin passive line (at -5.08 7.62 0) (length 3.81)
  466. (name "Pin_1" (effects (font (size 1.27 1.27))))
  467. (number "1" (effects (font (size 1.27 1.27))))
  468. )
  469. (pin passive line (at -5.08 5.08 0) (length 3.81)
  470. (name "Pin_2" (effects (font (size 1.27 1.27))))
  471. (number "2" (effects (font (size 1.27 1.27))))
  472. )
  473. (pin passive line (at -5.08 2.54 0) (length 3.81)
  474. (name "Pin_3" (effects (font (size 1.27 1.27))))
  475. (number "3" (effects (font (size 1.27 1.27))))
  476. )
  477. (pin passive line (at -5.08 0 0) (length 3.81)
  478. (name "Pin_4" (effects (font (size 1.27 1.27))))
  479. (number "4" (effects (font (size 1.27 1.27))))
  480. )
  481. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  482. (name "Pin_5" (effects (font (size 1.27 1.27))))
  483. (number "5" (effects (font (size 1.27 1.27))))
  484. )
  485. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  486. (name "Pin_6" (effects (font (size 1.27 1.27))))
  487. (number "6" (effects (font (size 1.27 1.27))))
  488. )
  489. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  490. (name "Pin_7" (effects (font (size 1.27 1.27))))
  491. (number "7" (effects (font (size 1.27 1.27))))
  492. )
  493. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  494. (name "Pin_8" (effects (font (size 1.27 1.27))))
  495. (number "8" (effects (font (size 1.27 1.27))))
  496. )
  497. )
  498. )
  499. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  500. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  501. (effects (font (size 1.27 1.27)) (justify left))
  502. )
  503. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  504. (effects (font (size 1.27 1.27)) (justify left))
  505. )
  506. (property "Footprint" "" (id 2) (at 0 0 0)
  507. (effects (font (size 1.27 1.27)) hide)
  508. )
  509. (property "Datasheet" "~" (id 3) (at 0 0 0)
  510. (effects (font (size 1.27 1.27)) hide)
  511. )
  512. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  513. (effects (font (size 1.27 1.27)) hide)
  514. )
  515. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  516. (effects (font (size 1.27 1.27)) hide)
  517. )
  518. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  519. (effects (font (size 1.27 1.27)) hide)
  520. )
  521. (symbol "C_Small_0_1"
  522. (polyline
  523. (pts
  524. (xy -1.524 -0.508)
  525. (xy 1.524 -0.508)
  526. )
  527. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  528. (fill (type none))
  529. )
  530. (polyline
  531. (pts
  532. (xy -1.524 0.508)
  533. (xy 1.524 0.508)
  534. )
  535. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  536. (fill (type none))
  537. )
  538. )
  539. (symbol "C_Small_1_1"
  540. (pin passive line (at 0 2.54 270) (length 2.032)
  541. (name "~" (effects (font (size 1.27 1.27))))
  542. (number "1" (effects (font (size 1.27 1.27))))
  543. )
  544. (pin passive line (at 0 -2.54 90) (length 2.032)
  545. (name "~" (effects (font (size 1.27 1.27))))
  546. (number "2" (effects (font (size 1.27 1.27))))
  547. )
  548. )
  549. )
  550. (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  551. (property "Reference" "L" (id 0) (at 0.762 1.016 0)
  552. (effects (font (size 1.27 1.27)) (justify left))
  553. )
  554. (property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
  555. (effects (font (size 1.27 1.27)) (justify left))
  556. )
  557. (property "Footprint" "" (id 2) (at 0 0 0)
  558. (effects (font (size 1.27 1.27)) hide)
  559. )
  560. (property "Datasheet" "~" (id 3) (at 0 0 0)
  561. (effects (font (size 1.27 1.27)) hide)
  562. )
  563. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  564. (effects (font (size 1.27 1.27)) hide)
  565. )
  566. (property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
  567. (effects (font (size 1.27 1.27)) hide)
  568. )
  569. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  570. (effects (font (size 1.27 1.27)) hide)
  571. )
  572. (symbol "L_Small_0_1"
  573. (arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
  574. (stroke (width 0) (type default) (color 0 0 0 0))
  575. (fill (type none))
  576. )
  577. (arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
  578. (stroke (width 0) (type default) (color 0 0 0 0))
  579. (fill (type none))
  580. )
  581. (arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
  582. (stroke (width 0) (type default) (color 0 0 0 0))
  583. (fill (type none))
  584. )
  585. (arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
  586. (stroke (width 0) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. )
  590. (symbol "L_Small_1_1"
  591. (pin passive line (at 0 2.54 270) (length 0.508)
  592. (name "~" (effects (font (size 1.27 1.27))))
  593. (number "1" (effects (font (size 1.27 1.27))))
  594. )
  595. (pin passive line (at 0 -2.54 90) (length 0.508)
  596. (name "~" (effects (font (size 1.27 1.27))))
  597. (number "2" (effects (font (size 1.27 1.27))))
  598. )
  599. )
  600. )
  601. (symbol "Device:NetTie_2" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  602. (property "Reference" "NT" (id 0) (at 0 1.27 0)
  603. (effects (font (size 1.27 1.27)))
  604. )
  605. (property "Value" "NetTie_2" (id 1) (at 0 -1.27 0)
  606. (effects (font (size 1.27 1.27)))
  607. )
  608. (property "Footprint" "" (id 2) (at 0 0 0)
  609. (effects (font (size 1.27 1.27)) hide)
  610. )
  611. (property "Datasheet" "~" (id 3) (at 0 0 0)
  612. (effects (font (size 1.27 1.27)) hide)
  613. )
  614. (property "ki_keywords" "net tie short" (id 4) (at 0 0 0)
  615. (effects (font (size 1.27 1.27)) hide)
  616. )
  617. (property "ki_description" "Net tie, 2 pins" (id 5) (at 0 0 0)
  618. (effects (font (size 1.27 1.27)) hide)
  619. )
  620. (property "ki_fp_filters" "Net*Tie*" (id 6) (at 0 0 0)
  621. (effects (font (size 1.27 1.27)) hide)
  622. )
  623. (symbol "NetTie_2_0_1"
  624. (polyline
  625. (pts
  626. (xy -1.27 0)
  627. (xy 1.27 0)
  628. )
  629. (stroke (width 0.254) (type default) (color 0 0 0 0))
  630. (fill (type none))
  631. )
  632. )
  633. (symbol "NetTie_2_1_1"
  634. (pin passive line (at -2.54 0 0) (length 2.54)
  635. (name "1" (effects (font (size 1.27 1.27))))
  636. (number "1" (effects (font (size 1.27 1.27))))
  637. )
  638. (pin passive line (at 2.54 0 180) (length 2.54)
  639. (name "2" (effects (font (size 1.27 1.27))))
  640. (number "2" (effects (font (size 1.27 1.27))))
  641. )
  642. )
  643. )
  644. (symbol "Device:Q_PNP_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  645. (property "Reference" "Q" (id 0) (at 5.08 1.27 0)
  646. (effects (font (size 1.27 1.27)) (justify left))
  647. )
  648. (property "Value" "Q_PNP_BEC" (id 1) (at 5.08 -1.27 0)
  649. (effects (font (size 1.27 1.27)) (justify left))
  650. )
  651. (property "Footprint" "" (id 2) (at 5.08 2.54 0)
  652. (effects (font (size 1.27 1.27)) hide)
  653. )
  654. (property "Datasheet" "~" (id 3) (at 0 0 0)
  655. (effects (font (size 1.27 1.27)) hide)
  656. )
  657. (property "ki_keywords" "transistor PNP" (id 4) (at 0 0 0)
  658. (effects (font (size 1.27 1.27)) hide)
  659. )
  660. (property "ki_description" "PNP transistor, base/emitter/collector" (id 5) (at 0 0 0)
  661. (effects (font (size 1.27 1.27)) hide)
  662. )
  663. (symbol "Q_PNP_BEC_0_1"
  664. (polyline
  665. (pts
  666. (xy 0.635 0.635)
  667. (xy 2.54 2.54)
  668. )
  669. (stroke (width 0) (type default) (color 0 0 0 0))
  670. (fill (type none))
  671. )
  672. (polyline
  673. (pts
  674. (xy 0.635 -0.635)
  675. (xy 2.54 -2.54)
  676. (xy 2.54 -2.54)
  677. )
  678. (stroke (width 0) (type default) (color 0 0 0 0))
  679. (fill (type none))
  680. )
  681. (polyline
  682. (pts
  683. (xy 0.635 1.905)
  684. (xy 0.635 -1.905)
  685. (xy 0.635 -1.905)
  686. )
  687. (stroke (width 0.508) (type default) (color 0 0 0 0))
  688. (fill (type none))
  689. )
  690. (polyline
  691. (pts
  692. (xy 2.286 -1.778)
  693. (xy 1.778 -2.286)
  694. (xy 1.27 -1.27)
  695. (xy 2.286 -1.778)
  696. (xy 2.286 -1.778)
  697. )
  698. (stroke (width 0) (type default) (color 0 0 0 0))
  699. (fill (type outline))
  700. )
  701. (circle (center 1.27 0) (radius 2.8194)
  702. (stroke (width 0.254) (type default) (color 0 0 0 0))
  703. (fill (type none))
  704. )
  705. )
  706. (symbol "Q_PNP_BEC_1_1"
  707. (pin input line (at -5.08 0 0) (length 5.715)
  708. (name "B" (effects (font (size 1.27 1.27))))
  709. (number "1" (effects (font (size 1.27 1.27))))
  710. )
  711. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  712. (name "E" (effects (font (size 1.27 1.27))))
  713. (number "2" (effects (font (size 1.27 1.27))))
  714. )
  715. (pin passive line (at 2.54 5.08 270) (length 2.54)
  716. (name "C" (effects (font (size 1.27 1.27))))
  717. (number "3" (effects (font (size 1.27 1.27))))
  718. )
  719. )
  720. )
  721. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  722. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  723. (effects (font (size 1.27 1.27)) (justify left))
  724. )
  725. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  726. (effects (font (size 1.27 1.27)) (justify left))
  727. )
  728. (property "Footprint" "" (id 2) (at 0 0 0)
  729. (effects (font (size 1.27 1.27)) hide)
  730. )
  731. (property "Datasheet" "~" (id 3) (at 0 0 0)
  732. (effects (font (size 1.27 1.27)) hide)
  733. )
  734. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  735. (effects (font (size 1.27 1.27)) hide)
  736. )
  737. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  738. (effects (font (size 1.27 1.27)) hide)
  739. )
  740. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  741. (effects (font (size 1.27 1.27)) hide)
  742. )
  743. (symbol "R_Small_0_1"
  744. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  745. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  746. (fill (type none))
  747. )
  748. )
  749. (symbol "R_Small_1_1"
  750. (pin passive line (at 0 2.54 270) (length 0.762)
  751. (name "~" (effects (font (size 1.27 1.27))))
  752. (number "1" (effects (font (size 1.27 1.27))))
  753. )
  754. (pin passive line (at 0 -2.54 90) (length 0.762)
  755. (name "~" (effects (font (size 1.27 1.27))))
  756. (number "2" (effects (font (size 1.27 1.27))))
  757. )
  758. )
  759. )
  760. (symbol "Interface_USB:CH340C" (in_bom yes) (on_board yes)
  761. (property "Reference" "U" (id 0) (at -5.08 13.97 0)
  762. (effects (font (size 1.27 1.27)) (justify right))
  763. )
  764. (property "Value" "CH340C" (id 1) (at 1.27 13.97 0)
  765. (effects (font (size 1.27 1.27)) (justify left))
  766. )
  767. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 1.27 -13.97 0)
  768. (effects (font (size 1.27 1.27)) (justify left) hide)
  769. )
  770. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/Jiangsu-Qin-Heng-CH340C_C84681.pdf" (id 3) (at -8.89 20.32 0)
  771. (effects (font (size 1.27 1.27)) hide)
  772. )
  773. (property "ki_keywords" "USB UART Serial Converter Interface" (id 4) (at 0 0 0)
  774. (effects (font (size 1.27 1.27)) hide)
  775. )
  776. (property "ki_description" "USB serial converter, UART, SOIC-16" (id 5) (at 0 0 0)
  777. (effects (font (size 1.27 1.27)) hide)
  778. )
  779. (property "ki_fp_filters" "SOIC*3.9x9.9mm*P1.27mm*" (id 6) (at 0 0 0)
  780. (effects (font (size 1.27 1.27)) hide)
  781. )
  782. (symbol "CH340C_0_1"
  783. (rectangle (start -7.62 12.7) (end 7.62 -12.7)
  784. (stroke (width 0.254) (type default) (color 0 0 0 0))
  785. (fill (type background))
  786. )
  787. )
  788. (symbol "CH340C_1_1"
  789. (pin power_in line (at 0 -15.24 90) (length 2.54)
  790. (name "GND" (effects (font (size 1.27 1.27))))
  791. (number "1" (effects (font (size 1.27 1.27))))
  792. )
  793. (pin input line (at 10.16 0 180) (length 2.54)
  794. (name "~{DSR}" (effects (font (size 1.27 1.27))))
  795. (number "10" (effects (font (size 1.27 1.27))))
  796. )
  797. (pin input line (at 10.16 -2.54 180) (length 2.54)
  798. (name "~{RI}" (effects (font (size 1.27 1.27))))
  799. (number "11" (effects (font (size 1.27 1.27))))
  800. )
  801. (pin input line (at 10.16 -5.08 180) (length 2.54)
  802. (name "~{DCD}" (effects (font (size 1.27 1.27))))
  803. (number "12" (effects (font (size 1.27 1.27))))
  804. )
  805. (pin output line (at 10.16 -7.62 180) (length 2.54)
  806. (name "~{DTR}" (effects (font (size 1.27 1.27))))
  807. (number "13" (effects (font (size 1.27 1.27))))
  808. )
  809. (pin output line (at 10.16 -10.16 180) (length 2.54)
  810. (name "~{RTS}" (effects (font (size 1.27 1.27))))
  811. (number "14" (effects (font (size 1.27 1.27))))
  812. )
  813. (pin input line (at -10.16 7.62 0) (length 2.54)
  814. (name "R232" (effects (font (size 1.27 1.27))))
  815. (number "15" (effects (font (size 1.27 1.27))))
  816. )
  817. (pin power_in line (at 0 15.24 270) (length 2.54)
  818. (name "VCC" (effects (font (size 1.27 1.27))))
  819. (number "16" (effects (font (size 1.27 1.27))))
  820. )
  821. (pin output line (at 10.16 10.16 180) (length 2.54)
  822. (name "TXD" (effects (font (size 1.27 1.27))))
  823. (number "2" (effects (font (size 1.27 1.27))))
  824. )
  825. (pin input line (at 10.16 7.62 180) (length 2.54)
  826. (name "RXD" (effects (font (size 1.27 1.27))))
  827. (number "3" (effects (font (size 1.27 1.27))))
  828. )
  829. (pin passive line (at -2.54 15.24 270) (length 2.54)
  830. (name "V3" (effects (font (size 1.27 1.27))))
  831. (number "4" (effects (font (size 1.27 1.27))))
  832. )
  833. (pin bidirectional line (at -10.16 2.54 0) (length 2.54)
  834. (name "UD+" (effects (font (size 1.27 1.27))))
  835. (number "5" (effects (font (size 1.27 1.27))))
  836. )
  837. (pin bidirectional line (at -10.16 0 0) (length 2.54)
  838. (name "UD-" (effects (font (size 1.27 1.27))))
  839. (number "6" (effects (font (size 1.27 1.27))))
  840. )
  841. (pin no_connect line (at -7.62 -7.62 0) (length 2.54) hide
  842. (name "NC" (effects (font (size 1.27 1.27))))
  843. (number "7" (effects (font (size 1.27 1.27))))
  844. )
  845. (pin no_connect line (at -7.62 -10.16 0) (length 2.54) hide
  846. (name "NC" (effects (font (size 1.27 1.27))))
  847. (number "8" (effects (font (size 1.27 1.27))))
  848. )
  849. (pin input line (at 10.16 2.54 180) (length 2.54)
  850. (name "~{CTS}" (effects (font (size 1.27 1.27))))
  851. (number "9" (effects (font (size 1.27 1.27))))
  852. )
  853. )
  854. )
  855. (symbol "Logic_LevelTranslator:SN74LV1T34DBV" (in_bom yes) (on_board yes)
  856. (property "Reference" "U" (id 0) (at 5.08 6.35 0)
  857. (effects (font (size 1.27 1.27)) (justify left))
  858. )
  859. (property "Value" "SN74LV1T34DBV" (id 1) (at 5.08 3.81 0)
  860. (effects (font (size 1.27 1.27)) (justify left))
  861. )
  862. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 16.51 -6.35 0)
  863. (effects (font (size 1.27 1.27)) hide)
  864. )
  865. (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at -10.16 -5.08 0)
  866. (effects (font (size 1.27 1.27)) hide)
  867. )
  868. (property "ki_keywords" "single buffer level shift" (id 4) (at 0 0 0)
  869. (effects (font (size 1.27 1.27)) hide)
  870. )
  871. (property "ki_description" "Single Power Supply, Single Buffer GATE, CMOS Logic, Level Shifter, SOT-23-5" (id 5) (at 0 0 0)
  872. (effects (font (size 1.27 1.27)) hide)
  873. )
  874. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  875. (effects (font (size 1.27 1.27)) hide)
  876. )
  877. (symbol "SN74LV1T34DBV_0_1"
  878. (rectangle (start -5.08 5.08) (end 5.08 -5.08)
  879. (stroke (width 0.254) (type default) (color 0 0 0 0))
  880. (fill (type background))
  881. )
  882. (polyline
  883. (pts
  884. (xy -0.762 0)
  885. (xy -2.54 0)
  886. )
  887. (stroke (width 0) (type default) (color 0 0 0 0))
  888. (fill (type none))
  889. )
  890. (polyline
  891. (pts
  892. (xy 1.016 0)
  893. (xy 2.54 0)
  894. )
  895. (stroke (width 0) (type default) (color 0 0 0 0))
  896. (fill (type none))
  897. )
  898. )
  899. (symbol "SN74LV1T34DBV_1_1"
  900. (polyline
  901. (pts
  902. (xy -0.762 -0.762)
  903. (xy -0.762 0.762)
  904. (xy 1.016 0)
  905. (xy -0.762 -0.762)
  906. )
  907. (stroke (width 0) (type default) (color 0 0 0 0))
  908. (fill (type none))
  909. )
  910. (pin no_connect line (at -5.08 2.54 0) (length 2.54) hide
  911. (name "NC" (effects (font (size 1.27 1.27))))
  912. (number "1" (effects (font (size 1.27 1.27))))
  913. )
  914. (pin input line (at -7.62 0 0) (length 2.54)
  915. (name "A" (effects (font (size 1.27 1.27))))
  916. (number "2" (effects (font (size 1.27 1.27))))
  917. )
  918. (pin power_in line (at 0 -7.62 90) (length 2.54)
  919. (name "GND" (effects (font (size 1.27 1.27))))
  920. (number "3" (effects (font (size 1.27 1.27))))
  921. )
  922. (pin output line (at 7.62 0 180) (length 2.54)
  923. (name "Y" (effects (font (size 1.27 1.27))))
  924. (number "4" (effects (font (size 1.27 1.27))))
  925. )
  926. (pin power_in line (at 0 7.62 270) (length 2.54)
  927. (name "VCC" (effects (font (size 1.27 1.27))))
  928. (number "5" (effects (font (size 1.27 1.27))))
  929. )
  930. )
  931. )
  932. (symbol "MagnTek:MT6701-CT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  933. (property "Reference" "U" (id 0) (at -12.7 6.35 0)
  934. (effects (font (size 1.27 1.27)))
  935. )
  936. (property "Value" "MT6701-CT" (id 1) (at 0 6.35 0)
  937. (effects (font (size 1.27 1.27)))
  938. )
  939. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 0 0)
  940. (effects (font (size 1.27 1.27)) hide)
  941. )
  942. (property "Datasheet" "" (id 3) (at 0 0 0)
  943. (effects (font (size 1.27 1.27)) hide)
  944. )
  945. (symbol "MT6701-CT_0_1"
  946. (rectangle (start -13.97 5.08) (end 16.51 -5.08)
  947. (stroke (width 0) (type default) (color 0 0 0 0))
  948. (fill (type background))
  949. )
  950. )
  951. (symbol "MT6701-CT_1_1"
  952. (pin power_in line (at -16.51 3.81 0) (length 2.54)
  953. (name "VDD" (effects (font (size 1.27 1.27))))
  954. (number "1" (effects (font (size 1.27 1.27))))
  955. )
  956. (pin input line (at -16.51 1.27 0) (length 2.54)
  957. (name "MODE" (effects (font (size 1.27 1.27))))
  958. (number "2" (effects (font (size 1.27 1.27))))
  959. )
  960. (pin output line (at -16.51 -1.27 0) (length 2.54)
  961. (name "ANALOG/PWM" (effects (font (size 1.27 1.27))))
  962. (number "3" (effects (font (size 1.27 1.27))))
  963. )
  964. (pin power_in line (at -16.51 -3.81 0) (length 2.54)
  965. (name "GND" (effects (font (size 1.27 1.27))))
  966. (number "4" (effects (font (size 1.27 1.27))))
  967. )
  968. (pin output line (at 19.05 -3.81 180) (length 2.54)
  969. (name "PUSH" (effects (font (size 1.27 1.27))))
  970. (number "5" (effects (font (size 1.27 1.27))))
  971. )
  972. (pin bidirectional line (at 19.05 -1.27 180) (length 2.54)
  973. (name "A/U/SDA/DO" (effects (font (size 1.27 1.27))))
  974. (number "6" (effects (font (size 1.27 1.27))))
  975. )
  976. (pin bidirectional line (at 19.05 1.27 180) (length 2.54)
  977. (name "B/V/SCL/CLK" (effects (font (size 1.27 1.27))))
  978. (number "7" (effects (font (size 1.27 1.27))))
  979. )
  980. (pin bidirectional line (at 19.05 3.81 180) (length 2.54)
  981. (name "Z/W/CSN" (effects (font (size 1.27 1.27))))
  982. (number "8" (effects (font (size 1.27 1.27))))
  983. )
  984. )
  985. )
  986. (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  987. (property "Reference" "H" (id 0) (at 0 6.35 0)
  988. (effects (font (size 1.27 1.27)))
  989. )
  990. (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
  991. (effects (font (size 1.27 1.27)))
  992. )
  993. (property "Footprint" "" (id 2) (at 0 0 0)
  994. (effects (font (size 1.27 1.27)) hide)
  995. )
  996. (property "Datasheet" "~" (id 3) (at 0 0 0)
  997. (effects (font (size 1.27 1.27)) hide)
  998. )
  999. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  1000. (effects (font (size 1.27 1.27)) hide)
  1001. )
  1002. (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
  1003. (effects (font (size 1.27 1.27)) hide)
  1004. )
  1005. (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
  1006. (effects (font (size 1.27 1.27)) hide)
  1007. )
  1008. (symbol "MountingHole_Pad_0_1"
  1009. (circle (center 0 1.27) (radius 1.27)
  1010. (stroke (width 1.27) (type default) (color 0 0 0 0))
  1011. (fill (type none))
  1012. )
  1013. )
  1014. (symbol "MountingHole_Pad_1_1"
  1015. (pin input line (at 0 -2.54 90) (length 2.54)
  1016. (name "1" (effects (font (size 1.27 1.27))))
  1017. (number "1" (effects (font (size 1.27 1.27))))
  1018. )
  1019. )
  1020. )
  1021. (symbol "Regulator_Linear:AP7361C-33E" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1022. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  1023. (effects (font (size 1.27 1.27)))
  1024. )
  1025. (property "Value" "AP7361C-33E" (id 1) (at 0 3.175 0)
  1026. (effects (font (size 1.27 1.27)) (justify left))
  1027. )
  1028. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.715 0)
  1029. (effects (font (size 1.27 1.27) italic) hide)
  1030. )
  1031. (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP7361C.pdf" (id 3) (at 0 -1.27 0)
  1032. (effects (font (size 1.27 1.27)) hide)
  1033. )
  1034. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  1035. (effects (font (size 1.27 1.27)) hide)
  1036. )
  1037. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  1038. (effects (font (size 1.27 1.27)) hide)
  1039. )
  1040. (property "ki_fp_filters" "SOT?223*" (id 6) (at 0 0 0)
  1041. (effects (font (size 1.27 1.27)) hide)
  1042. )
  1043. (symbol "AP7361C-33E_0_1"
  1044. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  1045. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1046. (fill (type background))
  1047. )
  1048. )
  1049. (symbol "AP7361C-33E_1_1"
  1050. (pin power_in line (at -7.62 0 0) (length 2.54)
  1051. (name "VI" (effects (font (size 1.27 1.27))))
  1052. (number "1" (effects (font (size 1.27 1.27))))
  1053. )
  1054. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1055. (name "GND" (effects (font (size 1.27 1.27))))
  1056. (number "2" (effects (font (size 1.27 1.27))))
  1057. )
  1058. (pin power_out line (at 7.62 0 180) (length 2.54)
  1059. (name "VO" (effects (font (size 1.27 1.27))))
  1060. (number "3" (effects (font (size 1.27 1.27))))
  1061. )
  1062. )
  1063. )
  1064. (symbol "SK6812:SK6812SIDE-A" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1065. (property "Reference" "D" (id 0) (at 5.08 5.715 0)
  1066. (effects (font (size 1.27 1.27)) (justify right bottom))
  1067. )
  1068. (property "Value" "SK6812SIDE-A" (id 1) (at 1.27 -5.715 0)
  1069. (effects (font (size 1.27 1.27)) (justify left top))
  1070. )
  1071. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 1.27 -7.62 0)
  1072. (effects (font (size 1.27 1.27)) (justify left top) hide)
  1073. )
  1074. (property "Datasheet" "" (id 3) (at 2.54 -9.525 0)
  1075. (effects (font (size 1.27 1.27)) (justify left top) hide)
  1076. )
  1077. (property "ki_description" "RGB LED with integrated controller" (id 4) (at 0 0 0)
  1078. (effects (font (size 1.27 1.27)) hide)
  1079. )
  1080. (property "ki_fp_filters" "LED*WS2812*PLCC*5.0x5.0mm*P3.2mm*" (id 5) (at 0 0 0)
  1081. (effects (font (size 1.27 1.27)) hide)
  1082. )
  1083. (symbol "SK6812SIDE-A_0_0"
  1084. (text "RGB" (at 2.286 -4.191 0)
  1085. (effects (font (size 0.762 0.762)))
  1086. )
  1087. )
  1088. (symbol "SK6812SIDE-A_0_1"
  1089. (polyline
  1090. (pts
  1091. (xy 1.27 -3.556)
  1092. (xy 1.778 -3.556)
  1093. )
  1094. (stroke (width 0) (type default) (color 0 0 0 0))
  1095. (fill (type none))
  1096. )
  1097. (polyline
  1098. (pts
  1099. (xy 1.27 -2.54)
  1100. (xy 1.778 -2.54)
  1101. )
  1102. (stroke (width 0) (type default) (color 0 0 0 0))
  1103. (fill (type none))
  1104. )
  1105. (polyline
  1106. (pts
  1107. (xy 4.699 -3.556)
  1108. (xy 2.667 -3.556)
  1109. )
  1110. (stroke (width 0) (type default) (color 0 0 0 0))
  1111. (fill (type none))
  1112. )
  1113. (polyline
  1114. (pts
  1115. (xy 2.286 -2.54)
  1116. (xy 1.27 -3.556)
  1117. (xy 1.27 -3.048)
  1118. )
  1119. (stroke (width 0) (type default) (color 0 0 0 0))
  1120. (fill (type none))
  1121. )
  1122. (polyline
  1123. (pts
  1124. (xy 2.286 -1.524)
  1125. (xy 1.27 -2.54)
  1126. (xy 1.27 -2.032)
  1127. )
  1128. (stroke (width 0) (type default) (color 0 0 0 0))
  1129. (fill (type none))
  1130. )
  1131. (polyline
  1132. (pts
  1133. (xy 3.683 -1.016)
  1134. (xy 3.683 -3.556)
  1135. (xy 3.683 -4.064)
  1136. )
  1137. (stroke (width 0) (type default) (color 0 0 0 0))
  1138. (fill (type none))
  1139. )
  1140. (polyline
  1141. (pts
  1142. (xy 4.699 -1.524)
  1143. (xy 2.667 -1.524)
  1144. (xy 3.683 -3.556)
  1145. (xy 4.699 -1.524)
  1146. )
  1147. (stroke (width 0) (type default) (color 0 0 0 0))
  1148. (fill (type none))
  1149. )
  1150. (rectangle (start 5.08 5.08) (end -5.08 -5.08)
  1151. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1152. (fill (type background))
  1153. )
  1154. )
  1155. (symbol "SK6812SIDE-A_1_1"
  1156. (pin input line (at -7.62 0 0) (length 2.54)
  1157. (name "DIN" (effects (font (size 1.27 1.27))))
  1158. (number "1" (effects (font (size 1.27 1.27))))
  1159. )
  1160. (pin power_in line (at 0 7.62 270) (length 2.54)
  1161. (name "VDD" (effects (font (size 1.27 1.27))))
  1162. (number "2" (effects (font (size 1.27 1.27))))
  1163. )
  1164. (pin output line (at 7.62 0 180) (length 2.54)
  1165. (name "DOUT" (effects (font (size 1.27 1.27))))
  1166. (number "3" (effects (font (size 1.27 1.27))))
  1167. )
  1168. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1169. (name "VSS" (effects (font (size 1.27 1.27))))
  1170. (number "4" (effects (font (size 1.27 1.27))))
  1171. )
  1172. )
  1173. )
  1174. (symbol "Transistor_BJT:UMH3N" (pin_names hide) (in_bom yes) (on_board yes)
  1175. (property "Reference" "Q" (id 0) (at 7.62 1.27 0)
  1176. (effects (font (size 1.27 1.27)) (justify left))
  1177. )
  1178. (property "Value" "UMH3N" (id 1) (at 7.62 -1.27 0)
  1179. (effects (font (size 1.27 1.27)) (justify left))
  1180. )
  1181. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 0.127 -11.176 0)
  1182. (effects (font (size 1.27 1.27)) hide)
  1183. )
  1184. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 3.81 0 0)
  1185. (effects (font (size 1.27 1.27)) hide)
  1186. )
  1187. (property "ki_keywords" "Dual NPN Transistor" (id 4) (at 0 0 0)
  1188. (effects (font (size 1.27 1.27)) hide)
  1189. )
  1190. (property "ki_description" "0.1A Ic, 50V Vce, Dual NPN Input Resistor Transistors, SOT-363" (id 5) (at 0 0 0)
  1191. (effects (font (size 1.27 1.27)) hide)
  1192. )
  1193. (property "ki_fp_filters" "SOT?363*" (id 6) (at 0 0 0)
  1194. (effects (font (size 1.27 1.27)) hide)
  1195. )
  1196. (symbol "UMH3N_0_1"
  1197. (polyline
  1198. (pts
  1199. (xy 3.175 0)
  1200. (xy 0.254 0)
  1201. )
  1202. (stroke (width 0) (type default) (color 0 0 0 0))
  1203. (fill (type none))
  1204. )
  1205. (polyline
  1206. (pts
  1207. (xy 3.175 0.635)
  1208. (xy 5.08 2.54)
  1209. )
  1210. (stroke (width 0) (type default) (color 0 0 0 0))
  1211. (fill (type none))
  1212. )
  1213. (polyline
  1214. (pts
  1215. (xy 3.175 1.524)
  1216. (xy 3.175 -1.524)
  1217. )
  1218. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1219. (fill (type none))
  1220. )
  1221. (polyline
  1222. (pts
  1223. (xy 3.175 -0.635)
  1224. (xy 5.08 -2.54)
  1225. (xy 5.08 -2.54)
  1226. )
  1227. (stroke (width 0) (type default) (color 0 0 0 0))
  1228. (fill (type none))
  1229. )
  1230. (polyline
  1231. (pts
  1232. (xy 3.81 -1.778)
  1233. (xy 4.318 -1.27)
  1234. (xy 4.826 -2.286)
  1235. (xy 3.81 -1.778)
  1236. (xy 3.81 -1.778)
  1237. )
  1238. (stroke (width 0) (type default) (color 0 0 0 0))
  1239. (fill (type outline))
  1240. )
  1241. (rectangle (start 0.254 0.508) (end -2.54 -0.508)
  1242. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1243. (fill (type none))
  1244. )
  1245. (circle (center 3.81 0) (radius 2.8194)
  1246. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1247. (fill (type none))
  1248. )
  1249. )
  1250. (symbol "UMH3N_1_1"
  1251. (pin passive line (at 5.08 -5.08 90) (length 2.54)
  1252. (name "E1" (effects (font (size 1.27 1.27))))
  1253. (number "1" (effects (font (size 1.27 1.27))))
  1254. )
  1255. (pin input line (at -5.08 0 0) (length 2.54)
  1256. (name "B1" (effects (font (size 1.27 1.27))))
  1257. (number "2" (effects (font (size 1.27 1.27))))
  1258. )
  1259. (pin passive line (at 5.08 5.08 270) (length 2.54)
  1260. (name "C1" (effects (font (size 1.27 1.27))))
  1261. (number "6" (effects (font (size 1.27 1.27))))
  1262. )
  1263. )
  1264. (symbol "UMH3N_2_1"
  1265. (pin passive line (at 5.08 5.08 270) (length 2.54)
  1266. (name "C2" (effects (font (size 1.27 1.27))))
  1267. (number "3" (effects (font (size 1.27 1.27))))
  1268. )
  1269. (pin passive line (at 5.08 -5.08 90) (length 2.54)
  1270. (name "E2" (effects (font (size 1.27 1.27))))
  1271. (number "4" (effects (font (size 1.27 1.27))))
  1272. )
  1273. (pin input line (at -5.08 0 0) (length 2.54)
  1274. (name "B2" (effects (font (size 1.27 1.27))))
  1275. (number "5" (effects (font (size 1.27 1.27))))
  1276. )
  1277. )
  1278. )
  1279. (symbol "Trinamic:TMC6300" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1280. (property "Reference" "U" (id 0) (at 0 2.54 0)
  1281. (effects (font (size 1.27 1.27)))
  1282. )
  1283. (property "Value" "TMC6300" (id 1) (at 0 0 0)
  1284. (effects (font (size 1.27 1.27)))
  1285. )
  1286. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 0 0 0)
  1287. (effects (font (size 1.27 1.27)) hide)
  1288. )
  1289. (property "Datasheet" "" (id 3) (at 0 0 0)
  1290. (effects (font (size 1.27 1.27)) hide)
  1291. )
  1292. (symbol "TMC6300_0_1"
  1293. (rectangle (start -10.16 22.86) (end 10.16 -22.86)
  1294. (stroke (width 0) (type default) (color 0 0 0 0))
  1295. (fill (type background))
  1296. )
  1297. )
  1298. (symbol "TMC6300_1_1"
  1299. (pin output line (at 12.7 15.24 180) (length 2.54)
  1300. (name "W" (effects (font (size 1.27 1.27))))
  1301. (number "1" (effects (font (size 1.27 1.27))))
  1302. )
  1303. (pin input line (at -12.7 5.08 0) (length 2.54)
  1304. (name "VL" (effects (font (size 1.27 1.27))))
  1305. (number "10" (effects (font (size 1.27 1.27))))
  1306. )
  1307. (pin power_in line (at -12.7 -7.62 0) (length 2.54)
  1308. (name "VIO/~{STDBY}" (effects (font (size 1.27 1.27))))
  1309. (number "11" (effects (font (size 1.27 1.27))))
  1310. )
  1311. (pin output line (at -12.7 -5.08 0) (length 2.54)
  1312. (name "DIAG" (effects (font (size 1.27 1.27))))
  1313. (number "12" (effects (font (size 1.27 1.27))))
  1314. )
  1315. (pin power_out line (at 12.7 -20.32 180) (length 2.54)
  1316. (name "1V8OUT" (effects (font (size 1.27 1.27))))
  1317. (number "13" (effects (font (size 1.27 1.27))))
  1318. )
  1319. (pin power_in line (at -12.7 -17.78 0) (length 2.54)
  1320. (name "GND" (effects (font (size 1.27 1.27))))
  1321. (number "14" (effects (font (size 1.27 1.27))))
  1322. )
  1323. (pin output line (at 12.7 20.32 180) (length 2.54)
  1324. (name "U" (effects (font (size 1.27 1.27))))
  1325. (number "15" (effects (font (size 1.27 1.27))))
  1326. )
  1327. (pin passive line (at 12.7 10.16 180) (length 2.54)
  1328. (name "BRUV" (effects (font (size 1.27 1.27))))
  1329. (number "16" (effects (font (size 1.27 1.27))))
  1330. )
  1331. (pin output line (at 12.7 17.78 180) (length 2.54)
  1332. (name "V" (effects (font (size 1.27 1.27))))
  1333. (number "17" (effects (font (size 1.27 1.27))))
  1334. )
  1335. (pin power_in line (at -12.7 20.32 0) (length 2.54)
  1336. (name "VS" (effects (font (size 1.27 1.27))))
  1337. (number "18" (effects (font (size 1.27 1.27))))
  1338. )
  1339. (pin no_connect line (at 12.7 -17.78 180) (length 2.54) hide
  1340. (name "NC" (effects (font (size 1.27 1.27))))
  1341. (number "19" (effects (font (size 1.27 1.27))))
  1342. )
  1343. (pin bidirectional line (at -12.7 17.78 0) (length 2.54)
  1344. (name "VCP" (effects (font (size 1.27 1.27))))
  1345. (number "2" (effects (font (size 1.27 1.27))))
  1346. )
  1347. (pin passive line (at 12.7 7.62 180) (length 2.54)
  1348. (name "BRW" (effects (font (size 1.27 1.27))))
  1349. (number "20" (effects (font (size 1.27 1.27))))
  1350. )
  1351. (pin input line (at -12.7 12.7 0) (length 2.54)
  1352. (name "UH" (effects (font (size 1.27 1.27))))
  1353. (number "3" (effects (font (size 1.27 1.27))))
  1354. )
  1355. (pin input line (at -12.7 7.62 0) (length 2.54)
  1356. (name "VH" (effects (font (size 1.27 1.27))))
  1357. (number "4" (effects (font (size 1.27 1.27))))
  1358. )
  1359. (pin input line (at -12.7 2.54 0) (length 2.54)
  1360. (name "WH" (effects (font (size 1.27 1.27))))
  1361. (number "5" (effects (font (size 1.27 1.27))))
  1362. )
  1363. (pin input line (at -12.7 10.16 0) (length 2.54)
  1364. (name "UL" (effects (font (size 1.27 1.27))))
  1365. (number "6" (effects (font (size 1.27 1.27))))
  1366. )
  1367. (pin input line (at -12.7 0 0) (length 2.54)
  1368. (name "WL" (effects (font (size 1.27 1.27))))
  1369. (number "7" (effects (font (size 1.27 1.27))))
  1370. )
  1371. (pin power_in line (at -12.7 -12.7 0) (length 2.54)
  1372. (name "GND" (effects (font (size 1.27 1.27))))
  1373. (number "8" (effects (font (size 1.27 1.27))))
  1374. )
  1375. (pin power_in line (at -12.7 -15.24 0) (length 2.54)
  1376. (name "GND" (effects (font (size 1.27 1.27))))
  1377. (number "9" (effects (font (size 1.27 1.27))))
  1378. )
  1379. (pin power_in line (at -12.7 -20.32 0) (length 2.54)
  1380. (name "PAD" (effects (font (size 1.27 1.27))))
  1381. (number "PAD" (effects (font (size 1.27 1.27))))
  1382. )
  1383. )
  1384. )
  1385. (symbol "VEML7700:VEML7700" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1386. (property "Reference" "U" (id 0) (at -6.35 11.43 0)
  1387. (effects (font (size 1.27 1.27)))
  1388. )
  1389. (property "Value" "VEML7700" (id 1) (at 0 0 0)
  1390. (effects (font (size 1.27 1.27)))
  1391. )
  1392. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 0 0 0)
  1393. (effects (font (size 1.27 1.27)) hide)
  1394. )
  1395. (property "Datasheet" "" (id 3) (at 0 0 0)
  1396. (effects (font (size 1.27 1.27)) hide)
  1397. )
  1398. (symbol "VEML7700_0_1"
  1399. (rectangle (start 6.35 -11.43) (end -6.35 10.16)
  1400. (stroke (width 0) (type default) (color 0 0 0 0))
  1401. (fill (type background))
  1402. )
  1403. )
  1404. (symbol "VEML7700_1_1"
  1405. (pin open_collector line (at 8.89 -3.81 180) (length 2.54)
  1406. (name "SCL" (effects (font (size 1.27 1.27))))
  1407. (number "1" (effects (font (size 1.27 1.27))))
  1408. )
  1409. (pin power_in line (at 0 12.7 270) (length 2.54)
  1410. (name "VDD" (effects (font (size 1.27 1.27))))
  1411. (number "2" (effects (font (size 1.27 1.27))))
  1412. )
  1413. (pin power_in line (at 0 -13.97 90) (length 2.54)
  1414. (name "GND" (effects (font (size 1.27 1.27))))
  1415. (number "3" (effects (font (size 1.27 1.27))))
  1416. )
  1417. (pin open_collector line (at 8.89 3.81 180) (length 2.54)
  1418. (name "SDA" (effects (font (size 1.27 1.27))))
  1419. (number "4" (effects (font (size 1.27 1.27))))
  1420. )
  1421. )
  1422. )
  1423. (symbol "lilygo_micro32:T-Micro32_Plus" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1424. (property "Reference" "U" (id 0) (at -15.24 21.59 0)
  1425. (effects (font (size 1.27 1.27)))
  1426. )
  1427. (property "Value" "T-Micro32_Plus" (id 1) (at 0 17.78 0)
  1428. (effects (font (size 1.27 1.27)))
  1429. )
  1430. (property "Footprint" "" (id 2) (at 0 -2.54 0)
  1431. (effects (font (size 1.27 1.27)) hide)
  1432. )
  1433. (property "Datasheet" "" (id 3) (at 0 -2.54 0)
  1434. (effects (font (size 1.27 1.27)) hide)
  1435. )
  1436. (symbol "T-Micro32_Plus_0_0"
  1437. (text "IO0: def=PU, 1=run, 0=download" (at -8.89 -1.27 0)
  1438. (effects (font (size 0.6604 0.6604)) (justify left))
  1439. )
  1440. (text "IO12: def=PD, must be 0 on boot" (at -8.89 -5.08 0)
  1441. (effects (font (size 0.6604 0.6604)) (justify left))
  1442. )
  1443. (text "IO14: outputs signal on boot" (at -8.89 -6.35 0)
  1444. (effects (font (size 0.6604 0.6604)) (justify left))
  1445. )
  1446. (text "IO15: def=PU, 1=debug log, 0=silent" (at -8.89 -7.62 0)
  1447. (effects (font (size 0.6604 0.6604)) (justify left))
  1448. )
  1449. (text "IO2: def=PD, must be 0 to download" (at -8.89 -2.54 0)
  1450. (effects (font (size 0.6604 0.6604)) (justify left))
  1451. )
  1452. (text "IO5: outputs signal on boot?" (at -8.89 -3.81 0)
  1453. (effects (font (size 0.6604 0.6604)) (justify left))
  1454. )
  1455. (text "outputs signal at boot" (at -6.35 -8.89 0)
  1456. (effects (font (size 0.6604 0.6604)) (justify left))
  1457. )
  1458. )
  1459. (symbol "T-Micro32_Plus_0_1"
  1460. (rectangle (start 16.51 -20.32) (end -16.51 20.32)
  1461. (stroke (width 0) (type default) (color 0 0 0 0))
  1462. (fill (type background))
  1463. )
  1464. )
  1465. (symbol "T-Micro32_Plus_1_1"
  1466. (circle (center -10.414 -15.494) (radius 0.0001)
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (fill (type none))
  1469. )
  1470. (circle (center -10.414 -12.954) (radius 0.0001)
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (fill (type none))
  1473. )
  1474. (polyline
  1475. (pts
  1476. (xy -10.414 -14.986)
  1477. (xy -10.414 -15.24)
  1478. )
  1479. (stroke (width 0) (type default) (color 0 0 0 0))
  1480. (fill (type none))
  1481. )
  1482. (polyline
  1483. (pts
  1484. (xy -10.414 -12.446)
  1485. (xy -10.414 -12.7)
  1486. )
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (fill (type none))
  1489. )
  1490. (polyline
  1491. (pts
  1492. (xy 8.636 -13.716)
  1493. (xy 8.636 -13.97)
  1494. )
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (fill (type none))
  1497. )
  1498. (polyline
  1499. (pts
  1500. (xy 11.176 -17.526)
  1501. (xy 11.176 -17.78)
  1502. )
  1503. (stroke (width 0) (type default) (color 0 0 0 0))
  1504. (fill (type none))
  1505. )
  1506. (polyline
  1507. (pts
  1508. (xy 11.176 -14.986)
  1509. (xy 11.176 -15.24)
  1510. )
  1511. (stroke (width 0) (type default) (color 0 0 0 0))
  1512. (fill (type none))
  1513. )
  1514. (polyline
  1515. (pts
  1516. (xy 11.176 -4.826)
  1517. (xy 11.176 -5.08)
  1518. )
  1519. (stroke (width 0) (type default) (color 0 0 0 0))
  1520. (fill (type none))
  1521. )
  1522. (polyline
  1523. (pts
  1524. (xy -10.414 -14.478)
  1525. (xy -11.176 -15.748)
  1526. (xy -9.652 -15.748)
  1527. (xy -10.414 -14.478)
  1528. )
  1529. (stroke (width 0) (type default) (color 0 0 0 0))
  1530. (fill (type none))
  1531. )
  1532. (polyline
  1533. (pts
  1534. (xy -10.414 -11.938)
  1535. (xy -11.176 -13.208)
  1536. (xy -9.652 -13.208)
  1537. (xy -10.414 -11.938)
  1538. )
  1539. (stroke (width 0) (type default) (color 0 0 0 0))
  1540. (fill (type none))
  1541. )
  1542. (polyline
  1543. (pts
  1544. (xy 8.636 -13.208)
  1545. (xy 7.874 -14.478)
  1546. (xy 9.398 -14.478)
  1547. (xy 8.636 -13.208)
  1548. )
  1549. (stroke (width 0) (type default) (color 0 0 0 0))
  1550. (fill (type none))
  1551. )
  1552. (polyline
  1553. (pts
  1554. (xy 11.176 -17.018)
  1555. (xy 10.414 -18.288)
  1556. (xy 11.938 -18.288)
  1557. (xy 11.176 -17.018)
  1558. )
  1559. (stroke (width 0) (type default) (color 0 0 0 0))
  1560. (fill (type none))
  1561. )
  1562. (polyline
  1563. (pts
  1564. (xy 11.176 -14.478)
  1565. (xy 10.414 -15.748)
  1566. (xy 11.938 -15.748)
  1567. (xy 11.176 -14.478)
  1568. )
  1569. (stroke (width 0) (type default) (color 0 0 0 0))
  1570. (fill (type none))
  1571. )
  1572. (polyline
  1573. (pts
  1574. (xy 11.176 -4.318)
  1575. (xy 10.414 -5.588)
  1576. (xy 11.938 -5.588)
  1577. (xy 11.176 -4.318)
  1578. )
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (fill (type none))
  1581. )
  1582. (circle (center 8.636 -14.224) (radius 0.0001)
  1583. (stroke (width 0) (type default) (color 0 0 0 0))
  1584. (fill (type none))
  1585. )
  1586. (circle (center 11.176 -18.034) (radius 0.0001)
  1587. (stroke (width 0) (type default) (color 0 0 0 0))
  1588. (fill (type none))
  1589. )
  1590. (circle (center 11.176 -15.494) (radius 0.0001)
  1591. (stroke (width 0) (type default) (color 0 0 0 0))
  1592. (fill (type none))
  1593. )
  1594. (circle (center 11.176 -5.334) (radius 0.0001)
  1595. (stroke (width 0) (type default) (color 0 0 0 0))
  1596. (fill (type none))
  1597. )
  1598. (pin power_in line (at -19.05 17.78 0) (length 2.54)
  1599. (name "GND" (effects (font (size 1.27 1.27))))
  1600. (number "1" (effects (font (size 1.27 1.27))))
  1601. )
  1602. (pin bidirectional line (at -19.05 -5.08 0) (length 2.54)
  1603. (name "IO25" (effects (font (size 1.27 1.27))))
  1604. (number "10" (effects (font (size 1.27 1.27))))
  1605. )
  1606. (pin bidirectional line (at -19.05 -7.62 0) (length 2.54)
  1607. (name "IO26" (effects (font (size 1.27 1.27))))
  1608. (number "11" (effects (font (size 1.27 1.27))))
  1609. )
  1610. (pin bidirectional line (at -19.05 -10.16 0) (length 2.54)
  1611. (name "IO27" (effects (font (size 1.27 1.27))))
  1612. (number "12" (effects (font (size 1.27 1.27))))
  1613. )
  1614. (pin bidirectional line (at -19.05 -12.7 0) (length 2.54)
  1615. (name "IO14" (effects (font (size 1.27 1.27))))
  1616. (number "13" (effects (font (size 1.27 1.27))))
  1617. )
  1618. (pin bidirectional line (at -19.05 -15.24 0) (length 2.54)
  1619. (name "IO12" (effects (font (size 1.27 1.27))))
  1620. (number "14" (effects (font (size 1.27 1.27))))
  1621. )
  1622. (pin power_in line (at -19.05 -17.78 0) (length 2.54)
  1623. (name "GND" (effects (font (size 1.27 1.27))))
  1624. (number "15" (effects (font (size 1.27 1.27))))
  1625. )
  1626. (pin bidirectional line (at -8.89 -22.86 90) (length 2.54)
  1627. (name "IO13" (effects (font (size 1.27 1.27))))
  1628. (number "16" (effects (font (size 1.27 1.27))))
  1629. )
  1630. (pin input line (at -6.35 -22.86 90) (length 2.54)
  1631. (name "IO37" (effects (font (size 1.27 1.27))))
  1632. (number "17" (effects (font (size 1.27 1.27))))
  1633. )
  1634. (pin input line (at -3.81 -22.86 90) (length 2.54)
  1635. (name "IO38" (effects (font (size 1.27 1.27))))
  1636. (number "18" (effects (font (size 1.27 1.27))))
  1637. )
  1638. (pin no_connect line (at -1.27 -22.86 90) (length 2.54)
  1639. (name "NC" (effects (font (size 1.27 1.27))))
  1640. (number "19" (effects (font (size 1.27 1.27))))
  1641. )
  1642. (pin power_in line (at -19.05 15.24 0) (length 2.54)
  1643. (name "3V3" (effects (font (size 1.27 1.27))))
  1644. (number "2" (effects (font (size 1.27 1.27))))
  1645. )
  1646. (pin no_connect line (at 1.27 -22.86 90) (length 2.54)
  1647. (name "NC" (effects (font (size 1.27 1.27))))
  1648. (number "20" (effects (font (size 1.27 1.27))))
  1649. )
  1650. (pin bidirectional line (at 3.81 -22.86 90) (length 2.54)
  1651. (name "IO7" (effects (font (size 1.27 1.27))))
  1652. (number "21" (effects (font (size 1.27 1.27))))
  1653. )
  1654. (pin bidirectional line (at 6.35 -22.86 90) (length 2.54)
  1655. (name "IO8" (effects (font (size 1.27 1.27))))
  1656. (number "22" (effects (font (size 1.27 1.27))))
  1657. )
  1658. (pin bidirectional line (at 8.89 -22.86 90) (length 2.54)
  1659. (name "IO15" (effects (font (size 1.27 1.27))))
  1660. (number "23" (effects (font (size 1.27 1.27))))
  1661. )
  1662. (pin bidirectional line (at 19.05 -17.78 180) (length 2.54)
  1663. (name "IO2" (effects (font (size 1.27 1.27))))
  1664. (number "24" (effects (font (size 1.27 1.27))))
  1665. )
  1666. (pin bidirectional line (at 19.05 -15.24 180) (length 2.54)
  1667. (name "IO0" (effects (font (size 1.27 1.27))))
  1668. (number "25" (effects (font (size 1.27 1.27))))
  1669. )
  1670. (pin bidirectional line (at 19.05 -12.7 180) (length 2.54)
  1671. (name "IO4" (effects (font (size 1.27 1.27))))
  1672. (number "26" (effects (font (size 1.27 1.27))))
  1673. )
  1674. (pin no_connect line (at 19.05 -10.16 180) (length 2.54)
  1675. (name "NC" (effects (font (size 1.27 1.27))))
  1676. (number "27" (effects (font (size 1.27 1.27))))
  1677. )
  1678. (pin bidirectional line (at 19.05 -7.62 180) (length 2.54)
  1679. (name "IO20" (effects (font (size 1.27 1.27))))
  1680. (number "28" (effects (font (size 1.27 1.27))))
  1681. )
  1682. (pin bidirectional line (at 19.05 -5.08 180) (length 2.54)
  1683. (name "IO5" (effects (font (size 1.27 1.27))))
  1684. (number "29" (effects (font (size 1.27 1.27))))
  1685. )
  1686. (pin input line (at -19.05 12.7 0) (length 2.54)
  1687. (name "EN" (effects (font (size 1.27 1.27))))
  1688. (number "3" (effects (font (size 1.27 1.27))))
  1689. )
  1690. (pin no_connect line (at 19.05 -2.54 180) (length 2.54)
  1691. (name "NC" (effects (font (size 1.27 1.27))))
  1692. (number "30" (effects (font (size 1.27 1.27))))
  1693. )
  1694. (pin bidirectional line (at 19.05 0 180) (length 2.54)
  1695. (name "IO19" (effects (font (size 1.27 1.27))))
  1696. (number "31" (effects (font (size 1.27 1.27))))
  1697. )
  1698. (pin passive line (at 19.05 2.54 180) (length 2.54)
  1699. (name "VDD_SDIO" (effects (font (size 1.27 1.27))))
  1700. (number "32" (effects (font (size 1.27 1.27))))
  1701. )
  1702. (pin bidirectional line (at 19.05 5.08 180) (length 2.54)
  1703. (name "IO21" (effects (font (size 1.27 1.27))))
  1704. (number "33" (effects (font (size 1.27 1.27))))
  1705. )
  1706. (pin input line (at 19.05 7.62 180) (length 2.54)
  1707. (name "RXD" (effects (font (size 1.27 1.27))))
  1708. (number "34" (effects (font (size 1.27 1.27))))
  1709. )
  1710. (pin output line (at 19.05 10.16 180) (length 2.54)
  1711. (name "TXD" (effects (font (size 1.27 1.27))))
  1712. (number "35" (effects (font (size 1.27 1.27))))
  1713. )
  1714. (pin bidirectional line (at 19.05 12.7 180) (length 2.54)
  1715. (name "IO22" (effects (font (size 1.27 1.27))))
  1716. (number "36" (effects (font (size 1.27 1.27))))
  1717. )
  1718. (pin no_connect line (at 19.05 15.24 180) (length 2.54)
  1719. (name "NC" (effects (font (size 1.27 1.27))))
  1720. (number "37" (effects (font (size 1.27 1.27))))
  1721. )
  1722. (pin power_in line (at 19.05 17.78 180) (length 2.54)
  1723. (name "GND" (effects (font (size 1.27 1.27))))
  1724. (number "38" (effects (font (size 1.27 1.27))))
  1725. )
  1726. (pin input line (at -19.05 10.16 0) (length 2.54)
  1727. (name "IO36/SVP" (effects (font (size 1.27 1.27))))
  1728. (number "4" (effects (font (size 1.27 1.27))))
  1729. )
  1730. (pin input line (at -19.05 7.62 0) (length 2.54)
  1731. (name "IO39/SVN" (effects (font (size 1.27 1.27))))
  1732. (number "5" (effects (font (size 1.27 1.27))))
  1733. )
  1734. (pin input line (at -19.05 5.08 0) (length 2.54)
  1735. (name "IO34" (effects (font (size 1.27 1.27))))
  1736. (number "6" (effects (font (size 1.27 1.27))))
  1737. )
  1738. (pin input line (at -19.05 2.54 0) (length 2.54)
  1739. (name "IO35" (effects (font (size 1.27 1.27))))
  1740. (number "7" (effects (font (size 1.27 1.27))))
  1741. )
  1742. (pin bidirectional line (at -19.05 0 0) (length 2.54)
  1743. (name "IO32" (effects (font (size 1.27 1.27))))
  1744. (number "8" (effects (font (size 1.27 1.27))))
  1745. )
  1746. (pin bidirectional line (at -19.05 -2.54 0) (length 2.54)
  1747. (name "IO33" (effects (font (size 1.27 1.27))))
  1748. (number "9" (effects (font (size 1.27 1.27))))
  1749. )
  1750. )
  1751. )
  1752. (symbol "no_pin:no_pin" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1753. (property "Reference" "Z" (id 0) (at -8.89 3.81 0)
  1754. (effects (font (size 1.524 1.524)))
  1755. )
  1756. (property "Value" "no_pin" (id 1) (at 0 0 0)
  1757. (effects (font (size 1.524 1.524)))
  1758. )
  1759. (property "Footprint" "" (id 2) (at 0 0 0)
  1760. (effects (font (size 1.524 1.524)) hide)
  1761. )
  1762. (property "Datasheet" "" (id 3) (at 0 0 0)
  1763. (effects (font (size 1.524 1.524)) hide)
  1764. )
  1765. (symbol "no_pin_0_1"
  1766. (rectangle (start -10.16 2.54) (end 10.16 -2.54)
  1767. (stroke (width 0) (type default) (color 0 0 0 0))
  1768. (fill (type none))
  1769. )
  1770. )
  1771. )
  1772. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1773. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1774. (effects (font (size 1.27 1.27)) hide)
  1775. )
  1776. (property "Value" "+3.3V" (id 1) (at 0 3.556 0)
  1777. (effects (font (size 1.27 1.27)))
  1778. )
  1779. (property "Footprint" "" (id 2) (at 0 0 0)
  1780. (effects (font (size 1.27 1.27)) hide)
  1781. )
  1782. (property "Datasheet" "" (id 3) (at 0 0 0)
  1783. (effects (font (size 1.27 1.27)) hide)
  1784. )
  1785. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1786. (effects (font (size 1.27 1.27)) hide)
  1787. )
  1788. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
  1789. (effects (font (size 1.27 1.27)) hide)
  1790. )
  1791. (symbol "+3.3V_0_1"
  1792. (polyline
  1793. (pts
  1794. (xy -0.762 1.27)
  1795. (xy 0 2.54)
  1796. )
  1797. (stroke (width 0) (type default) (color 0 0 0 0))
  1798. (fill (type none))
  1799. )
  1800. (polyline
  1801. (pts
  1802. (xy 0 0)
  1803. (xy 0 2.54)
  1804. )
  1805. (stroke (width 0) (type default) (color 0 0 0 0))
  1806. (fill (type none))
  1807. )
  1808. (polyline
  1809. (pts
  1810. (xy 0 2.54)
  1811. (xy 0.762 1.27)
  1812. )
  1813. (stroke (width 0) (type default) (color 0 0 0 0))
  1814. (fill (type none))
  1815. )
  1816. )
  1817. (symbol "+3.3V_1_1"
  1818. (pin power_in line (at 0 0 90) (length 0) hide
  1819. (name "+3V3" (effects (font (size 1.27 1.27))))
  1820. (number "1" (effects (font (size 1.27 1.27))))
  1821. )
  1822. )
  1823. )
  1824. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1825. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1826. (effects (font (size 1.27 1.27)) hide)
  1827. )
  1828. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1829. (effects (font (size 1.27 1.27)))
  1830. )
  1831. (property "Footprint" "" (id 2) (at 0 0 0)
  1832. (effects (font (size 1.27 1.27)) hide)
  1833. )
  1834. (property "Datasheet" "" (id 3) (at 0 0 0)
  1835. (effects (font (size 1.27 1.27)) hide)
  1836. )
  1837. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1838. (effects (font (size 1.27 1.27)) hide)
  1839. )
  1840. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1841. (effects (font (size 1.27 1.27)) hide)
  1842. )
  1843. (symbol "+5V_0_1"
  1844. (polyline
  1845. (pts
  1846. (xy -0.762 1.27)
  1847. (xy 0 2.54)
  1848. )
  1849. (stroke (width 0) (type default) (color 0 0 0 0))
  1850. (fill (type none))
  1851. )
  1852. (polyline
  1853. (pts
  1854. (xy 0 0)
  1855. (xy 0 2.54)
  1856. )
  1857. (stroke (width 0) (type default) (color 0 0 0 0))
  1858. (fill (type none))
  1859. )
  1860. (polyline
  1861. (pts
  1862. (xy 0 2.54)
  1863. (xy 0.762 1.27)
  1864. )
  1865. (stroke (width 0) (type default) (color 0 0 0 0))
  1866. (fill (type none))
  1867. )
  1868. )
  1869. (symbol "+5V_1_1"
  1870. (pin power_in line (at 0 0 90) (length 0) hide
  1871. (name "+5V" (effects (font (size 1.27 1.27))))
  1872. (number "1" (effects (font (size 1.27 1.27))))
  1873. )
  1874. )
  1875. )
  1876. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1877. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1878. (effects (font (size 1.27 1.27)) hide)
  1879. )
  1880. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1881. (effects (font (size 1.27 1.27)))
  1882. )
  1883. (property "Footprint" "" (id 2) (at 0 0 0)
  1884. (effects (font (size 1.27 1.27)) hide)
  1885. )
  1886. (property "Datasheet" "" (id 3) (at 0 0 0)
  1887. (effects (font (size 1.27 1.27)) hide)
  1888. )
  1889. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1890. (effects (font (size 1.27 1.27)) hide)
  1891. )
  1892. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1893. (effects (font (size 1.27 1.27)) hide)
  1894. )
  1895. (symbol "GND_0_1"
  1896. (polyline
  1897. (pts
  1898. (xy 0 0)
  1899. (xy 0 -1.27)
  1900. (xy 1.27 -1.27)
  1901. (xy 0 -2.54)
  1902. (xy -1.27 -1.27)
  1903. (xy 0 -1.27)
  1904. )
  1905. (stroke (width 0) (type default) (color 0 0 0 0))
  1906. (fill (type none))
  1907. )
  1908. )
  1909. (symbol "GND_1_1"
  1910. (pin power_in line (at 0 0 270) (length 0) hide
  1911. (name "GND" (effects (font (size 1.27 1.27))))
  1912. (number "1" (effects (font (size 1.27 1.27))))
  1913. )
  1914. )
  1915. )
  1916. (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1917. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1918. (effects (font (size 1.27 1.27)) hide)
  1919. )
  1920. (property "Value" "GNDA" (id 1) (at 0 -3.81 0)
  1921. (effects (font (size 1.27 1.27)))
  1922. )
  1923. (property "Footprint" "" (id 2) (at 0 0 0)
  1924. (effects (font (size 1.27 1.27)) hide)
  1925. )
  1926. (property "Datasheet" "" (id 3) (at 0 0 0)
  1927. (effects (font (size 1.27 1.27)) hide)
  1928. )
  1929. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1930. (effects (font (size 1.27 1.27)) hide)
  1931. )
  1932. (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
  1933. (effects (font (size 1.27 1.27)) hide)
  1934. )
  1935. (symbol "GNDA_0_1"
  1936. (polyline
  1937. (pts
  1938. (xy 0 0)
  1939. (xy 0 -1.27)
  1940. (xy 1.27 -1.27)
  1941. (xy 0 -2.54)
  1942. (xy -1.27 -1.27)
  1943. (xy 0 -1.27)
  1944. )
  1945. (stroke (width 0) (type default) (color 0 0 0 0))
  1946. (fill (type none))
  1947. )
  1948. )
  1949. (symbol "GNDA_1_1"
  1950. (pin power_in line (at 0 0 270) (length 0) hide
  1951. (name "GNDA" (effects (font (size 1.27 1.27))))
  1952. (number "1" (effects (font (size 1.27 1.27))))
  1953. )
  1954. )
  1955. )
  1956. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1957. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1958. (effects (font (size 1.27 1.27)) hide)
  1959. )
  1960. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1961. (effects (font (size 1.27 1.27)))
  1962. )
  1963. (property "Footprint" "" (id 2) (at 0 0 0)
  1964. (effects (font (size 1.27 1.27)) hide)
  1965. )
  1966. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1967. (effects (font (size 1.27 1.27)) hide)
  1968. )
  1969. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1970. (effects (font (size 1.27 1.27)) hide)
  1971. )
  1972. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  1973. (effects (font (size 1.27 1.27)) hide)
  1974. )
  1975. (symbol "PWR_FLAG_0_0"
  1976. (pin power_out line (at 0 0 90) (length 0)
  1977. (name "pwr" (effects (font (size 1.27 1.27))))
  1978. (number "1" (effects (font (size 1.27 1.27))))
  1979. )
  1980. )
  1981. (symbol "PWR_FLAG_0_1"
  1982. (polyline
  1983. (pts
  1984. (xy 0 0)
  1985. (xy 0 1.27)
  1986. (xy -1.016 1.905)
  1987. (xy 0 2.54)
  1988. (xy 1.016 1.905)
  1989. (xy 0 1.27)
  1990. )
  1991. (stroke (width 0) (type default) (color 0 0 0 0))
  1992. (fill (type none))
  1993. )
  1994. )
  1995. )
  1996. (symbol "strain:HX711" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1997. (property "Reference" "U" (id 0) (at 5.08 12.7 0)
  1998. (effects (font (size 1.27 1.27)))
  1999. )
  2000. (property "Value" "HX711" (id 1) (at -5.08 12.7 0)
  2001. (effects (font (size 1.27 1.27)))
  2002. )
  2003. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 0 0 0)
  2004. (effects (font (size 1.27 1.27)) hide)
  2005. )
  2006. (property "Datasheet" "" (id 3) (at 0 0 0)
  2007. (effects (font (size 1.27 1.27)) hide)
  2008. )
  2009. (symbol "HX711_0_1"
  2010. (rectangle (start -8.89 11.43) (end 8.89 -11.43)
  2011. (stroke (width 0) (type default) (color 0 0 0 0))
  2012. (fill (type background))
  2013. )
  2014. )
  2015. (symbol "HX711_1_1"
  2016. (pin power_in line (at -11.43 8.89 0) (length 2.54)
  2017. (name "VSUP" (effects (font (size 1.27 1.27))))
  2018. (number "1" (effects (font (size 1.27 1.27))))
  2019. )
  2020. (pin input line (at 11.43 -6.35 180) (length 2.54)
  2021. (name "INB+" (effects (font (size 1.27 1.27))))
  2022. (number "10" (effects (font (size 1.27 1.27))))
  2023. )
  2024. (pin input line (at 11.43 -3.81 180) (length 2.54)
  2025. (name "PD_SCK" (effects (font (size 1.27 1.27))))
  2026. (number "11" (effects (font (size 1.27 1.27))))
  2027. )
  2028. (pin output line (at 11.43 -1.27 180) (length 2.54)
  2029. (name "DOUT" (effects (font (size 1.27 1.27))))
  2030. (number "12" (effects (font (size 1.27 1.27))))
  2031. )
  2032. (pin output line (at 11.43 1.27 180) (length 2.54)
  2033. (name "XO" (effects (font (size 1.27 1.27))))
  2034. (number "13" (effects (font (size 1.27 1.27))))
  2035. )
  2036. (pin input line (at 11.43 3.81 180) (length 2.54)
  2037. (name "XI" (effects (font (size 1.27 1.27))))
  2038. (number "14" (effects (font (size 1.27 1.27))))
  2039. )
  2040. (pin input line (at 11.43 6.35 180) (length 2.54)
  2041. (name "RATE" (effects (font (size 1.27 1.27))))
  2042. (number "15" (effects (font (size 1.27 1.27))))
  2043. )
  2044. (pin power_in line (at 11.43 8.89 180) (length 2.54)
  2045. (name "DVDD" (effects (font (size 1.27 1.27))))
  2046. (number "16" (effects (font (size 1.27 1.27))))
  2047. )
  2048. (pin output line (at -11.43 6.35 0) (length 2.54)
  2049. (name "BASE" (effects (font (size 1.27 1.27))))
  2050. (number "2" (effects (font (size 1.27 1.27))))
  2051. )
  2052. (pin bidirectional line (at -11.43 3.81 0) (length 2.54)
  2053. (name "AVDD" (effects (font (size 1.27 1.27))))
  2054. (number "3" (effects (font (size 1.27 1.27))))
  2055. )
  2056. (pin input line (at -11.43 1.27 0) (length 2.54)
  2057. (name "VFB" (effects (font (size 1.27 1.27))))
  2058. (number "4" (effects (font (size 1.27 1.27))))
  2059. )
  2060. (pin power_in line (at -11.43 -1.27 0) (length 2.54)
  2061. (name "AGND" (effects (font (size 1.27 1.27))))
  2062. (number "5" (effects (font (size 1.27 1.27))))
  2063. )
  2064. (pin output line (at -11.43 -3.81 0) (length 2.54)
  2065. (name "VBG" (effects (font (size 1.27 1.27))))
  2066. (number "6" (effects (font (size 1.27 1.27))))
  2067. )
  2068. (pin input line (at -11.43 -6.35 0) (length 2.54)
  2069. (name "INA-" (effects (font (size 1.27 1.27))))
  2070. (number "7" (effects (font (size 1.27 1.27))))
  2071. )
  2072. (pin input line (at -11.43 -8.89 0) (length 2.54)
  2073. (name "INA+" (effects (font (size 1.27 1.27))))
  2074. (number "8" (effects (font (size 1.27 1.27))))
  2075. )
  2076. (pin input line (at 11.43 -8.89 180) (length 2.54)
  2077. (name "INB-" (effects (font (size 1.27 1.27))))
  2078. (number "9" (effects (font (size 1.27 1.27))))
  2079. )
  2080. )
  2081. )
  2082. )
  2083. (junction (at 200.66 250.19) (diameter 0) (color 0 0 0 0)
  2084. (uuid 00e38d63-5436-49db-81f5-697421f168fc)
  2085. )
  2086. (junction (at 228.6 234.95) (diameter 0) (color 0 0 0 0)
  2087. (uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
  2088. )
  2089. (junction (at 58.42 29.21) (diameter 0) (color 0 0 0 0)
  2090. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  2091. )
  2092. (junction (at 36.83 191.77) (diameter 0) (color 0 0 0 0)
  2093. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  2094. )
  2095. (junction (at 81.28 77.47) (diameter 0) (color 0 0 0 0)
  2096. (uuid 05f2859d-2820-4e84-b395-696011feb13b)
  2097. )
  2098. (junction (at 323.85 167.64) (diameter 0) (color 0 0 0 0)
  2099. (uuid 09c6ca89-863f-42d4-867e-9a769c316610)
  2100. )
  2101. (junction (at 144.78 250.19) (diameter 0) (color 0 0 0 0)
  2102. (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
  2103. )
  2104. (junction (at 172.72 250.19) (diameter 0) (color 0 0 0 0)
  2105. (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
  2106. )
  2107. (junction (at 269.24 250.19) (diameter 0) (color 0 0 0 0)
  2108. (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
  2109. )
  2110. (junction (at 184.15 187.96) (diameter 0) (color 0 0 0 0)
  2111. (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
  2112. )
  2113. (junction (at 204.47 162.56) (diameter 0) (color 0 0 0 0)
  2114. (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
  2115. )
  2116. (junction (at 332.74 167.64) (diameter 0) (color 0 0 0 0)
  2117. (uuid 1427bb3f-0689-4b41-a816-cd79a5202fd0)
  2118. )
  2119. (junction (at 207.01 137.16) (diameter 0) (color 0 0 0 0)
  2120. (uuid 1b98de85-f9de-4825-baf2-c96991615275)
  2121. )
  2122. (junction (at 105.41 57.15) (diameter 0) (color 0 0 0 0)
  2123. (uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
  2124. )
  2125. (junction (at 195.58 209.55) (diameter 0) (color 0 0 0 0)
  2126. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  2127. )
  2128. (junction (at 284.48 234.95) (diameter 0) (color 0 0 0 0)
  2129. (uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
  2130. )
  2131. (junction (at 228.6 250.19) (diameter 0) (color 0 0 0 0)
  2132. (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
  2133. )
  2134. (junction (at 347.98 209.55) (diameter 0) (color 0 0 0 0)
  2135. (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
  2136. )
  2137. (junction (at 379.73 171.45) (diameter 0) (color 0 0 0 0)
  2138. (uuid 24a492d9-25a9-4fba-b51b-3effb576b351)
  2139. )
  2140. (junction (at 78.74 194.31) (diameter 0) (color 0 0 0 0)
  2141. (uuid 24fd922c-d488-4d61-b6dc-9d3e359ccc82)
  2142. )
  2143. (junction (at 137.16 168.91) (diameter 0) (color 0 0 0 0)
  2144. (uuid 29b995b8-ebd0-435f-a7ce-10917240deeb)
  2145. )
  2146. (junction (at 88.9 234.95) (diameter 0) (color 0 0 0 0)
  2147. (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
  2148. )
  2149. (junction (at 189.23 162.56) (diameter 0) (color 0 0 0 0)
  2150. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  2151. )
  2152. (junction (at 129.54 234.95) (diameter 0) (color 0 0 0 0)
  2153. (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
  2154. )
  2155. (junction (at 45.72 162.56) (diameter 0) (color 0 0 0 0)
  2156. (uuid 341dde39-440e-4d05-8def-6a5cecefd88c)
  2157. )
  2158. (junction (at 207.01 132.08) (diameter 0) (color 0 0 0 0)
  2159. (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37)
  2160. )
  2161. (junction (at 317.5 27.94) (diameter 0) (color 0 0 0 0)
  2162. (uuid 386faf3f-2adf-472a-84bf-bd511edf2429)
  2163. )
  2164. (junction (at 200.66 234.95) (diameter 0) (color 0 0 0 0)
  2165. (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
  2166. )
  2167. (junction (at 33.02 29.21) (diameter 0) (color 0 0 0 0)
  2168. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  2169. )
  2170. (junction (at 241.3 133.35) (diameter 0) (color 0 0 0 0)
  2171. (uuid 3d70e675-48ae-4edd-b95d-3ca51e634018)
  2172. )
  2173. (junction (at 317.5 33.02) (diameter 0) (color 0 0 0 0)
  2174. (uuid 3e87b259-dfc1-4885-8dcf-7e7ae39674ed)
  2175. )
  2176. (junction (at 144.78 234.95) (diameter 0) (color 0 0 0 0)
  2177. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  2178. )
  2179. (junction (at 184.15 181.61) (diameter 0) (color 0 0 0 0)
  2180. (uuid 41485de5-6ed3-4c83-b69e-ef83ae18093c)
  2181. )
  2182. (junction (at 241.3 250.19) (diameter 0) (color 0 0 0 0)
  2183. (uuid 4185c36c-c66e-4dbd-be5d-841e551f4885)
  2184. )
  2185. (junction (at 323.85 172.72) (diameter 0) (color 0 0 0 0)
  2186. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  2187. )
  2188. (junction (at 195.58 204.47) (diameter 0) (color 0 0 0 0)
  2189. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  2190. )
  2191. (junction (at 129.54 250.19) (diameter 0) (color 0 0 0 0)
  2192. (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
  2193. )
  2194. (junction (at 256.54 250.19) (diameter 0) (color 0 0 0 0)
  2195. (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
  2196. )
  2197. (junction (at 101.6 250.19) (diameter 0) (color 0 0 0 0)
  2198. (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
  2199. )
  2200. (junction (at 342.9 167.64) (diameter 0) (color 0 0 0 0)
  2201. (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
  2202. )
  2203. (junction (at 78.74 196.85) (diameter 0) (color 0 0 0 0)
  2204. (uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9)
  2205. )
  2206. (junction (at 132.08 168.91) (diameter 0) (color 0 0 0 0)
  2207. (uuid 609d915b-be9b-48ea-9dc8-b434c3da555f)
  2208. )
  2209. (junction (at 167.64 181.61) (diameter 0) (color 0 0 0 0)
  2210. (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)
  2211. )
  2212. (junction (at 27.94 191.77) (diameter 0) (color 0 0 0 0)
  2213. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  2214. )
  2215. (junction (at 213.36 234.95) (diameter 0) (color 0 0 0 0)
  2216. (uuid 71c6e723-673c-45a9-a0e4-9742220c52a3)
  2217. )
  2218. (junction (at 326.39 27.94) (diameter 0) (color 0 0 0 0)
  2219. (uuid 72366acb-6c86-4134-89df-01ed6e4dc8e0)
  2220. )
  2221. (junction (at 189.23 85.09) (diameter 0) (color 0 0 0 0)
  2222. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  2223. )
  2224. (junction (at 38.1 99.06) (diameter 0) (color 0 0 0 0)
  2225. (uuid 7806469b-c133-4e19-b2d5-f2b690b4b2f3)
  2226. )
  2227. (junction (at 78.74 191.77) (diameter 0) (color 0 0 0 0)
  2228. (uuid 7ce4aab5-8271-4432-a4b1-bff168293b45)
  2229. )
  2230. (junction (at 53.34 78.74) (diameter 0) (color 0 0 0 0)
  2231. (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
  2232. )
  2233. (junction (at 157.48 234.95) (diameter 0) (color 0 0 0 0)
  2234. (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
  2235. )
  2236. (junction (at 383.54 181.61) (diameter 0) (color 0 0 0 0)
  2237. (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a)
  2238. )
  2239. (junction (at 172.72 234.95) (diameter 0) (color 0 0 0 0)
  2240. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  2241. )
  2242. (junction (at 347.98 212.09) (diameter 0) (color 0 0 0 0)
  2243. (uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
  2244. )
  2245. (junction (at 172.72 167.64) (diameter 0) (color 0 0 0 0)
  2246. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  2247. )
  2248. (junction (at 156.21 140.97) (diameter 0) (color 0 0 0 0)
  2249. (uuid 8afe1dbf-1187-4362-8af8-a90ca839a6b3)
  2250. )
  2251. (junction (at 157.48 250.19) (diameter 0) (color 0 0 0 0)
  2252. (uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
  2253. )
  2254. (junction (at 132.08 128.27) (diameter 0) (color 0 0 0 0)
  2255. (uuid 8efe6411-1919-4082-b5b8-393585e068c8)
  2256. )
  2257. (junction (at 101.6 234.95) (diameter 0) (color 0 0 0 0)
  2258. (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
  2259. )
  2260. (junction (at 185.42 234.95) (diameter 0) (color 0 0 0 0)
  2261. (uuid 935057d5-6882-4c15-9a35-54677912ba12)
  2262. )
  2263. (junction (at 207.01 127) (diameter 0) (color 0 0 0 0)
  2264. (uuid 971d1932-4a99-4265-9c76-26e554bde4fe)
  2265. )
  2266. (junction (at 347.98 207.01) (diameter 0) (color 0 0 0 0)
  2267. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  2268. )
  2269. (junction (at 134.62 162.56) (diameter 0) (color 0 0 0 0)
  2270. (uuid 9854252b-4888-44a6-ae85-8875623e51b6)
  2271. )
  2272. (junction (at 116.84 234.95) (diameter 0) (color 0 0 0 0)
  2273. (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
  2274. )
  2275. (junction (at 284.48 250.19) (diameter 0) (color 0 0 0 0)
  2276. (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
  2277. )
  2278. (junction (at 30.48 250.19) (diameter 0) (color 0 0 0 0)
  2279. (uuid 9a595c4c-9ac1-4ae3-8ff3-1b7f2281a894)
  2280. )
  2281. (junction (at 45.72 134.62) (diameter 0) (color 0 0 0 0)
  2282. (uuid 9c0314b1-f82f-432d-95a0-65e191202552)
  2283. )
  2284. (junction (at 54.61 242.57) (diameter 0) (color 0 0 0 0)
  2285. (uuid 9e18f8b3-9e1a-4022-9224-10c12ca8a28d)
  2286. )
  2287. (junction (at 48.26 40.64) (diameter 0) (color 0 0 0 0)
  2288. (uuid a12b751e-ae7a-468c-af3d-31ed4d501b01)
  2289. )
  2290. (junction (at 30.48 234.95) (diameter 0) (color 0 0 0 0)
  2291. (uuid a26bdee6-0e16-4ea6-87f7-fb32c714896e)
  2292. )
  2293. (junction (at 233.68 193.04) (diameter 0) (color 0 0 0 0)
  2294. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  2295. )
  2296. (junction (at 269.24 234.95) (diameter 0) (color 0 0 0 0)
  2297. (uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
  2298. )
  2299. (junction (at 213.36 250.19) (diameter 0) (color 0 0 0 0)
  2300. (uuid b4833916-7a3e-4498-86fb-ec6d13262ffe)
  2301. )
  2302. (junction (at 53.34 73.66) (diameter 0) (color 0 0 0 0)
  2303. (uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
  2304. )
  2305. (junction (at 170.18 127) (diameter 0) (color 0 0 0 0)
  2306. (uuid b606e532-e4c7-444d-b9ff-879f52cfde92)
  2307. )
  2308. (junction (at 326.39 33.02) (diameter 0) (color 0 0 0 0)
  2309. (uuid ba116096-3ccc-4cc8-a185-5325439e4e24)
  2310. )
  2311. (junction (at 189.23 181.61) (diameter 0) (color 0 0 0 0)
  2312. (uuid bd29b6d3-a58c-4b1f-9c20-de4efb708ab2)
  2313. )
  2314. (junction (at 134.62 175.26) (diameter 0) (color 0 0 0 0)
  2315. (uuid bf04514a-648f-4d03-9322-71c51ce28a5c)
  2316. )
  2317. (junction (at 158.75 181.61) (diameter 0) (color 0 0 0 0)
  2318. (uuid c2dd13db-24b6-40f1-b75b-b9ab893d92ea)
  2319. )
  2320. (junction (at 224.79 71.12) (diameter 0) (color 0 0 0 0)
  2321. (uuid c37d3f0c-41ec-4928-8869-febc821c6326)
  2322. )
  2323. (junction (at 163.83 191.77) (diameter 0) (color 0 0 0 0)
  2324. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  2325. )
  2326. (junction (at 163.83 186.69) (diameter 0) (color 0 0 0 0)
  2327. (uuid c401e9c6-1deb-4979-99be-7c801c952098)
  2328. )
  2329. (junction (at 156.21 134.62) (diameter 0) (color 0 0 0 0)
  2330. (uuid c482f4f0-b441-4301-a9f1-c7f9e511d699)
  2331. )
  2332. (junction (at 233.68 175.26) (diameter 0) (color 0 0 0 0)
  2333. (uuid c512fed3-9770-476b-b048-e781b4f3cd72)
  2334. )
  2335. (junction (at 181.61 162.56) (diameter 0) (color 0 0 0 0)
  2336. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  2337. )
  2338. (junction (at 241.3 234.95) (diameter 0) (color 0 0 0 0)
  2339. (uuid cc48dd41-7768-48d3-b096-2c4cc2126c9d)
  2340. )
  2341. (junction (at 336.55 200.66) (diameter 0) (color 0 0 0 0)
  2342. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  2343. )
  2344. (junction (at 224.79 76.2) (diameter 0) (color 0 0 0 0)
  2345. (uuid d1441985-7b63-4bf8-a06d-c70da2e3b78b)
  2346. )
  2347. (junction (at 195.58 69.85) (diameter 0) (color 0 0 0 0)
  2348. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  2349. )
  2350. (junction (at 379.73 173.99) (diameter 0) (color 0 0 0 0)
  2351. (uuid d7df1f01-3f56-437b-a452-e88ad90a9805)
  2352. )
  2353. (junction (at 207.01 129.54) (diameter 0) (color 0 0 0 0)
  2354. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  2355. )
  2356. (junction (at 24.13 26.67) (diameter 0) (color 0 0 0 0)
  2357. (uuid db532ed2-914c-41b4-b389-de2bf235d0a7)
  2358. )
  2359. (junction (at 27.94 199.39) (diameter 0) (color 0 0 0 0)
  2360. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  2361. )
  2362. (junction (at 172.72 92.71) (diameter 0) (color 0 0 0 0)
  2363. (uuid dbbbcbf5-ed09-4c20-902c-70f108158aba)
  2364. )
  2365. (junction (at 379.73 168.91) (diameter 0) (color 0 0 0 0)
  2366. (uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1)
  2367. )
  2368. (junction (at 185.42 250.19) (diameter 0) (color 0 0 0 0)
  2369. (uuid e091e263-c616-48ef-a460-465c70218987)
  2370. )
  2371. (junction (at 119.38 57.15) (diameter 0) (color 0 0 0 0)
  2372. (uuid e2b24e25-1a0d-434a-876b-c595b47d80d2)
  2373. )
  2374. (junction (at 116.84 250.19) (diameter 0) (color 0 0 0 0)
  2375. (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
  2376. )
  2377. (junction (at 67.31 26.67) (diameter 0) (color 0 0 0 0)
  2378. (uuid e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6)
  2379. )
  2380. (junction (at 214.63 207.01) (diameter 0) (color 0 0 0 0)
  2381. (uuid ea6e56c6-8250-47d0-a0e8-238d8f05bf5b)
  2382. )
  2383. (junction (at 88.9 250.19) (diameter 0) (color 0 0 0 0)
  2384. (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
  2385. )
  2386. (junction (at 57.15 60.96) (diameter 0) (color 0 0 0 0)
  2387. (uuid ef3dded2-639c-45d4-8076-84cfb5189592)
  2388. )
  2389. (junction (at 172.72 62.23) (diameter 0) (color 0 0 0 0)
  2390. (uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
  2391. )
  2392. (junction (at 48.26 38.1) (diameter 0) (color 0 0 0 0)
  2393. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  2394. )
  2395. (junction (at 347.98 204.47) (diameter 0) (color 0 0 0 0)
  2396. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  2397. )
  2398. (junction (at 256.54 234.95) (diameter 0) (color 0 0 0 0)
  2399. (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
  2400. )
  2401. (junction (at 207.01 134.62) (diameter 0) (color 0 0 0 0)
  2402. (uuid fdc57161-f7f8-4584-b0ec-8c1aa24339c6)
  2403. )
  2404. (junction (at 30.48 99.06) (diameter 0) (color 0 0 0 0)
  2405. (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
  2406. )
  2407. (no_connect (at 96.52 43.18) (uuid 011ee658-718d-416a-85fd-961729cd1ee5))
  2408. (no_connect (at 231.14 182.88) (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
  2409. (no_connect (at 132.08 77.47) (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17))
  2410. (no_connect (at 132.08 74.93) (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
  2411. (no_connect (at 304.8 242.57) (uuid 1a813eeb-ee58-4579-81e1-3f9a7227213c))
  2412. (no_connect (at 96.52 27.94) (uuid 29bb7297-26fb-4776-9266-2355d022bab0))
  2413. (no_connect (at 340.36 45.72) (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f))
  2414. (no_connect (at 132.08 80.01) (uuid 4344bc11-e822-474b-8d61-d12211e719b1))
  2415. (no_connect (at 340.36 48.26) (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48))
  2416. (no_connect (at 85.09 27.94) (uuid 5c30b9b4-3014-4f50-9329-27a539b67e01))
  2417. (no_connect (at 111.76 69.85) (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
  2418. (no_connect (at 53.34 91.44) (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b))
  2419. (no_connect (at 77.47 199.39) (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa))
  2420. (no_connect (at 85.09 43.18) (uuid 96de0051-7945-413a-9219-1ab367546962))
  2421. (no_connect (at 378.46 48.26) (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e))
  2422. (no_connect (at 135.89 46.99) (uuid b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
  2423. (no_connect (at 119.38 43.18) (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
  2424. (no_connect (at 107.95 43.18) (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054))
  2425. (no_connect (at 53.34 88.9) (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21))
  2426. (no_connect (at 147.32 46.99) (uuid ce3f834f-337d-4957-8d02-e900d7024614))
  2427. (no_connect (at 340.36 43.18) (uuid d554632b-6dd0-47f8-b59b-3ce25177ca3e))
  2428. (no_connect (at 132.08 82.55) (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa))
  2429. (no_connect (at 107.95 27.94) (uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b))
  2430. (no_connect (at 41.91 196.85) (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63))
  2431. (wire (pts (xy 88.9 240.03) (xy 88.9 250.19))
  2432. (stroke (width 0) (type default) (color 0 0 0 0))
  2433. (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
  2434. )
  2435. (wire (pts (xy 220.98 242.57) (xy 233.68 242.57))
  2436. (stroke (width 0) (type default) (color 0 0 0 0))
  2437. (uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
  2438. )
  2439. (wire (pts (xy 231.14 180.34) (xy 240.03 180.34))
  2440. (stroke (width 0) (type default) (color 0 0 0 0))
  2441. (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76)
  2442. )
  2443. (wire (pts (xy 157.48 234.95) (xy 172.72 234.95))
  2444. (stroke (width 0) (type default) (color 0 0 0 0))
  2445. (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
  2446. )
  2447. (wire (pts (xy 144.78 234.95) (xy 157.48 234.95))
  2448. (stroke (width 0) (type default) (color 0 0 0 0))
  2449. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  2450. )
  2451. (wire (pts (xy 132.08 162.56) (xy 134.62 162.56))
  2452. (stroke (width 0) (type default) (color 0 0 0 0))
  2453. (uuid 041f271a-4e34-41a9-99ff-6e47792d109b)
  2454. )
  2455. (wire (pts (xy 353.06 73.66) (xy 353.06 90.17))
  2456. (stroke (width 0) (type default) (color 0 0 0 0))
  2457. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  2458. )
  2459. (wire (pts (xy 229.87 207.01) (xy 229.87 209.55))
  2460. (stroke (width 0) (type default) (color 0 0 0 0))
  2461. (uuid 0476c30e-6498-4edb-86a5-14460aba01fe)
  2462. )
  2463. (wire (pts (xy 321.31 167.64) (xy 323.85 167.64))
  2464. (stroke (width 0) (type default) (color 0 0 0 0))
  2465. (uuid 04d60995-4f82-4f17-8f82-2f27a0a779cc)
  2466. )
  2467. (wire (pts (xy 121.92 62.23) (xy 121.92 57.15))
  2468. (stroke (width 0) (type default) (color 0 0 0 0))
  2469. (uuid 051b8cb0-ae77-4e09-98a7-bf2103319e66)
  2470. )
  2471. (wire (pts (xy 228.6 234.95) (xy 241.3 234.95))
  2472. (stroke (width 0) (type default) (color 0 0 0 0))
  2473. (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
  2474. )
  2475. (wire (pts (xy 53.34 68.58) (xy 77.47 68.58))
  2476. (stroke (width 0) (type default) (color 0 0 0 0))
  2477. (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
  2478. )
  2479. (wire (pts (xy 207.01 124.46) (xy 207.01 127))
  2480. (stroke (width 0) (type default) (color 0 0 0 0))
  2481. (uuid 08da8f18-02c3-4a28-a400-670f01755980)
  2482. )
  2483. (wire (pts (xy 207.01 137.16) (xy 207.01 142.24))
  2484. (stroke (width 0) (type default) (color 0 0 0 0))
  2485. (uuid 0938c137-668b-4d2f-b92b-cadb1df72bdb)
  2486. )
  2487. (wire (pts (xy 241.3 125.73) (xy 241.3 123.19))
  2488. (stroke (width 0) (type default) (color 0 0 0 0))
  2489. (uuid 094dc71e-7ea9-4e30-8ba7-749216ec2a8b)
  2490. )
  2491. (wire (pts (xy 196.85 172.72) (xy 201.93 172.72))
  2492. (stroke (width 0) (type default) (color 0 0 0 0))
  2493. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  2494. )
  2495. (wire (pts (xy 81.28 198.12) (xy 78.74 198.12))
  2496. (stroke (width 0) (type default) (color 0 0 0 0))
  2497. (uuid 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2)
  2498. )
  2499. (wire (pts (xy 36.83 194.31) (xy 36.83 191.77))
  2500. (stroke (width 0) (type default) (color 0 0 0 0))
  2501. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  2502. )
  2503. (wire (pts (xy 132.08 175.26) (xy 134.62 175.26))
  2504. (stroke (width 0) (type default) (color 0 0 0 0))
  2505. (uuid 0b6339f2-86ea-4933-8f02-a611227d29bf)
  2506. )
  2507. (wire (pts (xy 377.19 181.61) (xy 383.54 181.61))
  2508. (stroke (width 0) (type default) (color 0 0 0 0))
  2509. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  2510. )
  2511. (wire (pts (xy 223.52 69.85) (xy 223.52 71.12))
  2512. (stroke (width 0) (type default) (color 0 0 0 0))
  2513. (uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef)
  2514. )
  2515. (wire (pts (xy 151.13 134.62) (xy 156.21 134.62))
  2516. (stroke (width 0) (type default) (color 0 0 0 0))
  2517. (uuid 0c9bbc06-f1c0-4359-8448-9c515b32a886)
  2518. )
  2519. (wire (pts (xy 45.72 134.62) (xy 62.23 134.62))
  2520. (stroke (width 0) (type default) (color 0 0 0 0))
  2521. (uuid 0cc094e7-c1c0-457d-bd94-3db91c23be55)
  2522. )
  2523. (wire (pts (xy 351.79 209.55) (xy 347.98 209.55))
  2524. (stroke (width 0) (type default) (color 0 0 0 0))
  2525. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  2526. )
  2527. (wire (pts (xy 40.64 29.21) (xy 33.02 29.21))
  2528. (stroke (width 0) (type default) (color 0 0 0 0))
  2529. (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
  2530. )
  2531. (wire (pts (xy 116.84 250.19) (xy 129.54 250.19))
  2532. (stroke (width 0) (type default) (color 0 0 0 0))
  2533. (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
  2534. )
  2535. (wire (pts (xy 105.41 62.23) (xy 105.41 66.04))
  2536. (stroke (width 0) (type default) (color 0 0 0 0))
  2537. (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
  2538. )
  2539. (wire (pts (xy 137.16 242.57) (xy 149.86 242.57))
  2540. (stroke (width 0) (type default) (color 0 0 0 0))
  2541. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  2542. )
  2543. (polyline (pts (xy 208.28 49.53) (xy 208.28 115.57))
  2544. (stroke (width 0) (type default) (color 0 0 0 0))
  2545. (uuid 1053b01a-057e-4e79-a21c-42780a737ea9)
  2546. )
  2547. (polyline (pts (xy 12.7 218.44) (xy 307.34 218.44))
  2548. (stroke (width 0) (type default) (color 0 0 0 0))
  2549. (uuid 105d44ff-63b9-4299-9078-473af583971a)
  2550. )
  2551. (wire (pts (xy 378.46 66.04) (xy 398.78 66.04))
  2552. (stroke (width 0) (type default) (color 0 0 0 0))
  2553. (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa)
  2554. )
  2555. (wire (pts (xy 54.61 242.57) (xy 71.12 242.57))
  2556. (stroke (width 0) (type default) (color 0 0 0 0))
  2557. (uuid 10fa1a8c-62cb-4b8f-b916-b18d737ff71b)
  2558. )
  2559. (wire (pts (xy 48.26 38.1) (xy 58.42 38.1))
  2560. (stroke (width 0) (type default) (color 0 0 0 0))
  2561. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  2562. )
  2563. (wire (pts (xy 200.66 250.19) (xy 213.36 250.19))
  2564. (stroke (width 0) (type default) (color 0 0 0 0))
  2565. (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
  2566. )
  2567. (wire (pts (xy 156.21 134.62) (xy 166.37 134.62))
  2568. (stroke (width 0) (type default) (color 0 0 0 0))
  2569. (uuid 15a5a11b-0ea1-4f6e-b356-cc2d530615ed)
  2570. )
  2571. (wire (pts (xy 378.46 68.58) (xy 403.86 68.58))
  2572. (stroke (width 0) (type default) (color 0 0 0 0))
  2573. (uuid 15ea3484-2685-47cb-9e01-ec01c6d477b8)
  2574. )
  2575. (wire (pts (xy 241.3 250.19) (xy 256.54 250.19))
  2576. (stroke (width 0) (type default) (color 0 0 0 0))
  2577. (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
  2578. )
  2579. (wire (pts (xy 175.26 62.23) (xy 175.26 64.77))
  2580. (stroke (width 0) (type default) (color 0 0 0 0))
  2581. (uuid 165f4d8d-26a9-4cf2-a8d6-9936cd983be4)
  2582. )
  2583. (wire (pts (xy 38.1 99.06) (xy 38.1 100.33))
  2584. (stroke (width 0) (type default) (color 0 0 0 0))
  2585. (uuid 16d5bf81-590a-4149-97e0-64f3b3ad6f52)
  2586. )
  2587. (wire (pts (xy 269.24 250.19) (xy 284.48 250.19))
  2588. (stroke (width 0) (type default) (color 0 0 0 0))
  2589. (uuid 180245d9-4a3f-4d1b-adcc-b4eafac722e0)
  2590. )
  2591. (wire (pts (xy 116.84 240.03) (xy 116.84 250.19))
  2592. (stroke (width 0) (type default) (color 0 0 0 0))
  2593. (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
  2594. )
  2595. (wire (pts (xy 26.67 26.67) (xy 24.13 26.67))
  2596. (stroke (width 0) (type default) (color 0 0 0 0))
  2597. (uuid 18dee026-9999-4f10-8c36-736131349406)
  2598. )
  2599. (wire (pts (xy 351.79 189.23) (xy 336.55 189.23))
  2600. (stroke (width 0) (type default) (color 0 0 0 0))
  2601. (uuid 1b023dd4-5185-4576-b544-68a05b9c360b)
  2602. )
  2603. (wire (pts (xy 176.53 204.47) (xy 195.58 204.47))
  2604. (stroke (width 0) (type default) (color 0 0 0 0))
  2605. (uuid 1cacb878-9da4-41fc-aa80-018bc841e19a)
  2606. )
  2607. (wire (pts (xy 241.3 133.35) (xy 241.3 130.81))
  2608. (stroke (width 0) (type default) (color 0 0 0 0))
  2609. (uuid 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b)
  2610. )
  2611. (polyline (pts (xy 313.69 234.95) (xy 313.69 148.59))
  2612. (stroke (width 0) (type default) (color 0 0 0 0))
  2613. (uuid 1d9dc91c-3457-4ca5-8e42-43be60ae0831)
  2614. )
  2615. (wire (pts (xy 53.34 66.04) (xy 83.82 66.04))
  2616. (stroke (width 0) (type default) (color 0 0 0 0))
  2617. (uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
  2618. )
  2619. (wire (pts (xy 200.66 240.03) (xy 200.66 250.19))
  2620. (stroke (width 0) (type default) (color 0 0 0 0))
  2621. (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
  2622. )
  2623. (wire (pts (xy 246.38 83.82) (xy 229.87 83.82))
  2624. (stroke (width 0) (type default) (color 0 0 0 0))
  2625. (uuid 2028d85e-9e27-4758-8c0b-559fad072813)
  2626. )
  2627. (wire (pts (xy 33.02 35.56) (xy 33.02 38.1))
  2628. (stroke (width 0) (type default) (color 0 0 0 0))
  2629. (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
  2630. )
  2631. (wire (pts (xy 231.14 190.5) (xy 233.68 190.5))
  2632. (stroke (width 0) (type default) (color 0 0 0 0))
  2633. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  2634. )
  2635. (wire (pts (xy 330.2 200.66) (xy 336.55 200.66))
  2636. (stroke (width 0) (type default) (color 0 0 0 0))
  2637. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  2638. )
  2639. (wire (pts (xy 377.19 209.55) (xy 381 209.55))
  2640. (stroke (width 0) (type default) (color 0 0 0 0))
  2641. (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
  2642. )
  2643. (wire (pts (xy 166.37 127) (xy 170.18 127))
  2644. (stroke (width 0) (type default) (color 0 0 0 0))
  2645. (uuid 22ab392d-1989-4185-9178-8083812ea067)
  2646. )
  2647. (wire (pts (xy 27.94 199.39) (xy 27.94 201.93))
  2648. (stroke (width 0) (type default) (color 0 0 0 0))
  2649. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  2650. )
  2651. (wire (pts (xy 195.58 209.55) (xy 208.28 209.55))
  2652. (stroke (width 0) (type default) (color 0 0 0 0))
  2653. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  2654. )
  2655. (wire (pts (xy 195.58 185.42) (xy 195.58 196.85))
  2656. (stroke (width 0) (type default) (color 0 0 0 0))
  2657. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  2658. )
  2659. (wire (pts (xy 176.53 181.61) (xy 184.15 181.61))
  2660. (stroke (width 0) (type default) (color 0 0 0 0))
  2661. (uuid 26bc8641-9bca-4204-9709-deedbe202a36)
  2662. )
  2663. (wire (pts (xy 231.14 193.04) (xy 233.68 193.04))
  2664. (stroke (width 0) (type default) (color 0 0 0 0))
  2665. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  2666. )
  2667. (wire (pts (xy 233.68 175.26) (xy 231.14 175.26))
  2668. (stroke (width 0) (type default) (color 0 0 0 0))
  2669. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  2670. )
  2671. (wire (pts (xy 323.85 167.64) (xy 332.74 167.64))
  2672. (stroke (width 0) (type default) (color 0 0 0 0))
  2673. (uuid 28b01cd2-da3a-46ec-8825-b0f31a0b8987)
  2674. )
  2675. (wire (pts (xy 189.23 162.56) (xy 189.23 160.02))
  2676. (stroke (width 0) (type default) (color 0 0 0 0))
  2677. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  2678. )
  2679. (wire (pts (xy 189.23 85.09) (xy 201.93 85.09))
  2680. (stroke (width 0) (type default) (color 0 0 0 0))
  2681. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  2682. )
  2683. (wire (pts (xy 158.75 186.69) (xy 163.83 186.69))
  2684. (stroke (width 0) (type default) (color 0 0 0 0))
  2685. (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
  2686. )
  2687. (wire (pts (xy 81.28 77.47) (xy 83.82 77.47))
  2688. (stroke (width 0) (type default) (color 0 0 0 0))
  2689. (uuid 2a1de22d-6451-488d-af77-0bf8841bd695)
  2690. )
  2691. (wire (pts (xy 379.73 168.91) (xy 393.7 168.91))
  2692. (stroke (width 0) (type default) (color 0 0 0 0))
  2693. (uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
  2694. )
  2695. (wire (pts (xy 111.76 74.93) (xy 99.06 74.93))
  2696. (stroke (width 0) (type default) (color 0 0 0 0))
  2697. (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
  2698. )
  2699. (wire (pts (xy 394.97 50.8) (xy 378.46 50.8))
  2700. (stroke (width 0) (type default) (color 0 0 0 0))
  2701. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  2702. )
  2703. (wire (pts (xy 78.74 194.31) (xy 101.6 194.31))
  2704. (stroke (width 0) (type default) (color 0 0 0 0))
  2705. (uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
  2706. )
  2707. (wire (pts (xy 365.76 78.74) (xy 387.35 78.74))
  2708. (stroke (width 0) (type default) (color 0 0 0 0))
  2709. (uuid 2c488362-c230-4f6d-82f9-a229b1171a23)
  2710. )
  2711. (wire (pts (xy 383.54 181.61) (xy 383.54 190.5))
  2712. (stroke (width 0) (type default) (color 0 0 0 0))
  2713. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  2714. )
  2715. (wire (pts (xy 172.72 127) (xy 172.72 135.89))
  2716. (stroke (width 0) (type default) (color 0 0 0 0))
  2717. (uuid 2dc66f7e-d85d-4081-ae71-fd8851d6aeda)
  2718. )
  2719. (wire (pts (xy 81.28 193.04) (xy 78.74 193.04))
  2720. (stroke (width 0) (type default) (color 0 0 0 0))
  2721. (uuid 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5)
  2722. )
  2723. (wire (pts (xy 33.02 30.48) (xy 33.02 29.21))
  2724. (stroke (width 0) (type default) (color 0 0 0 0))
  2725. (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
  2726. )
  2727. (wire (pts (xy 78.74 195.58) (xy 78.74 194.31))
  2728. (stroke (width 0) (type default) (color 0 0 0 0))
  2729. (uuid 315d2b15-cfe6-4672-b3ad-24773f3df12c)
  2730. )
  2731. (wire (pts (xy 326.39 33.02) (xy 317.5 33.02))
  2732. (stroke (width 0) (type default) (color 0 0 0 0))
  2733. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  2734. )
  2735. (wire (pts (xy 351.79 184.15) (xy 336.55 184.15))
  2736. (stroke (width 0) (type default) (color 0 0 0 0))
  2737. (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8)
  2738. )
  2739. (polyline (pts (xy 307.34 218.44) (xy 307.34 266.7))
  2740. (stroke (width 0) (type default) (color 0 0 0 0))
  2741. (uuid 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a)
  2742. )
  2743. (wire (pts (xy 347.98 201.93) (xy 351.79 201.93))
  2744. (stroke (width 0) (type default) (color 0 0 0 0))
  2745. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  2746. )
  2747. (wire (pts (xy 172.72 234.95) (xy 185.42 234.95))
  2748. (stroke (width 0) (type default) (color 0 0 0 0))
  2749. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  2750. )
  2751. (wire (pts (xy 321.31 172.72) (xy 323.85 172.72))
  2752. (stroke (width 0) (type default) (color 0 0 0 0))
  2753. (uuid 34ddb753-e57c-4ca8-a67b-d7cdf62cae93)
  2754. )
  2755. (wire (pts (xy 134.62 175.26) (xy 137.16 175.26))
  2756. (stroke (width 0) (type default) (color 0 0 0 0))
  2757. (uuid 3522154f-e822-4bda-a36b-fdb9bf89fc79)
  2758. )
  2759. (wire (pts (xy 83.82 151.13) (xy 71.12 151.13))
  2760. (stroke (width 0) (type default) (color 0 0 0 0))
  2761. (uuid 35343f32-90ff-4059-a108-111fb444c3d2)
  2762. )
  2763. (wire (pts (xy 163.83 186.69) (xy 167.64 186.69))
  2764. (stroke (width 0) (type default) (color 0 0 0 0))
  2765. (uuid 355ced6c-c08a-4586-9a09-7a9c624536f6)
  2766. )
  2767. (wire (pts (xy 121.92 57.15) (xy 119.38 57.15))
  2768. (stroke (width 0) (type default) (color 0 0 0 0))
  2769. (uuid 35c09d1f-2914-4d1e-a002-df30af772f3b)
  2770. )
  2771. (wire (pts (xy 189.23 74.93) (xy 189.23 85.09))
  2772. (stroke (width 0) (type default) (color 0 0 0 0))
  2773. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  2774. )
  2775. (wire (pts (xy 336.55 27.94) (xy 326.39 27.94))
  2776. (stroke (width 0) (type default) (color 0 0 0 0))
  2777. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  2778. )
  2779. (wire (pts (xy 347.98 207.01) (xy 347.98 204.47))
  2780. (stroke (width 0) (type default) (color 0 0 0 0))
  2781. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  2782. )
  2783. (wire (pts (xy 336.55 35.56) (xy 336.55 27.94))
  2784. (stroke (width 0) (type default) (color 0 0 0 0))
  2785. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  2786. )
  2787. (wire (pts (xy 172.72 250.19) (xy 185.42 250.19))
  2788. (stroke (width 0) (type default) (color 0 0 0 0))
  2789. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  2790. )
  2791. (wire (pts (xy 347.98 209.55) (xy 347.98 207.01))
  2792. (stroke (width 0) (type default) (color 0 0 0 0))
  2793. (uuid 386ad9e3-71fa-420f-8722-88548b024fc5)
  2794. )
  2795. (wire (pts (xy 185.42 250.19) (xy 200.66 250.19))
  2796. (stroke (width 0) (type default) (color 0 0 0 0))
  2797. (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
  2798. )
  2799. (wire (pts (xy 171.45 204.47) (xy 147.32 204.47))
  2800. (stroke (width 0) (type default) (color 0 0 0 0))
  2801. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  2802. )
  2803. (wire (pts (xy 48.26 36.83) (xy 48.26 38.1))
  2804. (stroke (width 0) (type default) (color 0 0 0 0))
  2805. (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
  2806. )
  2807. (wire (pts (xy 340.36 53.34) (xy 325.12 53.34))
  2808. (stroke (width 0) (type default) (color 0 0 0 0))
  2809. (uuid 3b9c5ffd-e59b-402d-8c5e-052f7ca643a4)
  2810. )
  2811. (wire (pts (xy 184.15 186.69) (xy 184.15 187.96))
  2812. (stroke (width 0) (type default) (color 0 0 0 0))
  2813. (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)
  2814. )
  2815. (wire (pts (xy 30.48 240.03) (xy 30.48 250.19))
  2816. (stroke (width 0) (type default) (color 0 0 0 0))
  2817. (uuid 3c121a93-b189-409b-a104-2bdd37ff0b51)
  2818. )
  2819. (wire (pts (xy 378.46 40.64) (xy 401.32 40.64))
  2820. (stroke (width 0) (type default) (color 0 0 0 0))
  2821. (uuid 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0)
  2822. )
  2823. (wire (pts (xy 137.16 168.91) (xy 137.16 170.18))
  2824. (stroke (width 0) (type default) (color 0 0 0 0))
  2825. (uuid 3e992892-9e8e-4327-89a1-e679f4216a13)
  2826. )
  2827. (wire (pts (xy 158.75 181.61) (xy 167.64 181.61))
  2828. (stroke (width 0) (type default) (color 0 0 0 0))
  2829. (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333)
  2830. )
  2831. (wire (pts (xy 351.79 176.53) (xy 336.55 176.53))
  2832. (stroke (width 0) (type default) (color 0 0 0 0))
  2833. (uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
  2834. )
  2835. (wire (pts (xy 30.48 256.54) (xy 30.48 250.19))
  2836. (stroke (width 0) (type default) (color 0 0 0 0))
  2837. (uuid 3f1ab70d-3263-42b5-9c61-0360188ff2b7)
  2838. )
  2839. (wire (pts (xy 233.68 190.5) (xy 233.68 193.04))
  2840. (stroke (width 0) (type default) (color 0 0 0 0))
  2841. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  2842. )
  2843. (wire (pts (xy 172.72 168.91) (xy 172.72 167.64))
  2844. (stroke (width 0) (type default) (color 0 0 0 0))
  2845. (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7)
  2846. )
  2847. (wire (pts (xy 81.28 195.58) (xy 78.74 195.58))
  2848. (stroke (width 0) (type default) (color 0 0 0 0))
  2849. (uuid 41524d81-a7f7-45af-a8c6-15609b68d1fd)
  2850. )
  2851. (wire (pts (xy 118.11 144.78) (xy 133.35 144.78))
  2852. (stroke (width 0) (type default) (color 0 0 0 0))
  2853. (uuid 41ab46ed-40f5-461d-81aa-1f02dc069a49)
  2854. )
  2855. (wire (pts (xy 201.93 172.72) (xy 201.93 177.8))
  2856. (stroke (width 0) (type default) (color 0 0 0 0))
  2857. (uuid 42ecdba3-f348-4384-8d4b-cd21e56f3613)
  2858. )
  2859. (wire (pts (xy 233.68 177.8) (xy 233.68 175.26))
  2860. (stroke (width 0) (type default) (color 0 0 0 0))
  2861. (uuid 4346fe55-f906-453a-b81a-1c013104a598)
  2862. )
  2863. (wire (pts (xy 342.9 200.66) (xy 342.9 196.85))
  2864. (stroke (width 0) (type default) (color 0 0 0 0))
  2865. (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
  2866. )
  2867. (wire (pts (xy 207.01 127) (xy 207.01 129.54))
  2868. (stroke (width 0) (type default) (color 0 0 0 0))
  2869. (uuid 444b2eaf-241d-42e5-8717-27a83d099c5b)
  2870. )
  2871. (wire (pts (xy 204.47 175.26) (xy 208.28 175.26))
  2872. (stroke (width 0) (type default) (color 0 0 0 0))
  2873. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  2874. )
  2875. (wire (pts (xy 147.32 181.61) (xy 158.75 181.61))
  2876. (stroke (width 0) (type default) (color 0 0 0 0))
  2877. (uuid 465137b4-f6f7-4d51-9b40-b161947d5cc1)
  2878. )
  2879. (wire (pts (xy 201.93 129.54) (xy 207.01 129.54))
  2880. (stroke (width 0) (type default) (color 0 0 0 0))
  2881. (uuid 469f89fd-f629-46b7-b106-a0088168c9ec)
  2882. )
  2883. (wire (pts (xy 378.46 43.18) (xy 401.32 43.18))
  2884. (stroke (width 0) (type default) (color 0 0 0 0))
  2885. (uuid 47957453-fce7-4d98-833c-e34bb8a852a5)
  2886. )
  2887. (wire (pts (xy 121.92 186.69) (xy 133.35 186.69))
  2888. (stroke (width 0) (type default) (color 0 0 0 0))
  2889. (uuid 47993d80-a37e-426e-90c9-fd54b49ed166)
  2890. )
  2891. (wire (pts (xy 246.38 73.66) (xy 245.11 73.66))
  2892. (stroke (width 0) (type default) (color 0 0 0 0))
  2893. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  2894. )
  2895. (wire (pts (xy 175.26 80.01) (xy 175.26 77.47))
  2896. (stroke (width 0) (type default) (color 0 0 0 0))
  2897. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  2898. )
  2899. (wire (pts (xy 147.32 209.55) (xy 171.45 209.55))
  2900. (stroke (width 0) (type default) (color 0 0 0 0))
  2901. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  2902. )
  2903. (wire (pts (xy 181.61 167.64) (xy 172.72 167.64))
  2904. (stroke (width 0) (type default) (color 0 0 0 0))
  2905. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  2906. )
  2907. (wire (pts (xy 213.36 250.19) (xy 228.6 250.19))
  2908. (stroke (width 0) (type default) (color 0 0 0 0))
  2909. (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)
  2910. )
  2911. (wire (pts (xy 147.32 191.77) (xy 163.83 191.77))
  2912. (stroke (width 0) (type default) (color 0 0 0 0))
  2913. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  2914. )
  2915. (wire (pts (xy 204.47 162.56) (xy 233.68 162.56))
  2916. (stroke (width 0) (type default) (color 0 0 0 0))
  2917. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  2918. )
  2919. (wire (pts (xy 203.2 187.96) (xy 208.28 187.96))
  2920. (stroke (width 0) (type default) (color 0 0 0 0))
  2921. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  2922. )
  2923. (wire (pts (xy 57.15 234.95) (xy 54.61 234.95))
  2924. (stroke (width 0) (type default) (color 0 0 0 0))
  2925. (uuid 4d51bc15-1f84-46be-8e16-e836b10f854e)
  2926. )
  2927. (wire (pts (xy 175.26 74.93) (xy 189.23 74.93))
  2928. (stroke (width 0) (type default) (color 0 0 0 0))
  2929. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  2930. )
  2931. (wire (pts (xy 340.36 58.42) (xy 325.12 58.42))
  2932. (stroke (width 0) (type default) (color 0 0 0 0))
  2933. (uuid 4ef07d45-f940-4cb6-bb96-2ddec13fd099)
  2934. )
  2935. (wire (pts (xy 200.66 234.95) (xy 213.36 234.95))
  2936. (stroke (width 0) (type default) (color 0 0 0 0))
  2937. (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
  2938. )
  2939. (wire (pts (xy 77.47 194.31) (xy 78.74 194.31))
  2940. (stroke (width 0) (type default) (color 0 0 0 0))
  2941. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  2942. )
  2943. (wire (pts (xy 78.74 196.85) (xy 101.6 196.85))
  2944. (stroke (width 0) (type default) (color 0 0 0 0))
  2945. (uuid 51f5536d-48d2-4807-be44-93f427952b0e)
  2946. )
  2947. (wire (pts (xy 121.92 191.77) (xy 133.35 191.77))
  2948. (stroke (width 0) (type default) (color 0 0 0 0))
  2949. (uuid 54093c93-5e7e-4c8d-8d94-40c077747c12)
  2950. )
  2951. (wire (pts (xy 269.24 234.95) (xy 284.48 234.95))
  2952. (stroke (width 0) (type default) (color 0 0 0 0))
  2953. (uuid 54212c01-b363-47b8-a145-45c40df316f4)
  2954. )
  2955. (wire (pts (xy 172.72 62.23) (xy 175.26 62.23))
  2956. (stroke (width 0) (type default) (color 0 0 0 0))
  2957. (uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
  2958. )
  2959. (wire (pts (xy 214.63 207.01) (xy 219.71 207.01))
  2960. (stroke (width 0) (type default) (color 0 0 0 0))
  2961. (uuid 562b7df8-cdaa-48ed-bd95-bf2fa6dac339)
  2962. )
  2963. (wire (pts (xy 207.01 134.62) (xy 207.01 137.16))
  2964. (stroke (width 0) (type default) (color 0 0 0 0))
  2965. (uuid 5698a460-6e24-4857-84d8-4a43acd2325d)
  2966. )
  2967. (wire (pts (xy 151.13 140.97) (xy 156.21 140.97))
  2968. (stroke (width 0) (type default) (color 0 0 0 0))
  2969. (uuid 58a87288-e2bf-4c88-9871-a753efc69e9d)
  2970. )
  2971. (wire (pts (xy 175.26 90.17) (xy 175.26 92.71))
  2972. (stroke (width 0) (type default) (color 0 0 0 0))
  2973. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  2974. )
  2975. (wire (pts (xy 342.9 167.64) (xy 332.74 167.64))
  2976. (stroke (width 0) (type default) (color 0 0 0 0))
  2977. (uuid 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
  2978. )
  2979. (wire (pts (xy 78.74 198.12) (xy 78.74 196.85))
  2980. (stroke (width 0) (type default) (color 0 0 0 0))
  2981. (uuid 5a319d05-1a85-43fe-a179-ebcee7212a03)
  2982. )
  2983. (wire (pts (xy 394.97 58.42) (xy 378.46 58.42))
  2984. (stroke (width 0) (type default) (color 0 0 0 0))
  2985. (uuid 5a33f5a4-a470-4c04-9e2d-532b5f01a5d6)
  2986. )
  2987. (wire (pts (xy 196.85 137.16) (xy 181.61 137.16))
  2988. (stroke (width 0) (type default) (color 0 0 0 0))
  2989. (uuid 5a397f61-35c4-4c18-9dcd-73a2d44cc9af)
  2990. )
  2991. (wire (pts (xy 133.35 128.27) (xy 133.35 130.81))
  2992. (stroke (width 0) (type default) (color 0 0 0 0))
  2993. (uuid 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
  2994. )
  2995. (wire (pts (xy 347.98 212.09) (xy 347.98 209.55))
  2996. (stroke (width 0) (type default) (color 0 0 0 0))
  2997. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  2998. )
  2999. (wire (pts (xy 231.14 177.8) (xy 233.68 177.8))
  3000. (stroke (width 0) (type default) (color 0 0 0 0))
  3001. (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861)
  3002. )
  3003. (wire (pts (xy 334.01 71.12) (xy 334.01 68.58))
  3004. (stroke (width 0) (type default) (color 0 0 0 0))
  3005. (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236)
  3006. )
  3007. (wire (pts (xy 132.08 87.63) (xy 148.59 87.63))
  3008. (stroke (width 0) (type default) (color 0 0 0 0))
  3009. (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
  3010. )
  3011. (wire (pts (xy 208.28 193.04) (xy 208.28 209.55))
  3012. (stroke (width 0) (type default) (color 0 0 0 0))
  3013. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  3014. )
  3015. (wire (pts (xy 116.84 234.95) (xy 129.54 234.95))
  3016. (stroke (width 0) (type default) (color 0 0 0 0))
  3017. (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
  3018. )
  3019. (wire (pts (xy 378.46 63.5) (xy 394.97 63.5))
  3020. (stroke (width 0) (type default) (color 0 0 0 0))
  3021. (uuid 6133fb54-5524-482e-9ae2-adbf29aced9e)
  3022. )
  3023. (polyline (pts (xy 302.26 99.06) (xy 302.26 12.7))
  3024. (stroke (width 0) (type default) (color 0 0 0 0))
  3025. (uuid 61a18b62-4111-4a9d-8fca-04c4c6f90cc3)
  3026. )
  3027. (wire (pts (xy 185.42 69.85) (xy 195.58 69.85))
  3028. (stroke (width 0) (type default) (color 0 0 0 0))
  3029. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3030. )
  3031. (wire (pts (xy 340.36 63.5) (xy 323.85 63.5))
  3032. (stroke (width 0) (type default) (color 0 0 0 0))
  3033. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  3034. )
  3035. (wire (pts (xy 379.73 173.99) (xy 377.19 173.99))
  3036. (stroke (width 0) (type default) (color 0 0 0 0))
  3037. (uuid 665081dc-8354-4d41-8855-bde8901aee4c)
  3038. )
  3039. (wire (pts (xy 231.14 185.42) (xy 256.54 185.42))
  3040. (stroke (width 0) (type default) (color 0 0 0 0))
  3041. (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec)
  3042. )
  3043. (wire (pts (xy 45.72 137.16) (xy 45.72 134.62))
  3044. (stroke (width 0) (type default) (color 0 0 0 0))
  3045. (uuid 680c3e83-f590-4924-85a1-36d51b076683)
  3046. )
  3047. (wire (pts (xy 53.34 78.74) (xy 67.31 78.74))
  3048. (stroke (width 0) (type default) (color 0 0 0 0))
  3049. (uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
  3050. )
  3051. (wire (pts (xy 132.08 128.27) (xy 133.35 128.27))
  3052. (stroke (width 0) (type default) (color 0 0 0 0))
  3053. (uuid 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f)
  3054. )
  3055. (wire (pts (xy 130.81 135.89) (xy 130.81 142.24))
  3056. (stroke (width 0) (type default) (color 0 0 0 0))
  3057. (uuid 6a25c4e1-7129-430c-892b-6eecb6ffdb47)
  3058. )
  3059. (wire (pts (xy 336.55 205.74) (xy 336.55 212.09))
  3060. (stroke (width 0) (type default) (color 0 0 0 0))
  3061. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  3062. )
  3063. (wire (pts (xy 77.47 73.66) (xy 77.47 77.47))
  3064. (stroke (width 0) (type default) (color 0 0 0 0))
  3065. (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e)
  3066. )
  3067. (wire (pts (xy 195.58 77.47) (xy 195.58 69.85))
  3068. (stroke (width 0) (type default) (color 0 0 0 0))
  3069. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3070. )
  3071. (wire (pts (xy 38.1 99.06) (xy 30.48 99.06))
  3072. (stroke (width 0) (type default) (color 0 0 0 0))
  3073. (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
  3074. )
  3075. (wire (pts (xy 340.36 50.8) (xy 325.12 50.8))
  3076. (stroke (width 0) (type default) (color 0 0 0 0))
  3077. (uuid 6b8c153e-62fe-42fb-aa7f-caef740ef6fd)
  3078. )
  3079. (wire (pts (xy 351.79 204.47) (xy 347.98 204.47))
  3080. (stroke (width 0) (type default) (color 0 0 0 0))
  3081. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  3082. )
  3083. (wire (pts (xy 321.31 165.1) (xy 321.31 167.64))
  3084. (stroke (width 0) (type default) (color 0 0 0 0))
  3085. (uuid 6f44a349-1ba9-4965-b217-aa1589a07228)
  3086. )
  3087. (wire (pts (xy 166.37 129.54) (xy 166.37 127))
  3088. (stroke (width 0) (type default) (color 0 0 0 0))
  3089. (uuid 6fd21292-6577-40e1-bbda-18906b5e9f6f)
  3090. )
  3091. (polyline (pts (xy 110.49 176.53) (xy 12.7 176.53))
  3092. (stroke (width 0) (type default) (color 0 0 0 0))
  3093. (uuid 7043f61a-4f1e-4cab-9031-a6449e41a893)
  3094. )
  3095. (wire (pts (xy 196.85 132.08) (xy 181.61 132.08))
  3096. (stroke (width 0) (type default) (color 0 0 0 0))
  3097. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3098. )
  3099. (wire (pts (xy 185.42 234.95) (xy 200.66 234.95))
  3100. (stroke (width 0) (type default) (color 0 0 0 0))
  3101. (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
  3102. )
  3103. (polyline (pts (xy 313.69 148.59) (xy 419.1 148.59))
  3104. (stroke (width 0) (type default) (color 0 0 0 0))
  3105. (uuid 717b25a7-c9c2-4f6f-b744-a96113325c99)
  3106. )
  3107. (wire (pts (xy 77.47 191.77) (xy 78.74 191.77))
  3108. (stroke (width 0) (type default) (color 0 0 0 0))
  3109. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  3110. )
  3111. (wire (pts (xy 58.42 29.21) (xy 55.88 29.21))
  3112. (stroke (width 0) (type default) (color 0 0 0 0))
  3113. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  3114. )
  3115. (wire (pts (xy 340.36 40.64) (xy 325.12 40.64))
  3116. (stroke (width 0) (type default) (color 0 0 0 0))
  3117. (uuid 720ec55a-7c69-4064-b792-ef3dbba4eab9)
  3118. )
  3119. (wire (pts (xy 172.72 60.96) (xy 172.72 62.23))
  3120. (stroke (width 0) (type default) (color 0 0 0 0))
  3121. (uuid 7247fe96-7885-4063-8282-ea2fd2b28b0d)
  3122. )
  3123. (wire (pts (xy 207.01 127) (xy 201.93 127))
  3124. (stroke (width 0) (type default) (color 0 0 0 0))
  3125. (uuid 7255cbd1-8d38-4545-be9a-7fc5488ef942)
  3126. )
  3127. (wire (pts (xy 233.68 193.04) (xy 233.68 196.85))
  3128. (stroke (width 0) (type default) (color 0 0 0 0))
  3129. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3130. )
  3131. (wire (pts (xy 326.39 27.94) (xy 317.5 27.94))
  3132. (stroke (width 0) (type default) (color 0 0 0 0))
  3133. (uuid 7274c82d-0cb9-47de-b093-7d848f491410)
  3134. )
  3135. (wire (pts (xy 219.71 133.35) (xy 241.3 133.35))
  3136. (stroke (width 0) (type default) (color 0 0 0 0))
  3137. (uuid 72f9157b-77da-4a6d-9880-0711b21f6e23)
  3138. )
  3139. (wire (pts (xy 355.6 73.66) (xy 355.6 96.52))
  3140. (stroke (width 0) (type default) (color 0 0 0 0))
  3141. (uuid 74096bdc-b668-408c-af3a-b048c20bd605)
  3142. )
  3143. (wire (pts (xy 48.26 38.1) (xy 48.26 40.64))
  3144. (stroke (width 0) (type default) (color 0 0 0 0))
  3145. (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
  3146. )
  3147. (wire (pts (xy 340.36 55.88) (xy 325.12 55.88))
  3148. (stroke (width 0) (type default) (color 0 0 0 0))
  3149. (uuid 765684c2-53b3-4ef7-bd1b-7a4a73d87b76)
  3150. )
  3151. (wire (pts (xy 340.36 35.56) (xy 336.55 35.56))
  3152. (stroke (width 0) (type default) (color 0 0 0 0))
  3153. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  3154. )
  3155. (wire (pts (xy 377.19 179.07) (xy 383.54 179.07))
  3156. (stroke (width 0) (type default) (color 0 0 0 0))
  3157. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  3158. )
  3159. (wire (pts (xy 336.55 212.09) (xy 347.98 212.09))
  3160. (stroke (width 0) (type default) (color 0 0 0 0))
  3161. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  3162. )
  3163. (wire (pts (xy 121.92 203.2) (xy 133.35 203.2))
  3164. (stroke (width 0) (type default) (color 0 0 0 0))
  3165. (uuid 77ef8901-6325-4427-901a-4acd9074dd7b)
  3166. )
  3167. (wire (pts (xy 351.79 167.64) (xy 342.9 167.64))
  3168. (stroke (width 0) (type default) (color 0 0 0 0))
  3169. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  3170. )
  3171. (wire (pts (xy 121.92 200.66) (xy 133.35 200.66))
  3172. (stroke (width 0) (type default) (color 0 0 0 0))
  3173. (uuid 7943ed8c-e760-4ace-9c5f-baf5589fae39)
  3174. )
  3175. (wire (pts (xy 284.48 240.03) (xy 284.48 250.19))
  3176. (stroke (width 0) (type default) (color 0 0 0 0))
  3177. (uuid 79770cd5-32d7-429a-8248-0d9e6212231a)
  3178. )
  3179. (wire (pts (xy 276.86 242.57) (xy 289.56 242.57))
  3180. (stroke (width 0) (type default) (color 0 0 0 0))
  3181. (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041)
  3182. )
  3183. (wire (pts (xy 58.42 29.21) (xy 67.31 29.21))
  3184. (stroke (width 0) (type default) (color 0 0 0 0))
  3185. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  3186. )
  3187. (wire (pts (xy 101.6 234.95) (xy 116.84 234.95))
  3188. (stroke (width 0) (type default) (color 0 0 0 0))
  3189. (uuid 7c04618d-9115-4179-b234-a8faf854ea92)
  3190. )
  3191. (wire (pts (xy 347.98 204.47) (xy 347.98 201.93))
  3192. (stroke (width 0) (type default) (color 0 0 0 0))
  3193. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  3194. )
  3195. (wire (pts (xy 379.73 167.64) (xy 379.73 168.91))
  3196. (stroke (width 0) (type default) (color 0 0 0 0))
  3197. (uuid 7df9ce6f-7f38-4582-a049-7f92faf1abc9)
  3198. )
  3199. (wire (pts (xy 124.46 161.29) (xy 134.62 161.29))
  3200. (stroke (width 0) (type default) (color 0 0 0 0))
  3201. (uuid 7e3a0d6b-8b8a-4d56-9a2c-406465e5f45e)
  3202. )
  3203. (wire (pts (xy 340.36 33.02) (xy 326.39 33.02))
  3204. (stroke (width 0) (type default) (color 0 0 0 0))
  3205. (uuid 7f064424-06a6-4f5b-87d6-1970ae527766)
  3206. )
  3207. (polyline (pts (xy 12.7 115.57) (xy 262.89 115.57))
  3208. (stroke (width 0) (type default) (color 0 0 0 0))
  3209. (uuid 80b9a57f-3326-43ca-b6ca-5e911992b3c4)
  3210. )
  3211. (wire (pts (xy 129.54 250.19) (xy 144.78 250.19))
  3212. (stroke (width 0) (type default) (color 0 0 0 0))
  3213. (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
  3214. )
  3215. (wire (pts (xy 172.72 95.25) (xy 172.72 92.71))
  3216. (stroke (width 0) (type default) (color 0 0 0 0))
  3217. (uuid 81ab7ed7-7160-4650-b711-4daa2902dc8b)
  3218. )
  3219. (wire (pts (xy 201.93 134.62) (xy 207.01 134.62))
  3220. (stroke (width 0) (type default) (color 0 0 0 0))
  3221. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  3222. )
  3223. (wire (pts (xy 41.91 194.31) (xy 36.83 194.31))
  3224. (stroke (width 0) (type default) (color 0 0 0 0))
  3225. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  3226. )
  3227. (wire (pts (xy 207.01 129.54) (xy 207.01 132.08))
  3228. (stroke (width 0) (type default) (color 0 0 0 0))
  3229. (uuid 848c6095-3966-404d-9f2a-51150fd8dc54)
  3230. )
  3231. (wire (pts (xy 30.48 99.06) (xy 30.48 104.14))
  3232. (stroke (width 0) (type default) (color 0 0 0 0))
  3233. (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
  3234. )
  3235. (wire (pts (xy 381 214.63) (xy 381 217.17))
  3236. (stroke (width 0) (type default) (color 0 0 0 0))
  3237. (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5)
  3238. )
  3239. (wire (pts (xy 77.47 196.85) (xy 78.74 196.85))
  3240. (stroke (width 0) (type default) (color 0 0 0 0))
  3241. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  3242. )
  3243. (wire (pts (xy 175.26 77.47) (xy 195.58 77.47))
  3244. (stroke (width 0) (type default) (color 0 0 0 0))
  3245. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  3246. )
  3247. (wire (pts (xy 88.9 229.87) (xy 88.9 234.95))
  3248. (stroke (width 0) (type default) (color 0 0 0 0))
  3249. (uuid 88610282-a92d-4c3d-917a-ea95d59e0759)
  3250. )
  3251. (polyline (pts (xy 12.7 49.53) (xy 262.89 49.53))
  3252. (stroke (width 0) (type default) (color 0 0 0 0))
  3253. (uuid 897277a3-b7ce-4d18-8c5f-1c984a246298)
  3254. )
  3255. (wire (pts (xy 351.79 172.72) (xy 351.79 171.45))
  3256. (stroke (width 0) (type default) (color 0 0 0 0))
  3257. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  3258. )
  3259. (wire (pts (xy 368.3 73.66) (xy 379.73 73.66))
  3260. (stroke (width 0) (type default) (color 0 0 0 0))
  3261. (uuid 89df70f4-3579-42b9-861e-6beb04a3b25e)
  3262. )
  3263. (wire (pts (xy 347.98 207.01) (xy 351.79 207.01))
  3264. (stroke (width 0) (type default) (color 0 0 0 0))
  3265. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  3266. )
  3267. (wire (pts (xy 45.72 165.1) (xy 45.72 162.56))
  3268. (stroke (width 0) (type default) (color 0 0 0 0))
  3269. (uuid 8ade7975-64a0-440a-8545-11958836bf48)
  3270. )
  3271. (wire (pts (xy 350.52 73.66) (xy 350.52 90.17))
  3272. (stroke (width 0) (type default) (color 0 0 0 0))
  3273. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  3274. )
  3275. (wire (pts (xy 201.93 177.8) (xy 208.28 177.8))
  3276. (stroke (width 0) (type default) (color 0 0 0 0))
  3277. (uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
  3278. )
  3279. (wire (pts (xy 351.79 168.91) (xy 351.79 167.64))
  3280. (stroke (width 0) (type default) (color 0 0 0 0))
  3281. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  3282. )
  3283. (wire (pts (xy 351.79 196.85) (xy 342.9 196.85))
  3284. (stroke (width 0) (type default) (color 0 0 0 0))
  3285. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  3286. )
  3287. (wire (pts (xy 121.92 96.52) (xy 121.92 92.71))
  3288. (stroke (width 0) (type default) (color 0 0 0 0))
  3289. (uuid 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129)
  3290. )
  3291. (wire (pts (xy 67.31 25.4) (xy 67.31 26.67))
  3292. (stroke (width 0) (type default) (color 0 0 0 0))
  3293. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  3294. )
  3295. (wire (pts (xy 256.54 250.19) (xy 269.24 250.19))
  3296. (stroke (width 0) (type default) (color 0 0 0 0))
  3297. (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
  3298. )
  3299. (wire (pts (xy 379.73 170.18) (xy 379.73 171.45))
  3300. (stroke (width 0) (type default) (color 0 0 0 0))
  3301. (uuid 90d503cf-92b2-4120-a4b0-03a2eddde893)
  3302. )
  3303. (wire (pts (xy 38.1 100.33) (xy 45.72 100.33))
  3304. (stroke (width 0) (type default) (color 0 0 0 0))
  3305. (uuid 90fa0465-7fe5-474b-8e7c-9f955c02a0f6)
  3306. )
  3307. (wire (pts (xy 124.46 177.8) (xy 134.62 177.8))
  3308. (stroke (width 0) (type default) (color 0 0 0 0))
  3309. (uuid 91a4a8ec-12da-4950-8442-6a339f96e296)
  3310. )
  3311. (wire (pts (xy 88.9 234.95) (xy 101.6 234.95))
  3312. (stroke (width 0) (type default) (color 0 0 0 0))
  3313. (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
  3314. )
  3315. (wire (pts (xy 205.74 190.5) (xy 205.74 204.47))
  3316. (stroke (width 0) (type default) (color 0 0 0 0))
  3317. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  3318. )
  3319. (wire (pts (xy 160.02 62.23) (xy 172.72 62.23))
  3320. (stroke (width 0) (type default) (color 0 0 0 0))
  3321. (uuid 92a23ed4-a5ea-4cea-bc33-0a83191a0d32)
  3322. )
  3323. (wire (pts (xy 377.19 171.45) (xy 379.73 171.45))
  3324. (stroke (width 0) (type default) (color 0 0 0 0))
  3325. (uuid 946404ba-9297-43ec-9d67-30184041145f)
  3326. )
  3327. (wire (pts (xy 15.24 242.57) (xy 35.56 242.57))
  3328. (stroke (width 0) (type default) (color 0 0 0 0))
  3329. (uuid 94c3d0e3-d7fb-421d-bbb4-5c800d76c809)
  3330. )
  3331. (wire (pts (xy 163.83 191.77) (xy 163.83 196.85))
  3332. (stroke (width 0) (type default) (color 0 0 0 0))
  3333. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  3334. )
  3335. (wire (pts (xy 134.62 162.56) (xy 137.16 162.56))
  3336. (stroke (width 0) (type default) (color 0 0 0 0))
  3337. (uuid 96d6cec1-7903-40d2-96f1-97f52a12b669)
  3338. )
  3339. (wire (pts (xy 119.38 57.15) (xy 119.38 62.23))
  3340. (stroke (width 0) (type default) (color 0 0 0 0))
  3341. (uuid 974c48bf-534e-4335-98e1-b0426c783e99)
  3342. )
  3343. (wire (pts (xy 58.42 30.48) (xy 58.42 29.21))
  3344. (stroke (width 0) (type default) (color 0 0 0 0))
  3345. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  3346. )
  3347. (polyline (pts (xy 262.89 12.7) (xy 262.89 152.4))
  3348. (stroke (width 0) (type default) (color 0 0 0 0))
  3349. (uuid 97693043-81ba-44a2-b87b-aca6193e0970)
  3350. )
  3351. (wire (pts (xy 67.31 26.67) (xy 67.31 29.21))
  3352. (stroke (width 0) (type default) (color 0 0 0 0))
  3353. (uuid 97cc05bf-4ed5-449c-b0c8-131e5126a7ac)
  3354. )
  3355. (wire (pts (xy 121.92 189.23) (xy 133.35 189.23))
  3356. (stroke (width 0) (type default) (color 0 0 0 0))
  3357. (uuid 981ff4de-0330-4757-b746-0cb983df5e7c)
  3358. )
  3359. (wire (pts (xy 233.68 162.56) (xy 233.68 175.26))
  3360. (stroke (width 0) (type default) (color 0 0 0 0))
  3361. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3362. )
  3363. (wire (pts (xy 132.08 67.31) (xy 148.59 67.31))
  3364. (stroke (width 0) (type default) (color 0 0 0 0))
  3365. (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
  3366. )
  3367. (wire (pts (xy 99.06 77.47) (xy 111.76 77.47))
  3368. (stroke (width 0) (type default) (color 0 0 0 0))
  3369. (uuid 99186658-0361-40ba-ae93-62f23c5622e6)
  3370. )
  3371. (wire (pts (xy 284.48 250.19) (xy 297.18 250.19))
  3372. (stroke (width 0) (type default) (color 0 0 0 0))
  3373. (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c)
  3374. )
  3375. (wire (pts (xy 27.94 199.39) (xy 41.91 199.39))
  3376. (stroke (width 0) (type default) (color 0 0 0 0))
  3377. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  3378. )
  3379. (wire (pts (xy 248.92 242.57) (xy 261.62 242.57))
  3380. (stroke (width 0) (type default) (color 0 0 0 0))
  3381. (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
  3382. )
  3383. (wire (pts (xy 30.48 250.19) (xy 43.18 250.19))
  3384. (stroke (width 0) (type default) (color 0 0 0 0))
  3385. (uuid 9b07d532-5f76-4469-8dbf-25ac27eef589)
  3386. )
  3387. (wire (pts (xy 120.65 168.91) (xy 132.08 168.91))
  3388. (stroke (width 0) (type default) (color 0 0 0 0))
  3389. (uuid 9bdad65b-283c-4318-b837-68086bc616fb)
  3390. )
  3391. (wire (pts (xy 377.19 168.91) (xy 379.73 168.91))
  3392. (stroke (width 0) (type default) (color 0 0 0 0))
  3393. (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
  3394. )
  3395. (wire (pts (xy 334.01 68.58) (xy 340.36 68.58))
  3396. (stroke (width 0) (type default) (color 0 0 0 0))
  3397. (uuid 9cacb6ad-6bbf-4ffe-b0a4-2df24045e046)
  3398. )
  3399. (wire (pts (xy 189.23 162.56) (xy 189.23 167.64))
  3400. (stroke (width 0) (type default) (color 0 0 0 0))
  3401. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  3402. )
  3403. (wire (pts (xy 175.26 92.71) (xy 172.72 92.71))
  3404. (stroke (width 0) (type default) (color 0 0 0 0))
  3405. (uuid 9de304ba-fba7-4896-b969-9d87a3522d74)
  3406. )
  3407. (wire (pts (xy 351.79 186.69) (xy 336.55 186.69))
  3408. (stroke (width 0) (type default) (color 0 0 0 0))
  3409. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  3410. )
  3411. (wire (pts (xy 312.42 33.02) (xy 317.5 33.02))
  3412. (stroke (width 0) (type default) (color 0 0 0 0))
  3413. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  3414. )
  3415. (wire (pts (xy 246.38 88.9) (xy 229.87 88.9))
  3416. (stroke (width 0) (type default) (color 0 0 0 0))
  3417. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  3418. )
  3419. (wire (pts (xy 24.13 26.67) (xy 24.13 29.21))
  3420. (stroke (width 0) (type default) (color 0 0 0 0))
  3421. (uuid 9e427954-2486-4c91-89b5-6af73a073442)
  3422. )
  3423. (wire (pts (xy 53.34 78.74) (xy 53.34 81.28))
  3424. (stroke (width 0) (type default) (color 0 0 0 0))
  3425. (uuid 9f782c92-a5e8-49db-bfda-752b35522ce4)
  3426. )
  3427. (wire (pts (xy 69.85 26.67) (xy 67.31 26.67))
  3428. (stroke (width 0) (type default) (color 0 0 0 0))
  3429. (uuid 9f95f1fc-aa31-4ce6-996a-4b385731d8eb)
  3430. )
  3431. (wire (pts (xy 130.81 128.27) (xy 132.08 128.27))
  3432. (stroke (width 0) (type default) (color 0 0 0 0))
  3433. (uuid a08c061a-7f5b-4909-b673-0d0a59a012a3)
  3434. )
  3435. (wire (pts (xy 351.79 194.31) (xy 336.55 194.31))
  3436. (stroke (width 0) (type default) (color 0 0 0 0))
  3437. (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714)
  3438. )
  3439. (polyline (pts (xy 110.49 152.4) (xy 278.13 152.4))
  3440. (stroke (width 0) (type default) (color 0 0 0 0))
  3441. (uuid a1701438-3c8b-4b49-8695-36ec7f9ae4d2)
  3442. )
  3443. (wire (pts (xy 189.23 177.8) (xy 189.23 181.61))
  3444. (stroke (width 0) (type default) (color 0 0 0 0))
  3445. (uuid a22bec73-a69c-4ab7-8d8d-f6a6b09f925f)
  3446. )
  3447. (wire (pts (xy 137.16 167.64) (xy 137.16 168.91))
  3448. (stroke (width 0) (type default) (color 0 0 0 0))
  3449. (uuid a2a993f4-97a1-4cf9-b027-c59f98f5a86f)
  3450. )
  3451. (wire (pts (xy 229.87 86.36) (xy 246.38 86.36))
  3452. (stroke (width 0) (type default) (color 0 0 0 0))
  3453. (uuid a48f5fff-52e4-4ae8-8faa-7084c7ae8a28)
  3454. )
  3455. (wire (pts (xy 196.85 124.46) (xy 181.61 124.46))
  3456. (stroke (width 0) (type default) (color 0 0 0 0))
  3457. (uuid a49e8613-3cd2-48ed-8977-6bb5023f7722)
  3458. )
  3459. (wire (pts (xy 105.41 57.15) (xy 119.38 57.15))
  3460. (stroke (width 0) (type default) (color 0 0 0 0))
  3461. (uuid a6706c54-6a82-42d1-a6c9-48341690e19d)
  3462. )
  3463. (polyline (pts (xy 302.26 99.06) (xy 419.1 99.06))
  3464. (stroke (width 0) (type default) (color 0 0 0 0))
  3465. (uuid a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05)
  3466. )
  3467. (wire (pts (xy 383.54 179.07) (xy 383.54 181.61))
  3468. (stroke (width 0) (type default) (color 0 0 0 0))
  3469. (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39)
  3470. )
  3471. (wire (pts (xy 77.47 77.47) (xy 81.28 77.47))
  3472. (stroke (width 0) (type default) (color 0 0 0 0))
  3473. (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
  3474. )
  3475. (wire (pts (xy 50.8 242.57) (xy 54.61 242.57))
  3476. (stroke (width 0) (type default) (color 0 0 0 0))
  3477. (uuid aa0466c6-766f-4bb4-abf1-502a6a06f91d)
  3478. )
  3479. (wire (pts (xy 195.58 209.55) (xy 176.53 209.55))
  3480. (stroke (width 0) (type default) (color 0 0 0 0))
  3481. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  3482. )
  3483. (wire (pts (xy 134.62 161.29) (xy 134.62 162.56))
  3484. (stroke (width 0) (type default) (color 0 0 0 0))
  3485. (uuid aa6cc146-2642-4b1b-a932-6983815230d5)
  3486. )
  3487. (wire (pts (xy 208.28 190.5) (xy 205.74 190.5))
  3488. (stroke (width 0) (type default) (color 0 0 0 0))
  3489. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3490. )
  3491. (wire (pts (xy 321.31 172.72) (xy 321.31 175.26))
  3492. (stroke (width 0) (type default) (color 0 0 0 0))
  3493. (uuid acb0068c-c0e7-44cf-a209-296716acb6a2)
  3494. )
  3495. (wire (pts (xy 378.46 55.88) (xy 394.97 55.88))
  3496. (stroke (width 0) (type default) (color 0 0 0 0))
  3497. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  3498. )
  3499. (wire (pts (xy 121.92 198.12) (xy 133.35 198.12))
  3500. (stroke (width 0) (type default) (color 0 0 0 0))
  3501. (uuid acf5d924-0760-425a-996c-c1d965700be8)
  3502. )
  3503. (wire (pts (xy 181.61 162.56) (xy 189.23 162.56))
  3504. (stroke (width 0) (type default) (color 0 0 0 0))
  3505. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  3506. )
  3507. (wire (pts (xy 189.23 181.61) (xy 201.93 181.61))
  3508. (stroke (width 0) (type default) (color 0 0 0 0))
  3509. (uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544)
  3510. )
  3511. (wire (pts (xy 185.42 85.09) (xy 189.23 85.09))
  3512. (stroke (width 0) (type default) (color 0 0 0 0))
  3513. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  3514. )
  3515. (wire (pts (xy 57.15 60.96) (xy 67.31 60.96))
  3516. (stroke (width 0) (type default) (color 0 0 0 0))
  3517. (uuid b4675fcd-90dd-499b-8feb-46b51a88378c)
  3518. )
  3519. (wire (pts (xy 213.36 234.95) (xy 228.6 234.95))
  3520. (stroke (width 0) (type default) (color 0 0 0 0))
  3521. (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
  3522. )
  3523. (wire (pts (xy 327.66 38.1) (xy 340.36 38.1))
  3524. (stroke (width 0) (type default) (color 0 0 0 0))
  3525. (uuid b5ffe018-0d06-4a1b-95ee-b5763a35798d)
  3526. )
  3527. (wire (pts (xy 71.12 143.51) (xy 83.82 143.51))
  3528. (stroke (width 0) (type default) (color 0 0 0 0))
  3529. (uuid b632afec-1444-4246-8afb-cc14a57567e7)
  3530. )
  3531. (wire (pts (xy 118.11 142.24) (xy 130.81 142.24))
  3532. (stroke (width 0) (type default) (color 0 0 0 0))
  3533. (uuid b6924901-677d-424a-a3f4-52c8dd1fa5f5)
  3534. )
  3535. (wire (pts (xy 191.77 187.96) (xy 191.77 182.88))
  3536. (stroke (width 0) (type default) (color 0 0 0 0))
  3537. (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)
  3538. )
  3539. (wire (pts (xy 378.46 45.72) (xy 394.97 45.72))
  3540. (stroke (width 0) (type default) (color 0 0 0 0))
  3541. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  3542. )
  3543. (wire (pts (xy 53.34 73.66) (xy 67.31 73.66))
  3544. (stroke (width 0) (type default) (color 0 0 0 0))
  3545. (uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
  3546. )
  3547. (wire (pts (xy 172.72 92.71) (xy 160.02 92.71))
  3548. (stroke (width 0) (type default) (color 0 0 0 0))
  3549. (uuid b7dfd91c-6180-48d0-832a-f6a5a032a686)
  3550. )
  3551. (wire (pts (xy 144.78 250.19) (xy 157.48 250.19))
  3552. (stroke (width 0) (type default) (color 0 0 0 0))
  3553. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  3554. )
  3555. (wire (pts (xy 231.14 187.96) (xy 256.54 187.96))
  3556. (stroke (width 0) (type default) (color 0 0 0 0))
  3557. (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
  3558. )
  3559. (wire (pts (xy 172.72 240.03) (xy 172.72 250.19))
  3560. (stroke (width 0) (type default) (color 0 0 0 0))
  3561. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  3562. )
  3563. (wire (pts (xy 33.02 29.21) (xy 24.13 29.21))
  3564. (stroke (width 0) (type default) (color 0 0 0 0))
  3565. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  3566. )
  3567. (wire (pts (xy 223.52 71.12) (xy 224.79 71.12))
  3568. (stroke (width 0) (type default) (color 0 0 0 0))
  3569. (uuid bb5d2eae-a96e-45dd-89aa-125fe22cc2fa)
  3570. )
  3571. (wire (pts (xy 228.6 250.19) (xy 241.3 250.19))
  3572. (stroke (width 0) (type default) (color 0 0 0 0))
  3573. (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)
  3574. )
  3575. (wire (pts (xy 45.72 134.62) (xy 45.72 129.54))
  3576. (stroke (width 0) (type default) (color 0 0 0 0))
  3577. (uuid be030c62-e776-405f-97d8-4a4c1aa2e428)
  3578. )
  3579. (wire (pts (xy 378.46 33.02) (xy 402.59 33.02))
  3580. (stroke (width 0) (type default) (color 0 0 0 0))
  3581. (uuid be5a7017-fe9d-43ea-9a6a-8fe8deb78420)
  3582. )
  3583. (wire (pts (xy 132.08 168.91) (xy 132.08 170.18))
  3584. (stroke (width 0) (type default) (color 0 0 0 0))
  3585. (uuid bea44f61-c339-4f21-951d-13ca00411af1)
  3586. )
  3587. (wire (pts (xy 184.15 187.96) (xy 191.77 187.96))
  3588. (stroke (width 0) (type default) (color 0 0 0 0))
  3589. (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)
  3590. )
  3591. (wire (pts (xy 27.94 191.77) (xy 21.59 191.77))
  3592. (stroke (width 0) (type default) (color 0 0 0 0))
  3593. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  3594. )
  3595. (wire (pts (xy 196.85 127) (xy 181.61 127))
  3596. (stroke (width 0) (type default) (color 0 0 0 0))
  3597. (uuid bf4036b4-c410-489a-b46c-abee2c31db09)
  3598. )
  3599. (wire (pts (xy 394.97 38.1) (xy 378.46 38.1))
  3600. (stroke (width 0) (type default) (color 0 0 0 0))
  3601. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  3602. )
  3603. (wire (pts (xy 144.78 240.03) (xy 144.78 250.19))
  3604. (stroke (width 0) (type default) (color 0 0 0 0))
  3605. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  3606. )
  3607. (wire (pts (xy 203.2 193.04) (xy 203.2 196.85))
  3608. (stroke (width 0) (type default) (color 0 0 0 0))
  3609. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  3610. )
  3611. (wire (pts (xy 134.62 175.26) (xy 134.62 177.8))
  3612. (stroke (width 0) (type default) (color 0 0 0 0))
  3613. (uuid c20639ff-af39-4dbb-a926-ce92e9d5e0dc)
  3614. )
  3615. (wire (pts (xy 246.38 78.74) (xy 229.87 78.74))
  3616. (stroke (width 0) (type default) (color 0 0 0 0))
  3617. (uuid c20aea50-e9e4-4978-b938-d613d445aab7)
  3618. )
  3619. (wire (pts (xy 196.85 134.62) (xy 181.61 134.62))
  3620. (stroke (width 0) (type default) (color 0 0 0 0))
  3621. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  3622. )
  3623. (wire (pts (xy 132.08 69.85) (xy 148.59 69.85))
  3624. (stroke (width 0) (type default) (color 0 0 0 0))
  3625. (uuid c67ad10d-2f75-4ec6-a139-47058f7f06b2)
  3626. )
  3627. (wire (pts (xy 30.48 234.95) (xy 43.18 234.95))
  3628. (stroke (width 0) (type default) (color 0 0 0 0))
  3629. (uuid c7f7bd58-1ebd-40fd-a39d-a95530a751b6)
  3630. )
  3631. (wire (pts (xy 340.36 60.96) (xy 325.12 60.96))
  3632. (stroke (width 0) (type default) (color 0 0 0 0))
  3633. (uuid c811ed5f-f509-4605-b7d3-da6f79935a1e)
  3634. )
  3635. (wire (pts (xy 336.55 200.66) (xy 342.9 200.66))
  3636. (stroke (width 0) (type default) (color 0 0 0 0))
  3637. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  3638. )
  3639. (wire (pts (xy 88.9 256.54) (xy 88.9 250.19))
  3640. (stroke (width 0) (type default) (color 0 0 0 0))
  3641. (uuid c8b6b273-3d20-4a46-8069-f6d608563604)
  3642. )
  3643. (wire (pts (xy 228.6 240.03) (xy 228.6 250.19))
  3644. (stroke (width 0) (type default) (color 0 0 0 0))
  3645. (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
  3646. )
  3647. (wire (pts (xy 156.21 140.97) (xy 172.72 140.97))
  3648. (stroke (width 0) (type default) (color 0 0 0 0))
  3649. (uuid c8b93f12-bc5c-4ce5-b954-377d903895f1)
  3650. )
  3651. (wire (pts (xy 195.58 204.47) (xy 205.74 204.47))
  3652. (stroke (width 0) (type default) (color 0 0 0 0))
  3653. (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9)
  3654. )
  3655. (wire (pts (xy 36.83 191.77) (xy 41.91 191.77))
  3656. (stroke (width 0) (type default) (color 0 0 0 0))
  3657. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  3658. )
  3659. (wire (pts (xy 351.79 179.07) (xy 336.55 179.07))
  3660. (stroke (width 0) (type default) (color 0 0 0 0))
  3661. (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a)
  3662. )
  3663. (wire (pts (xy 54.61 234.95) (xy 54.61 242.57))
  3664. (stroke (width 0) (type default) (color 0 0 0 0))
  3665. (uuid cd48b13f-c989-4ac1-a7f0-053afcd77527)
  3666. )
  3667. (wire (pts (xy 224.79 76.2) (xy 246.38 76.2))
  3668. (stroke (width 0) (type default) (color 0 0 0 0))
  3669. (uuid cd50b8dc-829d-4a1d-8f2a-6471f378ba87)
  3670. )
  3671. (wire (pts (xy 332.74 172.72) (xy 323.85 172.72))
  3672. (stroke (width 0) (type default) (color 0 0 0 0))
  3673. (uuid cdfb661b-489b-4b76-99f4-62b92bb1ab18)
  3674. )
  3675. (wire (pts (xy 312.42 33.02) (xy 312.42 45.72))
  3676. (stroke (width 0) (type default) (color 0 0 0 0))
  3677. (uuid ce55d4e5-cb2b-4927-9979-4a7fc840f632)
  3678. )
  3679. (wire (pts (xy 88.9 250.19) (xy 101.6 250.19))
  3680. (stroke (width 0) (type default) (color 0 0 0 0))
  3681. (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
  3682. )
  3683. (wire (pts (xy 53.34 60.96) (xy 57.15 60.96))
  3684. (stroke (width 0) (type default) (color 0 0 0 0))
  3685. (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7)
  3686. )
  3687. (wire (pts (xy 340.36 66.04) (xy 325.12 66.04))
  3688. (stroke (width 0) (type default) (color 0 0 0 0))
  3689. (uuid d035bb7a-e806-42f2-ba95-a390d279aef1)
  3690. )
  3691. (wire (pts (xy 224.79 207.01) (xy 229.87 207.01))
  3692. (stroke (width 0) (type default) (color 0 0 0 0))
  3693. (uuid d07e3af5-8e07-4980-b333-4058c2990257)
  3694. )
  3695. (wire (pts (xy 167.64 181.61) (xy 171.45 181.61))
  3696. (stroke (width 0) (type default) (color 0 0 0 0))
  3697. (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
  3698. )
  3699. (wire (pts (xy 208.28 185.42) (xy 195.58 185.42))
  3700. (stroke (width 0) (type default) (color 0 0 0 0))
  3701. (uuid d1cd5391-31d2-459f-8adb-4ae3f304a833)
  3702. )
  3703. (wire (pts (xy 62.23 161.29) (xy 62.23 162.56))
  3704. (stroke (width 0) (type default) (color 0 0 0 0))
  3705. (uuid d396ce56-1974-47b7-a41b-ae2b20ef835c)
  3706. )
  3707. (wire (pts (xy 163.83 186.69) (xy 163.83 191.77))
  3708. (stroke (width 0) (type default) (color 0 0 0 0))
  3709. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  3710. )
  3711. (wire (pts (xy 201.93 132.08) (xy 207.01 132.08))
  3712. (stroke (width 0) (type default) (color 0 0 0 0))
  3713. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  3714. )
  3715. (wire (pts (xy 363.22 93.98) (xy 363.22 73.66))
  3716. (stroke (width 0) (type default) (color 0 0 0 0))
  3717. (uuid d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d)
  3718. )
  3719. (wire (pts (xy 57.15 58.42) (xy 57.15 60.96))
  3720. (stroke (width 0) (type default) (color 0 0 0 0))
  3721. (uuid d53baa32-ba88-4646-9db3-0e9b0f0da4f0)
  3722. )
  3723. (wire (pts (xy 170.18 127) (xy 172.72 127))
  3724. (stroke (width 0) (type default) (color 0 0 0 0))
  3725. (uuid d5a7688c-7438-4b6d-999f-4f2a3cb18fd6)
  3726. )
  3727. (wire (pts (xy 30.48 229.87) (xy 30.48 234.95))
  3728. (stroke (width 0) (type default) (color 0 0 0 0))
  3729. (uuid d6040293-95f0-436a-938c-ad69875a4be8)
  3730. )
  3731. (wire (pts (xy 132.08 167.64) (xy 132.08 168.91))
  3732. (stroke (width 0) (type default) (color 0 0 0 0))
  3733. (uuid d71ce190-ce5d-44a7-aee9-2d2008e6fa0d)
  3734. )
  3735. (polyline (pts (xy 78.74 49.53) (xy 78.74 12.7))
  3736. (stroke (width 0) (type default) (color 0 0 0 0))
  3737. (uuid d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1)
  3738. )
  3739. (wire (pts (xy 133.35 135.89) (xy 133.35 144.78))
  3740. (stroke (width 0) (type default) (color 0 0 0 0))
  3741. (uuid d8f24303-7e52-49a9-9e82-8d60c3aaa009)
  3742. )
  3743. (wire (pts (xy 184.15 189.23) (xy 184.15 187.96))
  3744. (stroke (width 0) (type default) (color 0 0 0 0))
  3745. (uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
  3746. )
  3747. (wire (pts (xy 157.48 250.19) (xy 172.72 250.19))
  3748. (stroke (width 0) (type default) (color 0 0 0 0))
  3749. (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
  3750. )
  3751. (wire (pts (xy 204.47 162.56) (xy 204.47 175.26))
  3752. (stroke (width 0) (type default) (color 0 0 0 0))
  3753. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3754. )
  3755. (wire (pts (xy 53.34 73.66) (xy 53.34 76.2))
  3756. (stroke (width 0) (type default) (color 0 0 0 0))
  3757. (uuid da6f4122-0ecc-496f-b0fd-e4abef534976)
  3758. )
  3759. (wire (pts (xy 58.42 35.56) (xy 58.42 38.1))
  3760. (stroke (width 0) (type default) (color 0 0 0 0))
  3761. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  3762. )
  3763. (wire (pts (xy 365.76 78.74) (xy 365.76 73.66))
  3764. (stroke (width 0) (type default) (color 0 0 0 0))
  3765. (uuid dc628a9d-67e8-4a03-b99f-8cc7a42af6ef)
  3766. )
  3767. (wire (pts (xy 191.77 182.88) (xy 208.28 182.88))
  3768. (stroke (width 0) (type default) (color 0 0 0 0))
  3769. (uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)
  3770. )
  3771. (wire (pts (xy 172.72 162.56) (xy 181.61 162.56))
  3772. (stroke (width 0) (type default) (color 0 0 0 0))
  3773. (uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb)
  3774. )
  3775. (wire (pts (xy 78.74 193.04) (xy 78.74 191.77))
  3776. (stroke (width 0) (type default) (color 0 0 0 0))
  3777. (uuid dd5f7736-b8aa-44f2-a044-e514d63d48f3)
  3778. )
  3779. (wire (pts (xy 201.93 137.16) (xy 207.01 137.16))
  3780. (stroke (width 0) (type default) (color 0 0 0 0))
  3781. (uuid dde4c43d-f33e-48ba-86f3-779fdfce00c2)
  3782. )
  3783. (wire (pts (xy 27.94 196.85) (xy 27.94 199.39))
  3784. (stroke (width 0) (type default) (color 0 0 0 0))
  3785. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  3786. )
  3787. (polyline (pts (xy 110.49 115.57) (xy 110.49 218.44))
  3788. (stroke (width 0) (type default) (color 0 0 0 0))
  3789. (uuid de438bc3-2eba-4b9f-95e9-35ce5db157f6)
  3790. )
  3791. (wire (pts (xy 317.5 27.94) (xy 312.42 27.94))
  3792. (stroke (width 0) (type default) (color 0 0 0 0))
  3793. (uuid de552ae9-cde6-4643-8cc7-9de2579dadae)
  3794. )
  3795. (wire (pts (xy 137.16 168.91) (xy 149.86 168.91))
  3796. (stroke (width 0) (type default) (color 0 0 0 0))
  3797. (uuid ded12e1b-d3a2-403c-861a-4a8d4597291c)
  3798. )
  3799. (wire (pts (xy 45.72 162.56) (xy 45.72 142.24))
  3800. (stroke (width 0) (type default) (color 0 0 0 0))
  3801. (uuid e07e1653-d05d-4bf2-bea3-6515a06de065)
  3802. )
  3803. (wire (pts (xy 347.98 217.17) (xy 347.98 212.09))
  3804. (stroke (width 0) (type default) (color 0 0 0 0))
  3805. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  3806. )
  3807. (wire (pts (xy 223.52 76.2) (xy 224.79 76.2))
  3808. (stroke (width 0) (type default) (color 0 0 0 0))
  3809. (uuid e0b0947e-ec91-4d8a-8663-5a112b0a8541)
  3810. )
  3811. (wire (pts (xy 229.87 81.28) (xy 246.38 81.28))
  3812. (stroke (width 0) (type default) (color 0 0 0 0))
  3813. (uuid e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
  3814. )
  3815. (wire (pts (xy 129.54 234.95) (xy 144.78 234.95))
  3816. (stroke (width 0) (type default) (color 0 0 0 0))
  3817. (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
  3818. )
  3819. (wire (pts (xy 156.21 139.7) (xy 156.21 140.97))
  3820. (stroke (width 0) (type default) (color 0 0 0 0))
  3821. (uuid e1fe6230-75c5-4750-aaea-24a9b80589d8)
  3822. )
  3823. (wire (pts (xy 189.23 162.56) (xy 204.47 162.56))
  3824. (stroke (width 0) (type default) (color 0 0 0 0))
  3825. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  3826. )
  3827. (wire (pts (xy 165.1 242.57) (xy 177.8 242.57))
  3828. (stroke (width 0) (type default) (color 0 0 0 0))
  3829. (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
  3830. )
  3831. (wire (pts (xy 67.31 58.42) (xy 67.31 60.96))
  3832. (stroke (width 0) (type default) (color 0 0 0 0))
  3833. (uuid e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e)
  3834. )
  3835. (wire (pts (xy 184.15 181.61) (xy 189.23 181.61))
  3836. (stroke (width 0) (type default) (color 0 0 0 0))
  3837. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  3838. )
  3839. (wire (pts (xy 109.22 242.57) (xy 121.92 242.57))
  3840. (stroke (width 0) (type default) (color 0 0 0 0))
  3841. (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558)
  3842. )
  3843. (wire (pts (xy 284.48 234.95) (xy 297.18 234.95))
  3844. (stroke (width 0) (type default) (color 0 0 0 0))
  3845. (uuid e4e20505-1208-4100-a4aa-676f50844c06)
  3846. )
  3847. (wire (pts (xy 101.6 250.19) (xy 116.84 250.19))
  3848. (stroke (width 0) (type default) (color 0 0 0 0))
  3849. (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
  3850. )
  3851. (wire (pts (xy 379.73 173.99) (xy 393.7 173.99))
  3852. (stroke (width 0) (type default) (color 0 0 0 0))
  3853. (uuid e6bf257d-5112-423c-b70a-adf8446f29da)
  3854. )
  3855. (wire (pts (xy 62.23 162.56) (xy 45.72 162.56))
  3856. (stroke (width 0) (type default) (color 0 0 0 0))
  3857. (uuid e7893166-2c2c-41b4-bd84-76ebc2e06551)
  3858. )
  3859. (wire (pts (xy 241.3 234.95) (xy 256.54 234.95))
  3860. (stroke (width 0) (type default) (color 0 0 0 0))
  3861. (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
  3862. )
  3863. (wire (pts (xy 36.83 191.77) (xy 27.94 191.77))
  3864. (stroke (width 0) (type default) (color 0 0 0 0))
  3865. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  3866. )
  3867. (wire (pts (xy 224.79 71.12) (xy 245.11 71.12))
  3868. (stroke (width 0) (type default) (color 0 0 0 0))
  3869. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  3870. )
  3871. (wire (pts (xy 50.8 40.64) (xy 48.26 40.64))
  3872. (stroke (width 0) (type default) (color 0 0 0 0))
  3873. (uuid ea7c53f9-3aa8-4198-9879-de95a5257915)
  3874. )
  3875. (wire (pts (xy 132.08 85.09) (xy 148.59 85.09))
  3876. (stroke (width 0) (type default) (color 0 0 0 0))
  3877. (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
  3878. )
  3879. (wire (pts (xy 201.93 181.61) (xy 201.93 180.34))
  3880. (stroke (width 0) (type default) (color 0 0 0 0))
  3881. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  3882. )
  3883. (wire (pts (xy 201.93 124.46) (xy 207.01 124.46))
  3884. (stroke (width 0) (type default) (color 0 0 0 0))
  3885. (uuid ec2e3d8a-128c-4be8-b432-9738bca934ae)
  3886. )
  3887. (wire (pts (xy 241.3 134.62) (xy 241.3 133.35))
  3888. (stroke (width 0) (type default) (color 0 0 0 0))
  3889. (uuid ed247857-b2a3-4b23-90ad-758c01ae5e8e)
  3890. )
  3891. (wire (pts (xy 256.54 234.95) (xy 269.24 234.95))
  3892. (stroke (width 0) (type default) (color 0 0 0 0))
  3893. (uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
  3894. )
  3895. (wire (pts (xy 379.73 171.45) (xy 393.7 171.45))
  3896. (stroke (width 0) (type default) (color 0 0 0 0))
  3897. (uuid f1c2e9b0-6f9f-485b-b482-d408df476d0f)
  3898. )
  3899. (wire (pts (xy 214.63 209.55) (xy 214.63 207.01))
  3900. (stroke (width 0) (type default) (color 0 0 0 0))
  3901. (uuid f1f5241b-4870-42ad-abfc-639b0a3a761c)
  3902. )
  3903. (wire (pts (xy 195.58 69.85) (xy 201.93 69.85))
  3904. (stroke (width 0) (type default) (color 0 0 0 0))
  3905. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  3906. )
  3907. (wire (pts (xy 101.6 57.15) (xy 105.41 57.15))
  3908. (stroke (width 0) (type default) (color 0 0 0 0))
  3909. (uuid f28e56e7-283b-4b9a-ae27-95e89770fbf8)
  3910. )
  3911. (wire (pts (xy 83.82 77.47) (xy 83.82 71.12))
  3912. (stroke (width 0) (type default) (color 0 0 0 0))
  3913. (uuid f3044f68-903d-4063-b253-30d8e3a83eae)
  3914. )
  3915. (wire (pts (xy 184.15 196.85) (xy 184.15 194.31))
  3916. (stroke (width 0) (type default) (color 0 0 0 0))
  3917. (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
  3918. )
  3919. (wire (pts (xy 229.87 91.44) (xy 246.38 91.44))
  3920. (stroke (width 0) (type default) (color 0 0 0 0))
  3921. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  3922. )
  3923. (wire (pts (xy 351.79 181.61) (xy 336.55 181.61))
  3924. (stroke (width 0) (type default) (color 0 0 0 0))
  3925. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  3926. )
  3927. (wire (pts (xy 241.3 140.97) (xy 241.3 139.7))
  3928. (stroke (width 0) (type default) (color 0 0 0 0))
  3929. (uuid f5a3f95b-1a53-41b4-b208-bf168c9d9c6d)
  3930. )
  3931. (wire (pts (xy 342.9 172.72) (xy 351.79 172.72))
  3932. (stroke (width 0) (type default) (color 0 0 0 0))
  3933. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  3934. )
  3935. (wire (pts (xy 33.02 38.1) (xy 48.26 38.1))
  3936. (stroke (width 0) (type default) (color 0 0 0 0))
  3937. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  3938. )
  3939. (wire (pts (xy 21.59 191.77) (xy 21.59 187.96))
  3940. (stroke (width 0) (type default) (color 0 0 0 0))
  3941. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  3942. )
  3943. (polyline (pts (xy 278.13 152.4) (xy 278.13 218.44))
  3944. (stroke (width 0) (type default) (color 0 0 0 0))
  3945. (uuid f8a90052-1a8b-4ce5-a1fd-87db944dceac)
  3946. )
  3947. (wire (pts (xy 73.66 242.57) (xy 93.98 242.57))
  3948. (stroke (width 0) (type default) (color 0 0 0 0))
  3949. (uuid f8f3a9fc-1e34-4573-a767-508104e8d242)
  3950. )
  3951. (wire (pts (xy 312.42 27.94) (xy 312.42 25.4))
  3952. (stroke (width 0) (type default) (color 0 0 0 0))
  3953. (uuid f934a442-23d6-4e5b-908f-bb9199ad6f8b)
  3954. )
  3955. (wire (pts (xy 24.13 25.4) (xy 24.13 26.67))
  3956. (stroke (width 0) (type default) (color 0 0 0 0))
  3957. (uuid fab1abc4-c49d-4b88-8c7f-939d7feb7b6c)
  3958. )
  3959. (wire (pts (xy 245.11 71.12) (xy 245.11 73.66))
  3960. (stroke (width 0) (type default) (color 0 0 0 0))
  3961. (uuid facb0614-068b-4c9c-a466-d374df96a94c)
  3962. )
  3963. (wire (pts (xy 196.85 129.54) (xy 181.61 129.54))
  3964. (stroke (width 0) (type default) (color 0 0 0 0))
  3965. (uuid fb1a635e-b207-4b36-b0fb-e877e480e86a)
  3966. )
  3967. (wire (pts (xy 201.93 180.34) (xy 208.28 180.34))
  3968. (stroke (width 0) (type default) (color 0 0 0 0))
  3969. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  3970. )
  3971. (wire (pts (xy 207.01 132.08) (xy 207.01 134.62))
  3972. (stroke (width 0) (type default) (color 0 0 0 0))
  3973. (uuid fbb5e77c-4b41-4796-ad13-1b9e2bbc3c81)
  3974. )
  3975. (wire (pts (xy 193.04 242.57) (xy 205.74 242.57))
  3976. (stroke (width 0) (type default) (color 0 0 0 0))
  3977. (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
  3978. )
  3979. (wire (pts (xy 156.21 133.35) (xy 156.21 134.62))
  3980. (stroke (width 0) (type default) (color 0 0 0 0))
  3981. (uuid fc13962a-a464-4fa2-b9a6-4c26667104ee)
  3982. )
  3983. (wire (pts (xy 130.81 130.81) (xy 130.81 128.27))
  3984. (stroke (width 0) (type default) (color 0 0 0 0))
  3985. (uuid fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942)
  3986. )
  3987. (wire (pts (xy 223.52 76.2) (xy 223.52 77.47))
  3988. (stroke (width 0) (type default) (color 0 0 0 0))
  3989. (uuid fcfb3f77-487d-44de-bd4e-948fbeca3220)
  3990. )
  3991. (wire (pts (xy 379.73 172.72) (xy 379.73 173.99))
  3992. (stroke (width 0) (type default) (color 0 0 0 0))
  3993. (uuid fd34aa56-ded2-4e97-965a-a39457716f0c)
  3994. )
  3995. (wire (pts (xy 78.74 191.77) (xy 101.6 191.77))
  3996. (stroke (width 0) (type default) (color 0 0 0 0))
  3997. (uuid fe1ad3bd-92cc-4e1c-8cc9-a77278095945)
  3998. )
  3999. (wire (pts (xy 256.54 240.03) (xy 256.54 250.19))
  4000. (stroke (width 0) (type default) (color 0 0 0 0))
  4001. (uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
  4002. )
  4003. (text "POWER" (at 12.7 15.24 0)
  4004. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4005. (uuid 08926936-9ea4-4894-afca-caca47f3c238)
  4006. )
  4007. (text "Could put a sense resistor and\nsense amplifier here"
  4008. (at 384.81 185.42 0)
  4009. (effects (font (size 1.27 1.27)) (justify left bottom))
  4010. (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21)
  4011. )
  4012. (text "MCU - ESP32 (T-MICRO32 PLUS)" (at 303.53 15.24 0)
  4013. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4014. (uuid 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
  4015. )
  4016. (text "SENSOR - MAGNETIC ENCODER" (at 12.7 180.34 0)
  4017. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4018. (uuid 21ca1c08-b8a3-4bdc-9356-70a4d86ee444)
  4019. )
  4020. (text "MOTOR DRIVER" (at 314.96 152.4 0)
  4021. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4022. (uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890)
  4023. )
  4024. (text "MECHANICAL/BOM-ONLY" (at 80.01 15.24 0)
  4025. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4026. (uuid 312474c5-a081-4cd1-b2e6-730f0718514a)
  4027. )
  4028. (text "IO2 must be 0 to enter UART\ndownload mode" (at 392.43 72.39 0)
  4029. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  4030. (uuid 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0)
  4031. )
  4032. (text "GPIO12=MTDI. Should be 0 on boot\nfor 3.3v built-in flash/psram on\nESP32-PICO-v3-02"
  4033. (at 304.8 72.39 0)
  4034. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  4035. (uuid 45484f82-420e-44d0-a58e-382bb939dac5)
  4036. )
  4037. (text "Pull-ups on MT6701 allow for I2C\n(though we'll primarily use SSI)"
  4038. (at 111.76 149.86 0)
  4039. (effects (font (size 1.27 1.27)) (justify left bottom))
  4040. (uuid 4e7a230a-c1a4-4455-81ee-277835acf4a2)
  4041. )
  4042. (text "Rate=1 --> 80 samples per second" (at 234.95 177.8 0)
  4043. (effects (font (size 1.27 1.27)) (justify left bottom))
  4044. (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
  4045. )
  4046. (text "SENSOR - AMBIENT LIGHT" (at 12.7 119.38 0)
  4047. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4048. (uuid 784e3230-2053-4bc9-a786-5ac2bd0df0f5)
  4049. )
  4050. (text "Recommended 1uF-10uF on EN for auto-reset\ncircuitry, per Espressif design notes."
  4051. (at 215.9 151.13 0)
  4052. (effects (font (size 1.27 1.27)) (justify left bottom))
  4053. (uuid 905b154b-e92b-469d-b2e2-340d67daddb7)
  4054. )
  4055. (text "USB" (at 12.7 53.34 0)
  4056. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4057. (uuid a04f8542-6c38-4d5c-bdbb-c8e0311a0936)
  4058. )
  4059. (text "SENSOR - STRAIN" (at 111.76 156.21 0)
  4060. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4061. (uuid a7c83b25-afbd-4974-8870-387db8f81a5c)
  4062. )
  4063. (text "LEDS" (at 12.7 222.25 0)
  4064. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4065. (uuid b1731e91-7698-42fa-ad60-5c60fdd0e1fc)
  4066. )
  4067. (text "PULLUPS, PULLDOWNS" (at 111.76 119.38 0)
  4068. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4069. (uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc)
  4070. )
  4071. (text "LCD CONNECTOR" (at 209.55 53.34 0)
  4072. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4073. (uuid ed612f6d-67c1-4198-976d-84139f8d99bc)
  4074. )
  4075. (text "Reset/Boot via USB serial" (at 167.64 58.42 0)
  4076. (effects (font (size 1.27 1.27)) (justify left bottom))
  4077. (uuid f6a3288e-9575-42bb-af05-a920d59aded8)
  4078. )
  4079. (label "STRAIN_E+" (at 121.92 198.12 0)
  4080. (effects (font (size 1.27 1.27)) (justify left bottom))
  4081. (uuid 01024d27-e392-4482-9e67-565b0c294fe8)
  4082. )
  4083. (label "MAG_CSN" (at 101.6 191.77 180)
  4084. (effects (font (size 1.27 1.27)) (justify right bottom))
  4085. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4086. )
  4087. (label "ESP32_BOOT" (at 398.78 66.04 180)
  4088. (effects (font (size 1.27 1.27)) (justify right bottom))
  4089. (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7)
  4090. )
  4091. (label "LCD_RST" (at 229.87 78.74 0)
  4092. (effects (font (size 1.27 1.27)) (justify left bottom))
  4093. (uuid 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600)
  4094. )
  4095. (label "TMC_VL" (at 181.61 137.16 0)
  4096. (effects (font (size 1.27 1.27)) (justify left bottom))
  4097. (uuid 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca)
  4098. )
  4099. (label "STRAIN_E-" (at 124.46 177.8 0)
  4100. (effects (font (size 1.27 1.27)) (justify left bottom))
  4101. (uuid 134cadc0-3dd0-4201-9516-bb1c6b3f2b11)
  4102. )
  4103. (label "LCD_BACKLIGHT" (at 229.87 86.36 0)
  4104. (effects (font (size 1.27 1.27)) (justify left bottom))
  4105. (uuid 1cb64bfe-d819-47e3-be11-515b04f2c451)
  4106. )
  4107. (label "STRAIN_S+" (at 121.92 189.23 0)
  4108. (effects (font (size 1.27 1.27)) (justify left bottom))
  4109. (uuid 2026567f-be64-41dd-8011-b0897ba0ff2e)
  4110. )
  4111. (label "LCD_RST" (at 394.97 63.5 180)
  4112. (effects (font (size 1.27 1.27)) (justify right bottom))
  4113. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4114. )
  4115. (label "TMC_VH" (at 325.12 60.96 0)
  4116. (effects (font (size 1.27 1.27)) (justify left bottom))
  4117. (uuid 2681e64d-bedc-4e1f-87d2-754aaa485bbd)
  4118. )
  4119. (label "RTS" (at 148.59 87.63 180)
  4120. (effects (font (size 1.27 1.27)) (justify right bottom))
  4121. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  4122. )
  4123. (label "LED_DATA_5V" (at 73.66 242.57 0)
  4124. (effects (font (size 1.27 1.27)) (justify left bottom))
  4125. (uuid 28e37b45-f843-47c2-85c9-ca19f5430ece)
  4126. )
  4127. (label "USB_SERIAL_TXO" (at 148.59 67.31 180)
  4128. (effects (font (size 1.27 1.27)) (justify right bottom))
  4129. (uuid 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
  4130. )
  4131. (label "SCL" (at 83.82 151.13 180)
  4132. (effects (font (size 1.27 1.27)) (justify right bottom))
  4133. (uuid 2ec9be40-1d5a-4e2d-8a4d-4be2d3c079d5)
  4134. )
  4135. (label "USB_SERIAL_TXO" (at 398.78 43.18 180)
  4136. (effects (font (size 1.27 1.27)) (justify right bottom))
  4137. (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b)
  4138. )
  4139. (label "TMC_UL" (at 336.55 179.07 0)
  4140. (effects (font (size 1.27 1.27)) (justify left bottom))
  4141. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  4142. )
  4143. (label "STRAIN_E+" (at 121.92 186.69 0)
  4144. (effects (font (size 1.27 1.27)) (justify left bottom))
  4145. (uuid 34a11a07-8b7f-45d2-96e3-89fd43e62756)
  4146. )
  4147. (label "STRAIN_DO" (at 355.6 96.52 90)
  4148. (effects (font (size 1.27 1.27)) (justify left bottom))
  4149. (uuid 406d491e-5b01-46dc-a768-fd0992cdb346)
  4150. )
  4151. (label "STRAIN_E-" (at 147.32 191.77 0)
  4152. (effects (font (size 1.27 1.27)) (justify left bottom))
  4153. (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17)
  4154. )
  4155. (label "MAG_CSN" (at 323.85 63.5 0)
  4156. (effects (font (size 1.27 1.27)) (justify left bottom))
  4157. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  4158. )
  4159. (label "LCD_DATA" (at 394.97 55.88 180)
  4160. (effects (font (size 1.27 1.27)) (justify right bottom))
  4161. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  4162. )
  4163. (label "TMC_DIAG" (at 336.55 194.31 0)
  4164. (effects (font (size 1.27 1.27)) (justify left bottom))
  4165. (uuid 430d6d73-9de6-41ca-b788-178d709f4aae)
  4166. )
  4167. (label "ESP32_EN" (at 219.71 133.35 0)
  4168. (effects (font (size 1.27 1.27)) (justify left bottom))
  4169. (uuid 45836d49-cd5f-417d-b0f6-c8b43d196a36)
  4170. )
  4171. (label "TMC_WH" (at 325.12 66.04 0)
  4172. (effects (font (size 1.27 1.27)) (justify left bottom))
  4173. (uuid 4fb2577d-2e1c-480c-9060-124510b35053)
  4174. )
  4175. (label "USB_CC2" (at 67.31 68.58 180)
  4176. (effects (font (size 1.27 1.27)) (justify right bottom))
  4177. (uuid 53e34696-241f-47e5-a477-f469335c8a61)
  4178. )
  4179. (label "RTS" (at 201.93 85.09 180)
  4180. (effects (font (size 1.27 1.27)) (justify right bottom))
  4181. (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631)
  4182. )
  4183. (label "USB_D-" (at 67.31 73.66 180)
  4184. (effects (font (size 1.27 1.27)) (justify right bottom))
  4185. (uuid 5a222fb6-5159-4931-9015-19df65643140)
  4186. )
  4187. (label "TMC_UL" (at 325.12 55.88 0)
  4188. (effects (font (size 1.27 1.27)) (justify left bottom))
  4189. (uuid 5a390647-51ba-4684-b747-9001f749ff71)
  4190. )
  4191. (label "TMC_VH" (at 181.61 127 0)
  4192. (effects (font (size 1.27 1.27)) (justify left bottom))
  4193. (uuid 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9)
  4194. )
  4195. (label "USB_D+" (at 99.06 74.93 0)
  4196. (effects (font (size 1.27 1.27)) (justify left bottom))
  4197. (uuid 5f312b85-6822-40a3-b417-2df49696ca2d)
  4198. )
  4199. (label "LCD_SCK" (at 229.87 81.28 0)
  4200. (effects (font (size 1.27 1.27)) (justify left bottom))
  4201. (uuid 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb)
  4202. )
  4203. (label "TMC_UL" (at 181.61 132.08 0)
  4204. (effects (font (size 1.27 1.27)) (justify left bottom))
  4205. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  4206. )
  4207. (label "LED_DATA_5V" (at 71.12 242.57 180)
  4208. (effects (font (size 1.27 1.27)) (justify right bottom))
  4209. (uuid 692d87e9-6b70-46cc-9c78-b75193a484cc)
  4210. )
  4211. (label "TMC_VL" (at 325.12 50.8 0)
  4212. (effects (font (size 1.27 1.27)) (justify left bottom))
  4213. (uuid 6b6d35dc-fa1d-46c5-87c0-b0652011059d)
  4214. )
  4215. (label "LCD_SCK" (at 394.97 58.42 180)
  4216. (effects (font (size 1.27 1.27)) (justify right bottom))
  4217. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  4218. )
  4219. (label "TMC_UH" (at 336.55 176.53 0)
  4220. (effects (font (size 1.27 1.27)) (justify left bottom))
  4221. (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
  4222. )
  4223. (label "TMC_VL" (at 336.55 184.15 0)
  4224. (effects (font (size 1.27 1.27)) (justify left bottom))
  4225. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  4226. )
  4227. (label "MAG_DO" (at 353.06 90.17 90)
  4228. (effects (font (size 1.27 1.27)) (justify left bottom))
  4229. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  4230. )
  4231. (label "ESP32_BOOT" (at 160.02 92.71 0)
  4232. (effects (font (size 1.27 1.27)) (justify left bottom))
  4233. (uuid 74855e0d-40e4-4940-a544-edae9207b2ea)
  4234. )
  4235. (label "STRAIN_S+" (at 147.32 209.55 0)
  4236. (effects (font (size 1.27 1.27)) (justify left bottom))
  4237. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  4238. )
  4239. (label "MAG_CLK" (at 350.52 90.17 90)
  4240. (effects (font (size 1.27 1.27)) (justify left bottom))
  4241. (uuid 7582a530-a952-46c1-b7eb-75006524ba29)
  4242. )
  4243. (label "SDA" (at 83.82 143.51 180)
  4244. (effects (font (size 1.27 1.27)) (justify right bottom))
  4245. (uuid 7b75907b-b2ae-4362-89fa-d520339aaa5c)
  4246. )
  4247. (label "USB_D+" (at 67.31 78.74 180)
  4248. (effects (font (size 1.27 1.27)) (justify right bottom))
  4249. (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
  4250. )
  4251. (label "STRAIN_E-" (at 121.92 203.2 0)
  4252. (effects (font (size 1.27 1.27)) (justify left bottom))
  4253. (uuid 88a17e56-466a-45e7-9047-7346a507f505)
  4254. )
  4255. (label "SCL" (at 151.13 140.97 0)
  4256. (effects (font (size 1.27 1.27)) (justify left bottom))
  4257. (uuid 89bd1fdd-6a91-474e-8495-7a2ba7eb6260)
  4258. )
  4259. (label "TMC_UH" (at 325.12 58.42 0)
  4260. (effects (font (size 1.27 1.27)) (justify left bottom))
  4261. (uuid 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0)
  4262. )
  4263. (label "STRAIN_S-" (at 147.32 204.47 0)
  4264. (effects (font (size 1.27 1.27)) (justify left bottom))
  4265. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4266. )
  4267. (label "SDA" (at 151.13 134.62 0)
  4268. (effects (font (size 1.27 1.27)) (justify left bottom))
  4269. (uuid 8b022692-69b7-4bd6-bf38-57edecf356fa)
  4270. )
  4271. (label "MAG_DO" (at 101.6 196.85 180)
  4272. (effects (font (size 1.27 1.27)) (justify right bottom))
  4273. (uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
  4274. )
  4275. (label "SCL" (at 387.35 78.74 180)
  4276. (effects (font (size 1.27 1.27)) (justify right bottom))
  4277. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4278. )
  4279. (label "USB_CC1" (at 67.31 66.04 180)
  4280. (effects (font (size 1.27 1.27)) (justify right bottom))
  4281. (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
  4282. )
  4283. (label "ESP32_EN" (at 160.02 62.23 0)
  4284. (effects (font (size 1.27 1.27)) (justify left bottom))
  4285. (uuid 8e697b96-cf4c-43ef-b321-8c2422b088bf)
  4286. )
  4287. (label "USB_SERIAL_RXI" (at 148.59 69.85 180)
  4288. (effects (font (size 1.27 1.27)) (justify right bottom))
  4289. (uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
  4290. )
  4291. (label "TMC_WH" (at 336.55 186.69 0)
  4292. (effects (font (size 1.27 1.27)) (justify left bottom))
  4293. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  4294. )
  4295. (label "MAG_DO" (at 118.11 142.24 0)
  4296. (effects (font (size 1.27 1.27)) (justify left bottom))
  4297. (uuid 92574e8a-729f-48de-afcb-97b4f5e826f8)
  4298. )
  4299. (label "LCD_CS" (at 394.97 45.72 180)
  4300. (effects (font (size 1.27 1.27)) (justify right bottom))
  4301. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4302. )
  4303. (label "LCD_CMD" (at 394.97 38.1 180)
  4304. (effects (font (size 1.27 1.27)) (justify right bottom))
  4305. (uuid 96781640-c07e-4eea-a372-067ded96b703)
  4306. )
  4307. (label "STRAIN_S+" (at 120.65 168.91 0)
  4308. (effects (font (size 1.27 1.27)) (justify left bottom))
  4309. (uuid 97d61ba9-2faa-4100-b1a0-20a6f91107fd)
  4310. )
  4311. (label "TMC_WL" (at 181.61 134.62 0)
  4312. (effects (font (size 1.27 1.27)) (justify left bottom))
  4313. (uuid 97e5f992-979e-4291-bd9a-a77c3fd4b1b5)
  4314. )
  4315. (label "LCD_CS" (at 229.87 88.9 0)
  4316. (effects (font (size 1.27 1.27)) (justify left bottom))
  4317. (uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540)
  4318. )
  4319. (label "STRAIN_SCK" (at 256.54 187.96 180)
  4320. (effects (font (size 1.27 1.27)) (justify right bottom))
  4321. (uuid 9f969b13-1795-4747-8326-93bdc304ed56)
  4322. )
  4323. (label "TMC_UH" (at 181.61 124.46 0)
  4324. (effects (font (size 1.27 1.27)) (justify left bottom))
  4325. (uuid a323243c-4cab-4689-aa04-1e663cf86177)
  4326. )
  4327. (label "SDA" (at 379.73 73.66 180)
  4328. (effects (font (size 1.27 1.27)) (justify right bottom))
  4329. (uuid a5e6f7cb-0a81-4357-a11f-231d23300342)
  4330. )
  4331. (label "TMC_WL" (at 336.55 189.23 0)
  4332. (effects (font (size 1.27 1.27)) (justify left bottom))
  4333. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  4334. )
  4335. (label "LCD_DATA" (at 229.87 83.82 0)
  4336. (effects (font (size 1.27 1.27)) (justify left bottom))
  4337. (uuid ae158d42-76cc-4911-a621-4cc28931c98b)
  4338. )
  4339. (label "STRAIN_SCK" (at 403.86 68.58 180)
  4340. (effects (font (size 1.27 1.27)) (justify right bottom))
  4341. (uuid c6462399-f2e4-4f1a-b34a-b49a04c8bdb9)
  4342. )
  4343. (label "STRAIN_E+" (at 124.46 161.29 0)
  4344. (effects (font (size 1.27 1.27)) (justify left bottom))
  4345. (uuid c8bbc0a0-b6df-48f2-a8af-227879825788)
  4346. )
  4347. (label "TMC_WH" (at 181.61 129.54 0)
  4348. (effects (font (size 1.27 1.27)) (justify left bottom))
  4349. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4350. )
  4351. (label "STRAIN_S-" (at 149.86 168.91 180)
  4352. (effects (font (size 1.27 1.27)) (justify right bottom))
  4353. (uuid ca357f7e-4455-4a2c-b2f7-e8e22a9f6804)
  4354. )
  4355. (label "TMC_VH" (at 336.55 181.61 0)
  4356. (effects (font (size 1.27 1.27)) (justify left bottom))
  4357. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  4358. )
  4359. (label "LED_DATA_3V3" (at 363.22 93.98 90)
  4360. (effects (font (size 1.27 1.27)) (justify left bottom))
  4361. (uuid d115a0df-1034-4583-83af-ff1cb8acfa17)
  4362. )
  4363. (label "LCD_CMD" (at 229.87 91.44 0)
  4364. (effects (font (size 1.27 1.27)) (justify left bottom))
  4365. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4366. )
  4367. (label "STRAIN_DO" (at 256.54 185.42 180)
  4368. (effects (font (size 1.27 1.27)) (justify right bottom))
  4369. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4370. )
  4371. (label "DTR" (at 201.93 69.85 180)
  4372. (effects (font (size 1.27 1.27)) (justify right bottom))
  4373. (uuid d68dca9b-48b3-498b-9b5f-3b3838250f82)
  4374. )
  4375. (label "DTR" (at 148.59 85.09 180)
  4376. (effects (font (size 1.27 1.27)) (justify right bottom))
  4377. (uuid d72c89a6-7578-4468-964e-2a845431195f)
  4378. )
  4379. (label "STRAIN_E+" (at 147.32 181.61 0)
  4380. (effects (font (size 1.27 1.27)) (justify left bottom))
  4381. (uuid d8200a86-aa75-47a3-ad2a-7f4c9c999a6f)
  4382. )
  4383. (label "TMC_DIAG" (at 325.12 40.64 0)
  4384. (effects (font (size 1.27 1.27)) (justify left bottom))
  4385. (uuid e000728f-e3c5-4fc4-86af-db9ceb3a6542)
  4386. )
  4387. (label "MAG_CLK" (at 101.6 194.31 180)
  4388. (effects (font (size 1.27 1.27)) (justify right bottom))
  4389. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  4390. )
  4391. (label "LED_DATA_3V3" (at 15.24 242.57 0)
  4392. (effects (font (size 1.27 1.27)) (justify left bottom))
  4393. (uuid ea28e946-b74f-4ba8-ac7b-b1884c5e7296)
  4394. )
  4395. (label "USB_D-" (at 99.06 77.47 0)
  4396. (effects (font (size 1.27 1.27)) (justify left bottom))
  4397. (uuid ee29d712-3378-4507-a00b-003526b29bb1)
  4398. )
  4399. (label "ESP32_EN" (at 327.66 38.1 0)
  4400. (effects (font (size 1.27 1.27)) (justify left bottom))
  4401. (uuid ef94502b-f22d-4da7-a17f-4100090b03a1)
  4402. )
  4403. (label "TMC_WL" (at 325.12 53.34 0)
  4404. (effects (font (size 1.27 1.27)) (justify left bottom))
  4405. (uuid f08895dc-4dcb-4aef-a39b-5a08864cdaaf)
  4406. )
  4407. (label "LCD_BACKLIGHT" (at 394.97 50.8 180)
  4408. (effects (font (size 1.27 1.27)) (justify right bottom))
  4409. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4410. )
  4411. (label "USB_SERIAL_RXI" (at 398.78 40.64 180)
  4412. (effects (font (size 1.27 1.27)) (justify right bottom))
  4413. (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be)
  4414. )
  4415. (label "STRAIN_E-" (at 121.92 191.77 0)
  4416. (effects (font (size 1.27 1.27)) (justify left bottom))
  4417. (uuid fb9a832c-737d-49fb-bbb4-29a0ba3e8178)
  4418. )
  4419. (label "MAG_CLK" (at 118.11 144.78 0)
  4420. (effects (font (size 1.27 1.27)) (justify left bottom))
  4421. (uuid fe4068b9-89da-4c59-ba51-b5949772f5d8)
  4422. )
  4423. (label "STRAIN_S-" (at 121.92 200.66 0)
  4424. (effects (font (size 1.27 1.27)) (justify left bottom))
  4425. (uuid fead07ab-5a70-40db-ada8-c72dcc827bfc)
  4426. )
  4427. (symbol (lib_id "MagnTek:MT6701-CT") (at 58.42 195.58 0) (unit 1)
  4428. (in_bom yes) (on_board yes)
  4429. (uuid 00000000-0000-0000-0000-000061f4f0c2)
  4430. (property "Reference" "U1" (id 0) (at 59.69 186.055 0))
  4431. (property "Value" "MT6701-CT" (id 1) (at 59.69 188.3664 0))
  4432. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 58.42 195.58 0)
  4433. (effects (font (size 1.27 1.27)) hide)
  4434. )
  4435. (property "Datasheet" "" (id 3) (at 58.42 195.58 0)
  4436. (effects (font (size 1.27 1.27)) hide)
  4437. )
  4438. (property "LCSC" "C2856764" (id 4) (at 58.42 195.58 0)
  4439. (effects (font (size 1.27 1.27)) hide)
  4440. )
  4441. (property "Digikey" "N/A" (id 5) (at 58.42 195.58 0)
  4442. (effects (font (size 1.27 1.27)) hide)
  4443. )
  4444. (property "Mouser" "N/A" (id 6) (at 58.42 195.58 0)
  4445. (effects (font (size 1.27 1.27)) hide)
  4446. )
  4447. (pin "1" (uuid 41445a0a-aba9-4520-8a8a-661b0822bea1))
  4448. (pin "2" (uuid b7a32267-072b-4e70-bfe9-b0a3dfef4c9c))
  4449. (pin "3" (uuid 104c52b0-fa5b-4965-bafe-99b694fc4373))
  4450. (pin "4" (uuid 8e155617-d4f4-46e4-909c-3f000857b3b2))
  4451. (pin "5" (uuid 6c0abecf-f361-4699-8ddd-02d1b8372136))
  4452. (pin "6" (uuid 013fd080-24b1-4ff0-a3fa-a8d9093bae2d))
  4453. (pin "7" (uuid 5f4ddf40-42af-4f8e-9942-235d798238c4))
  4454. (pin "8" (uuid 19771d4c-1e60-41d3-ab7d-ea0ca2bfd638))
  4455. )
  4456. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 101.6 242.57 0) (unit 1)
  4457. (in_bom yes) (on_board yes)
  4458. (uuid 00000000-0000-0000-0000-000061f5027f)
  4459. (property "Reference" "D1" (id 0) (at 93.98 228.6 0)
  4460. (effects (font (size 1.27 1.27)) (justify left))
  4461. )
  4462. (property "Value" "SK6812SIDE-A" (id 1) (at 93.98 231.14 0)
  4463. (effects (font (size 1.27 1.27)) (justify left))
  4464. )
  4465. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 102.87 250.19 0)
  4466. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4467. )
  4468. (property "Datasheet" "" (id 3) (at 104.14 252.095 0)
  4469. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4470. )
  4471. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 101.6 242.57 0)
  4472. (effects (font (size 1.27 1.27)) hide)
  4473. )
  4474. (property "Digikey" "1528-4691-ND" (id 5) (at 101.6 242.57 0)
  4475. (effects (font (size 1.27 1.27)) hide)
  4476. )
  4477. (property "Mouser" "485-4691" (id 6) (at 101.6 242.57 0)
  4478. (effects (font (size 1.27 1.27)) hide)
  4479. )
  4480. (property "LCSC" "C2890037" (id 7) (at 101.6 242.57 0)
  4481. (effects (font (size 1.27 1.27)) hide)
  4482. )
  4483. (pin "1" (uuid bafd7713-de56-4b13-bde3-2bb1eb95b862))
  4484. (pin "2" (uuid b0a9d4e0-4a35-4ef4-bf75-f8230a9a0080))
  4485. (pin "3" (uuid 1bd41d7a-cc03-44d3-8bb3-d6d3905c11be))
  4486. (pin "4" (uuid f01f8ee4-5ab0-46bf-ba4d-6358091f1053))
  4487. )
  4488. (symbol (lib_id "Device:C_Small") (at 88.9 237.49 0) (unit 1)
  4489. (in_bom yes) (on_board yes)
  4490. (uuid 00000000-0000-0000-0000-000061f52a71)
  4491. (property "Reference" "C1" (id 0) (at 91.2368 236.3216 0)
  4492. (effects (font (size 1.27 1.27)) (justify left))
  4493. )
  4494. (property "Value" "0.1uF" (id 1) (at 91.2368 238.633 0)
  4495. (effects (font (size 1.27 1.27)) (justify left))
  4496. )
  4497. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 88.9 237.49 0)
  4498. (effects (font (size 1.27 1.27)) hide)
  4499. )
  4500. (property "Datasheet" "~" (id 3) (at 88.9 237.49 0)
  4501. (effects (font (size 1.27 1.27)) hide)
  4502. )
  4503. (property "LCSC" "C1591" (id 4) (at 88.9 237.49 0)
  4504. (effects (font (size 1.27 1.27)) hide)
  4505. )
  4506. (property "Digikey" "1276-1935-1-ND" (id 5) (at 88.9 237.49 0)
  4507. (effects (font (size 1.27 1.27)) hide)
  4508. )
  4509. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 88.9 237.49 0)
  4510. (effects (font (size 1.27 1.27)) hide)
  4511. )
  4512. (pin "1" (uuid b5b98d18-92b0-45e4-a464-abeb3e63c67f))
  4513. (pin "2" (uuid 3d816713-8e55-4148-9a62-71edf593333b))
  4514. )
  4515. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 129.54 242.57 0) (unit 1)
  4516. (in_bom yes) (on_board yes)
  4517. (uuid 00000000-0000-0000-0000-000061f5739b)
  4518. (property "Reference" "D2" (id 0) (at 121.92 228.6 0)
  4519. (effects (font (size 1.27 1.27)) (justify left))
  4520. )
  4521. (property "Value" "SK6812SIDE-A" (id 1) (at 121.92 231.14 0)
  4522. (effects (font (size 1.27 1.27)) (justify left))
  4523. )
  4524. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 130.81 250.19 0)
  4525. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4526. )
  4527. (property "Datasheet" "" (id 3) (at 132.08 252.095 0)
  4528. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4529. )
  4530. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 129.54 242.57 0)
  4531. (effects (font (size 1.27 1.27)) hide)
  4532. )
  4533. (property "Digikey" "1528-4691-ND" (id 5) (at 129.54 242.57 0)
  4534. (effects (font (size 1.27 1.27)) hide)
  4535. )
  4536. (property "Mouser" "485-4691" (id 6) (at 129.54 242.57 0)
  4537. (effects (font (size 1.27 1.27)) hide)
  4538. )
  4539. (property "LCSC" "C2890037" (id 7) (at 129.54 242.57 0)
  4540. (effects (font (size 1.27 1.27)) hide)
  4541. )
  4542. (pin "1" (uuid 04a28995-10a7-4e8d-bf0a-3c28cd74c2fa))
  4543. (pin "2" (uuid 5b5e9d4f-5380-4795-9c5c-6c9dd2774543))
  4544. (pin "3" (uuid c2113ebe-baee-4c93-b17b-9f259cc79e1d))
  4545. (pin "4" (uuid fce757f0-707e-4a92-9cdc-645159fe4b93))
  4546. )
  4547. (symbol (lib_id "Device:C_Small") (at 116.84 237.49 0) (unit 1)
  4548. (in_bom yes) (on_board yes)
  4549. (uuid 00000000-0000-0000-0000-000061f573a1)
  4550. (property "Reference" "C2" (id 0) (at 119.1768 236.3216 0)
  4551. (effects (font (size 1.27 1.27)) (justify left))
  4552. )
  4553. (property "Value" "0.1uF" (id 1) (at 119.1768 238.633 0)
  4554. (effects (font (size 1.27 1.27)) (justify left))
  4555. )
  4556. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 116.84 237.49 0)
  4557. (effects (font (size 1.27 1.27)) hide)
  4558. )
  4559. (property "Datasheet" "~" (id 3) (at 116.84 237.49 0)
  4560. (effects (font (size 1.27 1.27)) hide)
  4561. )
  4562. (property "LCSC" "C1591" (id 4) (at 116.84 237.49 0)
  4563. (effects (font (size 1.27 1.27)) hide)
  4564. )
  4565. (property "Digikey" "1276-1935-1-ND" (id 5) (at 116.84 237.49 0)
  4566. (effects (font (size 1.27 1.27)) hide)
  4567. )
  4568. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 116.84 237.49 0)
  4569. (effects (font (size 1.27 1.27)) hide)
  4570. )
  4571. (pin "1" (uuid bf709803-4d4f-4339-b1c6-1b1dd9ed8ffe))
  4572. (pin "2" (uuid 9511d6e1-ad69-48c7-ab16-eeced975e0f6))
  4573. )
  4574. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 157.48 242.57 0) (unit 1)
  4575. (in_bom yes) (on_board yes)
  4576. (uuid 00000000-0000-0000-0000-000061f5777f)
  4577. (property "Reference" "D3" (id 0) (at 149.86 228.6 0)
  4578. (effects (font (size 1.27 1.27)) (justify left))
  4579. )
  4580. (property "Value" "SK6812SIDE-A" (id 1) (at 149.86 231.14 0)
  4581. (effects (font (size 1.27 1.27)) (justify left))
  4582. )
  4583. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 158.75 250.19 0)
  4584. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4585. )
  4586. (property "Datasheet" "" (id 3) (at 160.02 252.095 0)
  4587. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4588. )
  4589. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 157.48 242.57 0)
  4590. (effects (font (size 1.27 1.27)) hide)
  4591. )
  4592. (property "Digikey" "1528-4691-ND" (id 5) (at 157.48 242.57 0)
  4593. (effects (font (size 1.27 1.27)) hide)
  4594. )
  4595. (property "Mouser" "485-4691" (id 6) (at 157.48 242.57 0)
  4596. (effects (font (size 1.27 1.27)) hide)
  4597. )
  4598. (property "LCSC" "C2890037" (id 7) (at 157.48 242.57 0)
  4599. (effects (font (size 1.27 1.27)) hide)
  4600. )
  4601. (pin "1" (uuid 201ef1b6-fe47-4e18-a25d-8454a9ece970))
  4602. (pin "2" (uuid 6db3e0a6-b3ef-46d7-a683-43d6b85524e1))
  4603. (pin "3" (uuid 950602fa-6edc-4822-8c77-2744d02a2a8e))
  4604. (pin "4" (uuid e2a94c35-3ea5-4429-9e49-f1597125258b))
  4605. )
  4606. (symbol (lib_id "Device:C_Small") (at 144.78 237.49 0) (unit 1)
  4607. (in_bom yes) (on_board yes)
  4608. (uuid 00000000-0000-0000-0000-000061f57785)
  4609. (property "Reference" "C3" (id 0) (at 147.1168 236.3216 0)
  4610. (effects (font (size 1.27 1.27)) (justify left))
  4611. )
  4612. (property "Value" "0.1uF" (id 1) (at 147.1168 238.633 0)
  4613. (effects (font (size 1.27 1.27)) (justify left))
  4614. )
  4615. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 144.78 237.49 0)
  4616. (effects (font (size 1.27 1.27)) hide)
  4617. )
  4618. (property "Datasheet" "~" (id 3) (at 144.78 237.49 0)
  4619. (effects (font (size 1.27 1.27)) hide)
  4620. )
  4621. (property "LCSC" "C1591" (id 4) (at 144.78 237.49 0)
  4622. (effects (font (size 1.27 1.27)) hide)
  4623. )
  4624. (property "Digikey" "1276-1935-1-ND" (id 5) (at 144.78 237.49 0)
  4625. (effects (font (size 1.27 1.27)) hide)
  4626. )
  4627. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 144.78 237.49 0)
  4628. (effects (font (size 1.27 1.27)) hide)
  4629. )
  4630. (pin "1" (uuid 2ffc2f04-cc47-469f-96de-81004a825de9))
  4631. (pin "2" (uuid aa9279f7-b972-4f25-b0f3-5e0f01a71f40))
  4632. )
  4633. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 185.42 242.57 0) (unit 1)
  4634. (in_bom yes) (on_board yes)
  4635. (uuid 00000000-0000-0000-0000-000061f5835d)
  4636. (property "Reference" "D4" (id 0) (at 177.8 228.6 0)
  4637. (effects (font (size 1.27 1.27)) (justify left))
  4638. )
  4639. (property "Value" "SK6812SIDE-A" (id 1) (at 177.8 231.14 0)
  4640. (effects (font (size 1.27 1.27)) (justify left))
  4641. )
  4642. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 186.69 250.19 0)
  4643. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4644. )
  4645. (property "Datasheet" "" (id 3) (at 187.96 252.095 0)
  4646. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4647. )
  4648. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 185.42 242.57 0)
  4649. (effects (font (size 1.27 1.27)) hide)
  4650. )
  4651. (property "Digikey" "1528-4691-ND" (id 5) (at 185.42 242.57 0)
  4652. (effects (font (size 1.27 1.27)) hide)
  4653. )
  4654. (property "Mouser" "485-4691" (id 6) (at 185.42 242.57 0)
  4655. (effects (font (size 1.27 1.27)) hide)
  4656. )
  4657. (property "LCSC" "C2890037" (id 7) (at 185.42 242.57 0)
  4658. (effects (font (size 1.27 1.27)) hide)
  4659. )
  4660. (pin "1" (uuid d127318f-e6ee-4aa6-8794-a9c8d7148677))
  4661. (pin "2" (uuid e8a993ec-3ca1-4e1c-b9db-8fedba6ba9f3))
  4662. (pin "3" (uuid ddd35cc1-7ea2-4027-93d1-5b3fd2c08415))
  4663. (pin "4" (uuid f853907f-0368-4b9f-8e86-2c6abac9120f))
  4664. )
  4665. (symbol (lib_id "Device:C_Small") (at 172.72 237.49 0) (unit 1)
  4666. (in_bom yes) (on_board yes)
  4667. (uuid 00000000-0000-0000-0000-000061f58363)
  4668. (property "Reference" "C4" (id 0) (at 175.0568 236.3216 0)
  4669. (effects (font (size 1.27 1.27)) (justify left))
  4670. )
  4671. (property "Value" "0.1uF" (id 1) (at 175.0568 238.633 0)
  4672. (effects (font (size 1.27 1.27)) (justify left))
  4673. )
  4674. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 172.72 237.49 0)
  4675. (effects (font (size 1.27 1.27)) hide)
  4676. )
  4677. (property "Datasheet" "~" (id 3) (at 172.72 237.49 0)
  4678. (effects (font (size 1.27 1.27)) hide)
  4679. )
  4680. (property "LCSC" "C1591" (id 4) (at 172.72 237.49 0)
  4681. (effects (font (size 1.27 1.27)) hide)
  4682. )
  4683. (property "Digikey" "1276-1935-1-ND" (id 5) (at 172.72 237.49 0)
  4684. (effects (font (size 1.27 1.27)) hide)
  4685. )
  4686. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 172.72 237.49 0)
  4687. (effects (font (size 1.27 1.27)) hide)
  4688. )
  4689. (pin "1" (uuid b9df3039-b0ba-4288-b952-e06df3568a9e))
  4690. (pin "2" (uuid f6ebdeb1-8356-41f8-aef5-a882f96ea707))
  4691. )
  4692. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 213.36 242.57 0) (unit 1)
  4693. (in_bom yes) (on_board yes)
  4694. (uuid 00000000-0000-0000-0000-000061f59037)
  4695. (property "Reference" "D5" (id 0) (at 205.74 228.6 0)
  4696. (effects (font (size 1.27 1.27)) (justify left))
  4697. )
  4698. (property "Value" "SK6812SIDE-A" (id 1) (at 205.74 231.14 0)
  4699. (effects (font (size 1.27 1.27)) (justify left))
  4700. )
  4701. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 214.63 250.19 0)
  4702. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4703. )
  4704. (property "Datasheet" "" (id 3) (at 215.9 252.095 0)
  4705. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4706. )
  4707. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 213.36 242.57 0)
  4708. (effects (font (size 1.27 1.27)) hide)
  4709. )
  4710. (property "Digikey" "1528-4691-ND" (id 5) (at 213.36 242.57 0)
  4711. (effects (font (size 1.27 1.27)) hide)
  4712. )
  4713. (property "Mouser" "485-4691" (id 6) (at 213.36 242.57 0)
  4714. (effects (font (size 1.27 1.27)) hide)
  4715. )
  4716. (property "LCSC" "C2890037" (id 7) (at 213.36 242.57 0)
  4717. (effects (font (size 1.27 1.27)) hide)
  4718. )
  4719. (pin "1" (uuid c7bd907f-ded5-4071-a8ba-298b61938e2d))
  4720. (pin "2" (uuid d72feaa1-d250-4ba1-908e-630af4ccb017))
  4721. (pin "3" (uuid 863622d7-1ac7-42d5-b53e-b58d28e7ac53))
  4722. (pin "4" (uuid 401cd2a0-2a04-428b-98d5-784a840a38d1))
  4723. )
  4724. (symbol (lib_id "Device:C_Small") (at 200.66 237.49 0) (unit 1)
  4725. (in_bom yes) (on_board yes)
  4726. (uuid 00000000-0000-0000-0000-000061f5903d)
  4727. (property "Reference" "C5" (id 0) (at 202.9968 236.3216 0)
  4728. (effects (font (size 1.27 1.27)) (justify left))
  4729. )
  4730. (property "Value" "0.1uF" (id 1) (at 202.9968 238.633 0)
  4731. (effects (font (size 1.27 1.27)) (justify left))
  4732. )
  4733. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 200.66 237.49 0)
  4734. (effects (font (size 1.27 1.27)) hide)
  4735. )
  4736. (property "Datasheet" "~" (id 3) (at 200.66 237.49 0)
  4737. (effects (font (size 1.27 1.27)) hide)
  4738. )
  4739. (property "LCSC" "C1591" (id 4) (at 200.66 237.49 0)
  4740. (effects (font (size 1.27 1.27)) hide)
  4741. )
  4742. (property "Digikey" "1276-1935-1-ND" (id 5) (at 200.66 237.49 0)
  4743. (effects (font (size 1.27 1.27)) hide)
  4744. )
  4745. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 200.66 237.49 0)
  4746. (effects (font (size 1.27 1.27)) hide)
  4747. )
  4748. (pin "1" (uuid 9bd7e8a2-4890-4d4a-ba78-597a7ab993ac))
  4749. (pin "2" (uuid 222be3c0-bf81-4a68-9c90-b370f4595e2d))
  4750. )
  4751. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 241.3 242.57 0) (unit 1)
  4752. (in_bom yes) (on_board yes)
  4753. (uuid 00000000-0000-0000-0000-000061f59ca5)
  4754. (property "Reference" "D6" (id 0) (at 233.68 228.6 0)
  4755. (effects (font (size 1.27 1.27)) (justify left))
  4756. )
  4757. (property "Value" "SK6812SIDE-A" (id 1) (at 233.68 231.14 0)
  4758. (effects (font (size 1.27 1.27)) (justify left))
  4759. )
  4760. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 242.57 250.19 0)
  4761. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4762. )
  4763. (property "Datasheet" "" (id 3) (at 243.84 252.095 0)
  4764. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4765. )
  4766. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 241.3 242.57 0)
  4767. (effects (font (size 1.27 1.27)) hide)
  4768. )
  4769. (property "Digikey" "1528-4691-ND" (id 5) (at 241.3 242.57 0)
  4770. (effects (font (size 1.27 1.27)) hide)
  4771. )
  4772. (property "Mouser" "485-4691" (id 6) (at 241.3 242.57 0)
  4773. (effects (font (size 1.27 1.27)) hide)
  4774. )
  4775. (property "LCSC" "C2890037" (id 7) (at 241.3 242.57 0)
  4776. (effects (font (size 1.27 1.27)) hide)
  4777. )
  4778. (pin "1" (uuid 1ee46f38-e002-4d3e-ad64-8a0e5f2fcd53))
  4779. (pin "2" (uuid 244a08c3-3e40-487a-bf72-768fa3af4139))
  4780. (pin "3" (uuid bfa445ac-246e-4db8-a60c-beb85501bf65))
  4781. (pin "4" (uuid c3b2e23c-8699-44ed-8837-d92d75420e84))
  4782. )
  4783. (symbol (lib_id "Device:C_Small") (at 228.6 237.49 0) (unit 1)
  4784. (in_bom yes) (on_board yes)
  4785. (uuid 00000000-0000-0000-0000-000061f59cab)
  4786. (property "Reference" "C6" (id 0) (at 230.9368 236.3216 0)
  4787. (effects (font (size 1.27 1.27)) (justify left))
  4788. )
  4789. (property "Value" "0.1uF" (id 1) (at 230.9368 238.633 0)
  4790. (effects (font (size 1.27 1.27)) (justify left))
  4791. )
  4792. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 228.6 237.49 0)
  4793. (effects (font (size 1.27 1.27)) hide)
  4794. )
  4795. (property "Datasheet" "~" (id 3) (at 228.6 237.49 0)
  4796. (effects (font (size 1.27 1.27)) hide)
  4797. )
  4798. (property "LCSC" "C1591" (id 4) (at 228.6 237.49 0)
  4799. (effects (font (size 1.27 1.27)) hide)
  4800. )
  4801. (property "Digikey" "1276-1935-1-ND" (id 5) (at 228.6 237.49 0)
  4802. (effects (font (size 1.27 1.27)) hide)
  4803. )
  4804. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 228.6 237.49 0)
  4805. (effects (font (size 1.27 1.27)) hide)
  4806. )
  4807. (pin "1" (uuid 2c04050f-f512-4581-b983-748e3e9c8741))
  4808. (pin "2" (uuid 0e2b9951-d16b-44e6-b1cb-591d480e8428))
  4809. )
  4810. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 269.24 242.57 0) (unit 1)
  4811. (in_bom yes) (on_board yes)
  4812. (uuid 00000000-0000-0000-0000-000061f5a949)
  4813. (property "Reference" "D7" (id 0) (at 261.62 228.6 0)
  4814. (effects (font (size 1.27 1.27)) (justify left))
  4815. )
  4816. (property "Value" "SK6812SIDE-A" (id 1) (at 261.62 231.14 0)
  4817. (effects (font (size 1.27 1.27)) (justify left))
  4818. )
  4819. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 270.51 250.19 0)
  4820. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4821. )
  4822. (property "Datasheet" "" (id 3) (at 271.78 252.095 0)
  4823. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4824. )
  4825. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 269.24 242.57 0)
  4826. (effects (font (size 1.27 1.27)) hide)
  4827. )
  4828. (property "Digikey" "1528-4691-ND" (id 5) (at 269.24 242.57 0)
  4829. (effects (font (size 1.27 1.27)) hide)
  4830. )
  4831. (property "Mouser" "485-4691" (id 6) (at 269.24 242.57 0)
  4832. (effects (font (size 1.27 1.27)) hide)
  4833. )
  4834. (property "LCSC" "C2890037" (id 7) (at 269.24 242.57 0)
  4835. (effects (font (size 1.27 1.27)) hide)
  4836. )
  4837. (pin "1" (uuid 1d8217dd-eaa5-4107-a059-78f1a0cf2926))
  4838. (pin "2" (uuid 21792e87-7a3e-440b-91e0-fb1e08f2f0ea))
  4839. (pin "3" (uuid 2bcef6ab-349b-4b2d-949e-d48ed58c62d8))
  4840. (pin "4" (uuid 34103ee4-40e1-4607-be07-8f0e21ac8c2f))
  4841. )
  4842. (symbol (lib_id "Device:C_Small") (at 256.54 237.49 0) (unit 1)
  4843. (in_bom yes) (on_board yes)
  4844. (uuid 00000000-0000-0000-0000-000061f5a94f)
  4845. (property "Reference" "C7" (id 0) (at 258.8768 236.3216 0)
  4846. (effects (font (size 1.27 1.27)) (justify left))
  4847. )
  4848. (property "Value" "0.1uF" (id 1) (at 258.8768 238.633 0)
  4849. (effects (font (size 1.27 1.27)) (justify left))
  4850. )
  4851. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 256.54 237.49 0)
  4852. (effects (font (size 1.27 1.27)) hide)
  4853. )
  4854. (property "Datasheet" "~" (id 3) (at 256.54 237.49 0)
  4855. (effects (font (size 1.27 1.27)) hide)
  4856. )
  4857. (property "LCSC" "C1591" (id 4) (at 256.54 237.49 0)
  4858. (effects (font (size 1.27 1.27)) hide)
  4859. )
  4860. (property "Digikey" "1276-1935-1-ND" (id 5) (at 256.54 237.49 0)
  4861. (effects (font (size 1.27 1.27)) hide)
  4862. )
  4863. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 256.54 237.49 0)
  4864. (effects (font (size 1.27 1.27)) hide)
  4865. )
  4866. (pin "1" (uuid 258c48bd-1542-4a0f-b861-39673f328184))
  4867. (pin "2" (uuid 2e1c27a1-dd61-4b32-84b9-2ef402708e70))
  4868. )
  4869. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 297.18 242.57 0) (unit 1)
  4870. (in_bom yes) (on_board yes)
  4871. (uuid 00000000-0000-0000-0000-000061f5bfc3)
  4872. (property "Reference" "D8" (id 0) (at 289.56 228.6 0)
  4873. (effects (font (size 1.27 1.27)) (justify left))
  4874. )
  4875. (property "Value" "SK6812SIDE-A" (id 1) (at 289.56 231.14 0)
  4876. (effects (font (size 1.27 1.27)) (justify left))
  4877. )
  4878. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 298.45 250.19 0)
  4879. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4880. )
  4881. (property "Datasheet" "" (id 3) (at 299.72 252.095 0)
  4882. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4883. )
  4884. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 297.18 242.57 0)
  4885. (effects (font (size 1.27 1.27)) hide)
  4886. )
  4887. (property "Digikey" "1528-4691-ND" (id 5) (at 297.18 242.57 0)
  4888. (effects (font (size 1.27 1.27)) hide)
  4889. )
  4890. (property "Mouser" "485-4691" (id 6) (at 297.18 242.57 0)
  4891. (effects (font (size 1.27 1.27)) hide)
  4892. )
  4893. (property "LCSC" "C2890037" (id 7) (at 297.18 242.57 0)
  4894. (effects (font (size 1.27 1.27)) hide)
  4895. )
  4896. (pin "1" (uuid 288b0cba-a15a-4d68-9c26-9264b1d2c369))
  4897. (pin "2" (uuid e03bd6b8-1308-4880-a800-290862af978e))
  4898. (pin "3" (uuid 71176ca5-c623-4627-aab5-549c91a9fba5))
  4899. (pin "4" (uuid 99a3dbfb-1c73-4c78-be7c-ded34e626f42))
  4900. )
  4901. (symbol (lib_id "Device:C_Small") (at 284.48 237.49 0) (unit 1)
  4902. (in_bom yes) (on_board yes)
  4903. (uuid 00000000-0000-0000-0000-000061f5bfc9)
  4904. (property "Reference" "C8" (id 0) (at 286.8168 236.3216 0)
  4905. (effects (font (size 1.27 1.27)) (justify left))
  4906. )
  4907. (property "Value" "0.1uF" (id 1) (at 286.8168 238.633 0)
  4908. (effects (font (size 1.27 1.27)) (justify left))
  4909. )
  4910. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 284.48 237.49 0)
  4911. (effects (font (size 1.27 1.27)) hide)
  4912. )
  4913. (property "Datasheet" "~" (id 3) (at 284.48 237.49 0)
  4914. (effects (font (size 1.27 1.27)) hide)
  4915. )
  4916. (property "LCSC" "C1591" (id 4) (at 284.48 237.49 0)
  4917. (effects (font (size 1.27 1.27)) hide)
  4918. )
  4919. (property "Digikey" "1276-1935-1-ND" (id 5) (at 284.48 237.49 0)
  4920. (effects (font (size 1.27 1.27)) hide)
  4921. )
  4922. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 284.48 237.49 0)
  4923. (effects (font (size 1.27 1.27)) hide)
  4924. )
  4925. (pin "1" (uuid 2e65c8b8-a3a7-4207-a4c6-ab159b0c890b))
  4926. (pin "2" (uuid 79a2fc97-84ef-4b52-93ec-d9847aacf642))
  4927. )
  4928. (symbol (lib_id "power:+5V") (at 88.9 229.87 0) (unit 1)
  4929. (in_bom yes) (on_board yes)
  4930. (uuid 00000000-0000-0000-0000-000061f5e471)
  4931. (property "Reference" "#PWR0101" (id 0) (at 88.9 233.68 0)
  4932. (effects (font (size 1.27 1.27)) hide)
  4933. )
  4934. (property "Value" "+5V" (id 1) (at 89.281 225.4758 0))
  4935. (property "Footprint" "" (id 2) (at 88.9 229.87 0)
  4936. (effects (font (size 1.27 1.27)) hide)
  4937. )
  4938. (property "Datasheet" "" (id 3) (at 88.9 229.87 0)
  4939. (effects (font (size 1.27 1.27)) hide)
  4940. )
  4941. (pin "1" (uuid 59a13100-a5d0-4346-918b-7d0612ecf423))
  4942. )
  4943. (symbol (lib_id "power:GND") (at 88.9 256.54 0) (unit 1)
  4944. (in_bom yes) (on_board yes)
  4945. (uuid 00000000-0000-0000-0000-000061f5f724)
  4946. (property "Reference" "#PWR0102" (id 0) (at 88.9 262.89 0)
  4947. (effects (font (size 1.27 1.27)) hide)
  4948. )
  4949. (property "Value" "GND" (id 1) (at 89.027 260.9342 0))
  4950. (property "Footprint" "" (id 2) (at 88.9 256.54 0)
  4951. (effects (font (size 1.27 1.27)) hide)
  4952. )
  4953. (property "Datasheet" "" (id 3) (at 88.9 256.54 0)
  4954. (effects (font (size 1.27 1.27)) hide)
  4955. )
  4956. (pin "1" (uuid d060b14c-ff8a-4c92-966f-cf6735c0e13f))
  4957. )
  4958. (symbol (lib_id "Connector:Conn_01x03_Male") (at 398.78 171.45 180) (unit 1)
  4959. (in_bom yes) (on_board yes)
  4960. (uuid 00000000-0000-0000-0000-000061f6e8c0)
  4961. (property "Reference" "J1" (id 0) (at 399.4912 172.0596 0)
  4962. (effects (font (size 1.27 1.27)) (justify right))
  4963. )
  4964. (property "Value" "BLDC" (id 1) (at 399.4912 169.7482 0)
  4965. (effects (font (size 1.27 1.27)) (justify right))
  4966. )
  4967. (property "Footprint" "Molex:532610371" (id 2) (at 398.78 171.45 0)
  4968. (effects (font (size 1.27 1.27)) hide)
  4969. )
  4970. (property "Datasheet" "~" (id 3) (at 398.78 171.45 0)
  4971. (effects (font (size 1.27 1.27)) hide)
  4972. )
  4973. (property "LCSC" "C293630" (id 4) (at 398.78 171.45 0)
  4974. (effects (font (size 1.27 1.27)) hide)
  4975. )
  4976. (property "Digikey" "WM7621CT-ND" (id 5) (at 398.78 171.45 0)
  4977. (effects (font (size 1.27 1.27)) hide)
  4978. )
  4979. (property "Mouser" "538-53261-0371" (id 6) (at 398.78 171.45 0)
  4980. (effects (font (size 1.27 1.27)) hide)
  4981. )
  4982. (pin "1" (uuid 8389195b-356a-44c3-a2e9-7820117d6596))
  4983. (pin "2" (uuid 37202a1b-6857-45c1-82b8-63d2e45accf1))
  4984. (pin "3" (uuid 68266e48-6278-4b4b-9827-471e05208fe8))
  4985. )
  4986. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 85.09 25.4 0) (unit 1)
  4987. (in_bom yes) (on_board yes)
  4988. (uuid 00000000-0000-0000-0000-000061f74a74)
  4989. (property "Reference" "H1" (id 0) (at 83.82 19.05 0)
  4990. (effects (font (size 1.27 1.27)) (justify left))
  4991. )
  4992. (property "Value" "MotorHole" (id 1) (at 83.82 20.32 0)
  4993. (effects (font (size 1.27 1.27)) (justify left))
  4994. )
  4995. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 85.09 25.4 0)
  4996. (effects (font (size 1.27 1.27)) hide)
  4997. )
  4998. (property "Datasheet" "~" (id 3) (at 85.09 25.4 0)
  4999. (effects (font (size 1.27 1.27)) hide)
  5000. )
  5001. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round)" (id 4) (at 85.09 25.4 0)
  5002. (effects (font (size 1.27 1.27)) hide)
  5003. )
  5004. (pin "1" (uuid fb7e8f26-7381-4b70-9ac7-a6d9d49f6672))
  5005. )
  5006. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 96.52 25.4 0) (unit 1)
  5007. (in_bom yes) (on_board yes)
  5008. (uuid 00000000-0000-0000-0000-000061f75e86)
  5009. (property "Reference" "H2" (id 0) (at 95.25 19.05 0)
  5010. (effects (font (size 1.27 1.27)) (justify left))
  5011. )
  5012. (property "Value" "MotorHole" (id 1) (at 95.25 20.32 0)
  5013. (effects (font (size 1.27 1.27)) (justify left))
  5014. )
  5015. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 96.52 25.4 0)
  5016. (effects (font (size 1.27 1.27)) hide)
  5017. )
  5018. (property "Datasheet" "~" (id 3) (at 96.52 25.4 0)
  5019. (effects (font (size 1.27 1.27)) hide)
  5020. )
  5021. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round)" (id 4) (at 96.52 25.4 0)
  5022. (effects (font (size 1.27 1.27)) hide)
  5023. )
  5024. (pin "1" (uuid a49a4d82-48bd-42b8-95c9-1c983664fc79))
  5025. )
  5026. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 107.95 25.4 0) (unit 1)
  5027. (in_bom yes) (on_board yes)
  5028. (uuid 00000000-0000-0000-0000-000061f76bf7)
  5029. (property "Reference" "H3" (id 0) (at 106.68 19.05 0)
  5030. (effects (font (size 1.27 1.27)) (justify left))
  5031. )
  5032. (property "Value" "MotorHole" (id 1) (at 106.68 20.32 0)
  5033. (effects (font (size 1.27 1.27)) (justify left))
  5034. )
  5035. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 107.95 25.4 0)
  5036. (effects (font (size 1.27 1.27)) hide)
  5037. )
  5038. (property "Datasheet" "~" (id 3) (at 107.95 25.4 0)
  5039. (effects (font (size 1.27 1.27)) hide)
  5040. )
  5041. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round)" (id 4) (at 107.95 25.4 0)
  5042. (effects (font (size 1.27 1.27)) hide)
  5043. )
  5044. (pin "1" (uuid f5b3ac78-e150-4b32-bc84-9d75c87fb341))
  5045. )
  5046. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 85.09 40.64 0) (unit 1)
  5047. (in_bom yes) (on_board yes)
  5048. (uuid 00000000-0000-0000-0000-000061f779d1)
  5049. (property "Reference" "H4" (id 0) (at 83.82 34.29 0)
  5050. (effects (font (size 1.27 1.27)) (justify left))
  5051. )
  5052. (property "Value" "MountHole" (id 1) (at 83.82 35.56 0)
  5053. (effects (font (size 1.27 1.27)) (justify left))
  5054. )
  5055. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 85.09 40.64 0)
  5056. (effects (font (size 1.27 1.27)) hide)
  5057. )
  5058. (property "Datasheet" "~" (id 3) (at 85.09 40.64 0)
  5059. (effects (font (size 1.27 1.27)) hide)
  5060. )
  5061. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 85.09 40.64 0)
  5062. (effects (font (size 1.27 1.27)) hide)
  5063. )
  5064. (pin "1" (uuid 2e306457-a203-45bd-8828-39a6fc7884b5))
  5065. )
  5066. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 96.52 40.64 0) (unit 1)
  5067. (in_bom yes) (on_board yes)
  5068. (uuid 00000000-0000-0000-0000-000061f788c4)
  5069. (property "Reference" "H5" (id 0) (at 95.25 34.29 0)
  5070. (effects (font (size 1.27 1.27)) (justify left))
  5071. )
  5072. (property "Value" "MountHole" (id 1) (at 95.25 35.56 0)
  5073. (effects (font (size 1.27 1.27)) (justify left))
  5074. )
  5075. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 96.52 40.64 0)
  5076. (effects (font (size 1.27 1.27)) hide)
  5077. )
  5078. (property "Datasheet" "~" (id 3) (at 96.52 40.64 0)
  5079. (effects (font (size 1.27 1.27)) hide)
  5080. )
  5081. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 96.52 40.64 0)
  5082. (effects (font (size 1.27 1.27)) hide)
  5083. )
  5084. (pin "1" (uuid 4a7017bb-a698-433b-a0be-587786fcc0bb))
  5085. )
  5086. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 107.95 40.64 0) (unit 1)
  5087. (in_bom yes) (on_board yes)
  5088. (uuid 00000000-0000-0000-0000-000061f79385)
  5089. (property "Reference" "H6" (id 0) (at 106.68 34.29 0)
  5090. (effects (font (size 1.27 1.27)) (justify left))
  5091. )
  5092. (property "Value" "MountHole" (id 1) (at 106.68 35.56 0)
  5093. (effects (font (size 1.27 1.27)) (justify left))
  5094. )
  5095. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 107.95 40.64 0)
  5096. (effects (font (size 1.27 1.27)) hide)
  5097. )
  5098. (property "Datasheet" "~" (id 3) (at 107.95 40.64 0)
  5099. (effects (font (size 1.27 1.27)) hide)
  5100. )
  5101. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 107.95 40.64 0)
  5102. (effects (font (size 1.27 1.27)) hide)
  5103. )
  5104. (pin "1" (uuid 1b2eb90f-4916-4496-934c-ebfaf59fd7d2))
  5105. )
  5106. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 119.38 40.64 0) (unit 1)
  5107. (in_bom yes) (on_board yes)
  5108. (uuid 00000000-0000-0000-0000-000061f79f4a)
  5109. (property "Reference" "H7" (id 0) (at 118.11 34.29 0)
  5110. (effects (font (size 1.27 1.27)) (justify left))
  5111. )
  5112. (property "Value" "MountHole" (id 1) (at 118.11 35.56 0)
  5113. (effects (font (size 1.27 1.27)) (justify left))
  5114. )
  5115. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 119.38 40.64 0)
  5116. (effects (font (size 1.27 1.27)) hide)
  5117. )
  5118. (property "Datasheet" "~" (id 3) (at 119.38 40.64 0)
  5119. (effects (font (size 1.27 1.27)) hide)
  5120. )
  5121. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 119.38 40.64 0)
  5122. (effects (font (size 1.27 1.27)) hide)
  5123. )
  5124. (pin "1" (uuid c18786e1-cb25-48dd-81cc-bf7c7fdf476f))
  5125. )
  5126. (symbol (lib_id "Connector:USB_C_Receptacle_USB2.0") (at 38.1 76.2 0) (unit 1)
  5127. (in_bom yes) (on_board yes)
  5128. (uuid 00000000-0000-0000-0000-000061fcaa5b)
  5129. (property "Reference" "J2" (id 0) (at 40.8178 54.1782 0))
  5130. (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 40.8178 56.4896 0))
  5131. (property "Footprint" "GCT_USB:USB4510_NoPaste" (id 2) (at 41.91 76.2 0)
  5132. (effects (font (size 1.27 1.27)) hide)
  5133. )
  5134. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 41.91 76.2 0)
  5135. (effects (font (size 1.27 1.27)) hide)
  5136. )
  5137. (property "LCSC" "C428463" (id 4) (at 38.1 76.2 0)
  5138. (effects (font (size 1.27 1.27)) hide)
  5139. )
  5140. (property "Mouser" "640-USB4510031A" (id 5) (at 38.1 76.2 0)
  5141. (effects (font (size 1.27 1.27)) hide)
  5142. )
  5143. (property "Digikey" "USB4510-03-1-A" (id 6) (at 38.1 76.2 0)
  5144. (effects (font (size 1.27 1.27)) hide)
  5145. )
  5146. (pin "A1" (uuid 002f7484-2b7c-4028-a197-c7ee893455cd))
  5147. (pin "A12" (uuid b64072d6-c6a3-480c-b247-ced76a0683e2))
  5148. (pin "A4" (uuid fd650d11-1f43-4a29-b666-0e915ada0015))
  5149. (pin "A5" (uuid 11059d92-63df-44ac-a943-05eabeaf6b3b))
  5150. (pin "A6" (uuid 6ca9a15b-7bed-4718-b87f-cf6cd158c0fb))
  5151. (pin "A7" (uuid 065c4afd-f083-4572-ae73-9f005b8a95bc))
  5152. (pin "A8" (uuid 62bc0e7f-185a-4e68-985e-5d6bf4e3ea4f))
  5153. (pin "A9" (uuid f66ea475-b102-46de-8024-e5ca653f9bf4))
  5154. (pin "B1" (uuid 5baffaf4-808e-4171-9980-10bcb56b2135))
  5155. (pin "B12" (uuid 8781b105-979a-42b2-819f-1b043b4adf27))
  5156. (pin "B4" (uuid fac50c0a-4700-4a91-82d0-1c46b35dca25))
  5157. (pin "B5" (uuid 95895ffd-4330-4c63-aa8a-80105ad94072))
  5158. (pin "B6" (uuid d3c25891-3308-4e1a-81a3-920c152e8483))
  5159. (pin "B7" (uuid ded34583-530c-49a3-9bd1-3387d788ac5f))
  5160. (pin "B8" (uuid bab68279-cb28-4a3f-9bf9-91aaa2b9f18f))
  5161. (pin "B9" (uuid 25af3105-71ee-4af7-8f3c-eb77a7b9280e))
  5162. (pin "S1" (uuid 7214610a-9815-4f4b-85c6-8f2cd1130da1))
  5163. )
  5164. (symbol (lib_id "Device:Q_PNP_BEC") (at 191.77 172.72 180) (unit 1)
  5165. (in_bom yes) (on_board yes)
  5166. (uuid 00000000-0000-0000-0000-000061fe5517)
  5167. (property "Reference" "Q1" (id 0) (at 186.9186 171.5516 0)
  5168. (effects (font (size 1.27 1.27)) (justify left))
  5169. )
  5170. (property "Value" "MMBT4403" (id 1) (at 186.9186 173.863 0)
  5171. (effects (font (size 1.27 1.27)) (justify left))
  5172. )
  5173. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 186.69 175.26 0)
  5174. (effects (font (size 1.27 1.27)) hide)
  5175. )
  5176. (property "Datasheet" "~" (id 3) (at 191.77 172.72 0)
  5177. (effects (font (size 1.27 1.27)) hide)
  5178. )
  5179. (property "LCSC" "C78864" (id 4) (at 191.77 172.72 0)
  5180. (effects (font (size 1.27 1.27)) hide)
  5181. )
  5182. (property "Digikey" "MMBT4403LT1GOSCT-ND" (id 5) (at 191.77 172.72 0)
  5183. (effects (font (size 1.27 1.27)) hide)
  5184. )
  5185. (property "Mouser" "241-MMBT4403R100001" (id 6) (at 191.77 172.72 0)
  5186. (effects (font (size 1.27 1.27)) hide)
  5187. )
  5188. (pin "1" (uuid 161b1717-b29c-4bd9-8a62-3aa7a05da5be))
  5189. (pin "2" (uuid a2db5db7-5865-46a7-aee9-882a62db9f60))
  5190. (pin "3" (uuid 32786941-fff9-4885-b617-e55883187978))
  5191. )
  5192. (symbol (lib_id "power:GND") (at 30.48 104.14 0) (unit 1)
  5193. (in_bom yes) (on_board yes)
  5194. (uuid 00000000-0000-0000-0000-000061fefd56)
  5195. (property "Reference" "#PWR0103" (id 0) (at 30.48 110.49 0)
  5196. (effects (font (size 1.27 1.27)) hide)
  5197. )
  5198. (property "Value" "GND" (id 1) (at 30.607 108.5342 0))
  5199. (property "Footprint" "" (id 2) (at 30.48 104.14 0)
  5200. (effects (font (size 1.27 1.27)) hide)
  5201. )
  5202. (property "Datasheet" "" (id 3) (at 30.48 104.14 0)
  5203. (effects (font (size 1.27 1.27)) hide)
  5204. )
  5205. (pin "1" (uuid 753db779-6d2f-4629-a652-9a47910cf470))
  5206. )
  5207. (symbol (lib_id "Device:R_Small") (at 83.82 68.58 0) (unit 1)
  5208. (in_bom yes) (on_board yes)
  5209. (uuid 00000000-0000-0000-0000-000061ff5247)
  5210. (property "Reference" "R1" (id 0) (at 85.3186 67.4116 0)
  5211. (effects (font (size 1.27 1.27)) (justify left))
  5212. )
  5213. (property "Value" "5.1k" (id 1) (at 85.3186 69.723 0)
  5214. (effects (font (size 1.27 1.27)) (justify left))
  5215. )
  5216. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 83.82 68.58 0)
  5217. (effects (font (size 1.27 1.27)) hide)
  5218. )
  5219. (property "Datasheet" "~" (id 3) (at 83.82 68.58 0)
  5220. (effects (font (size 1.27 1.27)) hide)
  5221. )
  5222. (property "LCSC" "C105580" (id 4) (at 83.82 68.58 0)
  5223. (effects (font (size 1.27 1.27)) hide)
  5224. )
  5225. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 83.82 68.58 0)
  5226. (effects (font (size 1.27 1.27)) hide)
  5227. )
  5228. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 83.82 68.58 0)
  5229. (effects (font (size 1.27 1.27)) hide)
  5230. )
  5231. (pin "1" (uuid 2622f595-7ff0-453e-9b78-19125b1110e8))
  5232. (pin "2" (uuid 7bfd21eb-4ee9-42ce-8900-a93d825953d0))
  5233. )
  5234. (symbol (lib_id "Device:R_Small") (at 77.47 71.12 0) (unit 1)
  5235. (in_bom yes) (on_board yes)
  5236. (uuid 00000000-0000-0000-0000-000061ff59bf)
  5237. (property "Reference" "R2" (id 0) (at 78.9686 69.9516 0)
  5238. (effects (font (size 1.27 1.27)) (justify left))
  5239. )
  5240. (property "Value" "5.1k" (id 1) (at 78.9686 72.263 0)
  5241. (effects (font (size 1.27 1.27)) (justify left))
  5242. )
  5243. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 77.47 71.12 0)
  5244. (effects (font (size 1.27 1.27)) hide)
  5245. )
  5246. (property "Datasheet" "~" (id 3) (at 77.47 71.12 0)
  5247. (effects (font (size 1.27 1.27)) hide)
  5248. )
  5249. (property "LCSC" "C105580" (id 4) (at 77.47 71.12 0)
  5250. (effects (font (size 1.27 1.27)) hide)
  5251. )
  5252. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 77.47 71.12 0)
  5253. (effects (font (size 1.27 1.27)) hide)
  5254. )
  5255. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 77.47 71.12 0)
  5256. (effects (font (size 1.27 1.27)) hide)
  5257. )
  5258. (pin "1" (uuid 03899fc2-7ab8-4d54-82c2-1488f5d9b0d9))
  5259. (pin "2" (uuid acc4d69b-68c3-4d63-9943-16f6eacb0ebc))
  5260. )
  5261. (symbol (lib_id "power:GND") (at 81.28 77.47 0) (unit 1)
  5262. (in_bom yes) (on_board yes)
  5263. (uuid 00000000-0000-0000-0000-000061ff8431)
  5264. (property "Reference" "#PWR0104" (id 0) (at 81.28 83.82 0)
  5265. (effects (font (size 1.27 1.27)) hide)
  5266. )
  5267. (property "Value" "GND" (id 1) (at 81.407 81.8642 0))
  5268. (property "Footprint" "" (id 2) (at 81.28 77.47 0)
  5269. (effects (font (size 1.27 1.27)) hide)
  5270. )
  5271. (property "Datasheet" "" (id 3) (at 81.28 77.47 0)
  5272. (effects (font (size 1.27 1.27)) hide)
  5273. )
  5274. (pin "1" (uuid eb8a3560-5898-4134-bac6-7bb251ee79be))
  5275. )
  5276. (symbol (lib_id "Device:R_Small") (at 184.15 184.15 0) (unit 1)
  5277. (in_bom yes) (on_board yes)
  5278. (uuid 00000000-0000-0000-0000-000061ff8747)
  5279. (property "Reference" "R3" (id 0) (at 185.6486 182.9816 0)
  5280. (effects (font (size 1.27 1.27)) (justify left))
  5281. )
  5282. (property "Value" "10k" (id 1) (at 185.6486 185.293 0)
  5283. (effects (font (size 1.27 1.27)) (justify left))
  5284. )
  5285. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 184.15 0)
  5286. (effects (font (size 1.27 1.27)) hide)
  5287. )
  5288. (property "Datasheet" "~" (id 3) (at 184.15 184.15 0)
  5289. (effects (font (size 1.27 1.27)) hide)
  5290. )
  5291. (property "LCSC" "C98220" (id 4) (at 184.15 184.15 0)
  5292. (effects (font (size 1.27 1.27)) hide)
  5293. )
  5294. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 184.15 184.15 0)
  5295. (effects (font (size 1.27 1.27)) hide)
  5296. )
  5297. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 184.15 184.15 0)
  5298. (effects (font (size 1.27 1.27)) hide)
  5299. )
  5300. (pin "1" (uuid 4d0cb151-be02-460e-84ff-e89488e5e234))
  5301. (pin "2" (uuid 5a7e1875-0a35-41e4-b34e-52ef60ffafd7))
  5302. )
  5303. (symbol (lib_id "Device:R_Small") (at 184.15 191.77 0) (unit 1)
  5304. (in_bom yes) (on_board yes)
  5305. (uuid 00000000-0000-0000-0000-000061fff7fc)
  5306. (property "Reference" "R4" (id 0) (at 185.6486 190.6016 0)
  5307. (effects (font (size 1.27 1.27)) (justify left))
  5308. )
  5309. (property "Value" "8.2k" (id 1) (at 185.6486 192.913 0)
  5310. (effects (font (size 1.27 1.27)) (justify left))
  5311. )
  5312. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 191.77 0)
  5313. (effects (font (size 1.27 1.27)) hide)
  5314. )
  5315. (property "Datasheet" "~" (id 3) (at 184.15 191.77 0)
  5316. (effects (font (size 1.27 1.27)) hide)
  5317. )
  5318. (property "LCSC" "C114637" (id 4) (at 184.15 191.77 0)
  5319. (effects (font (size 1.27 1.27)) hide)
  5320. )
  5321. (property "Digikey" "RMCF0603FT8K20CT-ND" (id 5) (at 184.15 191.77 0)
  5322. (effects (font (size 1.27 1.27)) hide)
  5323. )
  5324. (property "Mouser" "652-CR0603FX-8201ELF" (id 6) (at 184.15 191.77 0)
  5325. (effects (font (size 1.27 1.27)) hide)
  5326. )
  5327. (pin "1" (uuid 4677f77b-9c70-421e-9de7-f775b3529feb))
  5328. (pin "2" (uuid 97568c37-72cd-4f98-87e8-6c89ce613585))
  5329. )
  5330. (symbol (lib_id "lilygo_micro32:T-Micro32_Plus") (at 359.41 50.8 0) (unit 1)
  5331. (in_bom yes) (on_board yes)
  5332. (uuid 00000000-0000-0000-0000-00006200e46e)
  5333. (property "Reference" "U2" (id 0) (at 359.41 26.289 0))
  5334. (property "Value" "T-Micro32_Plus" (id 1) (at 359.41 28.6004 0))
  5335. (property "Footprint" "lilygo_micro32:T-Micro32" (id 2) (at 359.41 50.8 0)
  5336. (effects (font (size 1.27 1.27)) hide)
  5337. )
  5338. (property "Datasheet" "" (id 3) (at 359.41 50.8 0)
  5339. (effects (font (size 1.27 1.27)) hide)
  5340. )
  5341. (property "AliExpress" "https://www.aliexpress.com/item/1005002308952882.html" (id 4) (at 359.41 50.8 0)
  5342. (effects (font (size 1.27 1.27)) hide)
  5343. )
  5344. (property "Digikey" "N/A" (id 5) (at 359.41 50.8 0)
  5345. (effects (font (size 1.27 1.27)) hide)
  5346. )
  5347. (property "LCSC" "N/A" (id 6) (at 359.41 50.8 0)
  5348. (effects (font (size 1.27 1.27)) hide)
  5349. )
  5350. (property "Mouser" "N/A" (id 7) (at 359.41 50.8 0)
  5351. (effects (font (size 1.27 1.27)) hide)
  5352. )
  5353. (pin "1" (uuid 6b3002dd-62c9-4f2a-8c51-d319894ff4a7))
  5354. (pin "10" (uuid 34029f0e-f900-4d7a-9828-197bbcb8268d))
  5355. (pin "11" (uuid cbe5ee8f-62c2-4029-9056-b2f9e38d44f7))
  5356. (pin "12" (uuid 1b39aee1-14bb-4f57-949c-af5946eea388))
  5357. (pin "13" (uuid 0471630c-6e2d-4993-a721-ad6b31523ea6))
  5358. (pin "14" (uuid c28a02b8-543d-4b71-94f5-b4f7fb82f2a4))
  5359. (pin "15" (uuid bfdd06e2-88b3-46c3-90e9-61feb9373e52))
  5360. (pin "16" (uuid e55179bd-83e9-4012-8409-5f9273ff012b))
  5361. (pin "17" (uuid e5d566b5-604a-4348-bb23-43d85bcaf394))
  5362. (pin "18" (uuid 3f337261-bd0b-4a3c-af5d-41e4f20b8d2b))
  5363. (pin "19" (uuid 89b4a707-c1ed-4546-9194-77a5268f4f37))
  5364. (pin "2" (uuid 6eb210e6-2a55-4bbe-b437-8097f6ba8718))
  5365. (pin "20" (uuid 70335fd6-e8f4-4775-9886-57d960327617))
  5366. (pin "21" (uuid 89a0ce78-20ea-4c37-a2a1-821844b77b5d))
  5367. (pin "22" (uuid 5c99a6ab-e247-47b9-aa50-cb98a25ea96f))
  5368. (pin "23" (uuid a6891bb5-a357-4c05-8e0e-ce8ff96bc5b7))
  5369. (pin "24" (uuid 89c5080f-2ff3-46dd-9810-2d1cc5f0678f))
  5370. (pin "25" (uuid a0f7b4f1-b832-4e8c-a8da-e907a365d7c9))
  5371. (pin "26" (uuid d462d3d3-f72d-4da5-ba63-9581787e3cbc))
  5372. (pin "27" (uuid 73a6877f-e142-4c8a-9931-2019ad27bde0))
  5373. (pin "28" (uuid da72a49f-1d98-4ec6-a8da-2d113d494eac))
  5374. (pin "29" (uuid f0f06ae3-1e13-44be-bb4c-cd708e56fb43))
  5375. (pin "3" (uuid 502a5913-ee24-401f-9f1a-9d3a372ca6ac))
  5376. (pin "30" (uuid 9ea0d503-4d4d-4c1c-90df-744a6489c595))
  5377. (pin "31" (uuid 9d64d986-5464-4a8c-99c0-33609c2bcbc0))
  5378. (pin "32" (uuid da16f818-0e37-4603-a547-ed7df9a96452))
  5379. (pin "33" (uuid b7f33759-9c41-4f21-9251-82c96e55b33c))
  5380. (pin "34" (uuid 8078e752-010a-4a6c-9826-0a04781deb71))
  5381. (pin "35" (uuid a908c14e-8db0-43d6-ad9e-7bc7cd7d2260))
  5382. (pin "36" (uuid 7e6bef7f-a70d-4c13-b4df-61d4bdc1257a))
  5383. (pin "37" (uuid 2c427024-ca14-4429-b693-ea483e491065))
  5384. (pin "38" (uuid 1da88dc4-5345-4e0d-a84c-400631092f11))
  5385. (pin "4" (uuid bbc62690-b8fb-438a-8ee0-c77d65956f89))
  5386. (pin "5" (uuid bb690633-a2d8-45d8-8d80-85ce2f66f3a7))
  5387. (pin "6" (uuid aa67310a-259a-4b0d-8870-2ee279e7e79a))
  5388. (pin "7" (uuid 6eaf2310-87a6-4b9a-92e8-35debbcaa5b5))
  5389. (pin "8" (uuid d7b0be32-8a7e-4951-abf9-98542738f8f1))
  5390. (pin "9" (uuid 82fd1409-968b-41c3-be8c-cb2561ea3ffe))
  5391. )
  5392. (symbol (lib_id "Device:L_Small") (at 173.99 181.61 270) (unit 1)
  5393. (in_bom yes) (on_board yes)
  5394. (uuid 00000000-0000-0000-0000-00006200e5de)
  5395. (property "Reference" "L1" (id 0) (at 173.99 177.0126 90))
  5396. (property "Value" "3.3uH" (id 1) (at 173.99 179.324 90))
  5397. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 173.99 181.61 0)
  5398. (effects (font (size 1.27 1.27)) hide)
  5399. )
  5400. (property "Datasheet" "~" (id 3) (at 173.99 181.61 0)
  5401. (effects (font (size 1.27 1.27)) hide)
  5402. )
  5403. (property "LCSC" "C307744" (id 4) (at 173.99 181.61 0)
  5404. (effects (font (size 1.27 1.27)) hide)
  5405. )
  5406. (property "Digikey" "445-6394-1-ND" (id 5) (at 173.99 181.61 0)
  5407. (effects (font (size 1.27 1.27)) hide)
  5408. )
  5409. (property "Mouser" "810-MLZ2012A3R3WT000" (id 6) (at 173.99 181.61 0)
  5410. (effects (font (size 1.27 1.27)) hide)
  5411. )
  5412. (pin "1" (uuid 89283502-e13e-4c58-93fe-0e0a0b4dc0b5))
  5413. (pin "2" (uuid 7eb55f38-c35e-457a-b1e4-b1dae5d70338))
  5414. )
  5415. (symbol (lib_id "Device:C_Small") (at 167.64 184.15 0) (unit 1)
  5416. (in_bom yes) (on_board yes)
  5417. (uuid 00000000-0000-0000-0000-0000620172ce)
  5418. (property "Reference" "C19" (id 0) (at 169.9768 182.9816 0)
  5419. (effects (font (size 1.27 1.27)) (justify left))
  5420. )
  5421. (property "Value" "0.1uF" (id 1) (at 169.9768 185.293 0)
  5422. (effects (font (size 1.27 1.27)) (justify left))
  5423. )
  5424. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 167.64 184.15 0)
  5425. (effects (font (size 1.27 1.27)) hide)
  5426. )
  5427. (property "Datasheet" "~" (id 3) (at 167.64 184.15 0)
  5428. (effects (font (size 1.27 1.27)) hide)
  5429. )
  5430. (property "LCSC" "C1591" (id 4) (at 167.64 184.15 0)
  5431. (effects (font (size 1.27 1.27)) hide)
  5432. )
  5433. (property "Digikey" "1276-1935-1-ND" (id 5) (at 167.64 184.15 0)
  5434. (effects (font (size 1.27 1.27)) hide)
  5435. )
  5436. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 167.64 184.15 0)
  5437. (effects (font (size 1.27 1.27)) hide)
  5438. )
  5439. (pin "1" (uuid 3e488e92-bddd-4d44-95f8-53f1899959b3))
  5440. (pin "2" (uuid e97a138c-907f-4ac2-909d-5420774bbc49))
  5441. )
  5442. (symbol (lib_id "Interface_USB:CH340C") (at 121.92 77.47 0) (unit 1)
  5443. (in_bom yes) (on_board yes)
  5444. (uuid 00000000-0000-0000-0000-0000620180e0)
  5445. (property "Reference" "U3" (id 0) (at 114.3 57.15 0))
  5446. (property "Value" "CH340C" (id 1) (at 118.11 81.28 0))
  5447. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 123.19 91.44 0)
  5448. (effects (font (size 1.27 1.27)) (justify left) hide)
  5449. )
  5450. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/Jiangsu-Qin-Heng-CH340C_C84681.pdf" (id 3) (at 113.03 57.15 0)
  5451. (effects (font (size 1.27 1.27)) hide)
  5452. )
  5453. (property "LCSC" "C84681" (id 4) (at 121.92 77.47 0)
  5454. (effects (font (size 1.27 1.27)) hide)
  5455. )
  5456. (property "Digikey" "N/A" (id 5) (at 121.92 77.47 0)
  5457. (effects (font (size 1.27 1.27)) hide)
  5458. )
  5459. (property "Mouser" "N/A" (id 6) (at 121.92 77.47 0)
  5460. (effects (font (size 1.27 1.27)) hide)
  5461. )
  5462. (pin "1" (uuid ec1f1e1b-be42-4866-9a6b-b89e6e88f2c5))
  5463. (pin "10" (uuid 44d072f9-64e1-459e-80d1-c82fa5b6cb3e))
  5464. (pin "11" (uuid 181a4764-a462-4b4f-82ec-35df94857db0))
  5465. (pin "12" (uuid 05f453e1-e6ac-4725-ac6f-c737cb237871))
  5466. (pin "13" (uuid ec54d593-d947-40d5-9ce4-01090f07d42f))
  5467. (pin "14" (uuid 016969ab-09a8-471c-ace6-1bdaa379b509))
  5468. (pin "15" (uuid f12847bd-98ae-41f9-b585-95021b3ae723))
  5469. (pin "16" (uuid d539fbf6-d474-41de-bda0-19ba022ca66a))
  5470. (pin "2" (uuid df232253-71d7-4d83-a4f3-12da054a77bd))
  5471. (pin "3" (uuid 40950b1d-ca89-4396-b2fc-a613e266e57c))
  5472. (pin "4" (uuid be6525b4-e91c-443a-b608-161699ca5e45))
  5473. (pin "5" (uuid daf121ec-2c00-4e96-96aa-2bc6f7a0fed5))
  5474. (pin "6" (uuid 070365ef-242a-4d41-bc0a-b8ed9b91feca))
  5475. (pin "7" (uuid 76011dd7-642b-438a-bb90-b324383a7851))
  5476. (pin "8" (uuid 5e597a99-b966-40ca-93cf-60af0be59632))
  5477. (pin "9" (uuid 62785fc4-216d-4983-9ac2-0f8d21d68772))
  5478. )
  5479. (symbol (lib_id "Device:C_Small") (at 158.75 184.15 0) (unit 1)
  5480. (in_bom yes) (on_board yes)
  5481. (uuid 00000000-0000-0000-0000-0000620191b6)
  5482. (property "Reference" "C18" (id 0) (at 161.0868 182.9816 0)
  5483. (effects (font (size 1.27 1.27)) (justify left))
  5484. )
  5485. (property "Value" "10uF" (id 1) (at 161.0868 185.293 0)
  5486. (effects (font (size 1.27 1.27)) (justify left))
  5487. )
  5488. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 158.75 184.15 0)
  5489. (effects (font (size 1.27 1.27)) hide)
  5490. )
  5491. (property "Datasheet" "~" (id 3) (at 158.75 184.15 0)
  5492. (effects (font (size 1.27 1.27)) hide)
  5493. )
  5494. (property "LCSC" "C2922480" (id 4) (at 158.75 184.15 0)
  5495. (effects (font (size 1.27 1.27)) hide)
  5496. )
  5497. (property "Digikey" "1276-2891-1-ND" (id 5) (at 158.75 184.15 0)
  5498. (effects (font (size 1.27 1.27)) hide)
  5499. )
  5500. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 158.75 184.15 0)
  5501. (effects (font (size 1.27 1.27)) hide)
  5502. )
  5503. (pin "1" (uuid dbf73e11-83bc-47c4-99f5-3e855a0a071c))
  5504. (pin "2" (uuid 19b5ceaf-8af8-44bc-8898-82006d249547))
  5505. )
  5506. (symbol (lib_id "strain:HX711") (at 219.71 184.15 0) (unit 1)
  5507. (in_bom yes) (on_board yes)
  5508. (uuid 00000000-0000-0000-0000-00006201f11d)
  5509. (property "Reference" "U4" (id 0) (at 219.71 168.529 0))
  5510. (property "Value" "HX711" (id 1) (at 219.71 170.8404 0))
  5511. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 219.71 184.15 0)
  5512. (effects (font (size 1.27 1.27)) hide)
  5513. )
  5514. (property "Datasheet" "" (id 3) (at 219.71 184.15 0)
  5515. (effects (font (size 1.27 1.27)) hide)
  5516. )
  5517. (property "LCSC" "C43656" (id 4) (at 219.71 184.15 0)
  5518. (effects (font (size 1.27 1.27)) hide)
  5519. )
  5520. (property "Digikey" "N/A" (id 5) (at 219.71 184.15 0)
  5521. (effects (font (size 1.27 1.27)) hide)
  5522. )
  5523. (property "Mouser" "N/A" (id 6) (at 219.71 184.15 0)
  5524. (effects (font (size 1.27 1.27)) hide)
  5525. )
  5526. (pin "1" (uuid 4c48b2b5-5c1e-416c-8af1-9cc6f401041e))
  5527. (pin "10" (uuid 96915e8f-9a52-4410-9b54-bd771f6667c3))
  5528. (pin "11" (uuid 5a56abc4-5b25-4c88-97db-344566c9d379))
  5529. (pin "12" (uuid a424f5d1-34b1-460e-a454-2b7a281b3e10))
  5530. (pin "13" (uuid 936dbf09-d873-41f3-8551-53d6b8cd1ca4))
  5531. (pin "14" (uuid 28c18f4a-6fb8-44d9-9ab6-d3b8ee57c978))
  5532. (pin "15" (uuid 8f9eeb33-e286-45d9-8587-d74e21ad9770))
  5533. (pin "16" (uuid 66308b32-b4c1-4428-8c3f-a86bbc2c13ef))
  5534. (pin "2" (uuid f6c4fb2e-1560-4c98-a4da-d3f3f074bd57))
  5535. (pin "3" (uuid 7f4b0aee-a094-47eb-84a1-4d76eed7332a))
  5536. (pin "4" (uuid 8dbb934a-5586-4bd6-9d1a-9db3e71dd096))
  5537. (pin "5" (uuid 50f92996-a571-4b51-bd1a-6d9c37fd2a8b))
  5538. (pin "6" (uuid 590fc34e-a1ee-43b2-8622-3dfce47b0067))
  5539. (pin "7" (uuid c6d1a5ed-a9f5-400d-9242-15501f9eaaf7))
  5540. (pin "8" (uuid e108e200-0dd3-49db-8f09-dd357f2187a6))
  5541. (pin "9" (uuid 660feb2f-ed14-424b-9bf2-c6c2c987a377))
  5542. )
  5543. (symbol (lib_id "Trinamic:TMC6300") (at 364.49 189.23 0) (unit 1)
  5544. (in_bom yes) (on_board yes)
  5545. (uuid 00000000-0000-0000-0000-0000620241db)
  5546. (property "Reference" "U5" (id 0) (at 364.49 162.179 0))
  5547. (property "Value" "TMC6300" (id 1) (at 364.49 164.4904 0))
  5548. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 364.49 189.23 0)
  5549. (effects (font (size 1.27 1.27)) hide)
  5550. )
  5551. (property "Datasheet" "" (id 3) (at 364.49 189.23 0)
  5552. (effects (font (size 1.27 1.27)) hide)
  5553. )
  5554. (property "Digikey" "TMC6300-LA-T" (id 4) (at 364.49 189.23 0)
  5555. (effects (font (size 1.27 1.27)) hide)
  5556. )
  5557. (property "Mouser" "700-TMC6300-LA" (id 5) (at 364.49 189.23 0)
  5558. (effects (font (size 1.27 1.27)) hide)
  5559. )
  5560. (property "LCSC" "N/A" (id 6) (at 364.49 189.23 0)
  5561. (effects (font (size 1.27 1.27)) hide)
  5562. )
  5563. (pin "1" (uuid 79073c57-46e7-4396-b557-04a02bba0109))
  5564. (pin "10" (uuid ebccd30a-0414-47c3-9936-1d7844f4f6af))
  5565. (pin "11" (uuid ed1b0183-04a2-4cb7-a1a1-20d3a3e82dac))
  5566. (pin "12" (uuid c95b1c20-2052-4a82-9eda-ca9913f1f1b1))
  5567. (pin "13" (uuid 0d0bad9e-9a17-4232-95e2-1777d4b18542))
  5568. (pin "14" (uuid 51bb1c8d-78ec-4290-a93e-a43f4c748f96))
  5569. (pin "15" (uuid c924c1fa-6f69-4c8e-9fab-25fcfa9314ce))
  5570. (pin "16" (uuid dfe691f4-6238-4df2-b80f-62dd5c318974))
  5571. (pin "17" (uuid 135e0385-0438-4b6b-a16a-b2a87c07c49c))
  5572. (pin "18" (uuid 322f22ee-7049-4600-ba35-723eb2cb910d))
  5573. (pin "19" (uuid ebf551f3-3279-4b51-a4ff-85b30e1da558))
  5574. (pin "2" (uuid e41afad5-564e-4b4b-8792-e404cb358545))
  5575. (pin "20" (uuid b9ef4c66-f0a7-428d-ab36-6d0f1a1d0ce2))
  5576. (pin "3" (uuid 5640b998-b28c-4be1-808e-1d6b0cc9509e))
  5577. (pin "4" (uuid aafb4786-bfee-4885-b52c-c4e0221e8073))
  5578. (pin "5" (uuid f1d3d319-55eb-465b-a886-dd1a7bf3a652))
  5579. (pin "6" (uuid 74866e02-9bb1-44c6-9ec8-5e2d99aac1e7))
  5580. (pin "7" (uuid 4991f4b1-e65c-440a-b6db-5dfc5cb33d4f))
  5581. (pin "8" (uuid 10d6bece-2fe2-4e9c-951c-ce0f71bb10fc))
  5582. (pin "9" (uuid 34e599a4-b6fd-4f18-ad63-44c4b0648740))
  5583. (pin "PAD" (uuid b90e91c0-3cef-4715-81b4-93ed637f5b12))
  5584. )
  5585. (symbol (lib_id "no_pin:no_pin") (at 146.05 33.02 0) (unit 1)
  5586. (in_bom yes) (on_board yes)
  5587. (uuid 00000000-0000-0000-0000-000062038103)
  5588. (property "Reference" "Z5" (id 0) (at 146.05 25.7302 0)
  5589. (effects (font (size 1.524 1.524)))
  5590. )
  5591. (property "Value" "dummy_keepouts" (id 1) (at 146.05 28.4226 0)
  5592. (effects (font (size 1.524 1.524)))
  5593. )
  5594. (property "Footprint" "view_custom:ViewKeepouts3d" (id 2) (at 146.05 33.02 0)
  5595. (effects (font (size 1.524 1.524)) hide)
  5596. )
  5597. (property "Datasheet" "" (id 3) (at 146.05 33.02 0)
  5598. (effects (font (size 1.524 1.524)) hide)
  5599. )
  5600. )
  5601. (symbol (lib_id "Regulator_Linear:AP7361C-33E") (at 48.26 29.21 0) (unit 1)
  5602. (in_bom yes) (on_board yes)
  5603. (uuid 00000000-0000-0000-0000-00006203d4f8)
  5604. (property "Reference" "U6" (id 0) (at 48.26 23.0632 0))
  5605. (property "Value" "AP2114HA-3.3" (id 1) (at 48.26 25.3746 0))
  5606. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 48.26 24.13 0)
  5607. (effects (font (size 1.27 1.27)) hide)
  5608. )
  5609. (property "Datasheet" "" (id 3) (at 50.8 35.56 0)
  5610. (effects (font (size 1.27 1.27)) hide)
  5611. )
  5612. (property "LCSC" "C460314" (id 4) (at 48.26 29.21 0)
  5613. (effects (font (size 1.27 1.27)) hide)
  5614. )
  5615. (property "Digikey" "AP2114HA-3.3TRG1DICT-ND" (id 5) (at 48.26 29.21 0)
  5616. (effects (font (size 1.27 1.27)) hide)
  5617. )
  5618. (property "Mouser" "621-AP2114HA-3.3TRG1" (id 6) (at 48.26 29.21 0)
  5619. (effects (font (size 1.27 1.27)) hide)
  5620. )
  5621. (pin "1" (uuid 4f09cb32-5a0c-4f44-89e2-81335d9dbf63))
  5622. (pin "2" (uuid fa8be394-74cd-4d9b-8e36-cbc87a934488))
  5623. (pin "3" (uuid 2b471bad-edbf-44fe-a5a3-8940bcf5d975))
  5624. )
  5625. (symbol (lib_id "power:GND") (at 48.26 40.64 0) (unit 1)
  5626. (in_bom yes) (on_board yes)
  5627. (uuid 00000000-0000-0000-0000-00006204bf3e)
  5628. (property "Reference" "#PWR0105" (id 0) (at 48.26 46.99 0)
  5629. (effects (font (size 1.27 1.27)) hide)
  5630. )
  5631. (property "Value" "GND" (id 1) (at 48.387 45.0342 0))
  5632. (property "Footprint" "" (id 2) (at 48.26 40.64 0)
  5633. (effects (font (size 1.27 1.27)) hide)
  5634. )
  5635. (property "Datasheet" "" (id 3) (at 48.26 40.64 0)
  5636. (effects (font (size 1.27 1.27)) hide)
  5637. )
  5638. (pin "1" (uuid d508eea5-eaef-4fbc-840e-49d8a9aeab5b))
  5639. )
  5640. (symbol (lib_id "Device:C_Small") (at 33.02 33.02 0) (unit 1)
  5641. (in_bom yes) (on_board yes)
  5642. (uuid 00000000-0000-0000-0000-0000620545dc)
  5643. (property "Reference" "C9" (id 0) (at 35.3568 31.8516 0)
  5644. (effects (font (size 1.27 1.27)) (justify left))
  5645. )
  5646. (property "Value" "10uF" (id 1) (at 35.3568 34.163 0)
  5647. (effects (font (size 1.27 1.27)) (justify left))
  5648. )
  5649. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 33.02 33.02 0)
  5650. (effects (font (size 1.27 1.27)) hide)
  5651. )
  5652. (property "Datasheet" "~" (id 3) (at 33.02 33.02 0)
  5653. (effects (font (size 1.27 1.27)) hide)
  5654. )
  5655. (property "LCSC" "C2922480" (id 4) (at 33.02 33.02 0)
  5656. (effects (font (size 1.27 1.27)) hide)
  5657. )
  5658. (property "Digikey" "1276-2891-1-ND" (id 5) (at 33.02 33.02 0)
  5659. (effects (font (size 1.27 1.27)) hide)
  5660. )
  5661. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 33.02 33.02 0)
  5662. (effects (font (size 1.27 1.27)) hide)
  5663. )
  5664. (pin "1" (uuid d98776c4-2262-4384-80a2-9ef8792f7c0b))
  5665. (pin "2" (uuid 149d67ae-cae8-40d5-9531-44ab97286a5f))
  5666. )
  5667. (symbol (lib_id "Device:C_Small") (at 58.42 33.02 0) (unit 1)
  5668. (in_bom yes) (on_board yes)
  5669. (uuid 00000000-0000-0000-0000-0000620581b5)
  5670. (property "Reference" "C10" (id 0) (at 60.7568 31.8516 0)
  5671. (effects (font (size 1.27 1.27)) (justify left))
  5672. )
  5673. (property "Value" "10uF" (id 1) (at 60.7568 34.163 0)
  5674. (effects (font (size 1.27 1.27)) (justify left))
  5675. )
  5676. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 58.42 33.02 0)
  5677. (effects (font (size 1.27 1.27)) hide)
  5678. )
  5679. (property "Datasheet" "~" (id 3) (at 58.42 33.02 0)
  5680. (effects (font (size 1.27 1.27)) hide)
  5681. )
  5682. (property "LCSC" "C2922480" (id 4) (at 58.42 33.02 0)
  5683. (effects (font (size 1.27 1.27)) hide)
  5684. )
  5685. (property "Digikey" "1276-2891-1-ND" (id 5) (at 58.42 33.02 0)
  5686. (effects (font (size 1.27 1.27)) hide)
  5687. )
  5688. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 58.42 33.02 0)
  5689. (effects (font (size 1.27 1.27)) hide)
  5690. )
  5691. (pin "1" (uuid 9fdc8848-47b8-4f5a-a420-f4c378d4d673))
  5692. (pin "2" (uuid 2592fd2e-0efe-462f-93ce-ac796f2c2a71))
  5693. )
  5694. (symbol (lib_id "power:+3.3V") (at 67.31 25.4 0) (unit 1)
  5695. (in_bom yes) (on_board yes)
  5696. (uuid 00000000-0000-0000-0000-00006205ee7e)
  5697. (property "Reference" "#PWR0106" (id 0) (at 67.31 29.21 0)
  5698. (effects (font (size 1.27 1.27)) hide)
  5699. )
  5700. (property "Value" "+3.3V" (id 1) (at 67.691 21.0058 0))
  5701. (property "Footprint" "" (id 2) (at 67.31 25.4 0)
  5702. (effects (font (size 1.27 1.27)) hide)
  5703. )
  5704. (property "Datasheet" "" (id 3) (at 67.31 25.4 0)
  5705. (effects (font (size 1.27 1.27)) hide)
  5706. )
  5707. (pin "1" (uuid 7a5b9e09-1bda-4ff7-851e-759e442c212e))
  5708. )
  5709. (symbol (lib_id "power:+3.3V") (at 189.23 160.02 0) (unit 1)
  5710. (in_bom yes) (on_board yes)
  5711. (uuid 00000000-0000-0000-0000-0000620606f7)
  5712. (property "Reference" "#PWR0116" (id 0) (at 189.23 163.83 0)
  5713. (effects (font (size 1.27 1.27)) hide)
  5714. )
  5715. (property "Value" "+3.3V" (id 1) (at 189.611 155.6258 0))
  5716. (property "Footprint" "" (id 2) (at 189.23 160.02 0)
  5717. (effects (font (size 1.27 1.27)) hide)
  5718. )
  5719. (property "Datasheet" "" (id 3) (at 189.23 160.02 0)
  5720. (effects (font (size 1.27 1.27)) hide)
  5721. )
  5722. (pin "1" (uuid 52f95826-77fa-45a0-90f2-08a39c194e57))
  5723. )
  5724. (symbol (lib_id "Device:C_Small") (at 172.72 165.1 0) (unit 1)
  5725. (in_bom yes) (on_board yes)
  5726. (uuid 00000000-0000-0000-0000-000062060ff5)
  5727. (property "Reference" "C16" (id 0) (at 175.0568 163.9316 0)
  5728. (effects (font (size 1.27 1.27)) (justify left))
  5729. )
  5730. (property "Value" "10uF" (id 1) (at 175.0568 166.243 0)
  5731. (effects (font (size 1.27 1.27)) (justify left))
  5732. )
  5733. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 172.72 165.1 0)
  5734. (effects (font (size 1.27 1.27)) hide)
  5735. )
  5736. (property "Datasheet" "~" (id 3) (at 172.72 165.1 0)
  5737. (effects (font (size 1.27 1.27)) hide)
  5738. )
  5739. (property "LCSC" "C2922480" (id 4) (at 172.72 165.1 0)
  5740. (effects (font (size 1.27 1.27)) hide)
  5741. )
  5742. (property "Digikey" "1276-2891-1-ND" (id 5) (at 172.72 165.1 0)
  5743. (effects (font (size 1.27 1.27)) hide)
  5744. )
  5745. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 172.72 165.1 0)
  5746. (effects (font (size 1.27 1.27)) hide)
  5747. )
  5748. (pin "1" (uuid d553cc01-d5e4-42f9-acdb-7c87d03d3ab9))
  5749. (pin "2" (uuid dbdb625a-6ae2-4268-896f-11debd628c4f))
  5750. )
  5751. (symbol (lib_id "Device:C_Small") (at 27.94 194.31 0) (unit 1)
  5752. (in_bom yes) (on_board yes)
  5753. (uuid 00000000-0000-0000-0000-000062066b6d)
  5754. (property "Reference" "C20" (id 0) (at 30.2768 193.1416 0)
  5755. (effects (font (size 1.27 1.27)) (justify left))
  5756. )
  5757. (property "Value" "0.1uF" (id 1) (at 30.2768 195.453 0)
  5758. (effects (font (size 1.27 1.27)) (justify left))
  5759. )
  5760. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 27.94 194.31 0)
  5761. (effects (font (size 1.27 1.27)) hide)
  5762. )
  5763. (property "Datasheet" "~" (id 3) (at 27.94 194.31 0)
  5764. (effects (font (size 1.27 1.27)) hide)
  5765. )
  5766. (property "LCSC" "C1591" (id 4) (at 27.94 194.31 0)
  5767. (effects (font (size 1.27 1.27)) hide)
  5768. )
  5769. (property "Digikey" "1276-1935-1-ND" (id 5) (at 27.94 194.31 0)
  5770. (effects (font (size 1.27 1.27)) hide)
  5771. )
  5772. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 27.94 194.31 0)
  5773. (effects (font (size 1.27 1.27)) hide)
  5774. )
  5775. (pin "1" (uuid a81f00c9-55ed-4851-af0e-6377a9975736))
  5776. (pin "2" (uuid 4de8b7be-07f1-404c-8a88-482f6237258c))
  5777. )
  5778. (symbol (lib_id "Logic_LevelTranslator:SN74LV1T34DBV") (at 43.18 242.57 0) (unit 1)
  5779. (in_bom yes) (on_board yes)
  5780. (uuid 00000000-0000-0000-0000-0000620700a0)
  5781. (property "Reference" "U7" (id 0) (at 41.91 229.87 0)
  5782. (effects (font (size 1.27 1.27)) (justify left))
  5783. )
  5784. (property "Value" "SN74LV1T34DBV" (id 1) (at 35.56 232.41 0)
  5785. (effects (font (size 1.27 1.27)) (justify left))
  5786. )
  5787. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 59.69 248.92 0)
  5788. (effects (font (size 1.27 1.27)) hide)
  5789. )
  5790. (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at 33.02 247.65 0)
  5791. (effects (font (size 1.27 1.27)) hide)
  5792. )
  5793. (property "LCSC" "C100024" (id 4) (at 43.18 242.57 0)
  5794. (effects (font (size 1.27 1.27)) hide)
  5795. )
  5796. (property "Digikey" "296-37176-1-ND" (id 5) (at 43.18 242.57 0)
  5797. (effects (font (size 1.27 1.27)) hide)
  5798. )
  5799. (property "Mouser" "595-SN74LV1T34DBVR" (id 6) (at 43.18 242.57 0)
  5800. (effects (font (size 1.27 1.27)) hide)
  5801. )
  5802. (pin "1" (uuid bd52c8b7-35b1-46ab-bbd9-f9255e8ba474))
  5803. (pin "2" (uuid b0290cba-1c3c-48c0-a9bc-215e7d25968b))
  5804. (pin "3" (uuid 3fd557e1-bf68-4805-b4ea-17079bc0f2ca))
  5805. (pin "4" (uuid 71d384ef-6541-4d3f-8e57-b50845e9c714))
  5806. (pin "5" (uuid 6f9ff052-6887-4fbe-a989-d0b4f028936c))
  5807. )
  5808. (symbol (lib_id "Connector:TestPoint_Small") (at 26.67 26.67 0) (unit 1)
  5809. (in_bom yes) (on_board yes)
  5810. (uuid 00000000-0000-0000-0000-0000620734a8)
  5811. (property "Reference" "TP1" (id 0) (at 27.8892 25.5016 0)
  5812. (effects (font (size 1.27 1.27)) (justify left))
  5813. )
  5814. (property "Value" "5V" (id 1) (at 27.8892 27.813 0)
  5815. (effects (font (size 1.27 1.27)) (justify left))
  5816. )
  5817. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 31.75 26.67 0)
  5818. (effects (font (size 1.27 1.27)) hide)
  5819. )
  5820. (property "Datasheet" "~" (id 3) (at 31.75 26.67 0)
  5821. (effects (font (size 1.27 1.27)) hide)
  5822. )
  5823. (pin "1" (uuid 13663e45-ff00-48c9-a1f3-53ce577f0583))
  5824. )
  5825. (symbol (lib_id "Device:C_Small") (at 30.48 237.49 0) (unit 1)
  5826. (in_bom yes) (on_board yes)
  5827. (uuid 00000000-0000-0000-0000-000062078a75)
  5828. (property "Reference" "C29" (id 0) (at 32.8168 236.3216 0)
  5829. (effects (font (size 1.27 1.27)) (justify left))
  5830. )
  5831. (property "Value" "0.1uF" (id 1) (at 32.8168 238.633 0)
  5832. (effects (font (size 1.27 1.27)) (justify left))
  5833. )
  5834. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 30.48 237.49 0)
  5835. (effects (font (size 1.27 1.27)) hide)
  5836. )
  5837. (property "Datasheet" "~" (id 3) (at 30.48 237.49 0)
  5838. (effects (font (size 1.27 1.27)) hide)
  5839. )
  5840. (property "LCSC" "C1591" (id 4) (at 30.48 237.49 0)
  5841. (effects (font (size 1.27 1.27)) hide)
  5842. )
  5843. (property "Digikey" "1276-1935-1-ND" (id 5) (at 30.48 237.49 0)
  5844. (effects (font (size 1.27 1.27)) hide)
  5845. )
  5846. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 30.48 237.49 0)
  5847. (effects (font (size 1.27 1.27)) hide)
  5848. )
  5849. (pin "1" (uuid 3c273b2a-2c92-4c14-a97a-48cecf1c34d7))
  5850. (pin "2" (uuid 6eea4de7-227d-40d6-acc1-1620ef137fa5))
  5851. )
  5852. (symbol (lib_id "power:+5V") (at 30.48 229.87 0) (unit 1)
  5853. (in_bom yes) (on_board yes)
  5854. (uuid 00000000-0000-0000-0000-000062078a82)
  5855. (property "Reference" "#PWR0133" (id 0) (at 30.48 233.68 0)
  5856. (effects (font (size 1.27 1.27)) hide)
  5857. )
  5858. (property "Value" "+5V" (id 1) (at 30.861 225.4758 0))
  5859. (property "Footprint" "" (id 2) (at 30.48 229.87 0)
  5860. (effects (font (size 1.27 1.27)) hide)
  5861. )
  5862. (property "Datasheet" "" (id 3) (at 30.48 229.87 0)
  5863. (effects (font (size 1.27 1.27)) hide)
  5864. )
  5865. (pin "1" (uuid 93980984-2fb8-43a1-85bb-eca986ca7ba2))
  5866. )
  5867. (symbol (lib_id "power:GND") (at 30.48 256.54 0) (unit 1)
  5868. (in_bom yes) (on_board yes)
  5869. (uuid 00000000-0000-0000-0000-000062078a89)
  5870. (property "Reference" "#PWR0134" (id 0) (at 30.48 262.89 0)
  5871. (effects (font (size 1.27 1.27)) hide)
  5872. )
  5873. (property "Value" "GND" (id 1) (at 30.607 260.9342 0))
  5874. (property "Footprint" "" (id 2) (at 30.48 256.54 0)
  5875. (effects (font (size 1.27 1.27)) hide)
  5876. )
  5877. (property "Datasheet" "" (id 3) (at 30.48 256.54 0)
  5878. (effects (font (size 1.27 1.27)) hide)
  5879. )
  5880. (pin "1" (uuid b9d4e899-1575-4eac-bf26-ac64f406deec))
  5881. )
  5882. (symbol (lib_id "Device:C_Small") (at 342.9 170.18 0) (unit 1)
  5883. (in_bom yes) (on_board yes)
  5884. (uuid 00000000-0000-0000-0000-000062084712)
  5885. (property "Reference" "C15" (id 0) (at 345.2368 169.0116 0)
  5886. (effects (font (size 1.27 1.27)) (justify left))
  5887. )
  5888. (property "Value" "0.1uF" (id 1) (at 345.2368 171.323 0)
  5889. (effects (font (size 1.27 1.27)) (justify left))
  5890. )
  5891. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 342.9 170.18 0)
  5892. (effects (font (size 1.27 1.27)) hide)
  5893. )
  5894. (property "Datasheet" "~" (id 3) (at 342.9 170.18 0)
  5895. (effects (font (size 1.27 1.27)) hide)
  5896. )
  5897. (property "LCSC" "C1591" (id 4) (at 342.9 170.18 0)
  5898. (effects (font (size 1.27 1.27)) hide)
  5899. )
  5900. (property "Digikey" "1276-1935-1-ND" (id 5) (at 342.9 170.18 0)
  5901. (effects (font (size 1.27 1.27)) hide)
  5902. )
  5903. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 342.9 170.18 0)
  5904. (effects (font (size 1.27 1.27)) hide)
  5905. )
  5906. (pin "1" (uuid c304d748-e511-46ac-b8d3-d74b06071a27))
  5907. (pin "2" (uuid edf178cc-a73e-459c-82af-45a152fa31ca))
  5908. )
  5909. (symbol (lib_id "Device:C_Small") (at 332.74 170.18 0) (unit 1)
  5910. (in_bom yes) (on_board yes)
  5911. (uuid 00000000-0000-0000-0000-000062086349)
  5912. (property "Reference" "C14" (id 0) (at 335.0768 169.0116 0)
  5913. (effects (font (size 1.27 1.27)) (justify left))
  5914. )
  5915. (property "Value" "0.1uF" (id 1) (at 335.0768 171.323 0)
  5916. (effects (font (size 1.27 1.27)) (justify left))
  5917. )
  5918. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 332.74 170.18 0)
  5919. (effects (font (size 1.27 1.27)) hide)
  5920. )
  5921. (property "Datasheet" "~" (id 3) (at 332.74 170.18 0)
  5922. (effects (font (size 1.27 1.27)) hide)
  5923. )
  5924. (property "LCSC" "C1591" (id 4) (at 332.74 170.18 0)
  5925. (effects (font (size 1.27 1.27)) hide)
  5926. )
  5927. (property "Digikey" "1276-1935-1-ND" (id 5) (at 332.74 170.18 0)
  5928. (effects (font (size 1.27 1.27)) hide)
  5929. )
  5930. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 332.74 170.18 0)
  5931. (effects (font (size 1.27 1.27)) hide)
  5932. )
  5933. (pin "1" (uuid 0633adfa-914b-4f9d-80ba-161103ceec79))
  5934. (pin "2" (uuid e26458db-ffb9-4a18-886d-cfa3a8d4f544))
  5935. )
  5936. (symbol (lib_id "Device:C_Small") (at 323.85 170.18 0) (unit 1)
  5937. (in_bom yes) (on_board yes)
  5938. (uuid 00000000-0000-0000-0000-00006208a205)
  5939. (property "Reference" "C13" (id 0) (at 326.1868 169.0116 0)
  5940. (effects (font (size 1.27 1.27)) (justify left))
  5941. )
  5942. (property "Value" "22uF" (id 1) (at 326.1868 171.323 0)
  5943. (effects (font (size 1.27 1.27)) (justify left))
  5944. )
  5945. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 323.85 170.18 0)
  5946. (effects (font (size 1.27 1.27)) hide)
  5947. )
  5948. (property "Datasheet" "~" (id 3) (at 323.85 170.18 0)
  5949. (effects (font (size 1.27 1.27)) hide)
  5950. )
  5951. (property "LCSC" "C98190" (id 4) (at 323.85 170.18 0)
  5952. (effects (font (size 1.27 1.27)) hide)
  5953. )
  5954. (property "Digikey" "1276-CL21A226MAYNNNECT-ND" (id 5) (at 323.85 170.18 0)
  5955. (effects (font (size 1.27 1.27)) hide)
  5956. )
  5957. (property "Mouser" "187-CL21A226MAYNNNE" (id 6) (at 323.85 170.18 0)
  5958. (effects (font (size 1.27 1.27)) hide)
  5959. )
  5960. (pin "1" (uuid bb0ba8a2-8b47-4ad8-8cad-d915e088c687))
  5961. (pin "2" (uuid 5956c9c4-93f5-4341-b42d-e62e27b5e9d6))
  5962. )
  5963. (symbol (lib_id "Device:C_Small") (at 381 212.09 0) (unit 1)
  5964. (in_bom yes) (on_board yes)
  5965. (uuid 00000000-0000-0000-0000-00006209158d)
  5966. (property "Reference" "C21" (id 0) (at 383.3368 210.9216 0)
  5967. (effects (font (size 1.27 1.27)) (justify left))
  5968. )
  5969. (property "Value" "0.1uF" (id 1) (at 383.3368 213.233 0)
  5970. (effects (font (size 1.27 1.27)) (justify left))
  5971. )
  5972. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 381 212.09 0)
  5973. (effects (font (size 1.27 1.27)) hide)
  5974. )
  5975. (property "Datasheet" "~" (id 3) (at 381 212.09 0)
  5976. (effects (font (size 1.27 1.27)) hide)
  5977. )
  5978. (property "LCSC" "C1591" (id 4) (at 381 212.09 0)
  5979. (effects (font (size 1.27 1.27)) hide)
  5980. )
  5981. (property "Digikey" "1276-1935-1-ND" (id 5) (at 381 212.09 0)
  5982. (effects (font (size 1.27 1.27)) hide)
  5983. )
  5984. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 381 212.09 0)
  5985. (effects (font (size 1.27 1.27)) hide)
  5986. )
  5987. (pin "1" (uuid 7a2ca59d-820f-4fa1-abab-bd90f7425325))
  5988. (pin "2" (uuid 5b291660-876b-4f49-bc42-f0ce83419c18))
  5989. )
  5990. (symbol (lib_id "Device:C_Small") (at 336.55 203.2 0) (unit 1)
  5991. (in_bom yes) (on_board yes)
  5992. (uuid 00000000-0000-0000-0000-000062091f81)
  5993. (property "Reference" "C17" (id 0) (at 338.8868 202.0316 0)
  5994. (effects (font (size 1.27 1.27)) (justify left))
  5995. )
  5996. (property "Value" "0.1uF" (id 1) (at 338.8868 204.343 0)
  5997. (effects (font (size 1.27 1.27)) (justify left))
  5998. )
  5999. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 336.55 203.2 0)
  6000. (effects (font (size 1.27 1.27)) hide)
  6001. )
  6002. (property "Datasheet" "~" (id 3) (at 336.55 203.2 0)
  6003. (effects (font (size 1.27 1.27)) hide)
  6004. )
  6005. (property "LCSC" "C1591" (id 4) (at 336.55 203.2 0)
  6006. (effects (font (size 1.27 1.27)) hide)
  6007. )
  6008. (property "Digikey" "1276-1935-1-ND" (id 5) (at 336.55 203.2 0)
  6009. (effects (font (size 1.27 1.27)) hide)
  6010. )
  6011. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 336.55 203.2 0)
  6012. (effects (font (size 1.27 1.27)) hide)
  6013. )
  6014. (pin "1" (uuid 0a914979-ff8a-4d1e-ac72-2c67810487be))
  6015. (pin "2" (uuid a3bb59ab-2bb5-4644-8375-027f0cc1abc0))
  6016. )
  6017. (symbol (lib_id "power:GND") (at 381 217.17 0) (unit 1)
  6018. (in_bom yes) (on_board yes)
  6019. (uuid 00000000-0000-0000-0000-000062092c18)
  6020. (property "Reference" "#PWR0107" (id 0) (at 381 223.52 0)
  6021. (effects (font (size 1.27 1.27)) hide)
  6022. )
  6023. (property "Value" "GND" (id 1) (at 381.127 221.5642 0))
  6024. (property "Footprint" "" (id 2) (at 381 217.17 0)
  6025. (effects (font (size 1.27 1.27)) hide)
  6026. )
  6027. (property "Datasheet" "" (id 3) (at 381 217.17 0)
  6028. (effects (font (size 1.27 1.27)) hide)
  6029. )
  6030. (pin "1" (uuid b932d339-7888-4506-92dc-7b9f4a021ec5))
  6031. )
  6032. (symbol (lib_id "Connector:TestPoint_Small") (at 69.85 26.67 0) (unit 1)
  6033. (in_bom yes) (on_board yes)
  6034. (uuid 00000000-0000-0000-0000-0000620939bb)
  6035. (property "Reference" "TP2" (id 0) (at 71.0692 25.5016 0)
  6036. (effects (font (size 1.27 1.27)) (justify left))
  6037. )
  6038. (property "Value" "3.3v" (id 1) (at 71.0692 27.813 0)
  6039. (effects (font (size 1.27 1.27)) (justify left))
  6040. )
  6041. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 74.93 26.67 0)
  6042. (effects (font (size 1.27 1.27)) hide)
  6043. )
  6044. (property "Datasheet" "~" (id 3) (at 74.93 26.67 0)
  6045. (effects (font (size 1.27 1.27)) hide)
  6046. )
  6047. (pin "1" (uuid c5f60ad2-3c12-4476-8404-2c06cc32df66))
  6048. )
  6049. (symbol (lib_id "power:GND") (at 347.98 217.17 0) (unit 1)
  6050. (in_bom yes) (on_board yes)
  6051. (uuid 00000000-0000-0000-0000-000062096fa5)
  6052. (property "Reference" "#PWR0108" (id 0) (at 347.98 223.52 0)
  6053. (effects (font (size 1.27 1.27)) hide)
  6054. )
  6055. (property "Value" "GND" (id 1) (at 348.107 221.5642 0))
  6056. (property "Footprint" "" (id 2) (at 347.98 217.17 0)
  6057. (effects (font (size 1.27 1.27)) hide)
  6058. )
  6059. (property "Datasheet" "" (id 3) (at 347.98 217.17 0)
  6060. (effects (font (size 1.27 1.27)) hide)
  6061. )
  6062. (pin "1" (uuid 513e44b9-1e1a-4ee2-8d06-ac0de5e52179))
  6063. )
  6064. (symbol (lib_id "Device:C_Small") (at 203.2 190.5 180) (unit 1)
  6065. (in_bom yes) (on_board yes)
  6066. (uuid 00000000-0000-0000-0000-00006209787a)
  6067. (property "Reference" "C22" (id 0) (at 200.8632 191.6684 0)
  6068. (effects (font (size 1.27 1.27)) (justify left))
  6069. )
  6070. (property "Value" "0.1uF" (id 1) (at 200.8632 189.357 0)
  6071. (effects (font (size 1.27 1.27)) (justify left))
  6072. )
  6073. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 190.5 0)
  6074. (effects (font (size 1.27 1.27)) hide)
  6075. )
  6076. (property "Datasheet" "~" (id 3) (at 203.2 190.5 0)
  6077. (effects (font (size 1.27 1.27)) hide)
  6078. )
  6079. (property "LCSC" "C1591" (id 4) (at 203.2 190.5 0)
  6080. (effects (font (size 1.27 1.27)) hide)
  6081. )
  6082. (property "Digikey" "1276-1935-1-ND" (id 5) (at 203.2 190.5 0)
  6083. (effects (font (size 1.27 1.27)) hide)
  6084. )
  6085. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 203.2 190.5 0)
  6086. (effects (font (size 1.27 1.27)) hide)
  6087. )
  6088. (pin "1" (uuid fde97225-e327-4f0d-a0d0-ae491822da36))
  6089. (pin "2" (uuid cf99f970-43e4-4767-a02a-b896d20db8c0))
  6090. )
  6091. (symbol (lib_id "power:+3.3V") (at 330.2 200.66 0) (unit 1)
  6092. (in_bom yes) (on_board yes)
  6093. (uuid 00000000-0000-0000-0000-0000620a6032)
  6094. (property "Reference" "#PWR0109" (id 0) (at 330.2 204.47 0)
  6095. (effects (font (size 1.27 1.27)) hide)
  6096. )
  6097. (property "Value" "+3.3V" (id 1) (at 330.581 196.2658 0))
  6098. (property "Footprint" "" (id 2) (at 330.2 200.66 0)
  6099. (effects (font (size 1.27 1.27)) hide)
  6100. )
  6101. (property "Datasheet" "" (id 3) (at 330.2 200.66 0)
  6102. (effects (font (size 1.27 1.27)) hide)
  6103. )
  6104. (pin "1" (uuid 7c6968c0-fe3f-4461-bd16-269e440f9e68))
  6105. )
  6106. (symbol (lib_id "power:GNDA") (at 195.58 196.85 0) (unit 1)
  6107. (in_bom yes) (on_board yes)
  6108. (uuid 00000000-0000-0000-0000-0000620d3feb)
  6109. (property "Reference" "#PWR0117" (id 0) (at 195.58 203.2 0)
  6110. (effects (font (size 1.27 1.27)) hide)
  6111. )
  6112. (property "Value" "GNDA" (id 1) (at 195.707 201.2442 0))
  6113. (property "Footprint" "" (id 2) (at 195.58 196.85 0)
  6114. (effects (font (size 1.27 1.27)) hide)
  6115. )
  6116. (property "Datasheet" "" (id 3) (at 195.58 196.85 0)
  6117. (effects (font (size 1.27 1.27)) hide)
  6118. )
  6119. (pin "1" (uuid 6d96171e-7384-48a3-b7b6-f3f35d176d40))
  6120. )
  6121. (symbol (lib_id "power:GND") (at 383.54 190.5 0) (unit 1)
  6122. (in_bom yes) (on_board yes)
  6123. (uuid 00000000-0000-0000-0000-0000620d59fa)
  6124. (property "Reference" "#PWR0110" (id 0) (at 383.54 196.85 0)
  6125. (effects (font (size 1.27 1.27)) hide)
  6126. )
  6127. (property "Value" "GND" (id 1) (at 383.667 194.8942 0))
  6128. (property "Footprint" "" (id 2) (at 383.54 190.5 0)
  6129. (effects (font (size 1.27 1.27)) hide)
  6130. )
  6131. (property "Datasheet" "" (id 3) (at 383.54 190.5 0)
  6132. (effects (font (size 1.27 1.27)) hide)
  6133. )
  6134. (pin "1" (uuid 73b41eb2-3ccf-4143-92fe-caaab34649bf))
  6135. )
  6136. (symbol (lib_id "Connector:TestPoint_Small") (at 50.8 40.64 0) (unit 1)
  6137. (in_bom yes) (on_board yes)
  6138. (uuid 00000000-0000-0000-0000-0000620f043a)
  6139. (property "Reference" "TP3" (id 0) (at 52.0192 39.4716 0)
  6140. (effects (font (size 1.27 1.27)) (justify left))
  6141. )
  6142. (property "Value" "GND" (id 1) (at 52.0192 41.783 0)
  6143. (effects (font (size 1.27 1.27)) (justify left))
  6144. )
  6145. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 55.88 40.64 0)
  6146. (effects (font (size 1.27 1.27)) hide)
  6147. )
  6148. (property "Datasheet" "~" (id 3) (at 55.88 40.64 0)
  6149. (effects (font (size 1.27 1.27)) hide)
  6150. )
  6151. (pin "1" (uuid 38cdeb79-38b0-4b02-a77a-a4cc178e7598))
  6152. )
  6153. (symbol (lib_id "power:GND") (at 121.92 96.52 0) (unit 1)
  6154. (in_bom yes) (on_board yes)
  6155. (uuid 00000000-0000-0000-0000-00006210086e)
  6156. (property "Reference" "#PWR0111" (id 0) (at 121.92 102.87 0)
  6157. (effects (font (size 1.27 1.27)) hide)
  6158. )
  6159. (property "Value" "GND" (id 1) (at 122.047 100.9142 0))
  6160. (property "Footprint" "" (id 2) (at 121.92 96.52 0)
  6161. (effects (font (size 1.27 1.27)) hide)
  6162. )
  6163. (property "Datasheet" "" (id 3) (at 121.92 96.52 0)
  6164. (effects (font (size 1.27 1.27)) hide)
  6165. )
  6166. (pin "1" (uuid 5ceb0e80-7d98-4e66-aa31-ce51c35f043e))
  6167. )
  6168. (symbol (lib_id "power:+3.3V") (at 101.6 57.15 0) (unit 1)
  6169. (in_bom yes) (on_board yes)
  6170. (uuid 00000000-0000-0000-0000-000062105589)
  6171. (property "Reference" "#PWR0112" (id 0) (at 101.6 60.96 0)
  6172. (effects (font (size 1.27 1.27)) hide)
  6173. )
  6174. (property "Value" "+3.3V" (id 1) (at 101.981 52.7558 0))
  6175. (property "Footprint" "" (id 2) (at 101.6 57.15 0)
  6176. (effects (font (size 1.27 1.27)) hide)
  6177. )
  6178. (property "Datasheet" "" (id 3) (at 101.6 57.15 0)
  6179. (effects (font (size 1.27 1.27)) hide)
  6180. )
  6181. (pin "1" (uuid be7b6fc0-680b-422c-9cd2-a6357a97bdaa))
  6182. )
  6183. (symbol (lib_id "power:GNDA") (at 163.83 196.85 0) (unit 1)
  6184. (in_bom yes) (on_board yes)
  6185. (uuid 00000000-0000-0000-0000-000062110345)
  6186. (property "Reference" "#PWR0118" (id 0) (at 163.83 203.2 0)
  6187. (effects (font (size 1.27 1.27)) hide)
  6188. )
  6189. (property "Value" "GNDA" (id 1) (at 163.957 201.2442 0))
  6190. (property "Footprint" "" (id 2) (at 163.83 196.85 0)
  6191. (effects (font (size 1.27 1.27)) hide)
  6192. )
  6193. (property "Datasheet" "" (id 3) (at 163.83 196.85 0)
  6194. (effects (font (size 1.27 1.27)) hide)
  6195. )
  6196. (pin "1" (uuid 132f87af-fee0-4378-a134-77a68eb21f40))
  6197. )
  6198. (symbol (lib_id "Device:C_Small") (at 105.41 59.69 0) (unit 1)
  6199. (in_bom yes) (on_board yes)
  6200. (uuid 00000000-0000-0000-0000-0000621156c4)
  6201. (property "Reference" "C11" (id 0) (at 107.7468 58.5216 0)
  6202. (effects (font (size 1.27 1.27)) (justify left))
  6203. )
  6204. (property "Value" "0.1uF" (id 1) (at 107.7468 60.833 0)
  6205. (effects (font (size 1.27 1.27)) (justify left))
  6206. )
  6207. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 105.41 59.69 0)
  6208. (effects (font (size 1.27 1.27)) hide)
  6209. )
  6210. (property "Datasheet" "~" (id 3) (at 105.41 59.69 0)
  6211. (effects (font (size 1.27 1.27)) hide)
  6212. )
  6213. (property "LCSC" "C1591" (id 4) (at 105.41 59.69 0)
  6214. (effects (font (size 1.27 1.27)) hide)
  6215. )
  6216. (property "Digikey" "1276-1935-1-ND" (id 5) (at 105.41 59.69 0)
  6217. (effects (font (size 1.27 1.27)) hide)
  6218. )
  6219. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 105.41 59.69 0)
  6220. (effects (font (size 1.27 1.27)) hide)
  6221. )
  6222. (pin "1" (uuid 38b4d1b0-a915-4c3c-be73-8ed9dd8948f2))
  6223. (pin "2" (uuid d9fe496c-d570-49d6-8e55-cc837c24c797))
  6224. )
  6225. (symbol (lib_id "power:GND") (at 105.41 66.04 0) (unit 1)
  6226. (in_bom yes) (on_board yes)
  6227. (uuid 00000000-0000-0000-0000-0000621184b4)
  6228. (property "Reference" "#PWR0113" (id 0) (at 105.41 72.39 0)
  6229. (effects (font (size 1.27 1.27)) hide)
  6230. )
  6231. (property "Value" "GND" (id 1) (at 105.537 70.4342 0))
  6232. (property "Footprint" "" (id 2) (at 105.41 66.04 0)
  6233. (effects (font (size 1.27 1.27)) hide)
  6234. )
  6235. (property "Datasheet" "" (id 3) (at 105.41 66.04 0)
  6236. (effects (font (size 1.27 1.27)) hide)
  6237. )
  6238. (pin "1" (uuid 56101d6e-ac4a-44da-9c84-8faacaf7937d))
  6239. )
  6240. (symbol (lib_id "power:GNDA") (at 184.15 196.85 0) (unit 1)
  6241. (in_bom yes) (on_board yes)
  6242. (uuid 00000000-0000-0000-0000-00006211ae93)
  6243. (property "Reference" "#PWR0119" (id 0) (at 184.15 203.2 0)
  6244. (effects (font (size 1.27 1.27)) hide)
  6245. )
  6246. (property "Value" "GNDA" (id 1) (at 184.277 201.2442 0))
  6247. (property "Footprint" "" (id 2) (at 184.15 196.85 0)
  6248. (effects (font (size 1.27 1.27)) hide)
  6249. )
  6250. (property "Datasheet" "" (id 3) (at 184.15 196.85 0)
  6251. (effects (font (size 1.27 1.27)) hide)
  6252. )
  6253. (pin "1" (uuid f184639c-12d7-4661-a8c4-139986dfaf3a))
  6254. )
  6255. (symbol (lib_id "Device:C_Small") (at 241.3 137.16 0) (unit 1)
  6256. (in_bom yes) (on_board yes)
  6257. (uuid 00000000-0000-0000-0000-00006211bef1)
  6258. (property "Reference" "C28" (id 0) (at 243.6368 135.9916 0)
  6259. (effects (font (size 1.27 1.27)) (justify left))
  6260. )
  6261. (property "Value" "1uF" (id 1) (at 243.6368 138.303 0)
  6262. (effects (font (size 1.27 1.27)) (justify left))
  6263. )
  6264. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 241.3 137.16 0)
  6265. (effects (font (size 1.27 1.27)) hide)
  6266. )
  6267. (property "Datasheet" "~" (id 3) (at 241.3 137.16 0)
  6268. (effects (font (size 1.27 1.27)) hide)
  6269. )
  6270. (property "Mouser" "187-CL10A105KA8NNNC" (id 4) (at 241.3 137.16 0)
  6271. (effects (font (size 1.27 1.27)) hide)
  6272. )
  6273. (property "LCSC" "C5673" (id 5) (at 241.3 137.16 0)
  6274. (effects (font (size 1.27 1.27)) hide)
  6275. )
  6276. (property "Digikey" "1276-1102-1-ND" (id 6) (at 241.3 137.16 0)
  6277. (effects (font (size 1.27 1.27)) hide)
  6278. )
  6279. (pin "1" (uuid acd276fb-d20b-4553-b073-bd7db980812a))
  6280. (pin "2" (uuid 13621f30-38eb-438c-99e2-f2bda3f08c97))
  6281. )
  6282. (symbol (lib_id "power:GNDA") (at 172.72 168.91 0) (unit 1)
  6283. (in_bom yes) (on_board yes)
  6284. (uuid 00000000-0000-0000-0000-000062131aaa)
  6285. (property "Reference" "#PWR0120" (id 0) (at 172.72 175.26 0)
  6286. (effects (font (size 1.27 1.27)) hide)
  6287. )
  6288. (property "Value" "GNDA" (id 1) (at 172.847 173.3042 0))
  6289. (property "Footprint" "" (id 2) (at 172.72 168.91 0)
  6290. (effects (font (size 1.27 1.27)) hide)
  6291. )
  6292. (property "Datasheet" "" (id 3) (at 172.72 168.91 0)
  6293. (effects (font (size 1.27 1.27)) hide)
  6294. )
  6295. (pin "1" (uuid c495cda9-772c-419d-8204-ec560c974d4b))
  6296. )
  6297. (symbol (lib_id "Device:R_Small") (at 130.81 133.35 0) (unit 1)
  6298. (in_bom yes) (on_board yes)
  6299. (uuid 00000000-0000-0000-0000-000062132ffe)
  6300. (property "Reference" "R15" (id 0) (at 125.8316 133.35 90))
  6301. (property "Value" "2.2k" (id 1) (at 128.143 133.35 90))
  6302. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 130.81 133.35 0)
  6303. (effects (font (size 1.27 1.27)) hide)
  6304. )
  6305. (property "Datasheet" "~" (id 3) (at 130.81 133.35 0)
  6306. (effects (font (size 1.27 1.27)) hide)
  6307. )
  6308. (property "LCSC" "C4190" (id 4) (at 130.81 133.35 0)
  6309. (effects (font (size 1.27 1.27)) hide)
  6310. )
  6311. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 130.81 133.35 0)
  6312. (effects (font (size 1.27 1.27)) hide)
  6313. )
  6314. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 130.81 133.35 0)
  6315. (effects (font (size 1.27 1.27)) hide)
  6316. )
  6317. (pin "1" (uuid eb3de0ad-58fd-4c79-81f7-33a544f94145))
  6318. (pin "2" (uuid 6a7410ac-6f2d-41b6-9ae5-119b71f0d7e5))
  6319. )
  6320. (symbol (lib_id "Device:R_Small") (at 133.35 133.35 180) (unit 1)
  6321. (in_bom yes) (on_board yes)
  6322. (uuid 00000000-0000-0000-0000-000062133004)
  6323. (property "Reference" "R16" (id 0) (at 138.3284 133.35 90))
  6324. (property "Value" "2.2k" (id 1) (at 136.017 133.35 90))
  6325. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 133.35 133.35 0)
  6326. (effects (font (size 1.27 1.27)) hide)
  6327. )
  6328. (property "Datasheet" "~" (id 3) (at 133.35 133.35 0)
  6329. (effects (font (size 1.27 1.27)) hide)
  6330. )
  6331. (property "LCSC" "C4190" (id 4) (at 133.35 133.35 0)
  6332. (effects (font (size 1.27 1.27)) hide)
  6333. )
  6334. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 133.35 133.35 0)
  6335. (effects (font (size 1.27 1.27)) hide)
  6336. )
  6337. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 133.35 133.35 0)
  6338. (effects (font (size 1.27 1.27)) hide)
  6339. )
  6340. (pin "1" (uuid 16301ee3-311c-4d9e-9a87-7c01dfd42108))
  6341. (pin "2" (uuid d78f26bb-d771-4fb4-adb7-2b335440ff09))
  6342. )
  6343. (symbol (lib_id "power:+3.3V") (at 132.08 128.27 0) (unit 1)
  6344. (in_bom yes) (on_board yes)
  6345. (uuid 00000000-0000-0000-0000-00006213300a)
  6346. (property "Reference" "#PWR0142" (id 0) (at 132.08 132.08 0)
  6347. (effects (font (size 1.27 1.27)) hide)
  6348. )
  6349. (property "Value" "+3.3V" (id 1) (at 132.461 123.8758 0))
  6350. (property "Footprint" "" (id 2) (at 132.08 128.27 0)
  6351. (effects (font (size 1.27 1.27)) hide)
  6352. )
  6353. (property "Datasheet" "" (id 3) (at 132.08 128.27 0)
  6354. (effects (font (size 1.27 1.27)) hide)
  6355. )
  6356. (pin "1" (uuid be8857bc-d4e7-4da2-b159-61059f2b533c))
  6357. )
  6358. (symbol (lib_id "Connector:TestPoint_Small") (at 57.15 234.95 0) (unit 1)
  6359. (in_bom yes) (on_board yes)
  6360. (uuid 00000000-0000-0000-0000-00006213725a)
  6361. (property "Reference" "TP12" (id 0) (at 58.3692 233.7816 0)
  6362. (effects (font (size 1.27 1.27)) (justify left))
  6363. )
  6364. (property "Value" "LED" (id 1) (at 58.3692 236.093 0)
  6365. (effects (font (size 1.27 1.27)) (justify left))
  6366. )
  6367. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 62.23 234.95 0)
  6368. (effects (font (size 1.27 1.27)) hide)
  6369. )
  6370. (property "Datasheet" "~" (id 3) (at 62.23 234.95 0)
  6371. (effects (font (size 1.27 1.27)) hide)
  6372. )
  6373. (pin "1" (uuid 5f10d7a0-4d70-4b91-97f5-8b7b5b68ee9e))
  6374. )
  6375. (symbol (lib_id "Device:C_Small") (at 181.61 165.1 0) (unit 1)
  6376. (in_bom yes) (on_board yes)
  6377. (uuid 00000000-0000-0000-0000-000062138f96)
  6378. (property "Reference" "C12" (id 0) (at 183.9468 163.9316 0)
  6379. (effects (font (size 1.27 1.27)) (justify left))
  6380. )
  6381. (property "Value" "0.1uF" (id 1) (at 183.9468 166.243 0)
  6382. (effects (font (size 1.27 1.27)) (justify left))
  6383. )
  6384. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 181.61 165.1 0)
  6385. (effects (font (size 1.27 1.27)) hide)
  6386. )
  6387. (property "Datasheet" "~" (id 3) (at 181.61 165.1 0)
  6388. (effects (font (size 1.27 1.27)) hide)
  6389. )
  6390. (property "LCSC" "C1591" (id 4) (at 181.61 165.1 0)
  6391. (effects (font (size 1.27 1.27)) hide)
  6392. )
  6393. (property "Digikey" "1276-1935-1-ND" (id 5) (at 181.61 165.1 0)
  6394. (effects (font (size 1.27 1.27)) hide)
  6395. )
  6396. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 181.61 165.1 0)
  6397. (effects (font (size 1.27 1.27)) hide)
  6398. )
  6399. (pin "1" (uuid 453fc808-4126-453d-85ae-1cdb419088b5))
  6400. (pin "2" (uuid eeebd06e-2360-41d5-bcbf-6a991cfb4216))
  6401. )
  6402. (symbol (lib_id "power:GNDA") (at 203.2 196.85 0) (unit 1)
  6403. (in_bom yes) (on_board yes)
  6404. (uuid 00000000-0000-0000-0000-00006213fbbb)
  6405. (property "Reference" "#PWR0121" (id 0) (at 203.2 203.2 0)
  6406. (effects (font (size 1.27 1.27)) hide)
  6407. )
  6408. (property "Value" "GNDA" (id 1) (at 203.327 201.2442 0))
  6409. (property "Footprint" "" (id 2) (at 203.2 196.85 0)
  6410. (effects (font (size 1.27 1.27)) hide)
  6411. )
  6412. (property "Datasheet" "" (id 3) (at 203.2 196.85 0)
  6413. (effects (font (size 1.27 1.27)) hide)
  6414. )
  6415. (pin "1" (uuid f5a63825-b5d0-4689-95d7-73382f27bff9))
  6416. )
  6417. (symbol (lib_id "Device:C_Small") (at 195.58 207.01 180) (unit 1)
  6418. (in_bom yes) (on_board yes)
  6419. (uuid 00000000-0000-0000-0000-00006213ff11)
  6420. (property "Reference" "C23" (id 0) (at 193.2432 208.1784 0)
  6421. (effects (font (size 1.27 1.27)) (justify left))
  6422. )
  6423. (property "Value" "0.1uF" (id 1) (at 193.2432 205.867 0)
  6424. (effects (font (size 1.27 1.27)) (justify left))
  6425. )
  6426. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 195.58 207.01 0)
  6427. (effects (font (size 1.27 1.27)) hide)
  6428. )
  6429. (property "Datasheet" "~" (id 3) (at 195.58 207.01 0)
  6430. (effects (font (size 1.27 1.27)) hide)
  6431. )
  6432. (property "LCSC" "C1591" (id 4) (at 195.58 207.01 0)
  6433. (effects (font (size 1.27 1.27)) hide)
  6434. )
  6435. (property "Digikey" "1276-1935-1-ND" (id 5) (at 195.58 207.01 0)
  6436. (effects (font (size 1.27 1.27)) hide)
  6437. )
  6438. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 195.58 207.01 0)
  6439. (effects (font (size 1.27 1.27)) hide)
  6440. )
  6441. (pin "1" (uuid 5c15ae8b-cb8e-4d01-9663-994d42e6e174))
  6442. (pin "2" (uuid 077de74b-17bd-4819-ab12-a3d892cfac38))
  6443. )
  6444. (symbol (lib_id "power:+3.3V") (at 21.59 187.96 0) (unit 1)
  6445. (in_bom yes) (on_board yes)
  6446. (uuid 00000000-0000-0000-0000-000062153ea9)
  6447. (property "Reference" "#PWR0114" (id 0) (at 21.59 191.77 0)
  6448. (effects (font (size 1.27 1.27)) hide)
  6449. )
  6450. (property "Value" "+3.3V" (id 1) (at 21.971 183.5658 0))
  6451. (property "Footprint" "" (id 2) (at 21.59 187.96 0)
  6452. (effects (font (size 1.27 1.27)) hide)
  6453. )
  6454. (property "Datasheet" "" (id 3) (at 21.59 187.96 0)
  6455. (effects (font (size 1.27 1.27)) hide)
  6456. )
  6457. (pin "1" (uuid 7cd55ac0-3e83-42d0-a2b4-7a85c4b8c98f))
  6458. )
  6459. (symbol (lib_id "power:GND") (at 27.94 201.93 0) (unit 1)
  6460. (in_bom yes) (on_board yes)
  6461. (uuid 00000000-0000-0000-0000-000062154495)
  6462. (property "Reference" "#PWR0115" (id 0) (at 27.94 208.28 0)
  6463. (effects (font (size 1.27 1.27)) hide)
  6464. )
  6465. (property "Value" "GND" (id 1) (at 28.067 206.3242 0))
  6466. (property "Footprint" "" (id 2) (at 27.94 201.93 0)
  6467. (effects (font (size 1.27 1.27)) hide)
  6468. )
  6469. (property "Datasheet" "" (id 3) (at 27.94 201.93 0)
  6470. (effects (font (size 1.27 1.27)) hide)
  6471. )
  6472. (pin "1" (uuid 1f62f3d5-1557-4819-ae45-dbb47075c859))
  6473. )
  6474. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 193.04 0) (unit 1)
  6475. (in_bom yes) (on_board yes)
  6476. (uuid 00000000-0000-0000-0000-000062179005)
  6477. (property "Reference" "TP9" (id 0) (at 82.4992 191.8716 0)
  6478. (effects (font (size 1.27 1.27)) (justify left))
  6479. )
  6480. (property "Value" "CSN" (id 1) (at 82.55 193.04 0)
  6481. (effects (font (size 1.27 1.27)) (justify left))
  6482. )
  6483. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 193.04 0)
  6484. (effects (font (size 1.27 1.27)) hide)
  6485. )
  6486. (property "Datasheet" "~" (id 3) (at 86.36 193.04 0)
  6487. (effects (font (size 1.27 1.27)) hide)
  6488. )
  6489. (pin "1" (uuid 96a4c85e-b3a9-4ac1-9741-4dab5e7ca8e1))
  6490. )
  6491. (symbol (lib_id "Device:R_Small") (at 199.39 124.46 90) (unit 1)
  6492. (in_bom yes) (on_board yes)
  6493. (uuid 00000000-0000-0000-0000-00006217c4cc)
  6494. (property "Reference" "R7" (id 0) (at 198.12 123.19 90)
  6495. (effects (font (size 1.27 1.27)) (justify left))
  6496. )
  6497. (property "Value" "10k" (id 1) (at 199.39 124.46 90)
  6498. (effects (font (size 0.7874 0.7874)))
  6499. )
  6500. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 124.46 0)
  6501. (effects (font (size 1.27 1.27)) hide)
  6502. )
  6503. (property "Datasheet" "~" (id 3) (at 199.39 124.46 0)
  6504. (effects (font (size 1.27 1.27)) hide)
  6505. )
  6506. (property "LCSC" "C98220" (id 4) (at 199.39 124.46 0)
  6507. (effects (font (size 1.27 1.27)) hide)
  6508. )
  6509. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 124.46 0)
  6510. (effects (font (size 1.27 1.27)) hide)
  6511. )
  6512. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 124.46 0)
  6513. (effects (font (size 1.27 1.27)) hide)
  6514. )
  6515. (pin "1" (uuid 1d127886-5828-493c-86e2-80fa6a7d352c))
  6516. (pin "2" (uuid ae6c9e6d-aafa-464f-a2bc-107cbe65ce24))
  6517. )
  6518. (symbol (lib_id "Device:R_Small") (at 173.99 204.47 270) (unit 1)
  6519. (in_bom yes) (on_board yes)
  6520. (uuid 00000000-0000-0000-0000-00006217ebc1)
  6521. (property "Reference" "R5" (id 0) (at 173.99 199.4916 90))
  6522. (property "Value" "100" (id 1) (at 173.99 201.803 90))
  6523. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 204.47 0)
  6524. (effects (font (size 1.27 1.27)) hide)
  6525. )
  6526. (property "Datasheet" "~" (id 3) (at 173.99 204.47 0)
  6527. (effects (font (size 1.27 1.27)) hide)
  6528. )
  6529. (property "LCSC" "C319953" (id 4) (at 173.99 204.47 0)
  6530. (effects (font (size 1.27 1.27)) hide)
  6531. )
  6532. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 204.47 0)
  6533. (effects (font (size 1.27 1.27)) hide)
  6534. )
  6535. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 204.47 0)
  6536. (effects (font (size 1.27 1.27)) hide)
  6537. )
  6538. (pin "1" (uuid 3fe9d150-a60b-45b7-ac68-9f7b4f02ad5a))
  6539. (pin "2" (uuid b194a5f3-2ea8-4b52-992c-b4253723fa8f))
  6540. )
  6541. (symbol (lib_id "Device:R_Small") (at 173.99 209.55 90) (unit 1)
  6542. (in_bom yes) (on_board yes)
  6543. (uuid 00000000-0000-0000-0000-00006217f6bc)
  6544. (property "Reference" "R6" (id 0) (at 173.99 214.63 90))
  6545. (property "Value" "100" (id 1) (at 173.99 212.09 90))
  6546. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 209.55 0)
  6547. (effects (font (size 1.27 1.27)) hide)
  6548. )
  6549. (property "Datasheet" "~" (id 3) (at 173.99 209.55 0)
  6550. (effects (font (size 1.27 1.27)) hide)
  6551. )
  6552. (property "LCSC" "C319953" (id 4) (at 173.99 209.55 0)
  6553. (effects (font (size 1.27 1.27)) hide)
  6554. )
  6555. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 209.55 0)
  6556. (effects (font (size 1.27 1.27)) hide)
  6557. )
  6558. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 209.55 0)
  6559. (effects (font (size 1.27 1.27)) hide)
  6560. )
  6561. (pin "1" (uuid 8cab69cb-5e51-457c-a7d0-f2fd58e50eb1))
  6562. (pin "2" (uuid c7be23ee-d023-4c4a-b6e8-adaba11d9f62))
  6563. )
  6564. (symbol (lib_id "Device:R_Small") (at 199.39 127 90) (unit 1)
  6565. (in_bom yes) (on_board yes)
  6566. (uuid 00000000-0000-0000-0000-000062180f46)
  6567. (property "Reference" "R8" (id 0) (at 198.12 125.73 90)
  6568. (effects (font (size 1.27 1.27)) (justify left))
  6569. )
  6570. (property "Value" "10k" (id 1) (at 199.39 127 90)
  6571. (effects (font (size 0.7874 0.7874)))
  6572. )
  6573. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 127 0)
  6574. (effects (font (size 1.27 1.27)) hide)
  6575. )
  6576. (property "Datasheet" "~" (id 3) (at 199.39 127 0)
  6577. (effects (font (size 1.27 1.27)) hide)
  6578. )
  6579. (property "LCSC" "C98220" (id 4) (at 199.39 127 0)
  6580. (effects (font (size 1.27 1.27)) hide)
  6581. )
  6582. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 127 0)
  6583. (effects (font (size 1.27 1.27)) hide)
  6584. )
  6585. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 127 0)
  6586. (effects (font (size 1.27 1.27)) hide)
  6587. )
  6588. (pin "1" (uuid 689eb1a4-2d7a-4d99-96ef-c4384e731194))
  6589. (pin "2" (uuid 0d5c8553-0a1e-48c9-8ac0-a164fada8c9a))
  6590. )
  6591. (symbol (lib_id "Device:R_Small") (at 199.39 129.54 90) (unit 1)
  6592. (in_bom yes) (on_board yes)
  6593. (uuid 00000000-0000-0000-0000-0000621810c8)
  6594. (property "Reference" "R9" (id 0) (at 198.12 128.27 90)
  6595. (effects (font (size 1.27 1.27)) (justify left))
  6596. )
  6597. (property "Value" "10k" (id 1) (at 199.39 129.54 90)
  6598. (effects (font (size 0.7874 0.7874)))
  6599. )
  6600. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 129.54 0)
  6601. (effects (font (size 1.27 1.27)) hide)
  6602. )
  6603. (property "Datasheet" "~" (id 3) (at 199.39 129.54 0)
  6604. (effects (font (size 1.27 1.27)) hide)
  6605. )
  6606. (property "LCSC" "C98220" (id 4) (at 199.39 129.54 0)
  6607. (effects (font (size 1.27 1.27)) hide)
  6608. )
  6609. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 129.54 0)
  6610. (effects (font (size 1.27 1.27)) hide)
  6611. )
  6612. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 129.54 0)
  6613. (effects (font (size 1.27 1.27)) hide)
  6614. )
  6615. (pin "1" (uuid 6bef994a-775b-4d4f-bf69-479cd86544c8))
  6616. (pin "2" (uuid 53be0f6b-4e65-4ee5-8c8e-608ec0e40613))
  6617. )
  6618. (symbol (lib_id "Device:R_Small") (at 199.39 132.08 90) (unit 1)
  6619. (in_bom yes) (on_board yes)
  6620. (uuid 00000000-0000-0000-0000-000062181360)
  6621. (property "Reference" "R10" (id 0) (at 198.12 130.81 90)
  6622. (effects (font (size 1.27 1.27)) (justify left))
  6623. )
  6624. (property "Value" "10k" (id 1) (at 199.39 132.08 90)
  6625. (effects (font (size 0.7874 0.7874)))
  6626. )
  6627. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 132.08 0)
  6628. (effects (font (size 1.27 1.27)) hide)
  6629. )
  6630. (property "Datasheet" "~" (id 3) (at 199.39 132.08 0)
  6631. (effects (font (size 1.27 1.27)) hide)
  6632. )
  6633. (property "LCSC" "C98220" (id 4) (at 199.39 132.08 0)
  6634. (effects (font (size 1.27 1.27)) hide)
  6635. )
  6636. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 132.08 0)
  6637. (effects (font (size 1.27 1.27)) hide)
  6638. )
  6639. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 132.08 0)
  6640. (effects (font (size 1.27 1.27)) hide)
  6641. )
  6642. (pin "1" (uuid 241e061c-fed4-4dff-959b-98da9e878eee))
  6643. (pin "2" (uuid 2e877dbb-6832-4630-bc2c-069ff902df6b))
  6644. )
  6645. (symbol (lib_id "Device:R_Small") (at 199.39 134.62 90) (unit 1)
  6646. (in_bom yes) (on_board yes)
  6647. (uuid 00000000-0000-0000-0000-0000621814c1)
  6648. (property "Reference" "R11" (id 0) (at 198.12 133.35 90)
  6649. (effects (font (size 1.27 1.27)) (justify left))
  6650. )
  6651. (property "Value" "10k" (id 1) (at 199.39 134.62 90)
  6652. (effects (font (size 0.7874 0.7874)))
  6653. )
  6654. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 134.62 0)
  6655. (effects (font (size 1.27 1.27)) hide)
  6656. )
  6657. (property "Datasheet" "~" (id 3) (at 199.39 134.62 0)
  6658. (effects (font (size 1.27 1.27)) hide)
  6659. )
  6660. (property "LCSC" "C98220" (id 4) (at 199.39 134.62 0)
  6661. (effects (font (size 1.27 1.27)) hide)
  6662. )
  6663. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 134.62 0)
  6664. (effects (font (size 1.27 1.27)) hide)
  6665. )
  6666. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 134.62 0)
  6667. (effects (font (size 1.27 1.27)) hide)
  6668. )
  6669. (pin "1" (uuid 2974720c-4a0b-45fd-835c-880391f2f884))
  6670. (pin "2" (uuid 58acf8ca-51b2-4de5-ae93-e733a49e6fe1))
  6671. )
  6672. (symbol (lib_id "Device:R_Small") (at 199.39 137.16 90) (unit 1)
  6673. (in_bom yes) (on_board yes)
  6674. (uuid 00000000-0000-0000-0000-00006218171e)
  6675. (property "Reference" "R12" (id 0) (at 198.12 135.89 90)
  6676. (effects (font (size 1.27 1.27)) (justify left))
  6677. )
  6678. (property "Value" "10k" (id 1) (at 199.39 137.16 90)
  6679. (effects (font (size 0.7874 0.7874)))
  6680. )
  6681. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 137.16 0)
  6682. (effects (font (size 1.27 1.27)) hide)
  6683. )
  6684. (property "Datasheet" "~" (id 3) (at 199.39 137.16 0)
  6685. (effects (font (size 1.27 1.27)) hide)
  6686. )
  6687. (property "LCSC" "C98220" (id 4) (at 199.39 137.16 0)
  6688. (effects (font (size 1.27 1.27)) hide)
  6689. )
  6690. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 137.16 0)
  6691. (effects (font (size 1.27 1.27)) hide)
  6692. )
  6693. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 137.16 0)
  6694. (effects (font (size 1.27 1.27)) hide)
  6695. )
  6696. (pin "1" (uuid 0d42402b-f0df-4e33-a8b7-c0e62c06aa04))
  6697. (pin "2" (uuid a3e3c332-5caa-4e5e-b7d6-3a89be67903f))
  6698. )
  6699. (symbol (lib_id "power:GND") (at 207.01 142.24 0) (unit 1)
  6700. (in_bom yes) (on_board yes)
  6701. (uuid 00000000-0000-0000-0000-000062182795)
  6702. (property "Reference" "#PWR0135" (id 0) (at 207.01 148.59 0)
  6703. (effects (font (size 1.27 1.27)) hide)
  6704. )
  6705. (property "Value" "GND" (id 1) (at 207.137 146.6342 0))
  6706. (property "Footprint" "" (id 2) (at 207.01 142.24 0)
  6707. (effects (font (size 1.27 1.27)) hide)
  6708. )
  6709. (property "Datasheet" "" (id 3) (at 207.01 142.24 0)
  6710. (effects (font (size 1.27 1.27)) hide)
  6711. )
  6712. (pin "1" (uuid 26bc4cd1-fdf8-403d-b694-724b6695b14c))
  6713. )
  6714. (symbol (lib_id "power:GNDA") (at 233.68 196.85 0) (unit 1)
  6715. (in_bom yes) (on_board yes)
  6716. (uuid 00000000-0000-0000-0000-0000621b25e8)
  6717. (property "Reference" "#PWR0122" (id 0) (at 233.68 203.2 0)
  6718. (effects (font (size 1.27 1.27)) hide)
  6719. )
  6720. (property "Value" "GNDA" (id 1) (at 233.807 201.2442 0))
  6721. (property "Footprint" "" (id 2) (at 233.68 196.85 0)
  6722. (effects (font (size 1.27 1.27)) hide)
  6723. )
  6724. (property "Datasheet" "" (id 3) (at 233.68 196.85 0)
  6725. (effects (font (size 1.27 1.27)) hide)
  6726. )
  6727. (pin "1" (uuid d018d709-67d3-4ad7-be8b-17913be602e2))
  6728. )
  6729. (symbol (lib_id "Device:R_Small") (at 241.3 128.27 0) (unit 1)
  6730. (in_bom yes) (on_board yes)
  6731. (uuid 00000000-0000-0000-0000-0000621b8442)
  6732. (property "Reference" "R17" (id 0) (at 236.3216 128.27 90))
  6733. (property "Value" "10k" (id 1) (at 238.633 128.27 90))
  6734. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 241.3 128.27 0)
  6735. (effects (font (size 1.27 1.27)) hide)
  6736. )
  6737. (property "Datasheet" "~" (id 3) (at 241.3 128.27 0)
  6738. (effects (font (size 1.27 1.27)) hide)
  6739. )
  6740. (property "LCSC" "C98220" (id 4) (at 241.3 128.27 0)
  6741. (effects (font (size 1.27 1.27)) hide)
  6742. )
  6743. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 241.3 128.27 0)
  6744. (effects (font (size 1.27 1.27)) hide)
  6745. )
  6746. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 241.3 128.27 0)
  6747. (effects (font (size 1.27 1.27)) hide)
  6748. )
  6749. (pin "1" (uuid 4d0ad09d-f9da-4c89-82bd-6ce3882f7602))
  6750. (pin "2" (uuid 095cce66-fe1f-4d0d-8d34-b30a0d2d3fc1))
  6751. )
  6752. (symbol (lib_id "power:+3.3V") (at 241.3 123.19 0) (unit 1)
  6753. (in_bom yes) (on_board yes)
  6754. (uuid 00000000-0000-0000-0000-0000621b8449)
  6755. (property "Reference" "#PWR01" (id 0) (at 241.3 127 0)
  6756. (effects (font (size 1.27 1.27)) hide)
  6757. )
  6758. (property "Value" "+3.3V" (id 1) (at 241.681 118.7958 0))
  6759. (property "Footprint" "" (id 2) (at 241.3 123.19 0)
  6760. (effects (font (size 1.27 1.27)) hide)
  6761. )
  6762. (property "Datasheet" "" (id 3) (at 241.3 123.19 0)
  6763. (effects (font (size 1.27 1.27)) hide)
  6764. )
  6765. (pin "1" (uuid b8351dea-9937-4b77-b800-d92809167b1c))
  6766. )
  6767. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 60.96 0) (unit 1)
  6768. (in_bom yes) (on_board yes)
  6769. (uuid 00000000-0000-0000-0000-0000621b8454)
  6770. (property "Reference" "TP13" (id 0) (at 173.9392 59.7916 0)
  6771. (effects (font (size 1.27 1.27)) (justify left))
  6772. )
  6773. (property "Value" "EN" (id 1) (at 173.99 60.96 0)
  6774. (effects (font (size 1.27 1.27)) (justify left))
  6775. )
  6776. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 60.96 0)
  6777. (effects (font (size 1.27 1.27)) hide)
  6778. )
  6779. (property "Datasheet" "~" (id 3) (at 177.8 60.96 0)
  6780. (effects (font (size 1.27 1.27)) hide)
  6781. )
  6782. (pin "1" (uuid 07e2d2d9-cc28-4fde-9a47-6afb5023973f))
  6783. )
  6784. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 195.58 0) (unit 1)
  6785. (in_bom yes) (on_board yes)
  6786. (uuid 00000000-0000-0000-0000-0000621b8956)
  6787. (property "Reference" "TP10" (id 0) (at 82.4992 194.4116 0)
  6788. (effects (font (size 1.27 1.27)) (justify left))
  6789. )
  6790. (property "Value" "CLK" (id 1) (at 82.55 195.58 0)
  6791. (effects (font (size 1.27 1.27)) (justify left))
  6792. )
  6793. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 195.58 0)
  6794. (effects (font (size 1.27 1.27)) hide)
  6795. )
  6796. (property "Datasheet" "~" (id 3) (at 86.36 195.58 0)
  6797. (effects (font (size 1.27 1.27)) hide)
  6798. )
  6799. (pin "1" (uuid e0450c32-6c7d-418d-bc0f-aa7cbff84d35))
  6800. )
  6801. (symbol (lib_id "power:GNDA") (at 214.63 209.55 0) (unit 1)
  6802. (in_bom yes) (on_board yes)
  6803. (uuid 00000000-0000-0000-0000-0000621d4025)
  6804. (property "Reference" "#PWR0123" (id 0) (at 214.63 215.9 0)
  6805. (effects (font (size 1.27 1.27)) hide)
  6806. )
  6807. (property "Value" "GNDA" (id 1) (at 214.757 213.9442 0))
  6808. (property "Footprint" "" (id 2) (at 214.63 209.55 0)
  6809. (effects (font (size 1.27 1.27)) hide)
  6810. )
  6811. (property "Datasheet" "" (id 3) (at 214.63 209.55 0)
  6812. (effects (font (size 1.27 1.27)) hide)
  6813. )
  6814. (pin "1" (uuid 3e803eba-8186-424f-b068-34ca56535b22))
  6815. )
  6816. (symbol (lib_id "power:GND") (at 229.87 209.55 0) (unit 1)
  6817. (in_bom yes) (on_board yes)
  6818. (uuid 00000000-0000-0000-0000-0000621d490e)
  6819. (property "Reference" "#PWR0124" (id 0) (at 229.87 215.9 0)
  6820. (effects (font (size 1.27 1.27)) hide)
  6821. )
  6822. (property "Value" "GND" (id 1) (at 229.997 213.9442 0))
  6823. (property "Footprint" "" (id 2) (at 229.87 209.55 0)
  6824. (effects (font (size 1.27 1.27)) hide)
  6825. )
  6826. (property "Datasheet" "" (id 3) (at 229.87 209.55 0)
  6827. (effects (font (size 1.27 1.27)) hide)
  6828. )
  6829. (pin "1" (uuid af13bbe6-4b76-49e2-b43c-d33a21379d7a))
  6830. )
  6831. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 198.12 0) (unit 1)
  6832. (in_bom yes) (on_board yes)
  6833. (uuid 00000000-0000-0000-0000-0000621d8fb7)
  6834. (property "Reference" "TP11" (id 0) (at 82.4992 196.9516 0)
  6835. (effects (font (size 1.27 1.27)) (justify left))
  6836. )
  6837. (property "Value" "DO" (id 1) (at 82.55 198.12 0)
  6838. (effects (font (size 1.27 1.27)) (justify left))
  6839. )
  6840. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 198.12 0)
  6841. (effects (font (size 1.27 1.27)) hide)
  6842. )
  6843. (property "Datasheet" "~" (id 3) (at 86.36 198.12 0)
  6844. (effects (font (size 1.27 1.27)) hide)
  6845. )
  6846. (pin "1" (uuid bcf55e80-256f-4b8f-baf1-67feda44bef2))
  6847. )
  6848. (symbol (lib_id "power:GNDA") (at 240.03 180.34 0) (unit 1)
  6849. (in_bom yes) (on_board yes)
  6850. (uuid 00000000-0000-0000-0000-0000621f9c4b)
  6851. (property "Reference" "#PWR0125" (id 0) (at 240.03 186.69 0)
  6852. (effects (font (size 1.27 1.27)) hide)
  6853. )
  6854. (property "Value" "GNDA" (id 1) (at 240.157 184.7342 0))
  6855. (property "Footprint" "" (id 2) (at 240.03 180.34 0)
  6856. (effects (font (size 1.27 1.27)) hide)
  6857. )
  6858. (property "Datasheet" "" (id 3) (at 240.03 180.34 0)
  6859. (effects (font (size 1.27 1.27)) hide)
  6860. )
  6861. (pin "1" (uuid 358b5a19-1161-43b1-8fe8-76dfffdf809b))
  6862. )
  6863. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 167.64 0) (unit 1)
  6864. (in_bom yes) (on_board yes)
  6865. (uuid 00000000-0000-0000-0000-000062263aa7)
  6866. (property "Reference" "TP6" (id 0) (at 380.9492 166.4716 0)
  6867. (effects (font (size 1.27 1.27)) (justify left))
  6868. )
  6869. (property "Value" "U" (id 1) (at 381 167.64 0)
  6870. (effects (font (size 1.27 1.27)) (justify left))
  6871. )
  6872. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 167.64 0)
  6873. (effects (font (size 1.27 1.27)) hide)
  6874. )
  6875. (property "Datasheet" "~" (id 3) (at 384.81 167.64 0)
  6876. (effects (font (size 1.27 1.27)) hide)
  6877. )
  6878. (pin "1" (uuid 7221f931-dfac-4f0d-bd11-296f4aa12b10))
  6879. )
  6880. (symbol (lib_id "power:GND") (at 241.3 140.97 0) (unit 1)
  6881. (in_bom yes) (on_board yes)
  6882. (uuid 00000000-0000-0000-0000-000062269e5e)
  6883. (property "Reference" "#PWR02" (id 0) (at 241.3 147.32 0)
  6884. (effects (font (size 1.27 1.27)) hide)
  6885. )
  6886. (property "Value" "GND" (id 1) (at 241.427 145.3642 0))
  6887. (property "Footprint" "" (id 2) (at 241.3 140.97 0)
  6888. (effects (font (size 1.27 1.27)) hide)
  6889. )
  6890. (property "Datasheet" "" (id 3) (at 241.3 140.97 0)
  6891. (effects (font (size 1.27 1.27)) hide)
  6892. )
  6893. (pin "1" (uuid 198dd92f-055f-4b28-85e1-2a45cc19fbc5))
  6894. )
  6895. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 170.18 0) (unit 1)
  6896. (in_bom yes) (on_board yes)
  6897. (uuid 00000000-0000-0000-0000-0000622a8e6d)
  6898. (property "Reference" "TP7" (id 0) (at 380.9492 169.0116 0)
  6899. (effects (font (size 1.27 1.27)) (justify left))
  6900. )
  6901. (property "Value" "V" (id 1) (at 381 170.18 0)
  6902. (effects (font (size 1.27 1.27)) (justify left))
  6903. )
  6904. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 170.18 0)
  6905. (effects (font (size 1.27 1.27)) hide)
  6906. )
  6907. (property "Datasheet" "~" (id 3) (at 384.81 170.18 0)
  6908. (effects (font (size 1.27 1.27)) hide)
  6909. )
  6910. (pin "1" (uuid a15af6c7-e3a9-47d1-99d9-d37c012c0b96))
  6911. )
  6912. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 172.72 0) (unit 1)
  6913. (in_bom yes) (on_board yes)
  6914. (uuid 00000000-0000-0000-0000-0000622cad46)
  6915. (property "Reference" "TP8" (id 0) (at 380.9492 171.5516 0)
  6916. (effects (font (size 1.27 1.27)) (justify left))
  6917. )
  6918. (property "Value" "W" (id 1) (at 381 172.72 0)
  6919. (effects (font (size 1.27 1.27)) (justify left))
  6920. )
  6921. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 172.72 0)
  6922. (effects (font (size 1.27 1.27)) hide)
  6923. )
  6924. (property "Datasheet" "~" (id 3) (at 384.81 172.72 0)
  6925. (effects (font (size 1.27 1.27)) hide)
  6926. )
  6927. (pin "1" (uuid ed030602-ad33-43c6-8797-055c5097d7b0))
  6928. )
  6929. (symbol (lib_id "Connector_Generic:Conn_01x08") (at 251.46 81.28 0) (unit 1)
  6930. (in_bom yes) (on_board yes)
  6931. (uuid 00000000-0000-0000-0000-0000622dfef9)
  6932. (property "Reference" "J3" (id 0) (at 253.492 81.4832 0)
  6933. (effects (font (size 1.27 1.27)) (justify left))
  6934. )
  6935. (property "Value" "LCD" (id 1) (at 253.492 83.7946 0)
  6936. (effects (font (size 1.27 1.27)) (justify left))
  6937. )
  6938. (property "Footprint" "SolderPads:SolderPads_2mm_8" (id 2) (at 251.46 81.28 0)
  6939. (effects (font (size 1.27 1.27)) hide)
  6940. )
  6941. (property "Datasheet" "~" (id 3) (at 251.46 81.28 0)
  6942. (effects (font (size 1.27 1.27)) hide)
  6943. )
  6944. (pin "1" (uuid 521b2398-56fa-4338-8610-870ca4d61557))
  6945. (pin "2" (uuid a201db9e-baf7-4871-be5a-ff795414340c))
  6946. (pin "3" (uuid 17e880b1-271c-4cec-8d9b-beeeb30a1b89))
  6947. (pin "4" (uuid 1a87a7f3-d023-4106-84ee-f187c706415f))
  6948. (pin "5" (uuid caa42d03-8d73-4d57-b233-e69949da956a))
  6949. (pin "6" (uuid e72203a7-4fd3-4622-bb9c-8600bfabdd8f))
  6950. (pin "7" (uuid 35f3c689-1acd-4f9d-8a20-40aa0367785d))
  6951. (pin "8" (uuid 077d5522-c76b-482a-bb37-34c61cd35bac))
  6952. )
  6953. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 69.85 0) (mirror y) (unit 1)
  6954. (in_bom yes) (on_board yes)
  6955. (uuid 00000000-0000-0000-0000-0000622e5052)
  6956. (property "Reference" "Q2" (id 0) (at 172.9486 68.6816 0)
  6957. (effects (font (size 1.27 1.27)) (justify left))
  6958. )
  6959. (property "Value" "UMH3N" (id 1) (at 172.9486 70.993 0)
  6960. (effects (font (size 1.27 1.27)) (justify left))
  6961. )
  6962. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 81.026 0)
  6963. (effects (font (size 1.27 1.27)) hide)
  6964. )
  6965. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 69.85 0)
  6966. (effects (font (size 1.27 1.27)) hide)
  6967. )
  6968. (property "LCSC" "C62892" (id 4) (at 180.34 69.85 0)
  6969. (effects (font (size 1.27 1.27)) hide)
  6970. )
  6971. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 69.85 0)
  6972. (effects (font (size 1.27 1.27)) hide)
  6973. )
  6974. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 69.85 0)
  6975. (effects (font (size 1.27 1.27)) hide)
  6976. )
  6977. (pin "1" (uuid 6691ca19-6715-4a80-847e-ca117309ce61))
  6978. (pin "2" (uuid 76cae1b5-a024-4bde-989b-5ff609e0e526))
  6979. (pin "6" (uuid 0b81ceb9-a3fb-4c04-8c6e-575ef33f6392))
  6980. (pin "3" (uuid d6fc91b9-3675-4ade-9918-6116602d2cdf))
  6981. (pin "4" (uuid ffb75972-f30a-4fb1-8f00-ff2653dbf2db))
  6982. (pin "5" (uuid b02f9511-2061-45c8-8bd6-ba849d7a0eeb))
  6983. )
  6984. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 85.09 180) (unit 2)
  6985. (in_bom yes) (on_board yes)
  6986. (uuid 00000000-0000-0000-0000-0000622e5b70)
  6987. (property "Reference" "Q2" (id 0) (at 172.9486 83.9216 0)
  6988. (effects (font (size 1.27 1.27)) (justify left))
  6989. )
  6990. (property "Value" "UMH3N" (id 1) (at 172.9486 86.233 0)
  6991. (effects (font (size 1.27 1.27)) (justify left))
  6992. )
  6993. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 73.914 0)
  6994. (effects (font (size 1.27 1.27)) hide)
  6995. )
  6996. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 85.09 0)
  6997. (effects (font (size 1.27 1.27)) hide)
  6998. )
  6999. (property "LCSC" "C62892" (id 4) (at 180.34 85.09 0)
  7000. (effects (font (size 1.27 1.27)) hide)
  7001. )
  7002. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 85.09 0)
  7003. (effects (font (size 1.27 1.27)) hide)
  7004. )
  7005. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 85.09 0)
  7006. (effects (font (size 1.27 1.27)) hide)
  7007. )
  7008. (pin "1" (uuid c1bec82d-bcfc-4ffd-9b29-aad0bc15267a))
  7009. (pin "2" (uuid b80cc904-f790-42df-b2f6-ef82a594cbe4))
  7010. (pin "6" (uuid 109cb803-fb15-43a3-a52f-3a5ae2a5aa7b))
  7011. (pin "3" (uuid 8760d1f3-4419-461e-b7ab-5248c2bbbb92))
  7012. (pin "4" (uuid d1bfa2a4-7f52-4f58-86f4-99ff41468384))
  7013. (pin "5" (uuid 33b75fa6-e454-4222-af75-e36476064ee7))
  7014. )
  7015. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 133.35 0) (unit 1)
  7016. (in_bom yes) (on_board yes)
  7017. (uuid 00000000-0000-0000-0000-0000622f4012)
  7018. (property "Reference" "TP4" (id 0) (at 157.4292 132.1816 0)
  7019. (effects (font (size 1.27 1.27)) (justify left))
  7020. )
  7021. (property "Value" "SDA" (id 1) (at 157.48 133.35 0)
  7022. (effects (font (size 1.27 1.27)) (justify left))
  7023. )
  7024. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 133.35 0)
  7025. (effects (font (size 1.27 1.27)) hide)
  7026. )
  7027. (property "Datasheet" "~" (id 3) (at 161.29 133.35 0)
  7028. (effects (font (size 1.27 1.27)) hide)
  7029. )
  7030. (pin "1" (uuid a314d631-cc6f-4d86-afb5-c4e22d9ee906))
  7031. )
  7032. (symbol (lib_id "no_pin:no_pin") (at 182.88 33.02 0) (unit 1)
  7033. (in_bom yes) (on_board yes)
  7034. (uuid 00000000-0000-0000-0000-000062311cef)
  7035. (property "Reference" "Z6" (id 0) (at 182.88 25.7302 0)
  7036. (effects (font (size 1.524 1.524)))
  7037. )
  7038. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 182.88 28.4226 0)
  7039. (effects (font (size 1.524 1.524)))
  7040. )
  7041. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 182.88 33.02 0)
  7042. (effects (font (size 1.524 1.524)) hide)
  7043. )
  7044. (property "Datasheet" "" (id 3) (at 182.88 33.02 0)
  7045. (effects (font (size 1.524 1.524)) hide)
  7046. )
  7047. (property "Note" "Screw: M1.6x3 (countersunk)" (id 4) (at 182.88 33.02 0)
  7048. (effects (font (size 1.27 1.27)) hide)
  7049. )
  7050. )
  7051. (symbol (lib_id "no_pin:no_pin") (at 204.47 33.02 0) (unit 1)
  7052. (in_bom yes) (on_board yes)
  7053. (uuid 00000000-0000-0000-0000-000062314e0d)
  7054. (property "Reference" "Z7" (id 0) (at 204.47 25.7302 0)
  7055. (effects (font (size 1.524 1.524)))
  7056. )
  7057. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 204.47 28.4226 0)
  7058. (effects (font (size 1.524 1.524)))
  7059. )
  7060. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 204.47 33.02 0)
  7061. (effects (font (size 1.524 1.524)) hide)
  7062. )
  7063. (property "Datasheet" "" (id 3) (at 204.47 33.02 0)
  7064. (effects (font (size 1.524 1.524)) hide)
  7065. )
  7066. (property "Note" "Screw: M1.6x3 (countersunk)" (id 4) (at 204.47 33.02 0)
  7067. (effects (font (size 1.27 1.27)) hide)
  7068. )
  7069. )
  7070. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 139.7 0) (unit 1)
  7071. (in_bom yes) (on_board yes)
  7072. (uuid 00000000-0000-0000-0000-0000623162cf)
  7073. (property "Reference" "TP5" (id 0) (at 157.4292 138.5316 0)
  7074. (effects (font (size 1.27 1.27)) (justify left))
  7075. )
  7076. (property "Value" "SCL" (id 1) (at 157.48 139.7 0)
  7077. (effects (font (size 1.27 1.27)) (justify left))
  7078. )
  7079. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 139.7 0)
  7080. (effects (font (size 1.27 1.27)) hide)
  7081. )
  7082. (property "Datasheet" "~" (id 3) (at 161.29 139.7 0)
  7083. (effects (font (size 1.27 1.27)) hide)
  7084. )
  7085. (pin "1" (uuid 8b08f3ad-d9c5-4621-9d11-9579e8e0a6d2))
  7086. )
  7087. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 95.25 0) (unit 1)
  7088. (in_bom yes) (on_board yes)
  7089. (uuid 00000000-0000-0000-0000-000062317868)
  7090. (property "Reference" "TP14" (id 0) (at 173.9392 94.0816 0)
  7091. (effects (font (size 1.27 1.27)) (justify left))
  7092. )
  7093. (property "Value" "BOOT" (id 1) (at 173.99 95.25 0)
  7094. (effects (font (size 1.27 1.27)) (justify left))
  7095. )
  7096. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 95.25 0)
  7097. (effects (font (size 1.27 1.27)) hide)
  7098. )
  7099. (property "Datasheet" "~" (id 3) (at 177.8 95.25 0)
  7100. (effects (font (size 1.27 1.27)) hide)
  7101. )
  7102. (pin "1" (uuid ba51139c-0c14-4520-b3c5-4cd60fc7a73f))
  7103. )
  7104. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 135.89 44.45 0) (unit 1)
  7105. (in_bom yes) (on_board yes)
  7106. (uuid 00000000-0000-0000-0000-0000623284d1)
  7107. (property "Reference" "H8" (id 0) (at 134.62 38.1 0)
  7108. (effects (font (size 1.27 1.27)) (justify left))
  7109. )
  7110. (property "Value" "AlignmentHole" (id 1) (at 134.62 39.37 0)
  7111. (effects (font (size 1.27 1.27)) (justify left))
  7112. )
  7113. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 135.89 44.45 0)
  7114. (effects (font (size 1.27 1.27)) hide)
  7115. )
  7116. (property "Datasheet" "~" (id 3) (at 135.89 44.45 0)
  7117. (effects (font (size 1.27 1.27)) hide)
  7118. )
  7119. (property "Note" "" (id 4) (at 135.89 44.45 0)
  7120. (effects (font (size 1.27 1.27)) hide)
  7121. )
  7122. (pin "1" (uuid d8058f93-8b91-4e0b-826a-2f09b4026bee))
  7123. )
  7124. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 147.32 44.45 0) (unit 1)
  7125. (in_bom yes) (on_board yes)
  7126. (uuid 00000000-0000-0000-0000-0000623284d9)
  7127. (property "Reference" "H9" (id 0) (at 146.05 38.1 0)
  7128. (effects (font (size 1.27 1.27)) (justify left))
  7129. )
  7130. (property "Value" "AlignmentHole" (id 1) (at 146.05 39.37 0)
  7131. (effects (font (size 1.27 1.27)) (justify left))
  7132. )
  7133. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 147.32 44.45 0)
  7134. (effects (font (size 1.27 1.27)) hide)
  7135. )
  7136. (property "Datasheet" "~" (id 3) (at 147.32 44.45 0)
  7137. (effects (font (size 1.27 1.27)) hide)
  7138. )
  7139. (property "Note" "" (id 4) (at 147.32 44.45 0)
  7140. (effects (font (size 1.27 1.27)) hide)
  7141. )
  7142. (pin "1" (uuid da4b4b3b-963a-4206-8440-61248fca61a5))
  7143. )
  7144. (symbol (lib_id "no_pin:no_pin") (at 226.06 33.02 0) (unit 1)
  7145. (in_bom yes) (on_board yes)
  7146. (uuid 00000000-0000-0000-0000-00006233c06f)
  7147. (property "Reference" "Z8" (id 0) (at 226.06 25.7302 0)
  7148. (effects (font (size 1.524 1.524)))
  7149. )
  7150. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 226.06 28.4226 0)
  7151. (effects (font (size 1.524 1.524)))
  7152. )
  7153. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 226.06 33.02 0)
  7154. (effects (font (size 1.524 1.524)) hide)
  7155. )
  7156. (property "Datasheet" "" (id 3) (at 226.06 33.02 0)
  7157. (effects (font (size 1.524 1.524)) hide)
  7158. )
  7159. (property "Note" "Screw: M1.6x3 (countersunk)" (id 4) (at 226.06 33.02 0)
  7160. (effects (font (size 1.27 1.27)) hide)
  7161. )
  7162. )
  7163. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 40.64 0) (unit 1)
  7164. (in_bom yes) (on_board yes)
  7165. (uuid 00000000-0000-0000-0000-000062379e81)
  7166. (property "Reference" "TP15" (id 0) (at 402.5392 39.4716 0)
  7167. (effects (font (size 1.27 1.27)) (justify left))
  7168. )
  7169. (property "Value" "TX" (id 1) (at 402.59 40.64 0)
  7170. (effects (font (size 1.27 1.27)) (justify left))
  7171. )
  7172. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 40.64 0)
  7173. (effects (font (size 1.27 1.27)) hide)
  7174. )
  7175. (property "Datasheet" "~" (id 3) (at 406.4 40.64 0)
  7176. (effects (font (size 1.27 1.27)) hide)
  7177. )
  7178. (pin "1" (uuid d88397a1-27ae-408d-87ab-cc3630533b80))
  7179. )
  7180. (symbol (lib_id "Device:C_Small") (at 326.39 30.48 0) (unit 1)
  7181. (in_bom yes) (on_board yes)
  7182. (uuid 00000000-0000-0000-0000-000062390737)
  7183. (property "Reference" "C25" (id 0) (at 328.7268 29.3116 0)
  7184. (effects (font (size 1.27 1.27)) (justify left))
  7185. )
  7186. (property "Value" "0.1uF" (id 1) (at 328.7268 31.623 0)
  7187. (effects (font (size 1.27 1.27)) (justify left))
  7188. )
  7189. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 326.39 30.48 0)
  7190. (effects (font (size 1.27 1.27)) hide)
  7191. )
  7192. (property "Datasheet" "~" (id 3) (at 326.39 30.48 0)
  7193. (effects (font (size 1.27 1.27)) hide)
  7194. )
  7195. (property "LCSC" "C1591" (id 4) (at 326.39 30.48 0)
  7196. (effects (font (size 1.27 1.27)) hide)
  7197. )
  7198. (property "Digikey" "1276-1935-1-ND" (id 5) (at 326.39 30.48 0)
  7199. (effects (font (size 1.27 1.27)) hide)
  7200. )
  7201. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 326.39 30.48 0)
  7202. (effects (font (size 1.27 1.27)) hide)
  7203. )
  7204. (pin "1" (uuid 10c554fd-22dd-46cf-acfe-70c8dfb45b11))
  7205. (pin "2" (uuid 85094a5b-8cf5-4fd4-95c7-e6160dca3246))
  7206. )
  7207. (symbol (lib_id "Device:C_Small") (at 317.5 30.48 0) (unit 1)
  7208. (in_bom yes) (on_board yes)
  7209. (uuid 00000000-0000-0000-0000-0000623909d3)
  7210. (property "Reference" "C24" (id 0) (at 319.8368 29.3116 0)
  7211. (effects (font (size 1.27 1.27)) (justify left))
  7212. )
  7213. (property "Value" "10uF" (id 1) (at 319.8368 31.623 0)
  7214. (effects (font (size 1.27 1.27)) (justify left))
  7215. )
  7216. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 317.5 30.48 0)
  7217. (effects (font (size 1.27 1.27)) hide)
  7218. )
  7219. (property "Datasheet" "~" (id 3) (at 317.5 30.48 0)
  7220. (effects (font (size 1.27 1.27)) hide)
  7221. )
  7222. (property "LCSC" "C2922480" (id 4) (at 317.5 30.48 0)
  7223. (effects (font (size 1.27 1.27)) hide)
  7224. )
  7225. (property "Digikey" "1276-2891-1-ND" (id 5) (at 317.5 30.48 0)
  7226. (effects (font (size 1.27 1.27)) hide)
  7227. )
  7228. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 317.5 30.48 0)
  7229. (effects (font (size 1.27 1.27)) hide)
  7230. )
  7231. (pin "1" (uuid 7efbb406-d445-4109-b6da-573057ce7536))
  7232. (pin "2" (uuid 372c03b7-f3ce-4285-8a79-a23ebebdc0f1))
  7233. )
  7234. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 43.18 0) (unit 1)
  7235. (in_bom yes) (on_board yes)
  7236. (uuid 00000000-0000-0000-0000-0000623a126c)
  7237. (property "Reference" "TP16" (id 0) (at 402.5392 42.0116 0)
  7238. (effects (font (size 1.27 1.27)) (justify left))
  7239. )
  7240. (property "Value" "RX" (id 1) (at 402.59 43.18 0)
  7241. (effects (font (size 1.27 1.27)) (justify left))
  7242. )
  7243. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 43.18 0)
  7244. (effects (font (size 1.27 1.27)) hide)
  7245. )
  7246. (property "Datasheet" "~" (id 3) (at 406.4 43.18 0)
  7247. (effects (font (size 1.27 1.27)) hide)
  7248. )
  7249. (pin "1" (uuid 3aec649b-7bfb-45b0-aab7-a7fd1c3cd2bb))
  7250. )
  7251. (symbol (lib_id "power:+3.3V") (at 312.42 25.4 0) (unit 1)
  7252. (in_bom yes) (on_board yes)
  7253. (uuid 00000000-0000-0000-0000-0000623d2efc)
  7254. (property "Reference" "#PWR0126" (id 0) (at 312.42 29.21 0)
  7255. (effects (font (size 1.27 1.27)) hide)
  7256. )
  7257. (property "Value" "+3.3V" (id 1) (at 312.801 21.0058 0))
  7258. (property "Footprint" "" (id 2) (at 312.42 25.4 0)
  7259. (effects (font (size 1.27 1.27)) hide)
  7260. )
  7261. (property "Datasheet" "" (id 3) (at 312.42 25.4 0)
  7262. (effects (font (size 1.27 1.27)) hide)
  7263. )
  7264. (pin "1" (uuid e4fcdd73-1b73-41d5-86e8-fa708452c6d3))
  7265. )
  7266. (symbol (lib_id "power:GND") (at 312.42 45.72 0) (unit 1)
  7267. (in_bom yes) (on_board yes)
  7268. (uuid 00000000-0000-0000-0000-0000623d364a)
  7269. (property "Reference" "#PWR0127" (id 0) (at 312.42 52.07 0)
  7270. (effects (font (size 1.27 1.27)) hide)
  7271. )
  7272. (property "Value" "GND" (id 1) (at 312.547 50.1142 0))
  7273. (property "Footprint" "" (id 2) (at 312.42 45.72 0)
  7274. (effects (font (size 1.27 1.27)) hide)
  7275. )
  7276. (property "Datasheet" "" (id 3) (at 312.42 45.72 0)
  7277. (effects (font (size 1.27 1.27)) hide)
  7278. )
  7279. (pin "1" (uuid c18e9869-03c4-4f9f-af59-b974de518cf0))
  7280. )
  7281. (symbol (lib_id "no_pin:no_pin") (at 182.88 45.72 0) (unit 1)
  7282. (in_bom yes) (on_board yes)
  7283. (uuid 00000000-0000-0000-0000-0000623f109c)
  7284. (property "Reference" "Z9" (id 0) (at 182.88 38.4302 0)
  7285. (effects (font (size 1.524 1.524)))
  7286. )
  7287. (property "Value" "WatchGlass39.5mm" (id 1) (at 182.88 41.1226 0)
  7288. (effects (font (size 1.524 1.524)))
  7289. )
  7290. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 182.88 45.72 0)
  7291. (effects (font (size 1.524 1.524)) hide)
  7292. )
  7293. (property "Datasheet" "" (id 3) (at 182.88 45.72 0)
  7294. (effects (font (size 1.524 1.524)) hide)
  7295. )
  7296. (property "Note" "Watch glass: 1mm thick, 39.5mm diameter" (id 4) (at 182.88 45.72 0)
  7297. (effects (font (size 1.27 1.27)) hide)
  7298. )
  7299. (property "AliExpress" "https://www.aliexpress.com/item/33055356489.html" (id 5) (at 182.88 45.72 0)
  7300. (effects (font (size 1.27 1.27)) hide)
  7301. )
  7302. )
  7303. (symbol (lib_id "power:GND") (at 402.59 33.02 0) (unit 1)
  7304. (in_bom yes) (on_board yes)
  7305. (uuid 00000000-0000-0000-0000-0000623f1786)
  7306. (property "Reference" "#PWR0128" (id 0) (at 402.59 39.37 0)
  7307. (effects (font (size 1.27 1.27)) hide)
  7308. )
  7309. (property "Value" "GND" (id 1) (at 402.717 37.4142 0))
  7310. (property "Footprint" "" (id 2) (at 402.59 33.02 0)
  7311. (effects (font (size 1.27 1.27)) hide)
  7312. )
  7313. (property "Datasheet" "" (id 3) (at 402.59 33.02 0)
  7314. (effects (font (size 1.27 1.27)) hide)
  7315. )
  7316. (pin "1" (uuid 638f25d2-c0f3-4b26-98c2-56361c19f1f1))
  7317. )
  7318. (symbol (lib_id "power:GND") (at 334.01 71.12 0) (unit 1)
  7319. (in_bom yes) (on_board yes)
  7320. (uuid 00000000-0000-0000-0000-0000623f1d8e)
  7321. (property "Reference" "#PWR0129" (id 0) (at 334.01 77.47 0)
  7322. (effects (font (size 1.27 1.27)) hide)
  7323. )
  7324. (property "Value" "GND" (id 1) (at 334.137 75.5142 0))
  7325. (property "Footprint" "" (id 2) (at 334.01 71.12 0)
  7326. (effects (font (size 1.27 1.27)) hide)
  7327. )
  7328. (property "Datasheet" "" (id 3) (at 334.01 71.12 0)
  7329. (effects (font (size 1.27 1.27)) hide)
  7330. )
  7331. (pin "1" (uuid 91a3fbaf-aacd-4755-b3f8-d13cadbd6007))
  7332. )
  7333. (symbol (lib_id "power:+3.3V") (at 223.52 69.85 0) (unit 1)
  7334. (in_bom yes) (on_board yes)
  7335. (uuid 00000000-0000-0000-0000-00006245e5c2)
  7336. (property "Reference" "#PWR0130" (id 0) (at 223.52 73.66 0)
  7337. (effects (font (size 1.27 1.27)) hide)
  7338. )
  7339. (property "Value" "+3.3V" (id 1) (at 223.901 65.4558 0))
  7340. (property "Footprint" "" (id 2) (at 223.52 69.85 0)
  7341. (effects (font (size 1.27 1.27)) hide)
  7342. )
  7343. (property "Datasheet" "" (id 3) (at 223.52 69.85 0)
  7344. (effects (font (size 1.27 1.27)) hide)
  7345. )
  7346. (pin "1" (uuid cd758a1e-1d24-42e5-94f9-c79dc5fb0413))
  7347. )
  7348. (symbol (lib_id "power:GND") (at 223.52 77.47 0) (unit 1)
  7349. (in_bom yes) (on_board yes)
  7350. (uuid 00000000-0000-0000-0000-00006245ef1e)
  7351. (property "Reference" "#PWR0131" (id 0) (at 223.52 83.82 0)
  7352. (effects (font (size 1.27 1.27)) hide)
  7353. )
  7354. (property "Value" "GND" (id 1) (at 223.647 81.8642 0))
  7355. (property "Footprint" "" (id 2) (at 223.52 77.47 0)
  7356. (effects (font (size 1.27 1.27)) hide)
  7357. )
  7358. (property "Datasheet" "" (id 3) (at 223.52 77.47 0)
  7359. (effects (font (size 1.27 1.27)) hide)
  7360. )
  7361. (pin "1" (uuid 43f7b188-3c38-4aec-8f91-8fbccbdd3dcd))
  7362. )
  7363. (symbol (lib_id "no_pin:no_pin") (at 204.47 45.72 0) (unit 1)
  7364. (in_bom yes) (on_board yes)
  7365. (uuid 00000000-0000-0000-0000-00006246aa1a)
  7366. (property "Reference" "Z10" (id 0) (at 204.47 38.4302 0)
  7367. (effects (font (size 1.524 1.524)))
  7368. )
  7369. (property "Value" "BLDCMotor" (id 1) (at 204.47 41.1226 0)
  7370. (effects (font (size 1.524 1.524)))
  7371. )
  7372. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 204.47 45.72 0)
  7373. (effects (font (size 1.524 1.524)) hide)
  7374. )
  7375. (property "Datasheet" "" (id 3) (at 204.47 45.72 0)
  7376. (effects (font (size 1.524 1.524)) hide)
  7377. )
  7378. (property "Note" "SparkFun: https://www.sparkfun.com/products/20441" (id 4) (at 204.47 45.72 0)
  7379. (effects (font (size 1.27 1.27)) hide)
  7380. )
  7381. (property "AliExpress" "" (id 5) (at 204.47 45.72 0)
  7382. (effects (font (size 1.27 1.27)) hide)
  7383. )
  7384. )
  7385. (symbol (lib_id "Device:C_Small") (at 224.79 73.66 0) (unit 1)
  7386. (in_bom yes) (on_board yes)
  7387. (uuid 00000000-0000-0000-0000-00006246f069)
  7388. (property "Reference" "C26" (id 0) (at 227.1268 72.4916 0)
  7389. (effects (font (size 1.27 1.27)) (justify left))
  7390. )
  7391. (property "Value" "10uF" (id 1) (at 227.1268 74.803 0)
  7392. (effects (font (size 1.27 1.27)) (justify left))
  7393. )
  7394. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 224.79 73.66 0)
  7395. (effects (font (size 1.27 1.27)) hide)
  7396. )
  7397. (property "Datasheet" "~" (id 3) (at 224.79 73.66 0)
  7398. (effects (font (size 1.27 1.27)) hide)
  7399. )
  7400. (property "LCSC" "C2922480" (id 4) (at 224.79 73.66 0)
  7401. (effects (font (size 1.27 1.27)) hide)
  7402. )
  7403. (property "Digikey" "1276-2891-1-ND" (id 5) (at 224.79 73.66 0)
  7404. (effects (font (size 1.27 1.27)) hide)
  7405. )
  7406. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 224.79 73.66 0)
  7407. (effects (font (size 1.27 1.27)) hide)
  7408. )
  7409. (pin "1" (uuid fcbbeefe-3039-4d5e-b86c-9c72c7ae9bfc))
  7410. (pin "2" (uuid 294a1a09-794d-4457-8db5-2717b007b81c))
  7411. )
  7412. (symbol (lib_id "power:PWR_FLAG") (at 57.15 58.42 0) (unit 1)
  7413. (in_bom yes) (on_board yes)
  7414. (uuid 00000000-0000-0000-0000-0000625e1008)
  7415. (property "Reference" "#FLG0101" (id 0) (at 57.15 56.515 0)
  7416. (effects (font (size 1.27 1.27)) hide)
  7417. )
  7418. (property "Value" "PWR_FLAG" (id 1) (at 57.15 54.0258 0))
  7419. (property "Footprint" "" (id 2) (at 57.15 58.42 0)
  7420. (effects (font (size 1.27 1.27)) hide)
  7421. )
  7422. (property "Datasheet" "~" (id 3) (at 57.15 58.42 0)
  7423. (effects (font (size 1.27 1.27)) hide)
  7424. )
  7425. (pin "1" (uuid d3d27eed-0d1a-4443-9ecf-3382e9e5792c))
  7426. )
  7427. (symbol (lib_id "power:PWR_FLAG") (at 45.72 100.33 0) (unit 1)
  7428. (in_bom yes) (on_board yes)
  7429. (uuid 00000000-0000-0000-0000-0000625fa47a)
  7430. (property "Reference" "#FLG0102" (id 0) (at 45.72 98.425 0)
  7431. (effects (font (size 1.27 1.27)) hide)
  7432. )
  7433. (property "Value" "PWR_FLAG" (id 1) (at 45.72 95.9358 0))
  7434. (property "Footprint" "" (id 2) (at 45.72 100.33 0)
  7435. (effects (font (size 1.27 1.27)) hide)
  7436. )
  7437. (property "Datasheet" "~" (id 3) (at 45.72 100.33 0)
  7438. (effects (font (size 1.27 1.27)) hide)
  7439. )
  7440. (pin "1" (uuid 3596e4f6-a62f-45f3-a36d-75a44a506f70))
  7441. )
  7442. (symbol (lib_id "power:+5V") (at 67.31 58.42 0) (unit 1)
  7443. (in_bom yes) (on_board yes)
  7444. (uuid 00000000-0000-0000-0000-000062644c87)
  7445. (property "Reference" "#PWR0136" (id 0) (at 67.31 62.23 0)
  7446. (effects (font (size 1.27 1.27)) hide)
  7447. )
  7448. (property "Value" "+5V" (id 1) (at 67.691 54.0258 0))
  7449. (property "Footprint" "" (id 2) (at 67.31 58.42 0)
  7450. (effects (font (size 1.27 1.27)) hide)
  7451. )
  7452. (property "Datasheet" "" (id 3) (at 67.31 58.42 0)
  7453. (effects (font (size 1.27 1.27)) hide)
  7454. )
  7455. (pin "1" (uuid a65f4b08-ed17-4666-991e-102dbdbbb7ae))
  7456. )
  7457. (symbol (lib_id "power:+5V") (at 321.31 165.1 0) (unit 1)
  7458. (in_bom yes) (on_board yes)
  7459. (uuid 00000000-0000-0000-0000-000062663a0f)
  7460. (property "Reference" "#PWR0137" (id 0) (at 321.31 168.91 0)
  7461. (effects (font (size 1.27 1.27)) hide)
  7462. )
  7463. (property "Value" "+5V" (id 1) (at 321.691 160.7058 0))
  7464. (property "Footprint" "" (id 2) (at 321.31 165.1 0)
  7465. (effects (font (size 1.27 1.27)) hide)
  7466. )
  7467. (property "Datasheet" "" (id 3) (at 321.31 165.1 0)
  7468. (effects (font (size 1.27 1.27)) hide)
  7469. )
  7470. (pin "1" (uuid e127aca6-2244-4ab0-a5ba-d39a64f63be0))
  7471. )
  7472. (symbol (lib_id "power:+5V") (at 24.13 25.4 0) (unit 1)
  7473. (in_bom yes) (on_board yes)
  7474. (uuid 00000000-0000-0000-0000-00006269a626)
  7475. (property "Reference" "#PWR0138" (id 0) (at 24.13 29.21 0)
  7476. (effects (font (size 1.27 1.27)) hide)
  7477. )
  7478. (property "Value" "+5V" (id 1) (at 24.511 21.0058 0))
  7479. (property "Footprint" "" (id 2) (at 24.13 25.4 0)
  7480. (effects (font (size 1.27 1.27)) hide)
  7481. )
  7482. (property "Datasheet" "" (id 3) (at 24.13 25.4 0)
  7483. (effects (font (size 1.27 1.27)) hide)
  7484. )
  7485. (pin "1" (uuid 2e063fff-a2c7-45f0-96f6-e7831414a280))
  7486. )
  7487. (symbol (lib_id "power:GND") (at 321.31 175.26 0) (unit 1)
  7488. (in_bom yes) (on_board yes)
  7489. (uuid 00000000-0000-0000-0000-0000626b6cf1)
  7490. (property "Reference" "#PWR0132" (id 0) (at 321.31 181.61 0)
  7491. (effects (font (size 1.27 1.27)) hide)
  7492. )
  7493. (property "Value" "GND" (id 1) (at 321.437 179.6542 0))
  7494. (property "Footprint" "" (id 2) (at 321.31 175.26 0)
  7495. (effects (font (size 1.27 1.27)) hide)
  7496. )
  7497. (property "Datasheet" "" (id 3) (at 321.31 175.26 0)
  7498. (effects (font (size 1.27 1.27)) hide)
  7499. )
  7500. (pin "1" (uuid bc72b5b2-7af7-488d-b91b-58a1a8d3b9ab))
  7501. )
  7502. (symbol (lib_id "VEML7700:VEML7700") (at 62.23 147.32 0) (unit 1)
  7503. (in_bom yes) (on_board yes)
  7504. (uuid 00000000-0000-0000-0000-00006271597a)
  7505. (property "Reference" "U8" (id 0) (at 55.1688 146.7866 0)
  7506. (effects (font (size 1.27 1.27)) (justify right))
  7507. )
  7508. (property "Value" "VEML7700" (id 1) (at 55.1688 149.098 0)
  7509. (effects (font (size 1.27 1.27)) (justify right))
  7510. )
  7511. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 62.23 147.32 0)
  7512. (effects (font (size 1.27 1.27)) hide)
  7513. )
  7514. (property "Datasheet" "" (id 3) (at 62.23 147.32 0)
  7515. (effects (font (size 1.27 1.27)) hide)
  7516. )
  7517. (property "Digikey" "VEML7700-TT" (id 4) (at 62.23 147.32 0)
  7518. (effects (font (size 1.27 1.27)) hide)
  7519. )
  7520. (property "Mouser" "78-VEML7700-TT" (id 5) (at 62.23 147.32 0)
  7521. (effects (font (size 1.27 1.27)) hide)
  7522. )
  7523. (property "LCSC" "C1850416" (id 6) (at 62.23 147.32 0)
  7524. (effects (font (size 1.27 1.27)) hide)
  7525. )
  7526. (pin "1" (uuid 4e639396-fd0d-48f3-ae01-491cad4cd2ae))
  7527. (pin "2" (uuid cf7662f5-8d7d-406e-833a-14d8e8de7e9e))
  7528. (pin "3" (uuid b64ab217-2d8d-49d7-adba-67ecfdf386a3))
  7529. (pin "4" (uuid a91d6319-4f81-4284-8582-de6896fbd8c1))
  7530. )
  7531. (symbol (lib_id "Device:C_Small") (at 45.72 139.7 0) (unit 1)
  7532. (in_bom yes) (on_board yes)
  7533. (uuid 00000000-0000-0000-0000-00006271863d)
  7534. (property "Reference" "C27" (id 0) (at 48.0568 138.5316 0)
  7535. (effects (font (size 1.27 1.27)) (justify left))
  7536. )
  7537. (property "Value" "0.1uF" (id 1) (at 48.0568 140.843 0)
  7538. (effects (font (size 1.27 1.27)) (justify left))
  7539. )
  7540. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 45.72 139.7 0)
  7541. (effects (font (size 1.27 1.27)) hide)
  7542. )
  7543. (property "Datasheet" "~" (id 3) (at 45.72 139.7 0)
  7544. (effects (font (size 1.27 1.27)) hide)
  7545. )
  7546. (property "LCSC" "C1591" (id 4) (at 45.72 139.7 0)
  7547. (effects (font (size 1.27 1.27)) hide)
  7548. )
  7549. (property "Digikey" "1276-1935-1-ND" (id 5) (at 45.72 139.7 0)
  7550. (effects (font (size 1.27 1.27)) hide)
  7551. )
  7552. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 45.72 139.7 0)
  7553. (effects (font (size 1.27 1.27)) hide)
  7554. )
  7555. (pin "1" (uuid 661ecab7-71a0-40fb-9b45-35d1b476f11d))
  7556. (pin "2" (uuid d5ba6e76-eefc-42d3-a8c9-fcf1e81d29a6))
  7557. )
  7558. (symbol (lib_id "power:+3.3V") (at 45.72 129.54 0) (unit 1)
  7559. (in_bom yes) (on_board yes)
  7560. (uuid 00000000-0000-0000-0000-000062719d79)
  7561. (property "Reference" "#PWR0139" (id 0) (at 45.72 133.35 0)
  7562. (effects (font (size 1.27 1.27)) hide)
  7563. )
  7564. (property "Value" "+3.3V" (id 1) (at 46.101 125.1458 0))
  7565. (property "Footprint" "" (id 2) (at 45.72 129.54 0)
  7566. (effects (font (size 1.27 1.27)) hide)
  7567. )
  7568. (property "Datasheet" "" (id 3) (at 45.72 129.54 0)
  7569. (effects (font (size 1.27 1.27)) hide)
  7570. )
  7571. (pin "1" (uuid 7174babe-609e-414a-875a-5d616c24c193))
  7572. )
  7573. (symbol (lib_id "power:GND") (at 45.72 165.1 0) (unit 1)
  7574. (in_bom yes) (on_board yes)
  7575. (uuid 00000000-0000-0000-0000-00006271a63e)
  7576. (property "Reference" "#PWR0140" (id 0) (at 45.72 171.45 0)
  7577. (effects (font (size 1.27 1.27)) hide)
  7578. )
  7579. (property "Value" "GND" (id 1) (at 45.847 169.4942 0))
  7580. (property "Footprint" "" (id 2) (at 45.72 165.1 0)
  7581. (effects (font (size 1.27 1.27)) hide)
  7582. )
  7583. (property "Datasheet" "" (id 3) (at 45.72 165.1 0)
  7584. (effects (font (size 1.27 1.27)) hide)
  7585. )
  7586. (pin "1" (uuid 2a2a4016-7e4c-44fd-931a-e34a173acb81))
  7587. )
  7588. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 189.23 0) (unit 1)
  7589. (in_bom yes) (on_board yes)
  7590. (uuid 00000000-0000-0000-0000-000062748b8a)
  7591. (property "Reference" "J4" (id 0) (at 140.462 188.1632 0)
  7592. (effects (font (size 1.27 1.27)) (justify left))
  7593. )
  7594. (property "Value" "A" (id 1) (at 140.462 190.4746 0)
  7595. (effects (font (size 1.27 1.27)) (justify left))
  7596. )
  7597. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 189.23 0)
  7598. (effects (font (size 1.27 1.27)) hide)
  7599. )
  7600. (property "Datasheet" "~" (id 3) (at 138.43 189.23 0)
  7601. (effects (font (size 1.27 1.27)) hide)
  7602. )
  7603. (pin "1" (uuid 46a17313-3b78-4a84-8f45-a37ea5833dad))
  7604. (pin "2" (uuid 8b9119fb-4888-4674-b5b7-19ba6fe17e82))
  7605. (pin "3" (uuid 8c1feb9f-d0b8-42a7-8406-aa936270dc75))
  7606. )
  7607. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 200.66 0) (unit 1)
  7608. (in_bom yes) (on_board yes)
  7609. (uuid 00000000-0000-0000-0000-00006274a9bb)
  7610. (property "Reference" "J5" (id 0) (at 140.462 199.5932 0)
  7611. (effects (font (size 1.27 1.27)) (justify left))
  7612. )
  7613. (property "Value" "B" (id 1) (at 140.462 201.9046 0)
  7614. (effects (font (size 1.27 1.27)) (justify left))
  7615. )
  7616. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 200.66 0)
  7617. (effects (font (size 1.27 1.27)) hide)
  7618. )
  7619. (property "Datasheet" "~" (id 3) (at 138.43 200.66 0)
  7620. (effects (font (size 1.27 1.27)) hide)
  7621. )
  7622. (pin "1" (uuid e14baf8b-f165-42d0-ab67-48db2ef1f110))
  7623. (pin "2" (uuid 674dc7df-a1ab-4b4f-990f-590eb08c2ce2))
  7624. (pin "3" (uuid ff42b5b9-653e-46b0-81ab-36da556cf5d0))
  7625. )
  7626. (symbol (lib_id "Device:R_Small") (at 166.37 132.08 0) (unit 1)
  7627. (in_bom yes) (on_board yes)
  7628. (uuid 00000000-0000-0000-0000-0000627e020e)
  7629. (property "Reference" "R13" (id 0) (at 161.3916 132.08 90))
  7630. (property "Value" "2.2k" (id 1) (at 163.703 132.08 90))
  7631. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 166.37 132.08 0)
  7632. (effects (font (size 1.27 1.27)) hide)
  7633. )
  7634. (property "Datasheet" "~" (id 3) (at 166.37 132.08 0)
  7635. (effects (font (size 1.27 1.27)) hide)
  7636. )
  7637. (property "LCSC" "C4190" (id 4) (at 166.37 132.08 0)
  7638. (effects (font (size 1.27 1.27)) hide)
  7639. )
  7640. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 166.37 132.08 0)
  7641. (effects (font (size 1.27 1.27)) hide)
  7642. )
  7643. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 166.37 132.08 0)
  7644. (effects (font (size 1.27 1.27)) hide)
  7645. )
  7646. (pin "1" (uuid 0e3e8dbc-ddc7-40fc-a10a-28e14606eb80))
  7647. (pin "2" (uuid efc8f1b1-e26b-4dcb-9909-745df981a878))
  7648. )
  7649. (symbol (lib_id "Device:R_Small") (at 172.72 138.43 0) (unit 1)
  7650. (in_bom yes) (on_board yes)
  7651. (uuid 00000000-0000-0000-0000-0000627eadb9)
  7652. (property "Reference" "R14" (id 0) (at 167.7416 138.43 90))
  7653. (property "Value" "2.2k" (id 1) (at 170.053 138.43 90))
  7654. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 172.72 138.43 0)
  7655. (effects (font (size 1.27 1.27)) hide)
  7656. )
  7657. (property "Datasheet" "~" (id 3) (at 172.72 138.43 0)
  7658. (effects (font (size 1.27 1.27)) hide)
  7659. )
  7660. (property "LCSC" "C4190" (id 4) (at 172.72 138.43 0)
  7661. (effects (font (size 1.27 1.27)) hide)
  7662. )
  7663. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 172.72 138.43 0)
  7664. (effects (font (size 1.27 1.27)) hide)
  7665. )
  7666. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 172.72 138.43 0)
  7667. (effects (font (size 1.27 1.27)) hide)
  7668. )
  7669. (pin "1" (uuid 5c368fdc-8657-4d4e-bac9-9fad9b825df9))
  7670. (pin "2" (uuid 2ba6ef0c-0901-4570-8a77-6e40184846a7))
  7671. )
  7672. (symbol (lib_id "power:+3.3V") (at 170.18 127 0) (unit 1)
  7673. (in_bom yes) (on_board yes)
  7674. (uuid 00000000-0000-0000-0000-000062826cad)
  7675. (property "Reference" "#PWR0141" (id 0) (at 170.18 130.81 0)
  7676. (effects (font (size 1.27 1.27)) hide)
  7677. )
  7678. (property "Value" "+3.3V" (id 1) (at 170.561 122.6058 0))
  7679. (property "Footprint" "" (id 2) (at 170.18 127 0)
  7680. (effects (font (size 1.27 1.27)) hide)
  7681. )
  7682. (property "Datasheet" "" (id 3) (at 170.18 127 0)
  7683. (effects (font (size 1.27 1.27)) hide)
  7684. )
  7685. (pin "1" (uuid fd271d37-3ee8-4620-82ff-72683338471b))
  7686. )
  7687. (symbol (lib_id "Device:R_Small") (at 132.08 172.72 0) (unit 1)
  7688. (in_bom yes) (on_board yes) (fields_autoplaced)
  7689. (uuid 19e4a8db-1c6b-449b-bfa7-4a57df85774c)
  7690. (property "Reference" "R19" (id 0) (at 129.54 173.9901 0)
  7691. (effects (font (size 1.27 1.27)) (justify right))
  7692. )
  7693. (property "Value" "1k" (id 1) (at 129.54 171.4501 0)
  7694. (effects (font (size 1.27 1.27)) (justify right))
  7695. )
  7696. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 132.08 172.72 0)
  7697. (effects (font (size 1.27 1.27)) hide)
  7698. )
  7699. (property "Datasheet" "~" (id 3) (at 132.08 172.72 0)
  7700. (effects (font (size 1.27 1.27)) hide)
  7701. )
  7702. (pin "1" (uuid e3e56148-649d-46ed-bc05-9c6afaebded3))
  7703. (pin "2" (uuid 76729330-fbe9-4a8f-8e9b-89becde90a74))
  7704. )
  7705. (symbol (lib_id "Device:R_Small") (at 132.08 165.1 0) (unit 1)
  7706. (in_bom yes) (on_board yes) (fields_autoplaced)
  7707. (uuid 21f39b11-fd0d-4374-b88f-aad2b2976b0d)
  7708. (property "Reference" "R18" (id 0) (at 129.54 166.3701 0)
  7709. (effects (font (size 1.27 1.27)) (justify right))
  7710. )
  7711. (property "Value" "1k" (id 1) (at 129.54 163.8301 0)
  7712. (effects (font (size 1.27 1.27)) (justify right))
  7713. )
  7714. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 132.08 165.1 0)
  7715. (effects (font (size 1.27 1.27)) hide)
  7716. )
  7717. (property "Datasheet" "~" (id 3) (at 132.08 165.1 0)
  7718. (effects (font (size 1.27 1.27)) hide)
  7719. )
  7720. (pin "1" (uuid ec20d1c3-9d59-4077-88b2-369e59ac6c02))
  7721. (pin "2" (uuid 276233a1-f8b5-4ac9-b9be-2a7814860d47))
  7722. )
  7723. (symbol (lib_id "power:PWR_FLAG") (at 214.63 207.01 0) (unit 1)
  7724. (in_bom yes) (on_board yes) (fields_autoplaced)
  7725. (uuid 6ae86d03-847c-45a5-8903-ce32ee0509d6)
  7726. (property "Reference" "#FLG0103" (id 0) (at 214.63 205.105 0)
  7727. (effects (font (size 1.27 1.27)) hide)
  7728. )
  7729. (property "Value" "PWR_FLAG" (id 1) (at 214.63 201.93 0))
  7730. (property "Footprint" "" (id 2) (at 214.63 207.01 0)
  7731. (effects (font (size 1.27 1.27)) hide)
  7732. )
  7733. (property "Datasheet" "~" (id 3) (at 214.63 207.01 0)
  7734. (effects (font (size 1.27 1.27)) hide)
  7735. )
  7736. (pin "1" (uuid a5cdc951-a651-4b84-af46-2da1a268b065))
  7737. )
  7738. (symbol (lib_id "Device:NetTie_2") (at 222.25 207.01 0) (unit 1)
  7739. (in_bom yes) (on_board yes)
  7740. (uuid 6c2ba31f-e69e-499b-a871-fef898c318d8)
  7741. (property "Reference" "NT1" (id 0) (at 222.25 208.28 0))
  7742. (property "Value" "NetTie_2" (id 1) (at 222.25 210.82 0)
  7743. (effects (font (size 1.27 1.27)) hide)
  7744. )
  7745. (property "Footprint" "NetTie:NetTie-2_SMD_Pad0.5mm" (id 2) (at 222.25 207.01 0)
  7746. (effects (font (size 1.27 1.27)) hide)
  7747. )
  7748. (property "Datasheet" "~" (id 3) (at 222.25 207.01 0)
  7749. (effects (font (size 1.27 1.27)) hide)
  7750. )
  7751. (pin "1" (uuid 64a816d7-8779-40eb-abd0-dcef6915077a))
  7752. (pin "2" (uuid f190f63b-6701-467a-ae0a-1f70e305fc5d))
  7753. )
  7754. (symbol (lib_id "Device:R_Small") (at 137.16 165.1 180) (unit 1)
  7755. (in_bom yes) (on_board yes) (fields_autoplaced)
  7756. (uuid 8e58fdb3-e315-4d1e-8dc3-7c4cc8db60ad)
  7757. (property "Reference" "R20" (id 0) (at 139.7 163.8299 0)
  7758. (effects (font (size 1.27 1.27)) (justify right))
  7759. )
  7760. (property "Value" "1k" (id 1) (at 139.7 166.3699 0)
  7761. (effects (font (size 1.27 1.27)) (justify right))
  7762. )
  7763. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 137.16 165.1 0)
  7764. (effects (font (size 1.27 1.27)) hide)
  7765. )
  7766. (property "Datasheet" "~" (id 3) (at 137.16 165.1 0)
  7767. (effects (font (size 1.27 1.27)) hide)
  7768. )
  7769. (pin "1" (uuid 40a2b512-296b-4100-890b-5ea6f31047a6))
  7770. (pin "2" (uuid e2f2f13c-a258-4eee-a6b3-fc3ead532b76))
  7771. )
  7772. (symbol (lib_id "Device:R_Small") (at 137.16 172.72 180) (unit 1)
  7773. (in_bom yes) (on_board yes) (fields_autoplaced)
  7774. (uuid 99c77e7a-bdd8-49ec-8ed1-b44caa8ff974)
  7775. (property "Reference" "R21" (id 0) (at 139.7 171.4499 0)
  7776. (effects (font (size 1.27 1.27)) (justify right))
  7777. )
  7778. (property "Value" "1k" (id 1) (at 139.7 173.9899 0)
  7779. (effects (font (size 1.27 1.27)) (justify right))
  7780. )
  7781. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 137.16 172.72 0)
  7782. (effects (font (size 1.27 1.27)) hide)
  7783. )
  7784. (property "Datasheet" "~" (id 3) (at 137.16 172.72 0)
  7785. (effects (font (size 1.27 1.27)) hide)
  7786. )
  7787. (pin "1" (uuid 72f3c9ff-b295-4fa0-986b-de29cac23e52))
  7788. (pin "2" (uuid 6f06799e-e62e-474a-8179-f2ce806e8872))
  7789. )
  7790. (sheet_instances
  7791. (path "/" (page "1"))
  7792. )
  7793. (symbol_instances
  7794. (path "/00000000-0000-0000-0000-0000625e1008"
  7795. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7796. )
  7797. (path "/00000000-0000-0000-0000-0000625fa47a"
  7798. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7799. )
  7800. (path "/6ae86d03-847c-45a5-8903-ce32ee0509d6"
  7801. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7802. )
  7803. (path "/00000000-0000-0000-0000-0000621b8449"
  7804. (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "")
  7805. )
  7806. (path "/00000000-0000-0000-0000-000062269e5e"
  7807. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  7808. )
  7809. (path "/00000000-0000-0000-0000-000061f5e471"
  7810. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  7811. )
  7812. (path "/00000000-0000-0000-0000-000061f5f724"
  7813. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7814. )
  7815. (path "/00000000-0000-0000-0000-000061fefd56"
  7816. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  7817. )
  7818. (path "/00000000-0000-0000-0000-000061ff8431"
  7819. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  7820. )
  7821. (path "/00000000-0000-0000-0000-00006204bf3e"
  7822. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  7823. )
  7824. (path "/00000000-0000-0000-0000-00006205ee7e"
  7825. (reference "#PWR0106") (unit 1) (value "+3.3V") (footprint "")
  7826. )
  7827. (path "/00000000-0000-0000-0000-000062092c18"
  7828. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  7829. )
  7830. (path "/00000000-0000-0000-0000-000062096fa5"
  7831. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  7832. )
  7833. (path "/00000000-0000-0000-0000-0000620a6032"
  7834. (reference "#PWR0109") (unit 1) (value "+3.3V") (footprint "")
  7835. )
  7836. (path "/00000000-0000-0000-0000-0000620d59fa"
  7837. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  7838. )
  7839. (path "/00000000-0000-0000-0000-00006210086e"
  7840. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  7841. )
  7842. (path "/00000000-0000-0000-0000-000062105589"
  7843. (reference "#PWR0112") (unit 1) (value "+3.3V") (footprint "")
  7844. )
  7845. (path "/00000000-0000-0000-0000-0000621184b4"
  7846. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  7847. )
  7848. (path "/00000000-0000-0000-0000-000062153ea9"
  7849. (reference "#PWR0114") (unit 1) (value "+3.3V") (footprint "")
  7850. )
  7851. (path "/00000000-0000-0000-0000-000062154495"
  7852. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  7853. )
  7854. (path "/00000000-0000-0000-0000-0000620606f7"
  7855. (reference "#PWR0116") (unit 1) (value "+3.3V") (footprint "")
  7856. )
  7857. (path "/00000000-0000-0000-0000-0000620d3feb"
  7858. (reference "#PWR0117") (unit 1) (value "GNDA") (footprint "")
  7859. )
  7860. (path "/00000000-0000-0000-0000-000062110345"
  7861. (reference "#PWR0118") (unit 1) (value "GNDA") (footprint "")
  7862. )
  7863. (path "/00000000-0000-0000-0000-00006211ae93"
  7864. (reference "#PWR0119") (unit 1) (value "GNDA") (footprint "")
  7865. )
  7866. (path "/00000000-0000-0000-0000-000062131aaa"
  7867. (reference "#PWR0120") (unit 1) (value "GNDA") (footprint "")
  7868. )
  7869. (path "/00000000-0000-0000-0000-00006213fbbb"
  7870. (reference "#PWR0121") (unit 1) (value "GNDA") (footprint "")
  7871. )
  7872. (path "/00000000-0000-0000-0000-0000621b25e8"
  7873. (reference "#PWR0122") (unit 1) (value "GNDA") (footprint "")
  7874. )
  7875. (path "/00000000-0000-0000-0000-0000621d4025"
  7876. (reference "#PWR0123") (unit 1) (value "GNDA") (footprint "")
  7877. )
  7878. (path "/00000000-0000-0000-0000-0000621d490e"
  7879. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  7880. )
  7881. (path "/00000000-0000-0000-0000-0000621f9c4b"
  7882. (reference "#PWR0125") (unit 1) (value "GNDA") (footprint "")
  7883. )
  7884. (path "/00000000-0000-0000-0000-0000623d2efc"
  7885. (reference "#PWR0126") (unit 1) (value "+3.3V") (footprint "")
  7886. )
  7887. (path "/00000000-0000-0000-0000-0000623d364a"
  7888. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  7889. )
  7890. (path "/00000000-0000-0000-0000-0000623f1786"
  7891. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  7892. )
  7893. (path "/00000000-0000-0000-0000-0000623f1d8e"
  7894. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  7895. )
  7896. (path "/00000000-0000-0000-0000-00006245e5c2"
  7897. (reference "#PWR0130") (unit 1) (value "+3.3V") (footprint "")
  7898. )
  7899. (path "/00000000-0000-0000-0000-00006245ef1e"
  7900. (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
  7901. )
  7902. (path "/00000000-0000-0000-0000-0000626b6cf1"
  7903. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  7904. )
  7905. (path "/00000000-0000-0000-0000-000062078a82"
  7906. (reference "#PWR0133") (unit 1) (value "+5V") (footprint "")
  7907. )
  7908. (path "/00000000-0000-0000-0000-000062078a89"
  7909. (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
  7910. )
  7911. (path "/00000000-0000-0000-0000-000062182795"
  7912. (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
  7913. )
  7914. (path "/00000000-0000-0000-0000-000062644c87"
  7915. (reference "#PWR0136") (unit 1) (value "+5V") (footprint "")
  7916. )
  7917. (path "/00000000-0000-0000-0000-000062663a0f"
  7918. (reference "#PWR0137") (unit 1) (value "+5V") (footprint "")
  7919. )
  7920. (path "/00000000-0000-0000-0000-00006269a626"
  7921. (reference "#PWR0138") (unit 1) (value "+5V") (footprint "")
  7922. )
  7923. (path "/00000000-0000-0000-0000-000062719d79"
  7924. (reference "#PWR0139") (unit 1) (value "+3.3V") (footprint "")
  7925. )
  7926. (path "/00000000-0000-0000-0000-00006271a63e"
  7927. (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
  7928. )
  7929. (path "/00000000-0000-0000-0000-000062826cad"
  7930. (reference "#PWR0141") (unit 1) (value "+3.3V") (footprint "")
  7931. )
  7932. (path "/00000000-0000-0000-0000-00006213300a"
  7933. (reference "#PWR0142") (unit 1) (value "+3.3V") (footprint "")
  7934. )
  7935. (path "/00000000-0000-0000-0000-000061f52a71"
  7936. (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7937. )
  7938. (path "/00000000-0000-0000-0000-000061f573a1"
  7939. (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7940. )
  7941. (path "/00000000-0000-0000-0000-000061f57785"
  7942. (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7943. )
  7944. (path "/00000000-0000-0000-0000-000061f58363"
  7945. (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7946. )
  7947. (path "/00000000-0000-0000-0000-000061f5903d"
  7948. (reference "C5") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7949. )
  7950. (path "/00000000-0000-0000-0000-000061f59cab"
  7951. (reference "C6") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7952. )
  7953. (path "/00000000-0000-0000-0000-000061f5a94f"
  7954. (reference "C7") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7955. )
  7956. (path "/00000000-0000-0000-0000-000061f5bfc9"
  7957. (reference "C8") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7958. )
  7959. (path "/00000000-0000-0000-0000-0000620545dc"
  7960. (reference "C9") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7961. )
  7962. (path "/00000000-0000-0000-0000-0000620581b5"
  7963. (reference "C10") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7964. )
  7965. (path "/00000000-0000-0000-0000-0000621156c4"
  7966. (reference "C11") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7967. )
  7968. (path "/00000000-0000-0000-0000-000062138f96"
  7969. (reference "C12") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7970. )
  7971. (path "/00000000-0000-0000-0000-00006208a205"
  7972. (reference "C13") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7973. )
  7974. (path "/00000000-0000-0000-0000-000062086349"
  7975. (reference "C14") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7976. )
  7977. (path "/00000000-0000-0000-0000-000062084712"
  7978. (reference "C15") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7979. )
  7980. (path "/00000000-0000-0000-0000-000062060ff5"
  7981. (reference "C16") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7982. )
  7983. (path "/00000000-0000-0000-0000-000062091f81"
  7984. (reference "C17") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7985. )
  7986. (path "/00000000-0000-0000-0000-0000620191b6"
  7987. (reference "C18") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7988. )
  7989. (path "/00000000-0000-0000-0000-0000620172ce"
  7990. (reference "C19") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7991. )
  7992. (path "/00000000-0000-0000-0000-000062066b6d"
  7993. (reference "C20") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7994. )
  7995. (path "/00000000-0000-0000-0000-00006209158d"
  7996. (reference "C21") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7997. )
  7998. (path "/00000000-0000-0000-0000-00006209787a"
  7999. (reference "C22") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8000. )
  8001. (path "/00000000-0000-0000-0000-00006213ff11"
  8002. (reference "C23") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8003. )
  8004. (path "/00000000-0000-0000-0000-0000623909d3"
  8005. (reference "C24") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8006. )
  8007. (path "/00000000-0000-0000-0000-000062390737"
  8008. (reference "C25") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8009. )
  8010. (path "/00000000-0000-0000-0000-00006246f069"
  8011. (reference "C26") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8012. )
  8013. (path "/00000000-0000-0000-0000-00006271863d"
  8014. (reference "C27") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8015. )
  8016. (path "/00000000-0000-0000-0000-00006211bef1"
  8017. (reference "C28") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8018. )
  8019. (path "/00000000-0000-0000-0000-000062078a75"
  8020. (reference "C29") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8021. )
  8022. (path "/00000000-0000-0000-0000-000061f5027f"
  8023. (reference "D1") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8024. )
  8025. (path "/00000000-0000-0000-0000-000061f5739b"
  8026. (reference "D2") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8027. )
  8028. (path "/00000000-0000-0000-0000-000061f5777f"
  8029. (reference "D3") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8030. )
  8031. (path "/00000000-0000-0000-0000-000061f5835d"
  8032. (reference "D4") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8033. )
  8034. (path "/00000000-0000-0000-0000-000061f59037"
  8035. (reference "D5") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8036. )
  8037. (path "/00000000-0000-0000-0000-000061f59ca5"
  8038. (reference "D6") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8039. )
  8040. (path "/00000000-0000-0000-0000-000061f5a949"
  8041. (reference "D7") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8042. )
  8043. (path "/00000000-0000-0000-0000-000061f5bfc3"
  8044. (reference "D8") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8045. )
  8046. (path "/00000000-0000-0000-0000-000061f74a74"
  8047. (reference "H1") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8048. )
  8049. (path "/00000000-0000-0000-0000-000061f75e86"
  8050. (reference "H2") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8051. )
  8052. (path "/00000000-0000-0000-0000-000061f76bf7"
  8053. (reference "H3") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8054. )
  8055. (path "/00000000-0000-0000-0000-000061f779d1"
  8056. (reference "H4") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8057. )
  8058. (path "/00000000-0000-0000-0000-000061f788c4"
  8059. (reference "H5") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8060. )
  8061. (path "/00000000-0000-0000-0000-000061f79385"
  8062. (reference "H6") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8063. )
  8064. (path "/00000000-0000-0000-0000-000061f79f4a"
  8065. (reference "H7") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8066. )
  8067. (path "/00000000-0000-0000-0000-0000623284d1"
  8068. (reference "H8") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8069. )
  8070. (path "/00000000-0000-0000-0000-0000623284d9"
  8071. (reference "H9") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8072. )
  8073. (path "/00000000-0000-0000-0000-000061f6e8c0"
  8074. (reference "J1") (unit 1) (value "BLDC") (footprint "Molex:532610371")
  8075. )
  8076. (path "/00000000-0000-0000-0000-000061fcaa5b"
  8077. (reference "J2") (unit 1) (value "USB_C_Receptacle_USB2.0") (footprint "GCT_USB:USB4510_NoPaste")
  8078. )
  8079. (path "/00000000-0000-0000-0000-0000622dfef9"
  8080. (reference "J3") (unit 1) (value "LCD") (footprint "SolderPads:SolderPads_2mm_8")
  8081. )
  8082. (path "/00000000-0000-0000-0000-000062748b8a"
  8083. (reference "J4") (unit 1) (value "A") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8084. )
  8085. (path "/00000000-0000-0000-0000-00006274a9bb"
  8086. (reference "J5") (unit 1) (value "B") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8087. )
  8088. (path "/00000000-0000-0000-0000-00006200e5de"
  8089. (reference "L1") (unit 1) (value "3.3uH") (footprint "Inductor_SMD:L_0805_2012Metric")
  8090. )
  8091. (path "/6c2ba31f-e69e-499b-a871-fef898c318d8"
  8092. (reference "NT1") (unit 1) (value "NetTie_2") (footprint "NetTie:NetTie-2_SMD_Pad0.5mm")
  8093. )
  8094. (path "/00000000-0000-0000-0000-000061fe5517"
  8095. (reference "Q1") (unit 1) (value "MMBT4403") (footprint "Package_TO_SOT_SMD:SOT-23")
  8096. )
  8097. (path "/00000000-0000-0000-0000-0000622e5052"
  8098. (reference "Q2") (unit 1) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8099. )
  8100. (path "/00000000-0000-0000-0000-0000622e5b70"
  8101. (reference "Q2") (unit 2) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8102. )
  8103. (path "/00000000-0000-0000-0000-000061ff5247"
  8104. (reference "R1") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8105. )
  8106. (path "/00000000-0000-0000-0000-000061ff59bf"
  8107. (reference "R2") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8108. )
  8109. (path "/00000000-0000-0000-0000-000061ff8747"
  8110. (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8111. )
  8112. (path "/00000000-0000-0000-0000-000061fff7fc"
  8113. (reference "R4") (unit 1) (value "8.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8114. )
  8115. (path "/00000000-0000-0000-0000-00006217ebc1"
  8116. (reference "R5") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8117. )
  8118. (path "/00000000-0000-0000-0000-00006217f6bc"
  8119. (reference "R6") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8120. )
  8121. (path "/00000000-0000-0000-0000-00006217c4cc"
  8122. (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8123. )
  8124. (path "/00000000-0000-0000-0000-000062180f46"
  8125. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8126. )
  8127. (path "/00000000-0000-0000-0000-0000621810c8"
  8128. (reference "R9") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8129. )
  8130. (path "/00000000-0000-0000-0000-000062181360"
  8131. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8132. )
  8133. (path "/00000000-0000-0000-0000-0000621814c1"
  8134. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8135. )
  8136. (path "/00000000-0000-0000-0000-00006218171e"
  8137. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8138. )
  8139. (path "/00000000-0000-0000-0000-0000627e020e"
  8140. (reference "R13") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8141. )
  8142. (path "/00000000-0000-0000-0000-0000627eadb9"
  8143. (reference "R14") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8144. )
  8145. (path "/00000000-0000-0000-0000-000062132ffe"
  8146. (reference "R15") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8147. )
  8148. (path "/00000000-0000-0000-0000-000062133004"
  8149. (reference "R16") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8150. )
  8151. (path "/00000000-0000-0000-0000-0000621b8442"
  8152. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8153. )
  8154. (path "/21f39b11-fd0d-4374-b88f-aad2b2976b0d"
  8155. (reference "R18") (unit 1) (value "1k") (footprint "Resistor_SMD:R_2512_6332Metric")
  8156. )
  8157. (path "/19e4a8db-1c6b-449b-bfa7-4a57df85774c"
  8158. (reference "R19") (unit 1) (value "1k") (footprint "Resistor_SMD:R_2512_6332Metric")
  8159. )
  8160. (path "/8e58fdb3-e315-4d1e-8dc3-7c4cc8db60ad"
  8161. (reference "R20") (unit 1) (value "1k") (footprint "Resistor_SMD:R_2512_6332Metric")
  8162. )
  8163. (path "/99c77e7a-bdd8-49ec-8ed1-b44caa8ff974"
  8164. (reference "R21") (unit 1) (value "1k") (footprint "Resistor_SMD:R_2512_6332Metric")
  8165. )
  8166. (path "/00000000-0000-0000-0000-0000620734a8"
  8167. (reference "TP1") (unit 1) (value "5V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8168. )
  8169. (path "/00000000-0000-0000-0000-0000620939bb"
  8170. (reference "TP2") (unit 1) (value "3.3v") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8171. )
  8172. (path "/00000000-0000-0000-0000-0000620f043a"
  8173. (reference "TP3") (unit 1) (value "GND") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8174. )
  8175. (path "/00000000-0000-0000-0000-0000622f4012"
  8176. (reference "TP4") (unit 1) (value "SDA") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8177. )
  8178. (path "/00000000-0000-0000-0000-0000623162cf"
  8179. (reference "TP5") (unit 1) (value "SCL") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8180. )
  8181. (path "/00000000-0000-0000-0000-000062263aa7"
  8182. (reference "TP6") (unit 1) (value "U") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8183. )
  8184. (path "/00000000-0000-0000-0000-0000622a8e6d"
  8185. (reference "TP7") (unit 1) (value "V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8186. )
  8187. (path "/00000000-0000-0000-0000-0000622cad46"
  8188. (reference "TP8") (unit 1) (value "W") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8189. )
  8190. (path "/00000000-0000-0000-0000-000062179005"
  8191. (reference "TP9") (unit 1) (value "CSN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8192. )
  8193. (path "/00000000-0000-0000-0000-0000621b8956"
  8194. (reference "TP10") (unit 1) (value "CLK") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8195. )
  8196. (path "/00000000-0000-0000-0000-0000621d8fb7"
  8197. (reference "TP11") (unit 1) (value "DO") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8198. )
  8199. (path "/00000000-0000-0000-0000-00006213725a"
  8200. (reference "TP12") (unit 1) (value "LED") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8201. )
  8202. (path "/00000000-0000-0000-0000-0000621b8454"
  8203. (reference "TP13") (unit 1) (value "EN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8204. )
  8205. (path "/00000000-0000-0000-0000-000062317868"
  8206. (reference "TP14") (unit 1) (value "BOOT") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8207. )
  8208. (path "/00000000-0000-0000-0000-000062379e81"
  8209. (reference "TP15") (unit 1) (value "TX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8210. )
  8211. (path "/00000000-0000-0000-0000-0000623a126c"
  8212. (reference "TP16") (unit 1) (value "RX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8213. )
  8214. (path "/00000000-0000-0000-0000-000061f4f0c2"
  8215. (reference "U1") (unit 1) (value "MT6701-CT") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8216. )
  8217. (path "/00000000-0000-0000-0000-00006200e46e"
  8218. (reference "U2") (unit 1) (value "T-Micro32_Plus") (footprint "lilygo_micro32:T-Micro32")
  8219. )
  8220. (path "/00000000-0000-0000-0000-0000620180e0"
  8221. (reference "U3") (unit 1) (value "CH340C") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8222. )
  8223. (path "/00000000-0000-0000-0000-00006201f11d"
  8224. (reference "U4") (unit 1) (value "HX711") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8225. )
  8226. (path "/00000000-0000-0000-0000-0000620241db"
  8227. (reference "U5") (unit 1) (value "TMC6300") (footprint "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles")
  8228. )
  8229. (path "/00000000-0000-0000-0000-00006203d4f8"
  8230. (reference "U6") (unit 1) (value "AP2114HA-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8231. )
  8232. (path "/00000000-0000-0000-0000-0000620700a0"
  8233. (reference "U7") (unit 1) (value "SN74LV1T34DBV") (footprint "Package_TO_SOT_SMD:SOT-23-5")
  8234. )
  8235. (path "/00000000-0000-0000-0000-00006271597a"
  8236. (reference "U8") (unit 1) (value "VEML7700") (footprint "VEML7700:VEML7700-TOP")
  8237. )
  8238. (path "/00000000-0000-0000-0000-000062038103"
  8239. (reference "Z5") (unit 1) (value "dummy_keepouts") (footprint "view_custom:ViewKeepouts3d")
  8240. )
  8241. (path "/00000000-0000-0000-0000-000062311cef"
  8242. (reference "Z6") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8243. )
  8244. (path "/00000000-0000-0000-0000-000062314e0d"
  8245. (reference "Z7") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8246. )
  8247. (path "/00000000-0000-0000-0000-00006233c06f"
  8248. (reference "Z8") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8249. )
  8250. (path "/00000000-0000-0000-0000-0000623f109c"
  8251. (reference "Z9") (unit 1) (value "WatchGlass39.5mm") (footprint "BOM_Only:bom_only_no_pin")
  8252. )
  8253. (path "/00000000-0000-0000-0000-00006246aa1a"
  8254. (reference "Z10") (unit 1) (value "BLDCMotor") (footprint "BOM_Only:bom_only_no_pin")
  8255. )
  8256. )
  8257. )