view_base.kicad_sch 337 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649
  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 "Regulator_Linear:TS1117BCW33_RPG" (in_bom yes) (on_board yes)
  1065. (property "Reference" "U" (id 0) (at 0 8.89 0)
  1066. (effects (font (size 1.27 1.27)))
  1067. )
  1068. (property "Value" "TS1117BCW33_RPG" (id 1) (at 0 6.35 0)
  1069. (effects (font (size 1.27 1.27)))
  1070. )
  1071. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 11.43 0)
  1072. (effects (font (size 1.27 1.27)) hide)
  1073. )
  1074. (property "Datasheet" "https://www.mouser.com/datasheet/2/395/TS1117B_H1607-1918589.pdf" (id 3) (at -1.27 13.97 0)
  1075. (effects (font (size 1.27 1.27)) hide)
  1076. )
  1077. (property "ki_description" "1A Low Dropout Positive Voltage Regulator" (id 4) (at 0 0 0)
  1078. (effects (font (size 1.27 1.27)) hide)
  1079. )
  1080. (symbol "TS1117BCW33_RPG_0_1"
  1081. (rectangle (start -5.08 3.81) (end 5.08 -3.81)
  1082. (stroke (width 0.25) (type default) (color 0 0 0 0))
  1083. (fill (type background))
  1084. )
  1085. )
  1086. (symbol "TS1117BCW33_RPG_1_1"
  1087. (pin power_in line (at 0 -6.35 90) (length 2.54)
  1088. (name "GND" (effects (font (size 0.75 0.75))))
  1089. (number "1" (effects (font (size 1.27 1.27))))
  1090. )
  1091. (pin passive line (at 7.62 0 180) (length 2.54)
  1092. (name "Output" (effects (font (size 0.75 0.75))))
  1093. (number "2" (effects (font (size 1.27 1.27))))
  1094. )
  1095. (pin power_in line (at -7.62 0 0) (length 2.54)
  1096. (name "Input" (effects (font (size 0.75 0.75))))
  1097. (number "3" (effects (font (size 1.27 1.27))))
  1098. )
  1099. )
  1100. )
  1101. (symbol "SK6812:SK6812SIDE-A" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1102. (property "Reference" "D" (id 0) (at 5.08 5.715 0)
  1103. (effects (font (size 1.27 1.27)) (justify right bottom))
  1104. )
  1105. (property "Value" "SK6812SIDE-A" (id 1) (at 1.27 -5.715 0)
  1106. (effects (font (size 1.27 1.27)) (justify left top))
  1107. )
  1108. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 1.27 -7.62 0)
  1109. (effects (font (size 1.27 1.27)) (justify left top) hide)
  1110. )
  1111. (property "Datasheet" "" (id 3) (at 2.54 -9.525 0)
  1112. (effects (font (size 1.27 1.27)) (justify left top) hide)
  1113. )
  1114. (property "ki_description" "RGB LED with integrated controller" (id 4) (at 0 0 0)
  1115. (effects (font (size 1.27 1.27)) hide)
  1116. )
  1117. (property "ki_fp_filters" "LED*WS2812*PLCC*5.0x5.0mm*P3.2mm*" (id 5) (at 0 0 0)
  1118. (effects (font (size 1.27 1.27)) hide)
  1119. )
  1120. (symbol "SK6812SIDE-A_0_0"
  1121. (text "RGB" (at 2.286 -4.191 0)
  1122. (effects (font (size 0.762 0.762)))
  1123. )
  1124. )
  1125. (symbol "SK6812SIDE-A_0_1"
  1126. (polyline
  1127. (pts
  1128. (xy 1.27 -3.556)
  1129. (xy 1.778 -3.556)
  1130. )
  1131. (stroke (width 0) (type default) (color 0 0 0 0))
  1132. (fill (type none))
  1133. )
  1134. (polyline
  1135. (pts
  1136. (xy 1.27 -2.54)
  1137. (xy 1.778 -2.54)
  1138. )
  1139. (stroke (width 0) (type default) (color 0 0 0 0))
  1140. (fill (type none))
  1141. )
  1142. (polyline
  1143. (pts
  1144. (xy 4.699 -3.556)
  1145. (xy 2.667 -3.556)
  1146. )
  1147. (stroke (width 0) (type default) (color 0 0 0 0))
  1148. (fill (type none))
  1149. )
  1150. (polyline
  1151. (pts
  1152. (xy 2.286 -2.54)
  1153. (xy 1.27 -3.556)
  1154. (xy 1.27 -3.048)
  1155. )
  1156. (stroke (width 0) (type default) (color 0 0 0 0))
  1157. (fill (type none))
  1158. )
  1159. (polyline
  1160. (pts
  1161. (xy 2.286 -1.524)
  1162. (xy 1.27 -2.54)
  1163. (xy 1.27 -2.032)
  1164. )
  1165. (stroke (width 0) (type default) (color 0 0 0 0))
  1166. (fill (type none))
  1167. )
  1168. (polyline
  1169. (pts
  1170. (xy 3.683 -1.016)
  1171. (xy 3.683 -3.556)
  1172. (xy 3.683 -4.064)
  1173. )
  1174. (stroke (width 0) (type default) (color 0 0 0 0))
  1175. (fill (type none))
  1176. )
  1177. (polyline
  1178. (pts
  1179. (xy 4.699 -1.524)
  1180. (xy 2.667 -1.524)
  1181. (xy 3.683 -3.556)
  1182. (xy 4.699 -1.524)
  1183. )
  1184. (stroke (width 0) (type default) (color 0 0 0 0))
  1185. (fill (type none))
  1186. )
  1187. (rectangle (start 5.08 5.08) (end -5.08 -5.08)
  1188. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1189. (fill (type background))
  1190. )
  1191. )
  1192. (symbol "SK6812SIDE-A_1_1"
  1193. (pin input line (at -7.62 0 0) (length 2.54)
  1194. (name "DIN" (effects (font (size 1.27 1.27))))
  1195. (number "1" (effects (font (size 1.27 1.27))))
  1196. )
  1197. (pin power_in line (at 0 7.62 270) (length 2.54)
  1198. (name "VDD" (effects (font (size 1.27 1.27))))
  1199. (number "2" (effects (font (size 1.27 1.27))))
  1200. )
  1201. (pin output line (at 7.62 0 180) (length 2.54)
  1202. (name "DOUT" (effects (font (size 1.27 1.27))))
  1203. (number "3" (effects (font (size 1.27 1.27))))
  1204. )
  1205. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1206. (name "VSS" (effects (font (size 1.27 1.27))))
  1207. (number "4" (effects (font (size 1.27 1.27))))
  1208. )
  1209. )
  1210. )
  1211. (symbol "Transistor_BJT:UMH3N" (pin_names hide) (in_bom yes) (on_board yes)
  1212. (property "Reference" "Q" (id 0) (at 7.62 1.27 0)
  1213. (effects (font (size 1.27 1.27)) (justify left))
  1214. )
  1215. (property "Value" "UMH3N" (id 1) (at 7.62 -1.27 0)
  1216. (effects (font (size 1.27 1.27)) (justify left))
  1217. )
  1218. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 0.127 -11.176 0)
  1219. (effects (font (size 1.27 1.27)) hide)
  1220. )
  1221. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 3.81 0 0)
  1222. (effects (font (size 1.27 1.27)) hide)
  1223. )
  1224. (property "ki_keywords" "Dual NPN Transistor" (id 4) (at 0 0 0)
  1225. (effects (font (size 1.27 1.27)) hide)
  1226. )
  1227. (property "ki_description" "0.1A Ic, 50V Vce, Dual NPN Input Resistor Transistors, SOT-363" (id 5) (at 0 0 0)
  1228. (effects (font (size 1.27 1.27)) hide)
  1229. )
  1230. (property "ki_fp_filters" "SOT?363*" (id 6) (at 0 0 0)
  1231. (effects (font (size 1.27 1.27)) hide)
  1232. )
  1233. (symbol "UMH3N_0_1"
  1234. (polyline
  1235. (pts
  1236. (xy 3.175 0)
  1237. (xy 0.254 0)
  1238. )
  1239. (stroke (width 0) (type default) (color 0 0 0 0))
  1240. (fill (type none))
  1241. )
  1242. (polyline
  1243. (pts
  1244. (xy 3.175 0.635)
  1245. (xy 5.08 2.54)
  1246. )
  1247. (stroke (width 0) (type default) (color 0 0 0 0))
  1248. (fill (type none))
  1249. )
  1250. (polyline
  1251. (pts
  1252. (xy 3.175 1.524)
  1253. (xy 3.175 -1.524)
  1254. )
  1255. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1256. (fill (type none))
  1257. )
  1258. (polyline
  1259. (pts
  1260. (xy 3.175 -0.635)
  1261. (xy 5.08 -2.54)
  1262. (xy 5.08 -2.54)
  1263. )
  1264. (stroke (width 0) (type default) (color 0 0 0 0))
  1265. (fill (type none))
  1266. )
  1267. (polyline
  1268. (pts
  1269. (xy 3.81 -1.778)
  1270. (xy 4.318 -1.27)
  1271. (xy 4.826 -2.286)
  1272. (xy 3.81 -1.778)
  1273. (xy 3.81 -1.778)
  1274. )
  1275. (stroke (width 0) (type default) (color 0 0 0 0))
  1276. (fill (type outline))
  1277. )
  1278. (rectangle (start 0.254 0.508) (end -2.54 -0.508)
  1279. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1280. (fill (type none))
  1281. )
  1282. (circle (center 3.81 0) (radius 2.8194)
  1283. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1284. (fill (type none))
  1285. )
  1286. )
  1287. (symbol "UMH3N_1_1"
  1288. (pin passive line (at 5.08 -5.08 90) (length 2.54)
  1289. (name "E1" (effects (font (size 1.27 1.27))))
  1290. (number "1" (effects (font (size 1.27 1.27))))
  1291. )
  1292. (pin input line (at -5.08 0 0) (length 2.54)
  1293. (name "B1" (effects (font (size 1.27 1.27))))
  1294. (number "2" (effects (font (size 1.27 1.27))))
  1295. )
  1296. (pin passive line (at 5.08 5.08 270) (length 2.54)
  1297. (name "C1" (effects (font (size 1.27 1.27))))
  1298. (number "6" (effects (font (size 1.27 1.27))))
  1299. )
  1300. )
  1301. (symbol "UMH3N_2_1"
  1302. (pin passive line (at 5.08 5.08 270) (length 2.54)
  1303. (name "C2" (effects (font (size 1.27 1.27))))
  1304. (number "3" (effects (font (size 1.27 1.27))))
  1305. )
  1306. (pin passive line (at 5.08 -5.08 90) (length 2.54)
  1307. (name "E2" (effects (font (size 1.27 1.27))))
  1308. (number "4" (effects (font (size 1.27 1.27))))
  1309. )
  1310. (pin input line (at -5.08 0 0) (length 2.54)
  1311. (name "B2" (effects (font (size 1.27 1.27))))
  1312. (number "5" (effects (font (size 1.27 1.27))))
  1313. )
  1314. )
  1315. )
  1316. (symbol "Trinamic:TMC6300" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1317. (property "Reference" "U" (id 0) (at 0 2.54 0)
  1318. (effects (font (size 1.27 1.27)))
  1319. )
  1320. (property "Value" "TMC6300" (id 1) (at 0 0 0)
  1321. (effects (font (size 1.27 1.27)))
  1322. )
  1323. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 0 0 0)
  1324. (effects (font (size 1.27 1.27)) hide)
  1325. )
  1326. (property "Datasheet" "" (id 3) (at 0 0 0)
  1327. (effects (font (size 1.27 1.27)) hide)
  1328. )
  1329. (symbol "TMC6300_0_1"
  1330. (rectangle (start -10.16 22.86) (end 10.16 -22.86)
  1331. (stroke (width 0) (type default) (color 0 0 0 0))
  1332. (fill (type background))
  1333. )
  1334. )
  1335. (symbol "TMC6300_1_1"
  1336. (pin output line (at 12.7 15.24 180) (length 2.54)
  1337. (name "W" (effects (font (size 1.27 1.27))))
  1338. (number "1" (effects (font (size 1.27 1.27))))
  1339. )
  1340. (pin input line (at -12.7 5.08 0) (length 2.54)
  1341. (name "VL" (effects (font (size 1.27 1.27))))
  1342. (number "10" (effects (font (size 1.27 1.27))))
  1343. )
  1344. (pin power_in line (at -12.7 -7.62 0) (length 2.54)
  1345. (name "VIO/~{STDBY}" (effects (font (size 1.27 1.27))))
  1346. (number "11" (effects (font (size 1.27 1.27))))
  1347. )
  1348. (pin output line (at -12.7 -5.08 0) (length 2.54)
  1349. (name "DIAG" (effects (font (size 1.27 1.27))))
  1350. (number "12" (effects (font (size 1.27 1.27))))
  1351. )
  1352. (pin power_out line (at 12.7 -20.32 180) (length 2.54)
  1353. (name "1V8OUT" (effects (font (size 1.27 1.27))))
  1354. (number "13" (effects (font (size 1.27 1.27))))
  1355. )
  1356. (pin power_in line (at -12.7 -17.78 0) (length 2.54)
  1357. (name "GND" (effects (font (size 1.27 1.27))))
  1358. (number "14" (effects (font (size 1.27 1.27))))
  1359. )
  1360. (pin output line (at 12.7 20.32 180) (length 2.54)
  1361. (name "U" (effects (font (size 1.27 1.27))))
  1362. (number "15" (effects (font (size 1.27 1.27))))
  1363. )
  1364. (pin passive line (at 12.7 10.16 180) (length 2.54)
  1365. (name "BRUV" (effects (font (size 1.27 1.27))))
  1366. (number "16" (effects (font (size 1.27 1.27))))
  1367. )
  1368. (pin output line (at 12.7 17.78 180) (length 2.54)
  1369. (name "V" (effects (font (size 1.27 1.27))))
  1370. (number "17" (effects (font (size 1.27 1.27))))
  1371. )
  1372. (pin power_in line (at -12.7 20.32 0) (length 2.54)
  1373. (name "VS" (effects (font (size 1.27 1.27))))
  1374. (number "18" (effects (font (size 1.27 1.27))))
  1375. )
  1376. (pin no_connect line (at 12.7 -17.78 180) (length 2.54) hide
  1377. (name "NC" (effects (font (size 1.27 1.27))))
  1378. (number "19" (effects (font (size 1.27 1.27))))
  1379. )
  1380. (pin bidirectional line (at -12.7 17.78 0) (length 2.54)
  1381. (name "VCP" (effects (font (size 1.27 1.27))))
  1382. (number "2" (effects (font (size 1.27 1.27))))
  1383. )
  1384. (pin passive line (at 12.7 7.62 180) (length 2.54)
  1385. (name "BRW" (effects (font (size 1.27 1.27))))
  1386. (number "20" (effects (font (size 1.27 1.27))))
  1387. )
  1388. (pin input line (at -12.7 12.7 0) (length 2.54)
  1389. (name "UH" (effects (font (size 1.27 1.27))))
  1390. (number "3" (effects (font (size 1.27 1.27))))
  1391. )
  1392. (pin input line (at -12.7 7.62 0) (length 2.54)
  1393. (name "VH" (effects (font (size 1.27 1.27))))
  1394. (number "4" (effects (font (size 1.27 1.27))))
  1395. )
  1396. (pin input line (at -12.7 2.54 0) (length 2.54)
  1397. (name "WH" (effects (font (size 1.27 1.27))))
  1398. (number "5" (effects (font (size 1.27 1.27))))
  1399. )
  1400. (pin input line (at -12.7 10.16 0) (length 2.54)
  1401. (name "UL" (effects (font (size 1.27 1.27))))
  1402. (number "6" (effects (font (size 1.27 1.27))))
  1403. )
  1404. (pin input line (at -12.7 0 0) (length 2.54)
  1405. (name "WL" (effects (font (size 1.27 1.27))))
  1406. (number "7" (effects (font (size 1.27 1.27))))
  1407. )
  1408. (pin power_in line (at -12.7 -12.7 0) (length 2.54)
  1409. (name "GND" (effects (font (size 1.27 1.27))))
  1410. (number "8" (effects (font (size 1.27 1.27))))
  1411. )
  1412. (pin power_in line (at -12.7 -15.24 0) (length 2.54)
  1413. (name "GND" (effects (font (size 1.27 1.27))))
  1414. (number "9" (effects (font (size 1.27 1.27))))
  1415. )
  1416. (pin power_in line (at -12.7 -20.32 0) (length 2.54)
  1417. (name "PAD" (effects (font (size 1.27 1.27))))
  1418. (number "PAD" (effects (font (size 1.27 1.27))))
  1419. )
  1420. )
  1421. )
  1422. (symbol "VEML7700:VEML7700" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1423. (property "Reference" "U" (id 0) (at -6.35 11.43 0)
  1424. (effects (font (size 1.27 1.27)))
  1425. )
  1426. (property "Value" "VEML7700" (id 1) (at 0 0 0)
  1427. (effects (font (size 1.27 1.27)))
  1428. )
  1429. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 0 0 0)
  1430. (effects (font (size 1.27 1.27)) hide)
  1431. )
  1432. (property "Datasheet" "" (id 3) (at 0 0 0)
  1433. (effects (font (size 1.27 1.27)) hide)
  1434. )
  1435. (symbol "VEML7700_0_1"
  1436. (rectangle (start 6.35 -11.43) (end -6.35 10.16)
  1437. (stroke (width 0) (type default) (color 0 0 0 0))
  1438. (fill (type background))
  1439. )
  1440. )
  1441. (symbol "VEML7700_1_1"
  1442. (pin open_collector line (at 8.89 -3.81 180) (length 2.54)
  1443. (name "SCL" (effects (font (size 1.27 1.27))))
  1444. (number "1" (effects (font (size 1.27 1.27))))
  1445. )
  1446. (pin power_in line (at 0 12.7 270) (length 2.54)
  1447. (name "VDD" (effects (font (size 1.27 1.27))))
  1448. (number "2" (effects (font (size 1.27 1.27))))
  1449. )
  1450. (pin power_in line (at 0 -13.97 90) (length 2.54)
  1451. (name "GND" (effects (font (size 1.27 1.27))))
  1452. (number "3" (effects (font (size 1.27 1.27))))
  1453. )
  1454. (pin open_collector line (at 8.89 3.81 180) (length 2.54)
  1455. (name "SDA" (effects (font (size 1.27 1.27))))
  1456. (number "4" (effects (font (size 1.27 1.27))))
  1457. )
  1458. )
  1459. )
  1460. (symbol "lilygo_micro32:T-Micro32_Plus" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1461. (property "Reference" "U" (id 0) (at -15.24 21.59 0)
  1462. (effects (font (size 1.27 1.27)))
  1463. )
  1464. (property "Value" "T-Micro32_Plus" (id 1) (at 0 17.78 0)
  1465. (effects (font (size 1.27 1.27)))
  1466. )
  1467. (property "Footprint" "" (id 2) (at 0 -2.54 0)
  1468. (effects (font (size 1.27 1.27)) hide)
  1469. )
  1470. (property "Datasheet" "" (id 3) (at 0 -2.54 0)
  1471. (effects (font (size 1.27 1.27)) hide)
  1472. )
  1473. (symbol "T-Micro32_Plus_0_0"
  1474. (text "IO0: def=PU, 1=run, 0=download" (at -8.89 -1.27 0)
  1475. (effects (font (size 0.6604 0.6604)) (justify left))
  1476. )
  1477. (text "IO12: def=PD, must be 0 on boot" (at -8.89 -5.08 0)
  1478. (effects (font (size 0.6604 0.6604)) (justify left))
  1479. )
  1480. (text "IO14: outputs signal on boot" (at -8.89 -6.35 0)
  1481. (effects (font (size 0.6604 0.6604)) (justify left))
  1482. )
  1483. (text "IO15: def=PU, 1=debug log, 0=silent" (at -8.89 -7.62 0)
  1484. (effects (font (size 0.6604 0.6604)) (justify left))
  1485. )
  1486. (text "IO2: def=PD, must be 0 to download" (at -8.89 -2.54 0)
  1487. (effects (font (size 0.6604 0.6604)) (justify left))
  1488. )
  1489. (text "IO5: outputs signal on boot?" (at -8.89 -3.81 0)
  1490. (effects (font (size 0.6604 0.6604)) (justify left))
  1491. )
  1492. (text "outputs signal at boot" (at -6.35 -8.89 0)
  1493. (effects (font (size 0.6604 0.6604)) (justify left))
  1494. )
  1495. )
  1496. (symbol "T-Micro32_Plus_0_1"
  1497. (rectangle (start 16.51 -20.32) (end -16.51 20.32)
  1498. (stroke (width 0) (type default) (color 0 0 0 0))
  1499. (fill (type background))
  1500. )
  1501. )
  1502. (symbol "T-Micro32_Plus_1_1"
  1503. (circle (center -10.414 -15.494) (radius 0.0001)
  1504. (stroke (width 0) (type default) (color 0 0 0 0))
  1505. (fill (type none))
  1506. )
  1507. (circle (center -10.414 -12.954) (radius 0.0001)
  1508. (stroke (width 0) (type default) (color 0 0 0 0))
  1509. (fill (type none))
  1510. )
  1511. (polyline
  1512. (pts
  1513. (xy -10.414 -14.986)
  1514. (xy -10.414 -15.24)
  1515. )
  1516. (stroke (width 0) (type default) (color 0 0 0 0))
  1517. (fill (type none))
  1518. )
  1519. (polyline
  1520. (pts
  1521. (xy -10.414 -12.446)
  1522. (xy -10.414 -12.7)
  1523. )
  1524. (stroke (width 0) (type default) (color 0 0 0 0))
  1525. (fill (type none))
  1526. )
  1527. (polyline
  1528. (pts
  1529. (xy 8.636 -13.716)
  1530. (xy 8.636 -13.97)
  1531. )
  1532. (stroke (width 0) (type default) (color 0 0 0 0))
  1533. (fill (type none))
  1534. )
  1535. (polyline
  1536. (pts
  1537. (xy 11.176 -17.526)
  1538. (xy 11.176 -17.78)
  1539. )
  1540. (stroke (width 0) (type default) (color 0 0 0 0))
  1541. (fill (type none))
  1542. )
  1543. (polyline
  1544. (pts
  1545. (xy 11.176 -14.986)
  1546. (xy 11.176 -15.24)
  1547. )
  1548. (stroke (width 0) (type default) (color 0 0 0 0))
  1549. (fill (type none))
  1550. )
  1551. (polyline
  1552. (pts
  1553. (xy 11.176 -4.826)
  1554. (xy 11.176 -5.08)
  1555. )
  1556. (stroke (width 0) (type default) (color 0 0 0 0))
  1557. (fill (type none))
  1558. )
  1559. (polyline
  1560. (pts
  1561. (xy -10.414 -14.478)
  1562. (xy -11.176 -15.748)
  1563. (xy -9.652 -15.748)
  1564. (xy -10.414 -14.478)
  1565. )
  1566. (stroke (width 0) (type default) (color 0 0 0 0))
  1567. (fill (type none))
  1568. )
  1569. (polyline
  1570. (pts
  1571. (xy -10.414 -11.938)
  1572. (xy -11.176 -13.208)
  1573. (xy -9.652 -13.208)
  1574. (xy -10.414 -11.938)
  1575. )
  1576. (stroke (width 0) (type default) (color 0 0 0 0))
  1577. (fill (type none))
  1578. )
  1579. (polyline
  1580. (pts
  1581. (xy 8.636 -13.208)
  1582. (xy 7.874 -14.478)
  1583. (xy 9.398 -14.478)
  1584. (xy 8.636 -13.208)
  1585. )
  1586. (stroke (width 0) (type default) (color 0 0 0 0))
  1587. (fill (type none))
  1588. )
  1589. (polyline
  1590. (pts
  1591. (xy 11.176 -17.018)
  1592. (xy 10.414 -18.288)
  1593. (xy 11.938 -18.288)
  1594. (xy 11.176 -17.018)
  1595. )
  1596. (stroke (width 0) (type default) (color 0 0 0 0))
  1597. (fill (type none))
  1598. )
  1599. (polyline
  1600. (pts
  1601. (xy 11.176 -14.478)
  1602. (xy 10.414 -15.748)
  1603. (xy 11.938 -15.748)
  1604. (xy 11.176 -14.478)
  1605. )
  1606. (stroke (width 0) (type default) (color 0 0 0 0))
  1607. (fill (type none))
  1608. )
  1609. (polyline
  1610. (pts
  1611. (xy 11.176 -4.318)
  1612. (xy 10.414 -5.588)
  1613. (xy 11.938 -5.588)
  1614. (xy 11.176 -4.318)
  1615. )
  1616. (stroke (width 0) (type default) (color 0 0 0 0))
  1617. (fill (type none))
  1618. )
  1619. (circle (center 8.636 -14.224) (radius 0.0001)
  1620. (stroke (width 0) (type default) (color 0 0 0 0))
  1621. (fill (type none))
  1622. )
  1623. (circle (center 11.176 -18.034) (radius 0.0001)
  1624. (stroke (width 0) (type default) (color 0 0 0 0))
  1625. (fill (type none))
  1626. )
  1627. (circle (center 11.176 -15.494) (radius 0.0001)
  1628. (stroke (width 0) (type default) (color 0 0 0 0))
  1629. (fill (type none))
  1630. )
  1631. (circle (center 11.176 -5.334) (radius 0.0001)
  1632. (stroke (width 0) (type default) (color 0 0 0 0))
  1633. (fill (type none))
  1634. )
  1635. (pin power_in line (at -19.05 17.78 0) (length 2.54)
  1636. (name "GND" (effects (font (size 1.27 1.27))))
  1637. (number "1" (effects (font (size 1.27 1.27))))
  1638. )
  1639. (pin bidirectional line (at -19.05 -5.08 0) (length 2.54)
  1640. (name "IO25" (effects (font (size 1.27 1.27))))
  1641. (number "10" (effects (font (size 1.27 1.27))))
  1642. )
  1643. (pin bidirectional line (at -19.05 -7.62 0) (length 2.54)
  1644. (name "IO26" (effects (font (size 1.27 1.27))))
  1645. (number "11" (effects (font (size 1.27 1.27))))
  1646. )
  1647. (pin bidirectional line (at -19.05 -10.16 0) (length 2.54)
  1648. (name "IO27" (effects (font (size 1.27 1.27))))
  1649. (number "12" (effects (font (size 1.27 1.27))))
  1650. )
  1651. (pin bidirectional line (at -19.05 -12.7 0) (length 2.54)
  1652. (name "IO14" (effects (font (size 1.27 1.27))))
  1653. (number "13" (effects (font (size 1.27 1.27))))
  1654. )
  1655. (pin bidirectional line (at -19.05 -15.24 0) (length 2.54)
  1656. (name "IO12" (effects (font (size 1.27 1.27))))
  1657. (number "14" (effects (font (size 1.27 1.27))))
  1658. )
  1659. (pin power_in line (at -19.05 -17.78 0) (length 2.54)
  1660. (name "GND" (effects (font (size 1.27 1.27))))
  1661. (number "15" (effects (font (size 1.27 1.27))))
  1662. )
  1663. (pin bidirectional line (at -8.89 -22.86 90) (length 2.54)
  1664. (name "IO13" (effects (font (size 1.27 1.27))))
  1665. (number "16" (effects (font (size 1.27 1.27))))
  1666. )
  1667. (pin input line (at -6.35 -22.86 90) (length 2.54)
  1668. (name "IO37" (effects (font (size 1.27 1.27))))
  1669. (number "17" (effects (font (size 1.27 1.27))))
  1670. )
  1671. (pin input line (at -3.81 -22.86 90) (length 2.54)
  1672. (name "IO38" (effects (font (size 1.27 1.27))))
  1673. (number "18" (effects (font (size 1.27 1.27))))
  1674. )
  1675. (pin no_connect line (at -1.27 -22.86 90) (length 2.54)
  1676. (name "NC" (effects (font (size 1.27 1.27))))
  1677. (number "19" (effects (font (size 1.27 1.27))))
  1678. )
  1679. (pin power_in line (at -19.05 15.24 0) (length 2.54)
  1680. (name "3V3" (effects (font (size 1.27 1.27))))
  1681. (number "2" (effects (font (size 1.27 1.27))))
  1682. )
  1683. (pin no_connect line (at 1.27 -22.86 90) (length 2.54)
  1684. (name "NC" (effects (font (size 1.27 1.27))))
  1685. (number "20" (effects (font (size 1.27 1.27))))
  1686. )
  1687. (pin bidirectional line (at 3.81 -22.86 90) (length 2.54)
  1688. (name "IO7" (effects (font (size 1.27 1.27))))
  1689. (number "21" (effects (font (size 1.27 1.27))))
  1690. )
  1691. (pin bidirectional line (at 6.35 -22.86 90) (length 2.54)
  1692. (name "IO8" (effects (font (size 1.27 1.27))))
  1693. (number "22" (effects (font (size 1.27 1.27))))
  1694. )
  1695. (pin bidirectional line (at 8.89 -22.86 90) (length 2.54)
  1696. (name "IO15" (effects (font (size 1.27 1.27))))
  1697. (number "23" (effects (font (size 1.27 1.27))))
  1698. )
  1699. (pin bidirectional line (at 19.05 -17.78 180) (length 2.54)
  1700. (name "IO2" (effects (font (size 1.27 1.27))))
  1701. (number "24" (effects (font (size 1.27 1.27))))
  1702. )
  1703. (pin bidirectional line (at 19.05 -15.24 180) (length 2.54)
  1704. (name "IO0" (effects (font (size 1.27 1.27))))
  1705. (number "25" (effects (font (size 1.27 1.27))))
  1706. )
  1707. (pin bidirectional line (at 19.05 -12.7 180) (length 2.54)
  1708. (name "IO4" (effects (font (size 1.27 1.27))))
  1709. (number "26" (effects (font (size 1.27 1.27))))
  1710. )
  1711. (pin no_connect line (at 19.05 -10.16 180) (length 2.54)
  1712. (name "NC" (effects (font (size 1.27 1.27))))
  1713. (number "27" (effects (font (size 1.27 1.27))))
  1714. )
  1715. (pin bidirectional line (at 19.05 -7.62 180) (length 2.54)
  1716. (name "IO20" (effects (font (size 1.27 1.27))))
  1717. (number "28" (effects (font (size 1.27 1.27))))
  1718. )
  1719. (pin bidirectional line (at 19.05 -5.08 180) (length 2.54)
  1720. (name "IO5" (effects (font (size 1.27 1.27))))
  1721. (number "29" (effects (font (size 1.27 1.27))))
  1722. )
  1723. (pin input line (at -19.05 12.7 0) (length 2.54)
  1724. (name "EN" (effects (font (size 1.27 1.27))))
  1725. (number "3" (effects (font (size 1.27 1.27))))
  1726. )
  1727. (pin no_connect line (at 19.05 -2.54 180) (length 2.54)
  1728. (name "NC" (effects (font (size 1.27 1.27))))
  1729. (number "30" (effects (font (size 1.27 1.27))))
  1730. )
  1731. (pin bidirectional line (at 19.05 0 180) (length 2.54)
  1732. (name "IO19" (effects (font (size 1.27 1.27))))
  1733. (number "31" (effects (font (size 1.27 1.27))))
  1734. )
  1735. (pin passive line (at 19.05 2.54 180) (length 2.54)
  1736. (name "VDD_SDIO" (effects (font (size 1.27 1.27))))
  1737. (number "32" (effects (font (size 1.27 1.27))))
  1738. )
  1739. (pin bidirectional line (at 19.05 5.08 180) (length 2.54)
  1740. (name "IO21" (effects (font (size 1.27 1.27))))
  1741. (number "33" (effects (font (size 1.27 1.27))))
  1742. )
  1743. (pin input line (at 19.05 7.62 180) (length 2.54)
  1744. (name "RXD" (effects (font (size 1.27 1.27))))
  1745. (number "34" (effects (font (size 1.27 1.27))))
  1746. )
  1747. (pin output line (at 19.05 10.16 180) (length 2.54)
  1748. (name "TXD" (effects (font (size 1.27 1.27))))
  1749. (number "35" (effects (font (size 1.27 1.27))))
  1750. )
  1751. (pin bidirectional line (at 19.05 12.7 180) (length 2.54)
  1752. (name "IO22" (effects (font (size 1.27 1.27))))
  1753. (number "36" (effects (font (size 1.27 1.27))))
  1754. )
  1755. (pin no_connect line (at 19.05 15.24 180) (length 2.54)
  1756. (name "NC" (effects (font (size 1.27 1.27))))
  1757. (number "37" (effects (font (size 1.27 1.27))))
  1758. )
  1759. (pin power_in line (at 19.05 17.78 180) (length 2.54)
  1760. (name "GND" (effects (font (size 1.27 1.27))))
  1761. (number "38" (effects (font (size 1.27 1.27))))
  1762. )
  1763. (pin input line (at -19.05 10.16 0) (length 2.54)
  1764. (name "IO36/SVP" (effects (font (size 1.27 1.27))))
  1765. (number "4" (effects (font (size 1.27 1.27))))
  1766. )
  1767. (pin input line (at -19.05 7.62 0) (length 2.54)
  1768. (name "IO39/SVN" (effects (font (size 1.27 1.27))))
  1769. (number "5" (effects (font (size 1.27 1.27))))
  1770. )
  1771. (pin input line (at -19.05 5.08 0) (length 2.54)
  1772. (name "IO34" (effects (font (size 1.27 1.27))))
  1773. (number "6" (effects (font (size 1.27 1.27))))
  1774. )
  1775. (pin input line (at -19.05 2.54 0) (length 2.54)
  1776. (name "IO35" (effects (font (size 1.27 1.27))))
  1777. (number "7" (effects (font (size 1.27 1.27))))
  1778. )
  1779. (pin bidirectional line (at -19.05 0 0) (length 2.54)
  1780. (name "IO32" (effects (font (size 1.27 1.27))))
  1781. (number "8" (effects (font (size 1.27 1.27))))
  1782. )
  1783. (pin bidirectional line (at -19.05 -2.54 0) (length 2.54)
  1784. (name "IO33" (effects (font (size 1.27 1.27))))
  1785. (number "9" (effects (font (size 1.27 1.27))))
  1786. )
  1787. )
  1788. )
  1789. (symbol "no_pin:no_pin" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1790. (property "Reference" "Z" (id 0) (at -8.89 3.81 0)
  1791. (effects (font (size 1.524 1.524)))
  1792. )
  1793. (property "Value" "no_pin" (id 1) (at 0 0 0)
  1794. (effects (font (size 1.524 1.524)))
  1795. )
  1796. (property "Footprint" "" (id 2) (at 0 0 0)
  1797. (effects (font (size 1.524 1.524)) hide)
  1798. )
  1799. (property "Datasheet" "" (id 3) (at 0 0 0)
  1800. (effects (font (size 1.524 1.524)) hide)
  1801. )
  1802. (symbol "no_pin_0_1"
  1803. (rectangle (start -10.16 2.54) (end 10.16 -2.54)
  1804. (stroke (width 0) (type default) (color 0 0 0 0))
  1805. (fill (type none))
  1806. )
  1807. )
  1808. )
  1809. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1810. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1811. (effects (font (size 1.27 1.27)) hide)
  1812. )
  1813. (property "Value" "+3.3V" (id 1) (at 0 3.556 0)
  1814. (effects (font (size 1.27 1.27)))
  1815. )
  1816. (property "Footprint" "" (id 2) (at 0 0 0)
  1817. (effects (font (size 1.27 1.27)) hide)
  1818. )
  1819. (property "Datasheet" "" (id 3) (at 0 0 0)
  1820. (effects (font (size 1.27 1.27)) hide)
  1821. )
  1822. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1823. (effects (font (size 1.27 1.27)) hide)
  1824. )
  1825. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
  1826. (effects (font (size 1.27 1.27)) hide)
  1827. )
  1828. (symbol "+3.3V_0_1"
  1829. (polyline
  1830. (pts
  1831. (xy -0.762 1.27)
  1832. (xy 0 2.54)
  1833. )
  1834. (stroke (width 0) (type default) (color 0 0 0 0))
  1835. (fill (type none))
  1836. )
  1837. (polyline
  1838. (pts
  1839. (xy 0 0)
  1840. (xy 0 2.54)
  1841. )
  1842. (stroke (width 0) (type default) (color 0 0 0 0))
  1843. (fill (type none))
  1844. )
  1845. (polyline
  1846. (pts
  1847. (xy 0 2.54)
  1848. (xy 0.762 1.27)
  1849. )
  1850. (stroke (width 0) (type default) (color 0 0 0 0))
  1851. (fill (type none))
  1852. )
  1853. )
  1854. (symbol "+3.3V_1_1"
  1855. (pin power_in line (at 0 0 90) (length 0) hide
  1856. (name "+3V3" (effects (font (size 1.27 1.27))))
  1857. (number "1" (effects (font (size 1.27 1.27))))
  1858. )
  1859. )
  1860. )
  1861. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1862. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1863. (effects (font (size 1.27 1.27)) hide)
  1864. )
  1865. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1866. (effects (font (size 1.27 1.27)))
  1867. )
  1868. (property "Footprint" "" (id 2) (at 0 0 0)
  1869. (effects (font (size 1.27 1.27)) hide)
  1870. )
  1871. (property "Datasheet" "" (id 3) (at 0 0 0)
  1872. (effects (font (size 1.27 1.27)) hide)
  1873. )
  1874. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1875. (effects (font (size 1.27 1.27)) hide)
  1876. )
  1877. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1878. (effects (font (size 1.27 1.27)) hide)
  1879. )
  1880. (symbol "+5V_0_1"
  1881. (polyline
  1882. (pts
  1883. (xy -0.762 1.27)
  1884. (xy 0 2.54)
  1885. )
  1886. (stroke (width 0) (type default) (color 0 0 0 0))
  1887. (fill (type none))
  1888. )
  1889. (polyline
  1890. (pts
  1891. (xy 0 0)
  1892. (xy 0 2.54)
  1893. )
  1894. (stroke (width 0) (type default) (color 0 0 0 0))
  1895. (fill (type none))
  1896. )
  1897. (polyline
  1898. (pts
  1899. (xy 0 2.54)
  1900. (xy 0.762 1.27)
  1901. )
  1902. (stroke (width 0) (type default) (color 0 0 0 0))
  1903. (fill (type none))
  1904. )
  1905. )
  1906. (symbol "+5V_1_1"
  1907. (pin power_in line (at 0 0 90) (length 0) hide
  1908. (name "+5V" (effects (font (size 1.27 1.27))))
  1909. (number "1" (effects (font (size 1.27 1.27))))
  1910. )
  1911. )
  1912. )
  1913. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1914. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1915. (effects (font (size 1.27 1.27)) hide)
  1916. )
  1917. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1918. (effects (font (size 1.27 1.27)))
  1919. )
  1920. (property "Footprint" "" (id 2) (at 0 0 0)
  1921. (effects (font (size 1.27 1.27)) hide)
  1922. )
  1923. (property "Datasheet" "" (id 3) (at 0 0 0)
  1924. (effects (font (size 1.27 1.27)) hide)
  1925. )
  1926. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1927. (effects (font (size 1.27 1.27)) hide)
  1928. )
  1929. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1930. (effects (font (size 1.27 1.27)) hide)
  1931. )
  1932. (symbol "GND_0_1"
  1933. (polyline
  1934. (pts
  1935. (xy 0 0)
  1936. (xy 0 -1.27)
  1937. (xy 1.27 -1.27)
  1938. (xy 0 -2.54)
  1939. (xy -1.27 -1.27)
  1940. (xy 0 -1.27)
  1941. )
  1942. (stroke (width 0) (type default) (color 0 0 0 0))
  1943. (fill (type none))
  1944. )
  1945. )
  1946. (symbol "GND_1_1"
  1947. (pin power_in line (at 0 0 270) (length 0) hide
  1948. (name "GND" (effects (font (size 1.27 1.27))))
  1949. (number "1" (effects (font (size 1.27 1.27))))
  1950. )
  1951. )
  1952. )
  1953. (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1954. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1955. (effects (font (size 1.27 1.27)) hide)
  1956. )
  1957. (property "Value" "GNDA" (id 1) (at 0 -3.81 0)
  1958. (effects (font (size 1.27 1.27)))
  1959. )
  1960. (property "Footprint" "" (id 2) (at 0 0 0)
  1961. (effects (font (size 1.27 1.27)) hide)
  1962. )
  1963. (property "Datasheet" "" (id 3) (at 0 0 0)
  1964. (effects (font (size 1.27 1.27)) hide)
  1965. )
  1966. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1967. (effects (font (size 1.27 1.27)) hide)
  1968. )
  1969. (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
  1970. (effects (font (size 1.27 1.27)) hide)
  1971. )
  1972. (symbol "GNDA_0_1"
  1973. (polyline
  1974. (pts
  1975. (xy 0 0)
  1976. (xy 0 -1.27)
  1977. (xy 1.27 -1.27)
  1978. (xy 0 -2.54)
  1979. (xy -1.27 -1.27)
  1980. (xy 0 -1.27)
  1981. )
  1982. (stroke (width 0) (type default) (color 0 0 0 0))
  1983. (fill (type none))
  1984. )
  1985. )
  1986. (symbol "GNDA_1_1"
  1987. (pin power_in line (at 0 0 270) (length 0) hide
  1988. (name "GNDA" (effects (font (size 1.27 1.27))))
  1989. (number "1" (effects (font (size 1.27 1.27))))
  1990. )
  1991. )
  1992. )
  1993. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1994. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1995. (effects (font (size 1.27 1.27)) hide)
  1996. )
  1997. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1998. (effects (font (size 1.27 1.27)))
  1999. )
  2000. (property "Footprint" "" (id 2) (at 0 0 0)
  2001. (effects (font (size 1.27 1.27)) hide)
  2002. )
  2003. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2004. (effects (font (size 1.27 1.27)) hide)
  2005. )
  2006. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2007. (effects (font (size 1.27 1.27)) hide)
  2008. )
  2009. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  2010. (effects (font (size 1.27 1.27)) hide)
  2011. )
  2012. (symbol "PWR_FLAG_0_0"
  2013. (pin power_out line (at 0 0 90) (length 0)
  2014. (name "pwr" (effects (font (size 1.27 1.27))))
  2015. (number "1" (effects (font (size 1.27 1.27))))
  2016. )
  2017. )
  2018. (symbol "PWR_FLAG_0_1"
  2019. (polyline
  2020. (pts
  2021. (xy 0 0)
  2022. (xy 0 1.27)
  2023. (xy -1.016 1.905)
  2024. (xy 0 2.54)
  2025. (xy 1.016 1.905)
  2026. (xy 0 1.27)
  2027. )
  2028. (stroke (width 0) (type default) (color 0 0 0 0))
  2029. (fill (type none))
  2030. )
  2031. )
  2032. )
  2033. (symbol "strain:HX711" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2034. (property "Reference" "U" (id 0) (at 5.08 12.7 0)
  2035. (effects (font (size 1.27 1.27)))
  2036. )
  2037. (property "Value" "HX711" (id 1) (at -5.08 12.7 0)
  2038. (effects (font (size 1.27 1.27)))
  2039. )
  2040. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 0 0 0)
  2041. (effects (font (size 1.27 1.27)) hide)
  2042. )
  2043. (property "Datasheet" "" (id 3) (at 0 0 0)
  2044. (effects (font (size 1.27 1.27)) hide)
  2045. )
  2046. (symbol "HX711_0_1"
  2047. (rectangle (start -8.89 11.43) (end 8.89 -11.43)
  2048. (stroke (width 0) (type default) (color 0 0 0 0))
  2049. (fill (type background))
  2050. )
  2051. )
  2052. (symbol "HX711_1_1"
  2053. (pin power_in line (at -11.43 8.89 0) (length 2.54)
  2054. (name "VSUP" (effects (font (size 1.27 1.27))))
  2055. (number "1" (effects (font (size 1.27 1.27))))
  2056. )
  2057. (pin input line (at 11.43 -6.35 180) (length 2.54)
  2058. (name "INB+" (effects (font (size 1.27 1.27))))
  2059. (number "10" (effects (font (size 1.27 1.27))))
  2060. )
  2061. (pin input line (at 11.43 -3.81 180) (length 2.54)
  2062. (name "PD_SCK" (effects (font (size 1.27 1.27))))
  2063. (number "11" (effects (font (size 1.27 1.27))))
  2064. )
  2065. (pin output line (at 11.43 -1.27 180) (length 2.54)
  2066. (name "DOUT" (effects (font (size 1.27 1.27))))
  2067. (number "12" (effects (font (size 1.27 1.27))))
  2068. )
  2069. (pin output line (at 11.43 1.27 180) (length 2.54)
  2070. (name "XO" (effects (font (size 1.27 1.27))))
  2071. (number "13" (effects (font (size 1.27 1.27))))
  2072. )
  2073. (pin input line (at 11.43 3.81 180) (length 2.54)
  2074. (name "XI" (effects (font (size 1.27 1.27))))
  2075. (number "14" (effects (font (size 1.27 1.27))))
  2076. )
  2077. (pin input line (at 11.43 6.35 180) (length 2.54)
  2078. (name "RATE" (effects (font (size 1.27 1.27))))
  2079. (number "15" (effects (font (size 1.27 1.27))))
  2080. )
  2081. (pin power_in line (at 11.43 8.89 180) (length 2.54)
  2082. (name "DVDD" (effects (font (size 1.27 1.27))))
  2083. (number "16" (effects (font (size 1.27 1.27))))
  2084. )
  2085. (pin output line (at -11.43 6.35 0) (length 2.54)
  2086. (name "BASE" (effects (font (size 1.27 1.27))))
  2087. (number "2" (effects (font (size 1.27 1.27))))
  2088. )
  2089. (pin bidirectional line (at -11.43 3.81 0) (length 2.54)
  2090. (name "AVDD" (effects (font (size 1.27 1.27))))
  2091. (number "3" (effects (font (size 1.27 1.27))))
  2092. )
  2093. (pin input line (at -11.43 1.27 0) (length 2.54)
  2094. (name "VFB" (effects (font (size 1.27 1.27))))
  2095. (number "4" (effects (font (size 1.27 1.27))))
  2096. )
  2097. (pin power_in line (at -11.43 -1.27 0) (length 2.54)
  2098. (name "AGND" (effects (font (size 1.27 1.27))))
  2099. (number "5" (effects (font (size 1.27 1.27))))
  2100. )
  2101. (pin output line (at -11.43 -3.81 0) (length 2.54)
  2102. (name "VBG" (effects (font (size 1.27 1.27))))
  2103. (number "6" (effects (font (size 1.27 1.27))))
  2104. )
  2105. (pin input line (at -11.43 -6.35 0) (length 2.54)
  2106. (name "INA-" (effects (font (size 1.27 1.27))))
  2107. (number "7" (effects (font (size 1.27 1.27))))
  2108. )
  2109. (pin input line (at -11.43 -8.89 0) (length 2.54)
  2110. (name "INA+" (effects (font (size 1.27 1.27))))
  2111. (number "8" (effects (font (size 1.27 1.27))))
  2112. )
  2113. (pin input line (at 11.43 -8.89 180) (length 2.54)
  2114. (name "INB-" (effects (font (size 1.27 1.27))))
  2115. (number "9" (effects (font (size 1.27 1.27))))
  2116. )
  2117. )
  2118. )
  2119. )
  2120. (junction (at 200.66 250.19) (diameter 0) (color 0 0 0 0)
  2121. (uuid 00e38d63-5436-49db-81f5-697421f168fc)
  2122. )
  2123. (junction (at 228.6 234.95) (diameter 0) (color 0 0 0 0)
  2124. (uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
  2125. )
  2126. (junction (at 36.83 191.77) (diameter 0) (color 0 0 0 0)
  2127. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  2128. )
  2129. (junction (at 81.28 77.47) (diameter 0) (color 0 0 0 0)
  2130. (uuid 05f2859d-2820-4e84-b395-696011feb13b)
  2131. )
  2132. (junction (at 323.85 167.64) (diameter 0) (color 0 0 0 0)
  2133. (uuid 09c6ca89-863f-42d4-867e-9a769c316610)
  2134. )
  2135. (junction (at 144.78 250.19) (diameter 0) (color 0 0 0 0)
  2136. (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
  2137. )
  2138. (junction (at 172.72 250.19) (diameter 0) (color 0 0 0 0)
  2139. (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
  2140. )
  2141. (junction (at 29.21 39.37) (diameter 0) (color 0 0 0 0)
  2142. (uuid 0dcd977a-14bb-4465-be53-5533f116ec14)
  2143. )
  2144. (junction (at 269.24 250.19) (diameter 0) (color 0 0 0 0)
  2145. (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
  2146. )
  2147. (junction (at 184.15 187.96) (diameter 0) (color 0 0 0 0)
  2148. (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
  2149. )
  2150. (junction (at 204.47 162.56) (diameter 0) (color 0 0 0 0)
  2151. (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
  2152. )
  2153. (junction (at 332.74 167.64) (diameter 0) (color 0 0 0 0)
  2154. (uuid 1427bb3f-0689-4b41-a816-cd79a5202fd0)
  2155. )
  2156. (junction (at 129.54 175.26) (diameter 0) (color 0 0 0 0)
  2157. (uuid 1a801aeb-1e9b-4a8c-b466-0eac2cddb222)
  2158. )
  2159. (junction (at 207.01 137.16) (diameter 0) (color 0 0 0 0)
  2160. (uuid 1b98de85-f9de-4825-baf2-c96991615275)
  2161. )
  2162. (junction (at 105.41 57.15) (diameter 0) (color 0 0 0 0)
  2163. (uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
  2164. )
  2165. (junction (at 195.58 209.55) (diameter 0) (color 0 0 0 0)
  2166. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  2167. )
  2168. (junction (at 284.48 234.95) (diameter 0) (color 0 0 0 0)
  2169. (uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
  2170. )
  2171. (junction (at 228.6 250.19) (diameter 0) (color 0 0 0 0)
  2172. (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
  2173. )
  2174. (junction (at 347.98 209.55) (diameter 0) (color 0 0 0 0)
  2175. (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
  2176. )
  2177. (junction (at 379.73 171.45) (diameter 0) (color 0 0 0 0)
  2178. (uuid 24a492d9-25a9-4fba-b51b-3effb576b351)
  2179. )
  2180. (junction (at 78.74 194.31) (diameter 0) (color 0 0 0 0)
  2181. (uuid 24fd922c-d488-4d61-b6dc-9d3e359ccc82)
  2182. )
  2183. (junction (at 88.9 234.95) (diameter 0) (color 0 0 0 0)
  2184. (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
  2185. )
  2186. (junction (at 189.23 162.56) (diameter 0) (color 0 0 0 0)
  2187. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  2188. )
  2189. (junction (at 129.54 234.95) (diameter 0) (color 0 0 0 0)
  2190. (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
  2191. )
  2192. (junction (at 45.72 162.56) (diameter 0) (color 0 0 0 0)
  2193. (uuid 341dde39-440e-4d05-8def-6a5cecefd88c)
  2194. )
  2195. (junction (at 207.01 132.08) (diameter 0) (color 0 0 0 0)
  2196. (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37)
  2197. )
  2198. (junction (at 317.5 27.94) (diameter 0) (color 0 0 0 0)
  2199. (uuid 386faf3f-2adf-472a-84bf-bd511edf2429)
  2200. )
  2201. (junction (at 200.66 234.95) (diameter 0) (color 0 0 0 0)
  2202. (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
  2203. )
  2204. (junction (at 241.3 133.35) (diameter 0) (color 0 0 0 0)
  2205. (uuid 3d70e675-48ae-4edd-b95d-3ca51e634018)
  2206. )
  2207. (junction (at 317.5 33.02) (diameter 0) (color 0 0 0 0)
  2208. (uuid 3e87b259-dfc1-4885-8dcf-7e7ae39674ed)
  2209. )
  2210. (junction (at 144.78 234.95) (diameter 0) (color 0 0 0 0)
  2211. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  2212. )
  2213. (junction (at 184.15 181.61) (diameter 0) (color 0 0 0 0)
  2214. (uuid 41485de5-6ed3-4c83-b69e-ef83ae18093c)
  2215. )
  2216. (junction (at 241.3 250.19) (diameter 0) (color 0 0 0 0)
  2217. (uuid 4185c36c-c66e-4dbd-be5d-841e551f4885)
  2218. )
  2219. (junction (at 323.85 172.72) (diameter 0) (color 0 0 0 0)
  2220. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  2221. )
  2222. (junction (at 129.54 162.56) (diameter 0) (color 0 0 0 0)
  2223. (uuid 4c11ed22-97ff-4c49-b64e-6f63aed49167)
  2224. )
  2225. (junction (at 195.58 204.47) (diameter 0) (color 0 0 0 0)
  2226. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  2227. )
  2228. (junction (at 129.54 250.19) (diameter 0) (color 0 0 0 0)
  2229. (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
  2230. )
  2231. (junction (at 256.54 250.19) (diameter 0) (color 0 0 0 0)
  2232. (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
  2233. )
  2234. (junction (at 101.6 250.19) (diameter 0) (color 0 0 0 0)
  2235. (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
  2236. )
  2237. (junction (at 342.9 167.64) (diameter 0) (color 0 0 0 0)
  2238. (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
  2239. )
  2240. (junction (at 78.74 196.85) (diameter 0) (color 0 0 0 0)
  2241. (uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9)
  2242. )
  2243. (junction (at 167.64 181.61) (diameter 0) (color 0 0 0 0)
  2244. (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)
  2245. )
  2246. (junction (at 27.94 191.77) (diameter 0) (color 0 0 0 0)
  2247. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  2248. )
  2249. (junction (at 213.36 234.95) (diameter 0) (color 0 0 0 0)
  2250. (uuid 71c6e723-673c-45a9-a0e4-9742220c52a3)
  2251. )
  2252. (junction (at 326.39 27.94) (diameter 0) (color 0 0 0 0)
  2253. (uuid 72366acb-6c86-4134-89df-01ed6e4dc8e0)
  2254. )
  2255. (junction (at 189.23 85.09) (diameter 0) (color 0 0 0 0)
  2256. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  2257. )
  2258. (junction (at 38.1 99.06) (diameter 0) (color 0 0 0 0)
  2259. (uuid 7806469b-c133-4e19-b2d5-f2b690b4b2f3)
  2260. )
  2261. (junction (at 78.74 191.77) (diameter 0) (color 0 0 0 0)
  2262. (uuid 7ce4aab5-8271-4432-a4b1-bff168293b45)
  2263. )
  2264. (junction (at 53.34 78.74) (diameter 0) (color 0 0 0 0)
  2265. (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
  2266. )
  2267. (junction (at 157.48 234.95) (diameter 0) (color 0 0 0 0)
  2268. (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
  2269. )
  2270. (junction (at 383.54 181.61) (diameter 0) (color 0 0 0 0)
  2271. (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a)
  2272. )
  2273. (junction (at 29.21 36.83) (diameter 0) (color 0 0 0 0)
  2274. (uuid 865cb63d-852e-4a25-afdb-7bcd1e43246b)
  2275. )
  2276. (junction (at 172.72 234.95) (diameter 0) (color 0 0 0 0)
  2277. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  2278. )
  2279. (junction (at 347.98 212.09) (diameter 0) (color 0 0 0 0)
  2280. (uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
  2281. )
  2282. (junction (at 172.72 167.64) (diameter 0) (color 0 0 0 0)
  2283. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  2284. )
  2285. (junction (at 156.21 140.97) (diameter 0) (color 0 0 0 0)
  2286. (uuid 8afe1dbf-1187-4362-8af8-a90ca839a6b3)
  2287. )
  2288. (junction (at 157.48 250.19) (diameter 0) (color 0 0 0 0)
  2289. (uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
  2290. )
  2291. (junction (at 132.08 128.27) (diameter 0) (color 0 0 0 0)
  2292. (uuid 8efe6411-1919-4082-b5b8-393585e068c8)
  2293. )
  2294. (junction (at 101.6 234.95) (diameter 0) (color 0 0 0 0)
  2295. (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
  2296. )
  2297. (junction (at 185.42 234.95) (diameter 0) (color 0 0 0 0)
  2298. (uuid 935057d5-6882-4c15-9a35-54677912ba12)
  2299. )
  2300. (junction (at 207.01 127) (diameter 0) (color 0 0 0 0)
  2301. (uuid 971d1932-4a99-4265-9c76-26e554bde4fe)
  2302. )
  2303. (junction (at 36.83 26.67) (diameter 0) (color 0 0 0 0)
  2304. (uuid 9726a8d4-dc0a-4024-be2d-2a1a65d77359)
  2305. )
  2306. (junction (at 347.98 207.01) (diameter 0) (color 0 0 0 0)
  2307. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  2308. )
  2309. (junction (at 116.84 234.95) (diameter 0) (color 0 0 0 0)
  2310. (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
  2311. )
  2312. (junction (at 284.48 250.19) (diameter 0) (color 0 0 0 0)
  2313. (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
  2314. )
  2315. (junction (at 30.48 250.19) (diameter 0) (color 0 0 0 0)
  2316. (uuid 9a595c4c-9ac1-4ae3-8ff3-1b7f2281a894)
  2317. )
  2318. (junction (at 45.72 134.62) (diameter 0) (color 0 0 0 0)
  2319. (uuid 9c0314b1-f82f-432d-95a0-65e191202552)
  2320. )
  2321. (junction (at 54.61 242.57) (diameter 0) (color 0 0 0 0)
  2322. (uuid 9e18f8b3-9e1a-4022-9224-10c12ca8a28d)
  2323. )
  2324. (junction (at 30.48 234.95) (diameter 0) (color 0 0 0 0)
  2325. (uuid a26bdee6-0e16-4ea6-87f7-fb32c714896e)
  2326. )
  2327. (junction (at 233.68 193.04) (diameter 0) (color 0 0 0 0)
  2328. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  2329. )
  2330. (junction (at 269.24 234.95) (diameter 0) (color 0 0 0 0)
  2331. (uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
  2332. )
  2333. (junction (at 22.86 26.67) (diameter 0) (color 0 0 0 0)
  2334. (uuid afd0a773-43d9-4253-a280-3ee707f12610)
  2335. )
  2336. (junction (at 213.36 250.19) (diameter 0) (color 0 0 0 0)
  2337. (uuid b4833916-7a3e-4498-86fb-ec6d13262ffe)
  2338. )
  2339. (junction (at 53.34 73.66) (diameter 0) (color 0 0 0 0)
  2340. (uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
  2341. )
  2342. (junction (at 170.18 127) (diameter 0) (color 0 0 0 0)
  2343. (uuid b606e532-e4c7-444d-b9ff-879f52cfde92)
  2344. )
  2345. (junction (at 326.39 33.02) (diameter 0) (color 0 0 0 0)
  2346. (uuid ba116096-3ccc-4cc8-a185-5325439e4e24)
  2347. )
  2348. (junction (at 189.23 181.61) (diameter 0) (color 0 0 0 0)
  2349. (uuid bd29b6d3-a58c-4b1f-9c20-de4efb708ab2)
  2350. )
  2351. (junction (at 158.75 181.61) (diameter 0) (color 0 0 0 0)
  2352. (uuid c2dd13db-24b6-40f1-b75b-b9ab893d92ea)
  2353. )
  2354. (junction (at 224.79 71.12) (diameter 0) (color 0 0 0 0)
  2355. (uuid c37d3f0c-41ec-4928-8869-febc821c6326)
  2356. )
  2357. (junction (at 163.83 191.77) (diameter 0) (color 0 0 0 0)
  2358. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  2359. )
  2360. (junction (at 163.83 186.69) (diameter 0) (color 0 0 0 0)
  2361. (uuid c401e9c6-1deb-4979-99be-7c801c952098)
  2362. )
  2363. (junction (at 156.21 134.62) (diameter 0) (color 0 0 0 0)
  2364. (uuid c482f4f0-b441-4301-a9f1-c7f9e511d699)
  2365. )
  2366. (junction (at 233.68 175.26) (diameter 0) (color 0 0 0 0)
  2367. (uuid c512fed3-9770-476b-b048-e781b4f3cd72)
  2368. )
  2369. (junction (at 181.61 162.56) (diameter 0) (color 0 0 0 0)
  2370. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  2371. )
  2372. (junction (at 241.3 234.95) (diameter 0) (color 0 0 0 0)
  2373. (uuid cc48dd41-7768-48d3-b096-2c4cc2126c9d)
  2374. )
  2375. (junction (at 336.55 200.66) (diameter 0) (color 0 0 0 0)
  2376. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  2377. )
  2378. (junction (at 224.79 76.2) (diameter 0) (color 0 0 0 0)
  2379. (uuid d1441985-7b63-4bf8-a06d-c70da2e3b78b)
  2380. )
  2381. (junction (at 132.08 168.91) (diameter 0) (color 0 0 0 0)
  2382. (uuid d1da74ed-6e59-454c-8c0f-b017cb8d3bae)
  2383. )
  2384. (junction (at 195.58 69.85) (diameter 0) (color 0 0 0 0)
  2385. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  2386. )
  2387. (junction (at 379.73 173.99) (diameter 0) (color 0 0 0 0)
  2388. (uuid d7df1f01-3f56-437b-a452-e88ad90a9805)
  2389. )
  2390. (junction (at 207.01 129.54) (diameter 0) (color 0 0 0 0)
  2391. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  2392. )
  2393. (junction (at 27.94 199.39) (diameter 0) (color 0 0 0 0)
  2394. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  2395. )
  2396. (junction (at 172.72 92.71) (diameter 0) (color 0 0 0 0)
  2397. (uuid dbbbcbf5-ed09-4c20-902c-70f108158aba)
  2398. )
  2399. (junction (at 379.73 168.91) (diameter 0) (color 0 0 0 0)
  2400. (uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1)
  2401. )
  2402. (junction (at 185.42 250.19) (diameter 0) (color 0 0 0 0)
  2403. (uuid e091e263-c616-48ef-a460-465c70218987)
  2404. )
  2405. (junction (at 119.38 57.15) (diameter 0) (color 0 0 0 0)
  2406. (uuid e2b24e25-1a0d-434a-876b-c595b47d80d2)
  2407. )
  2408. (junction (at 116.84 250.19) (diameter 0) (color 0 0 0 0)
  2409. (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
  2410. )
  2411. (junction (at 127 168.91) (diameter 0) (color 0 0 0 0)
  2412. (uuid e7189296-002a-486a-a036-3fd3f5db4aec)
  2413. )
  2414. (junction (at 214.63 207.01) (diameter 0) (color 0 0 0 0)
  2415. (uuid ea6e56c6-8250-47d0-a0e8-238d8f05bf5b)
  2416. )
  2417. (junction (at 88.9 250.19) (diameter 0) (color 0 0 0 0)
  2418. (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
  2419. )
  2420. (junction (at 57.15 60.96) (diameter 0) (color 0 0 0 0)
  2421. (uuid ef3dded2-639c-45d4-8076-84cfb5189592)
  2422. )
  2423. (junction (at 172.72 62.23) (diameter 0) (color 0 0 0 0)
  2424. (uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
  2425. )
  2426. (junction (at 347.98 204.47) (diameter 0) (color 0 0 0 0)
  2427. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  2428. )
  2429. (junction (at 256.54 234.95) (diameter 0) (color 0 0 0 0)
  2430. (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
  2431. )
  2432. (junction (at 207.01 134.62) (diameter 0) (color 0 0 0 0)
  2433. (uuid fdc57161-f7f8-4584-b0ec-8c1aa24339c6)
  2434. )
  2435. (junction (at 30.48 99.06) (diameter 0) (color 0 0 0 0)
  2436. (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
  2437. )
  2438. (no_connect (at 132.08 43.18) (uuid 011ee658-718d-416a-85fd-961729cd1ee5))
  2439. (no_connect (at 231.14 182.88) (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
  2440. (no_connect (at 132.08 77.47) (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17))
  2441. (no_connect (at 132.08 74.93) (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
  2442. (no_connect (at 304.8 242.57) (uuid 1a813eeb-ee58-4579-81e1-3f9a7227213c))
  2443. (no_connect (at 132.08 27.94) (uuid 29bb7297-26fb-4776-9266-2355d022bab0))
  2444. (no_connect (at 340.36 45.72) (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f))
  2445. (no_connect (at 132.08 80.01) (uuid 4344bc11-e822-474b-8d61-d12211e719b1))
  2446. (no_connect (at 340.36 48.26) (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48))
  2447. (no_connect (at 120.65 27.94) (uuid 5c30b9b4-3014-4f50-9329-27a539b67e01))
  2448. (no_connect (at 111.76 69.85) (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
  2449. (no_connect (at 53.34 91.44) (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b))
  2450. (no_connect (at 77.47 199.39) (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa))
  2451. (no_connect (at 120.65 43.18) (uuid 96de0051-7945-413a-9219-1ab367546962))
  2452. (no_connect (at 378.46 48.26) (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e))
  2453. (no_connect (at 171.45 46.99) (uuid b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
  2454. (no_connect (at 154.94 43.18) (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
  2455. (no_connect (at 143.51 43.18) (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054))
  2456. (no_connect (at 53.34 88.9) (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21))
  2457. (no_connect (at 182.88 46.99) (uuid ce3f834f-337d-4957-8d02-e900d7024614))
  2458. (no_connect (at 340.36 43.18) (uuid d554632b-6dd0-47f8-b59b-3ce25177ca3e))
  2459. (no_connect (at 132.08 82.55) (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa))
  2460. (no_connect (at 143.51 27.94) (uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b))
  2461. (no_connect (at 41.91 196.85) (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63))
  2462. (wire (pts (xy 80.01 19.05) (xy 83.82 19.05))
  2463. (stroke (width 0) (type default) (color 0 0 0 0))
  2464. (uuid 006a6278-181f-41f3-9d68-edd5f627ea02)
  2465. )
  2466. (wire (pts (xy 88.9 240.03) (xy 88.9 250.19))
  2467. (stroke (width 0) (type default) (color 0 0 0 0))
  2468. (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
  2469. )
  2470. (wire (pts (xy 220.98 242.57) (xy 233.68 242.57))
  2471. (stroke (width 0) (type default) (color 0 0 0 0))
  2472. (uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
  2473. )
  2474. (wire (pts (xy 231.14 180.34) (xy 240.03 180.34))
  2475. (stroke (width 0) (type default) (color 0 0 0 0))
  2476. (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76)
  2477. )
  2478. (wire (pts (xy 157.48 234.95) (xy 172.72 234.95))
  2479. (stroke (width 0) (type default) (color 0 0 0 0))
  2480. (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
  2481. )
  2482. (wire (pts (xy 144.78 234.95) (xy 157.48 234.95))
  2483. (stroke (width 0) (type default) (color 0 0 0 0))
  2484. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  2485. )
  2486. (wire (pts (xy 353.06 73.66) (xy 353.06 90.17))
  2487. (stroke (width 0) (type default) (color 0 0 0 0))
  2488. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  2489. )
  2490. (wire (pts (xy 229.87 207.01) (xy 229.87 209.55))
  2491. (stroke (width 0) (type default) (color 0 0 0 0))
  2492. (uuid 0476c30e-6498-4edb-86a5-14460aba01fe)
  2493. )
  2494. (wire (pts (xy 321.31 167.64) (xy 323.85 167.64))
  2495. (stroke (width 0) (type default) (color 0 0 0 0))
  2496. (uuid 04d60995-4f82-4f17-8f82-2f27a0a779cc)
  2497. )
  2498. (wire (pts (xy 121.92 62.23) (xy 121.92 57.15))
  2499. (stroke (width 0) (type default) (color 0 0 0 0))
  2500. (uuid 051b8cb0-ae77-4e09-98a7-bf2103319e66)
  2501. )
  2502. (wire (pts (xy 228.6 234.95) (xy 241.3 234.95))
  2503. (stroke (width 0) (type default) (color 0 0 0 0))
  2504. (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
  2505. )
  2506. (wire (pts (xy 53.34 68.58) (xy 77.47 68.58))
  2507. (stroke (width 0) (type default) (color 0 0 0 0))
  2508. (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
  2509. )
  2510. (wire (pts (xy 207.01 124.46) (xy 207.01 127))
  2511. (stroke (width 0) (type default) (color 0 0 0 0))
  2512. (uuid 08da8f18-02c3-4a28-a400-670f01755980)
  2513. )
  2514. (wire (pts (xy 207.01 137.16) (xy 207.01 142.24))
  2515. (stroke (width 0) (type default) (color 0 0 0 0))
  2516. (uuid 0938c137-668b-4d2f-b92b-cadb1df72bdb)
  2517. )
  2518. (wire (pts (xy 241.3 125.73) (xy 241.3 123.19))
  2519. (stroke (width 0) (type default) (color 0 0 0 0))
  2520. (uuid 094dc71e-7ea9-4e30-8ba7-749216ec2a8b)
  2521. )
  2522. (wire (pts (xy 196.85 172.72) (xy 201.93 172.72))
  2523. (stroke (width 0) (type default) (color 0 0 0 0))
  2524. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  2525. )
  2526. (wire (pts (xy 81.28 198.12) (xy 78.74 198.12))
  2527. (stroke (width 0) (type default) (color 0 0 0 0))
  2528. (uuid 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2)
  2529. )
  2530. (wire (pts (xy 36.83 194.31) (xy 36.83 191.77))
  2531. (stroke (width 0) (type default) (color 0 0 0 0))
  2532. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  2533. )
  2534. (wire (pts (xy 377.19 181.61) (xy 383.54 181.61))
  2535. (stroke (width 0) (type default) (color 0 0 0 0))
  2536. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  2537. )
  2538. (wire (pts (xy 223.52 69.85) (xy 223.52 71.12))
  2539. (stroke (width 0) (type default) (color 0 0 0 0))
  2540. (uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef)
  2541. )
  2542. (wire (pts (xy 151.13 134.62) (xy 156.21 134.62))
  2543. (stroke (width 0) (type default) (color 0 0 0 0))
  2544. (uuid 0c9bbc06-f1c0-4359-8448-9c515b32a886)
  2545. )
  2546. (wire (pts (xy 45.72 134.62) (xy 62.23 134.62))
  2547. (stroke (width 0) (type default) (color 0 0 0 0))
  2548. (uuid 0cc094e7-c1c0-457d-bd94-3db91c23be55)
  2549. )
  2550. (wire (pts (xy 351.79 209.55) (xy 347.98 209.55))
  2551. (stroke (width 0) (type default) (color 0 0 0 0))
  2552. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  2553. )
  2554. (wire (pts (xy 29.21 39.37) (xy 29.21 40.64))
  2555. (stroke (width 0) (type default) (color 0 0 0 0))
  2556. (uuid 0eb774f4-dc67-436b-8caf-f4502c5ee2de)
  2557. )
  2558. (wire (pts (xy 116.84 250.19) (xy 129.54 250.19))
  2559. (stroke (width 0) (type default) (color 0 0 0 0))
  2560. (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
  2561. )
  2562. (wire (pts (xy 105.41 62.23) (xy 105.41 66.04))
  2563. (stroke (width 0) (type default) (color 0 0 0 0))
  2564. (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
  2565. )
  2566. (wire (pts (xy 137.16 242.57) (xy 149.86 242.57))
  2567. (stroke (width 0) (type default) (color 0 0 0 0))
  2568. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  2569. )
  2570. (polyline (pts (xy 208.28 49.53) (xy 208.28 115.57))
  2571. (stroke (width 0) (type default) (color 0 0 0 0))
  2572. (uuid 1053b01a-057e-4e79-a21c-42780a737ea9)
  2573. )
  2574. (polyline (pts (xy 12.7 218.44) (xy 307.34 218.44))
  2575. (stroke (width 0) (type default) (color 0 0 0 0))
  2576. (uuid 105d44ff-63b9-4299-9078-473af583971a)
  2577. )
  2578. (wire (pts (xy 378.46 66.04) (xy 398.78 66.04))
  2579. (stroke (width 0) (type default) (color 0 0 0 0))
  2580. (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa)
  2581. )
  2582. (wire (pts (xy 54.61 242.57) (xy 71.12 242.57))
  2583. (stroke (width 0) (type default) (color 0 0 0 0))
  2584. (uuid 10fa1a8c-62cb-4b8f-b916-b18d737ff71b)
  2585. )
  2586. (wire (pts (xy 200.66 250.19) (xy 213.36 250.19))
  2587. (stroke (width 0) (type default) (color 0 0 0 0))
  2588. (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
  2589. )
  2590. (wire (pts (xy 156.21 134.62) (xy 166.37 134.62))
  2591. (stroke (width 0) (type default) (color 0 0 0 0))
  2592. (uuid 15a5a11b-0ea1-4f6e-b356-cc2d530615ed)
  2593. )
  2594. (wire (pts (xy 378.46 68.58) (xy 403.86 68.58))
  2595. (stroke (width 0) (type default) (color 0 0 0 0))
  2596. (uuid 15ea3484-2685-47cb-9e01-ec01c6d477b8)
  2597. )
  2598. (wire (pts (xy 241.3 250.19) (xy 256.54 250.19))
  2599. (stroke (width 0) (type default) (color 0 0 0 0))
  2600. (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
  2601. )
  2602. (wire (pts (xy 175.26 62.23) (xy 175.26 64.77))
  2603. (stroke (width 0) (type default) (color 0 0 0 0))
  2604. (uuid 165f4d8d-26a9-4cf2-a8d6-9936cd983be4)
  2605. )
  2606. (wire (pts (xy 38.1 99.06) (xy 38.1 100.33))
  2607. (stroke (width 0) (type default) (color 0 0 0 0))
  2608. (uuid 16d5bf81-590a-4149-97e0-64f3b3ad6f52)
  2609. )
  2610. (wire (pts (xy 269.24 250.19) (xy 284.48 250.19))
  2611. (stroke (width 0) (type default) (color 0 0 0 0))
  2612. (uuid 180245d9-4a3f-4d1b-adcc-b4eafac722e0)
  2613. )
  2614. (wire (pts (xy 116.84 240.03) (xy 116.84 250.19))
  2615. (stroke (width 0) (type default) (color 0 0 0 0))
  2616. (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
  2617. )
  2618. (wire (pts (xy 351.79 189.23) (xy 336.55 189.23))
  2619. (stroke (width 0) (type default) (color 0 0 0 0))
  2620. (uuid 1b023dd4-5185-4576-b544-68a05b9c360b)
  2621. )
  2622. (wire (pts (xy 176.53 204.47) (xy 195.58 204.47))
  2623. (stroke (width 0) (type default) (color 0 0 0 0))
  2624. (uuid 1cacb878-9da4-41fc-aa80-018bc841e19a)
  2625. )
  2626. (wire (pts (xy 241.3 133.35) (xy 241.3 130.81))
  2627. (stroke (width 0) (type default) (color 0 0 0 0))
  2628. (uuid 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b)
  2629. )
  2630. (polyline (pts (xy 313.69 234.95) (xy 313.69 148.59))
  2631. (stroke (width 0) (type default) (color 0 0 0 0))
  2632. (uuid 1d9dc91c-3457-4ca5-8e42-43be60ae0831)
  2633. )
  2634. (wire (pts (xy 53.34 66.04) (xy 83.82 66.04))
  2635. (stroke (width 0) (type default) (color 0 0 0 0))
  2636. (uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
  2637. )
  2638. (wire (pts (xy 127 168.91) (xy 127 170.18))
  2639. (stroke (width 0) (type default) (color 0 0 0 0))
  2640. (uuid 1eac8746-0816-461f-93ea-c5939fdc9591)
  2641. )
  2642. (wire (pts (xy 200.66 240.03) (xy 200.66 250.19))
  2643. (stroke (width 0) (type default) (color 0 0 0 0))
  2644. (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
  2645. )
  2646. (wire (pts (xy 246.38 83.82) (xy 229.87 83.82))
  2647. (stroke (width 0) (type default) (color 0 0 0 0))
  2648. (uuid 2028d85e-9e27-4758-8c0b-559fad072813)
  2649. )
  2650. (wire (pts (xy 80.01 38.1) (xy 83.82 38.1))
  2651. (stroke (width 0) (type default) (color 0 0 0 0))
  2652. (uuid 20a167d5-2883-430d-9eb3-b6f2e2052ad6)
  2653. )
  2654. (wire (pts (xy 231.14 190.5) (xy 233.68 190.5))
  2655. (stroke (width 0) (type default) (color 0 0 0 0))
  2656. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  2657. )
  2658. (wire (pts (xy 330.2 200.66) (xy 336.55 200.66))
  2659. (stroke (width 0) (type default) (color 0 0 0 0))
  2660. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  2661. )
  2662. (wire (pts (xy 377.19 209.55) (xy 381 209.55))
  2663. (stroke (width 0) (type default) (color 0 0 0 0))
  2664. (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
  2665. )
  2666. (wire (pts (xy 166.37 127) (xy 170.18 127))
  2667. (stroke (width 0) (type default) (color 0 0 0 0))
  2668. (uuid 22ab392d-1989-4185-9178-8083812ea067)
  2669. )
  2670. (wire (pts (xy 115.57 168.91) (xy 127 168.91))
  2671. (stroke (width 0) (type default) (color 0 0 0 0))
  2672. (uuid 23da5bd3-8959-4554-a68f-acf330095db5)
  2673. )
  2674. (wire (pts (xy 27.94 199.39) (xy 27.94 201.93))
  2675. (stroke (width 0) (type default) (color 0 0 0 0))
  2676. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  2677. )
  2678. (wire (pts (xy 195.58 209.55) (xy 208.28 209.55))
  2679. (stroke (width 0) (type default) (color 0 0 0 0))
  2680. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  2681. )
  2682. (wire (pts (xy 195.58 185.42) (xy 195.58 196.85))
  2683. (stroke (width 0) (type default) (color 0 0 0 0))
  2684. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  2685. )
  2686. (wire (pts (xy 176.53 181.61) (xy 184.15 181.61))
  2687. (stroke (width 0) (type default) (color 0 0 0 0))
  2688. (uuid 26bc8641-9bca-4204-9709-deedbe202a36)
  2689. )
  2690. (wire (pts (xy 231.14 193.04) (xy 233.68 193.04))
  2691. (stroke (width 0) (type default) (color 0 0 0 0))
  2692. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  2693. )
  2694. (wire (pts (xy 233.68 175.26) (xy 231.14 175.26))
  2695. (stroke (width 0) (type default) (color 0 0 0 0))
  2696. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  2697. )
  2698. (wire (pts (xy 323.85 167.64) (xy 332.74 167.64))
  2699. (stroke (width 0) (type default) (color 0 0 0 0))
  2700. (uuid 28b01cd2-da3a-46ec-8825-b0f31a0b8987)
  2701. )
  2702. (wire (pts (xy 189.23 162.56) (xy 189.23 160.02))
  2703. (stroke (width 0) (type default) (color 0 0 0 0))
  2704. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  2705. )
  2706. (wire (pts (xy 189.23 85.09) (xy 201.93 85.09))
  2707. (stroke (width 0) (type default) (color 0 0 0 0))
  2708. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  2709. )
  2710. (wire (pts (xy 158.75 186.69) (xy 163.83 186.69))
  2711. (stroke (width 0) (type default) (color 0 0 0 0))
  2712. (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
  2713. )
  2714. (wire (pts (xy 81.28 77.47) (xy 83.82 77.47))
  2715. (stroke (width 0) (type default) (color 0 0 0 0))
  2716. (uuid 2a1de22d-6451-488d-af77-0bf8841bd695)
  2717. )
  2718. (wire (pts (xy 379.73 168.91) (xy 393.7 168.91))
  2719. (stroke (width 0) (type default) (color 0 0 0 0))
  2720. (uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
  2721. )
  2722. (wire (pts (xy 111.76 74.93) (xy 99.06 74.93))
  2723. (stroke (width 0) (type default) (color 0 0 0 0))
  2724. (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
  2725. )
  2726. (wire (pts (xy 394.97 50.8) (xy 378.46 50.8))
  2727. (stroke (width 0) (type default) (color 0 0 0 0))
  2728. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  2729. )
  2730. (wire (pts (xy 78.74 194.31) (xy 101.6 194.31))
  2731. (stroke (width 0) (type default) (color 0 0 0 0))
  2732. (uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
  2733. )
  2734. (wire (pts (xy 365.76 78.74) (xy 387.35 78.74))
  2735. (stroke (width 0) (type default) (color 0 0 0 0))
  2736. (uuid 2c488362-c230-4f6d-82f9-a229b1171a23)
  2737. )
  2738. (wire (pts (xy 383.54 181.61) (xy 383.54 190.5))
  2739. (stroke (width 0) (type default) (color 0 0 0 0))
  2740. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  2741. )
  2742. (wire (pts (xy 172.72 127) (xy 172.72 135.89))
  2743. (stroke (width 0) (type default) (color 0 0 0 0))
  2744. (uuid 2dc66f7e-d85d-4081-ae71-fd8851d6aeda)
  2745. )
  2746. (wire (pts (xy 81.28 193.04) (xy 78.74 193.04))
  2747. (stroke (width 0) (type default) (color 0 0 0 0))
  2748. (uuid 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5)
  2749. )
  2750. (wire (pts (xy 78.74 195.58) (xy 78.74 194.31))
  2751. (stroke (width 0) (type default) (color 0 0 0 0))
  2752. (uuid 315d2b15-cfe6-4672-b3ad-24773f3df12c)
  2753. )
  2754. (wire (pts (xy 326.39 33.02) (xy 317.5 33.02))
  2755. (stroke (width 0) (type default) (color 0 0 0 0))
  2756. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  2757. )
  2758. (wire (pts (xy 351.79 184.15) (xy 336.55 184.15))
  2759. (stroke (width 0) (type default) (color 0 0 0 0))
  2760. (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8)
  2761. )
  2762. (wire (pts (xy 29.21 39.37) (xy 35.56 39.37))
  2763. (stroke (width 0) (type default) (color 0 0 0 0))
  2764. (uuid 3283e0d7-cabf-4ad2-bdff-f363128a72ab)
  2765. )
  2766. (polyline (pts (xy 307.34 218.44) (xy 307.34 266.7))
  2767. (stroke (width 0) (type default) (color 0 0 0 0))
  2768. (uuid 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a)
  2769. )
  2770. (wire (pts (xy 347.98 201.93) (xy 351.79 201.93))
  2771. (stroke (width 0) (type default) (color 0 0 0 0))
  2772. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  2773. )
  2774. (wire (pts (xy 172.72 234.95) (xy 185.42 234.95))
  2775. (stroke (width 0) (type default) (color 0 0 0 0))
  2776. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  2777. )
  2778. (wire (pts (xy 321.31 172.72) (xy 323.85 172.72))
  2779. (stroke (width 0) (type default) (color 0 0 0 0))
  2780. (uuid 34ddb753-e57c-4ca8-a67b-d7cdf62cae93)
  2781. )
  2782. (wire (pts (xy 83.82 151.13) (xy 71.12 151.13))
  2783. (stroke (width 0) (type default) (color 0 0 0 0))
  2784. (uuid 35343f32-90ff-4059-a108-111fb444c3d2)
  2785. )
  2786. (wire (pts (xy 163.83 186.69) (xy 167.64 186.69))
  2787. (stroke (width 0) (type default) (color 0 0 0 0))
  2788. (uuid 355ced6c-c08a-4586-9a09-7a9c624536f6)
  2789. )
  2790. (wire (pts (xy 121.92 57.15) (xy 119.38 57.15))
  2791. (stroke (width 0) (type default) (color 0 0 0 0))
  2792. (uuid 35c09d1f-2914-4d1e-a002-df30af772f3b)
  2793. )
  2794. (wire (pts (xy 189.23 74.93) (xy 189.23 85.09))
  2795. (stroke (width 0) (type default) (color 0 0 0 0))
  2796. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  2797. )
  2798. (wire (pts (xy 336.55 27.94) (xy 326.39 27.94))
  2799. (stroke (width 0) (type default) (color 0 0 0 0))
  2800. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  2801. )
  2802. (wire (pts (xy 347.98 207.01) (xy 347.98 204.47))
  2803. (stroke (width 0) (type default) (color 0 0 0 0))
  2804. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  2805. )
  2806. (wire (pts (xy 336.55 35.56) (xy 336.55 27.94))
  2807. (stroke (width 0) (type default) (color 0 0 0 0))
  2808. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  2809. )
  2810. (wire (pts (xy 172.72 250.19) (xy 185.42 250.19))
  2811. (stroke (width 0) (type default) (color 0 0 0 0))
  2812. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  2813. )
  2814. (wire (pts (xy 347.98 209.55) (xy 347.98 207.01))
  2815. (stroke (width 0) (type default) (color 0 0 0 0))
  2816. (uuid 386ad9e3-71fa-420f-8722-88548b024fc5)
  2817. )
  2818. (wire (pts (xy 185.42 250.19) (xy 200.66 250.19))
  2819. (stroke (width 0) (type default) (color 0 0 0 0))
  2820. (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
  2821. )
  2822. (wire (pts (xy 171.45 204.47) (xy 147.32 204.47))
  2823. (stroke (width 0) (type default) (color 0 0 0 0))
  2824. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  2825. )
  2826. (wire (pts (xy 340.36 53.34) (xy 325.12 53.34))
  2827. (stroke (width 0) (type default) (color 0 0 0 0))
  2828. (uuid 3b9c5ffd-e59b-402d-8c5e-052f7ca643a4)
  2829. )
  2830. (wire (pts (xy 184.15 186.69) (xy 184.15 187.96))
  2831. (stroke (width 0) (type default) (color 0 0 0 0))
  2832. (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)
  2833. )
  2834. (wire (pts (xy 30.48 240.03) (xy 30.48 250.19))
  2835. (stroke (width 0) (type default) (color 0 0 0 0))
  2836. (uuid 3c121a93-b189-409b-a104-2bdd37ff0b51)
  2837. )
  2838. (wire (pts (xy 378.46 40.64) (xy 401.32 40.64))
  2839. (stroke (width 0) (type default) (color 0 0 0 0))
  2840. (uuid 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0)
  2841. )
  2842. (wire (pts (xy 158.75 181.61) (xy 167.64 181.61))
  2843. (stroke (width 0) (type default) (color 0 0 0 0))
  2844. (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333)
  2845. )
  2846. (wire (pts (xy 351.79 176.53) (xy 336.55 176.53))
  2847. (stroke (width 0) (type default) (color 0 0 0 0))
  2848. (uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
  2849. )
  2850. (wire (pts (xy 30.48 256.54) (xy 30.48 250.19))
  2851. (stroke (width 0) (type default) (color 0 0 0 0))
  2852. (uuid 3f1ab70d-3263-42b5-9c61-0360188ff2b7)
  2853. )
  2854. (wire (pts (xy 233.68 190.5) (xy 233.68 193.04))
  2855. (stroke (width 0) (type default) (color 0 0 0 0))
  2856. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  2857. )
  2858. (wire (pts (xy 172.72 168.91) (xy 172.72 167.64))
  2859. (stroke (width 0) (type default) (color 0 0 0 0))
  2860. (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7)
  2861. )
  2862. (wire (pts (xy 81.28 195.58) (xy 78.74 195.58))
  2863. (stroke (width 0) (type default) (color 0 0 0 0))
  2864. (uuid 41524d81-a7f7-45af-a8c6-15609b68d1fd)
  2865. )
  2866. (wire (pts (xy 118.11 144.78) (xy 133.35 144.78))
  2867. (stroke (width 0) (type default) (color 0 0 0 0))
  2868. (uuid 41ab46ed-40f5-461d-81aa-1f02dc069a49)
  2869. )
  2870. (wire (pts (xy 201.93 172.72) (xy 201.93 177.8))
  2871. (stroke (width 0) (type default) (color 0 0 0 0))
  2872. (uuid 42ecdba3-f348-4384-8d4b-cd21e56f3613)
  2873. )
  2874. (wire (pts (xy 233.68 177.8) (xy 233.68 175.26))
  2875. (stroke (width 0) (type default) (color 0 0 0 0))
  2876. (uuid 4346fe55-f906-453a-b81a-1c013104a598)
  2877. )
  2878. (wire (pts (xy 342.9 200.66) (xy 342.9 196.85))
  2879. (stroke (width 0) (type default) (color 0 0 0 0))
  2880. (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
  2881. )
  2882. (wire (pts (xy 207.01 127) (xy 207.01 129.54))
  2883. (stroke (width 0) (type default) (color 0 0 0 0))
  2884. (uuid 444b2eaf-241d-42e5-8717-27a83d099c5b)
  2885. )
  2886. (wire (pts (xy 204.47 175.26) (xy 208.28 175.26))
  2887. (stroke (width 0) (type default) (color 0 0 0 0))
  2888. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  2889. )
  2890. (wire (pts (xy 147.32 181.61) (xy 158.75 181.61))
  2891. (stroke (width 0) (type default) (color 0 0 0 0))
  2892. (uuid 465137b4-f6f7-4d51-9b40-b161947d5cc1)
  2893. )
  2894. (wire (pts (xy 201.93 129.54) (xy 207.01 129.54))
  2895. (stroke (width 0) (type default) (color 0 0 0 0))
  2896. (uuid 469f89fd-f629-46b7-b106-a0088168c9ec)
  2897. )
  2898. (wire (pts (xy 378.46 43.18) (xy 401.32 43.18))
  2899. (stroke (width 0) (type default) (color 0 0 0 0))
  2900. (uuid 47957453-fce7-4d98-833c-e34bb8a852a5)
  2901. )
  2902. (wire (pts (xy 121.92 186.69) (xy 133.35 186.69))
  2903. (stroke (width 0) (type default) (color 0 0 0 0))
  2904. (uuid 47993d80-a37e-426e-90c9-fd54b49ed166)
  2905. )
  2906. (wire (pts (xy 36.83 26.67) (xy 36.83 30.48))
  2907. (stroke (width 0) (type default) (color 0 0 0 0))
  2908. (uuid 48ad6ea8-19f0-4121-9a0a-6370eae9c47e)
  2909. )
  2910. (wire (pts (xy 246.38 73.66) (xy 245.11 73.66))
  2911. (stroke (width 0) (type default) (color 0 0 0 0))
  2912. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  2913. )
  2914. (wire (pts (xy 175.26 80.01) (xy 175.26 77.47))
  2915. (stroke (width 0) (type default) (color 0 0 0 0))
  2916. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  2917. )
  2918. (wire (pts (xy 147.32 209.55) (xy 171.45 209.55))
  2919. (stroke (width 0) (type default) (color 0 0 0 0))
  2920. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  2921. )
  2922. (wire (pts (xy 119.38 177.8) (xy 129.54 177.8))
  2923. (stroke (width 0) (type default) (color 0 0 0 0))
  2924. (uuid 4a12717c-033e-45fd-b567-c90657bf79e6)
  2925. )
  2926. (wire (pts (xy 181.61 167.64) (xy 172.72 167.64))
  2927. (stroke (width 0) (type default) (color 0 0 0 0))
  2928. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  2929. )
  2930. (wire (pts (xy 213.36 250.19) (xy 228.6 250.19))
  2931. (stroke (width 0) (type default) (color 0 0 0 0))
  2932. (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)
  2933. )
  2934. (wire (pts (xy 147.32 191.77) (xy 163.83 191.77))
  2935. (stroke (width 0) (type default) (color 0 0 0 0))
  2936. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  2937. )
  2938. (wire (pts (xy 204.47 162.56) (xy 233.68 162.56))
  2939. (stroke (width 0) (type default) (color 0 0 0 0))
  2940. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  2941. )
  2942. (wire (pts (xy 203.2 187.96) (xy 208.28 187.96))
  2943. (stroke (width 0) (type default) (color 0 0 0 0))
  2944. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  2945. )
  2946. (wire (pts (xy 57.15 234.95) (xy 54.61 234.95))
  2947. (stroke (width 0) (type default) (color 0 0 0 0))
  2948. (uuid 4d51bc15-1f84-46be-8e16-e836b10f854e)
  2949. )
  2950. (wire (pts (xy 175.26 74.93) (xy 189.23 74.93))
  2951. (stroke (width 0) (type default) (color 0 0 0 0))
  2952. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  2953. )
  2954. (wire (pts (xy 340.36 58.42) (xy 325.12 58.42))
  2955. (stroke (width 0) (type default) (color 0 0 0 0))
  2956. (uuid 4ef07d45-f940-4cb6-bb96-2ddec13fd099)
  2957. )
  2958. (wire (pts (xy 127 175.26) (xy 129.54 175.26))
  2959. (stroke (width 0) (type default) (color 0 0 0 0))
  2960. (uuid 4ef7afe6-1b6e-4f5e-a50a-1aa5975c6b34)
  2961. )
  2962. (wire (pts (xy 200.66 234.95) (xy 213.36 234.95))
  2963. (stroke (width 0) (type default) (color 0 0 0 0))
  2964. (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
  2965. )
  2966. (wire (pts (xy 132.08 168.91) (xy 144.78 168.91))
  2967. (stroke (width 0) (type default) (color 0 0 0 0))
  2968. (uuid 4f60f63c-b17b-4179-94ce-47133abca8c5)
  2969. )
  2970. (wire (pts (xy 77.47 194.31) (xy 78.74 194.31))
  2971. (stroke (width 0) (type default) (color 0 0 0 0))
  2972. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  2973. )
  2974. (wire (pts (xy 78.74 196.85) (xy 101.6 196.85))
  2975. (stroke (width 0) (type default) (color 0 0 0 0))
  2976. (uuid 51f5536d-48d2-4807-be44-93f427952b0e)
  2977. )
  2978. (wire (pts (xy 36.83 25.4) (xy 36.83 26.67))
  2979. (stroke (width 0) (type default) (color 0 0 0 0))
  2980. (uuid 53dffb3b-ac45-42a4-8f71-c36ca50fc21c)
  2981. )
  2982. (wire (pts (xy 121.92 191.77) (xy 133.35 191.77))
  2983. (stroke (width 0) (type default) (color 0 0 0 0))
  2984. (uuid 54093c93-5e7e-4c8d-8d94-40c077747c12)
  2985. )
  2986. (wire (pts (xy 269.24 234.95) (xy 284.48 234.95))
  2987. (stroke (width 0) (type default) (color 0 0 0 0))
  2988. (uuid 54212c01-b363-47b8-a145-45c40df316f4)
  2989. )
  2990. (wire (pts (xy 172.72 62.23) (xy 175.26 62.23))
  2991. (stroke (width 0) (type default) (color 0 0 0 0))
  2992. (uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
  2993. )
  2994. (wire (pts (xy 214.63 207.01) (xy 219.71 207.01))
  2995. (stroke (width 0) (type default) (color 0 0 0 0))
  2996. (uuid 562b7df8-cdaa-48ed-bd95-bf2fa6dac339)
  2997. )
  2998. (wire (pts (xy 207.01 134.62) (xy 207.01 137.16))
  2999. (stroke (width 0) (type default) (color 0 0 0 0))
  3000. (uuid 5698a460-6e24-4857-84d8-4a43acd2325d)
  3001. )
  3002. (wire (pts (xy 129.54 162.56) (xy 132.08 162.56))
  3003. (stroke (width 0) (type default) (color 0 0 0 0))
  3004. (uuid 58241914-707f-40f6-910f-b6262d78bc7e)
  3005. )
  3006. (wire (pts (xy 151.13 140.97) (xy 156.21 140.97))
  3007. (stroke (width 0) (type default) (color 0 0 0 0))
  3008. (uuid 58a87288-e2bf-4c88-9871-a753efc69e9d)
  3009. )
  3010. (wire (pts (xy 175.26 90.17) (xy 175.26 92.71))
  3011. (stroke (width 0) (type default) (color 0 0 0 0))
  3012. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  3013. )
  3014. (wire (pts (xy 342.9 167.64) (xy 332.74 167.64))
  3015. (stroke (width 0) (type default) (color 0 0 0 0))
  3016. (uuid 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
  3017. )
  3018. (wire (pts (xy 78.74 198.12) (xy 78.74 196.85))
  3019. (stroke (width 0) (type default) (color 0 0 0 0))
  3020. (uuid 5a319d05-1a85-43fe-a179-ebcee7212a03)
  3021. )
  3022. (wire (pts (xy 394.97 58.42) (xy 378.46 58.42))
  3023. (stroke (width 0) (type default) (color 0 0 0 0))
  3024. (uuid 5a33f5a4-a470-4c04-9e2d-532b5f01a5d6)
  3025. )
  3026. (wire (pts (xy 196.85 137.16) (xy 181.61 137.16))
  3027. (stroke (width 0) (type default) (color 0 0 0 0))
  3028. (uuid 5a397f61-35c4-4c18-9dcd-73a2d44cc9af)
  3029. )
  3030. (wire (pts (xy 133.35 128.27) (xy 133.35 130.81))
  3031. (stroke (width 0) (type default) (color 0 0 0 0))
  3032. (uuid 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
  3033. )
  3034. (wire (pts (xy 347.98 212.09) (xy 347.98 209.55))
  3035. (stroke (width 0) (type default) (color 0 0 0 0))
  3036. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  3037. )
  3038. (wire (pts (xy 231.14 177.8) (xy 233.68 177.8))
  3039. (stroke (width 0) (type default) (color 0 0 0 0))
  3040. (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861)
  3041. )
  3042. (wire (pts (xy 334.01 71.12) (xy 334.01 68.58))
  3043. (stroke (width 0) (type default) (color 0 0 0 0))
  3044. (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236)
  3045. )
  3046. (wire (pts (xy 132.08 87.63) (xy 148.59 87.63))
  3047. (stroke (width 0) (type default) (color 0 0 0 0))
  3048. (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
  3049. )
  3050. (wire (pts (xy 208.28 193.04) (xy 208.28 209.55))
  3051. (stroke (width 0) (type default) (color 0 0 0 0))
  3052. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  3053. )
  3054. (wire (pts (xy 116.84 234.95) (xy 129.54 234.95))
  3055. (stroke (width 0) (type default) (color 0 0 0 0))
  3056. (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
  3057. )
  3058. (wire (pts (xy 378.46 63.5) (xy 394.97 63.5))
  3059. (stroke (width 0) (type default) (color 0 0 0 0))
  3060. (uuid 6133fb54-5524-482e-9ae2-adbf29aced9e)
  3061. )
  3062. (polyline (pts (xy 302.26 99.06) (xy 302.26 12.7))
  3063. (stroke (width 0) (type default) (color 0 0 0 0))
  3064. (uuid 61a18b62-4111-4a9d-8fca-04c4c6f90cc3)
  3065. )
  3066. (wire (pts (xy 185.42 69.85) (xy 195.58 69.85))
  3067. (stroke (width 0) (type default) (color 0 0 0 0))
  3068. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3069. )
  3070. (wire (pts (xy 340.36 63.5) (xy 323.85 63.5))
  3071. (stroke (width 0) (type default) (color 0 0 0 0))
  3072. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  3073. )
  3074. (wire (pts (xy 379.73 173.99) (xy 377.19 173.99))
  3075. (stroke (width 0) (type default) (color 0 0 0 0))
  3076. (uuid 665081dc-8354-4d41-8855-bde8901aee4c)
  3077. )
  3078. (wire (pts (xy 119.38 161.29) (xy 129.54 161.29))
  3079. (stroke (width 0) (type default) (color 0 0 0 0))
  3080. (uuid 669968cc-e307-4791-a7a1-90236822137c)
  3081. )
  3082. (wire (pts (xy 231.14 185.42) (xy 256.54 185.42))
  3083. (stroke (width 0) (type default) (color 0 0 0 0))
  3084. (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec)
  3085. )
  3086. (wire (pts (xy 29.21 36.83) (xy 36.83 36.83))
  3087. (stroke (width 0) (type default) (color 0 0 0 0))
  3088. (uuid 677c56b5-fc0e-48fb-a9bb-76dcc53cea33)
  3089. )
  3090. (wire (pts (xy 45.72 137.16) (xy 45.72 134.62))
  3091. (stroke (width 0) (type default) (color 0 0 0 0))
  3092. (uuid 680c3e83-f590-4924-85a1-36d51b076683)
  3093. )
  3094. (wire (pts (xy 53.34 78.74) (xy 67.31 78.74))
  3095. (stroke (width 0) (type default) (color 0 0 0 0))
  3096. (uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
  3097. )
  3098. (wire (pts (xy 132.08 128.27) (xy 133.35 128.27))
  3099. (stroke (width 0) (type default) (color 0 0 0 0))
  3100. (uuid 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f)
  3101. )
  3102. (wire (pts (xy 130.81 135.89) (xy 130.81 142.24))
  3103. (stroke (width 0) (type default) (color 0 0 0 0))
  3104. (uuid 6a25c4e1-7129-430c-892b-6eecb6ffdb47)
  3105. )
  3106. (wire (pts (xy 336.55 205.74) (xy 336.55 212.09))
  3107. (stroke (width 0) (type default) (color 0 0 0 0))
  3108. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  3109. )
  3110. (wire (pts (xy 77.47 73.66) (xy 77.47 77.47))
  3111. (stroke (width 0) (type default) (color 0 0 0 0))
  3112. (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e)
  3113. )
  3114. (wire (pts (xy 195.58 77.47) (xy 195.58 69.85))
  3115. (stroke (width 0) (type default) (color 0 0 0 0))
  3116. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3117. )
  3118. (wire (pts (xy 38.1 99.06) (xy 30.48 99.06))
  3119. (stroke (width 0) (type default) (color 0 0 0 0))
  3120. (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
  3121. )
  3122. (wire (pts (xy 340.36 50.8) (xy 325.12 50.8))
  3123. (stroke (width 0) (type default) (color 0 0 0 0))
  3124. (uuid 6b8c153e-62fe-42fb-aa7f-caef740ef6fd)
  3125. )
  3126. (wire (pts (xy 351.79 204.47) (xy 347.98 204.47))
  3127. (stroke (width 0) (type default) (color 0 0 0 0))
  3128. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  3129. )
  3130. (wire (pts (xy 321.31 165.1) (xy 321.31 167.64))
  3131. (stroke (width 0) (type default) (color 0 0 0 0))
  3132. (uuid 6f44a349-1ba9-4965-b217-aa1589a07228)
  3133. )
  3134. (wire (pts (xy 166.37 129.54) (xy 166.37 127))
  3135. (stroke (width 0) (type default) (color 0 0 0 0))
  3136. (uuid 6fd21292-6577-40e1-bbda-18906b5e9f6f)
  3137. )
  3138. (polyline (pts (xy 110.49 176.53) (xy 12.7 176.53))
  3139. (stroke (width 0) (type default) (color 0 0 0 0))
  3140. (uuid 7043f61a-4f1e-4cab-9031-a6449e41a893)
  3141. )
  3142. (wire (pts (xy 196.85 132.08) (xy 181.61 132.08))
  3143. (stroke (width 0) (type default) (color 0 0 0 0))
  3144. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3145. )
  3146. (wire (pts (xy 185.42 234.95) (xy 200.66 234.95))
  3147. (stroke (width 0) (type default) (color 0 0 0 0))
  3148. (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
  3149. )
  3150. (polyline (pts (xy 313.69 148.59) (xy 419.1 148.59))
  3151. (stroke (width 0) (type default) (color 0 0 0 0))
  3152. (uuid 717b25a7-c9c2-4f6f-b744-a96113325c99)
  3153. )
  3154. (wire (pts (xy 77.47 191.77) (xy 78.74 191.77))
  3155. (stroke (width 0) (type default) (color 0 0 0 0))
  3156. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  3157. )
  3158. (wire (pts (xy 340.36 40.64) (xy 325.12 40.64))
  3159. (stroke (width 0) (type default) (color 0 0 0 0))
  3160. (uuid 720ec55a-7c69-4064-b792-ef3dbba4eab9)
  3161. )
  3162. (wire (pts (xy 172.72 60.96) (xy 172.72 62.23))
  3163. (stroke (width 0) (type default) (color 0 0 0 0))
  3164. (uuid 7247fe96-7885-4063-8282-ea2fd2b28b0d)
  3165. )
  3166. (wire (pts (xy 207.01 127) (xy 201.93 127))
  3167. (stroke (width 0) (type default) (color 0 0 0 0))
  3168. (uuid 7255cbd1-8d38-4545-be9a-7fc5488ef942)
  3169. )
  3170. (wire (pts (xy 233.68 193.04) (xy 233.68 196.85))
  3171. (stroke (width 0) (type default) (color 0 0 0 0))
  3172. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3173. )
  3174. (wire (pts (xy 326.39 27.94) (xy 317.5 27.94))
  3175. (stroke (width 0) (type default) (color 0 0 0 0))
  3176. (uuid 7274c82d-0cb9-47de-b093-7d848f491410)
  3177. )
  3178. (wire (pts (xy 219.71 133.35) (xy 241.3 133.35))
  3179. (stroke (width 0) (type default) (color 0 0 0 0))
  3180. (uuid 72f9157b-77da-4a6d-9880-0711b21f6e23)
  3181. )
  3182. (wire (pts (xy 355.6 73.66) (xy 355.6 96.52))
  3183. (stroke (width 0) (type default) (color 0 0 0 0))
  3184. (uuid 74096bdc-b668-408c-af3a-b048c20bd605)
  3185. )
  3186. (wire (pts (xy 340.36 55.88) (xy 325.12 55.88))
  3187. (stroke (width 0) (type default) (color 0 0 0 0))
  3188. (uuid 765684c2-53b3-4ef7-bd1b-7a4a73d87b76)
  3189. )
  3190. (wire (pts (xy 340.36 35.56) (xy 336.55 35.56))
  3191. (stroke (width 0) (type default) (color 0 0 0 0))
  3192. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  3193. )
  3194. (wire (pts (xy 377.19 179.07) (xy 383.54 179.07))
  3195. (stroke (width 0) (type default) (color 0 0 0 0))
  3196. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  3197. )
  3198. (wire (pts (xy 336.55 212.09) (xy 347.98 212.09))
  3199. (stroke (width 0) (type default) (color 0 0 0 0))
  3200. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  3201. )
  3202. (wire (pts (xy 121.92 203.2) (xy 133.35 203.2))
  3203. (stroke (width 0) (type default) (color 0 0 0 0))
  3204. (uuid 77ef8901-6325-4427-901a-4acd9074dd7b)
  3205. )
  3206. (wire (pts (xy 351.79 167.64) (xy 342.9 167.64))
  3207. (stroke (width 0) (type default) (color 0 0 0 0))
  3208. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  3209. )
  3210. (wire (pts (xy 121.92 200.66) (xy 133.35 200.66))
  3211. (stroke (width 0) (type default) (color 0 0 0 0))
  3212. (uuid 7943ed8c-e760-4ace-9c5f-baf5589fae39)
  3213. )
  3214. (wire (pts (xy 284.48 240.03) (xy 284.48 250.19))
  3215. (stroke (width 0) (type default) (color 0 0 0 0))
  3216. (uuid 79770cd5-32d7-429a-8248-0d9e6212231a)
  3217. )
  3218. (wire (pts (xy 29.21 36.83) (xy 29.21 39.37))
  3219. (stroke (width 0) (type default) (color 0 0 0 0))
  3220. (uuid 7ab8d0fc-8abe-47f7-ba88-5e4166d9e70e)
  3221. )
  3222. (wire (pts (xy 276.86 242.57) (xy 289.56 242.57))
  3223. (stroke (width 0) (type default) (color 0 0 0 0))
  3224. (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041)
  3225. )
  3226. (wire (pts (xy 101.6 234.95) (xy 116.84 234.95))
  3227. (stroke (width 0) (type default) (color 0 0 0 0))
  3228. (uuid 7c04618d-9115-4179-b234-a8faf854ea92)
  3229. )
  3230. (wire (pts (xy 347.98 204.47) (xy 347.98 201.93))
  3231. (stroke (width 0) (type default) (color 0 0 0 0))
  3232. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  3233. )
  3234. (wire (pts (xy 132.08 167.64) (xy 132.08 168.91))
  3235. (stroke (width 0) (type default) (color 0 0 0 0))
  3236. (uuid 7d095fb9-c85e-44fc-83e3-59f221a973db)
  3237. )
  3238. (wire (pts (xy 379.73 167.64) (xy 379.73 168.91))
  3239. (stroke (width 0) (type default) (color 0 0 0 0))
  3240. (uuid 7df9ce6f-7f38-4582-a049-7f92faf1abc9)
  3241. )
  3242. (wire (pts (xy 99.06 19.05) (xy 102.87 19.05))
  3243. (stroke (width 0) (type default) (color 0 0 0 0))
  3244. (uuid 7e809a74-bbd3-4d41-bb93-4477e7025903)
  3245. )
  3246. (wire (pts (xy 340.36 33.02) (xy 326.39 33.02))
  3247. (stroke (width 0) (type default) (color 0 0 0 0))
  3248. (uuid 7f064424-06a6-4f5b-87d6-1970ae527766)
  3249. )
  3250. (polyline (pts (xy 12.7 115.57) (xy 278.13 115.57))
  3251. (stroke (width 0) (type default) (color 0 0 0 0))
  3252. (uuid 80b9a57f-3326-43ca-b6ca-5e911992b3c4)
  3253. )
  3254. (wire (pts (xy 129.54 250.19) (xy 144.78 250.19))
  3255. (stroke (width 0) (type default) (color 0 0 0 0))
  3256. (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
  3257. )
  3258. (wire (pts (xy 172.72 95.25) (xy 172.72 92.71))
  3259. (stroke (width 0) (type default) (color 0 0 0 0))
  3260. (uuid 81ab7ed7-7160-4650-b711-4daa2902dc8b)
  3261. )
  3262. (wire (pts (xy 201.93 134.62) (xy 207.01 134.62))
  3263. (stroke (width 0) (type default) (color 0 0 0 0))
  3264. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  3265. )
  3266. (wire (pts (xy 41.91 194.31) (xy 36.83 194.31))
  3267. (stroke (width 0) (type default) (color 0 0 0 0))
  3268. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  3269. )
  3270. (wire (pts (xy 207.01 129.54) (xy 207.01 132.08))
  3271. (stroke (width 0) (type default) (color 0 0 0 0))
  3272. (uuid 848c6095-3966-404d-9f2a-51150fd8dc54)
  3273. )
  3274. (wire (pts (xy 30.48 99.06) (xy 30.48 104.14))
  3275. (stroke (width 0) (type default) (color 0 0 0 0))
  3276. (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
  3277. )
  3278. (wire (pts (xy 381 214.63) (xy 381 217.17))
  3279. (stroke (width 0) (type default) (color 0 0 0 0))
  3280. (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5)
  3281. )
  3282. (wire (pts (xy 77.47 196.85) (xy 78.74 196.85))
  3283. (stroke (width 0) (type default) (color 0 0 0 0))
  3284. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  3285. )
  3286. (wire (pts (xy 175.26 77.47) (xy 195.58 77.47))
  3287. (stroke (width 0) (type default) (color 0 0 0 0))
  3288. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  3289. )
  3290. (wire (pts (xy 88.9 229.87) (xy 88.9 234.95))
  3291. (stroke (width 0) (type default) (color 0 0 0 0))
  3292. (uuid 88610282-a92d-4c3d-917a-ea95d59e0759)
  3293. )
  3294. (polyline (pts (xy 12.7 49.53) (xy 276.86 49.53))
  3295. (stroke (width 0) (type default) (color 0 0 0 0))
  3296. (uuid 897277a3-b7ce-4d18-8c5f-1c984a246298)
  3297. )
  3298. (wire (pts (xy 351.79 172.72) (xy 351.79 171.45))
  3299. (stroke (width 0) (type default) (color 0 0 0 0))
  3300. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  3301. )
  3302. (wire (pts (xy 368.3 73.66) (xy 379.73 73.66))
  3303. (stroke (width 0) (type default) (color 0 0 0 0))
  3304. (uuid 89df70f4-3579-42b9-861e-6beb04a3b25e)
  3305. )
  3306. (wire (pts (xy 347.98 207.01) (xy 351.79 207.01))
  3307. (stroke (width 0) (type default) (color 0 0 0 0))
  3308. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  3309. )
  3310. (wire (pts (xy 45.72 165.1) (xy 45.72 162.56))
  3311. (stroke (width 0) (type default) (color 0 0 0 0))
  3312. (uuid 8ade7975-64a0-440a-8545-11958836bf48)
  3313. )
  3314. (wire (pts (xy 350.52 73.66) (xy 350.52 90.17))
  3315. (stroke (width 0) (type default) (color 0 0 0 0))
  3316. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  3317. )
  3318. (wire (pts (xy 201.93 177.8) (xy 208.28 177.8))
  3319. (stroke (width 0) (type default) (color 0 0 0 0))
  3320. (uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
  3321. )
  3322. (wire (pts (xy 351.79 168.91) (xy 351.79 167.64))
  3323. (stroke (width 0) (type default) (color 0 0 0 0))
  3324. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  3325. )
  3326. (wire (pts (xy 351.79 196.85) (xy 342.9 196.85))
  3327. (stroke (width 0) (type default) (color 0 0 0 0))
  3328. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  3329. )
  3330. (wire (pts (xy 121.92 96.52) (xy 121.92 92.71))
  3331. (stroke (width 0) (type default) (color 0 0 0 0))
  3332. (uuid 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129)
  3333. )
  3334. (wire (pts (xy 256.54 250.19) (xy 269.24 250.19))
  3335. (stroke (width 0) (type default) (color 0 0 0 0))
  3336. (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
  3337. )
  3338. (wire (pts (xy 22.86 26.67) (xy 22.86 30.48))
  3339. (stroke (width 0) (type default) (color 0 0 0 0))
  3340. (uuid 90ac412a-d9d6-41b9-92c8-22bd6b5f3a14)
  3341. )
  3342. (wire (pts (xy 379.73 170.18) (xy 379.73 171.45))
  3343. (stroke (width 0) (type default) (color 0 0 0 0))
  3344. (uuid 90d503cf-92b2-4120-a4b0-03a2eddde893)
  3345. )
  3346. (wire (pts (xy 38.1 100.33) (xy 45.72 100.33))
  3347. (stroke (width 0) (type default) (color 0 0 0 0))
  3348. (uuid 90fa0465-7fe5-474b-8e7c-9f955c02a0f6)
  3349. )
  3350. (wire (pts (xy 88.9 234.95) (xy 101.6 234.95))
  3351. (stroke (width 0) (type default) (color 0 0 0 0))
  3352. (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
  3353. )
  3354. (wire (pts (xy 205.74 190.5) (xy 205.74 204.47))
  3355. (stroke (width 0) (type default) (color 0 0 0 0))
  3356. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  3357. )
  3358. (wire (pts (xy 160.02 62.23) (xy 172.72 62.23))
  3359. (stroke (width 0) (type default) (color 0 0 0 0))
  3360. (uuid 92a23ed4-a5ea-4cea-bc33-0a83191a0d32)
  3361. )
  3362. (wire (pts (xy 377.19 171.45) (xy 379.73 171.45))
  3363. (stroke (width 0) (type default) (color 0 0 0 0))
  3364. (uuid 946404ba-9297-43ec-9d67-30184041145f)
  3365. )
  3366. (wire (pts (xy 15.24 242.57) (xy 35.56 242.57))
  3367. (stroke (width 0) (type default) (color 0 0 0 0))
  3368. (uuid 94c3d0e3-d7fb-421d-bbb4-5c800d76c809)
  3369. )
  3370. (wire (pts (xy 163.83 191.77) (xy 163.83 196.85))
  3371. (stroke (width 0) (type default) (color 0 0 0 0))
  3372. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  3373. )
  3374. (wire (pts (xy 119.38 57.15) (xy 119.38 62.23))
  3375. (stroke (width 0) (type default) (color 0 0 0 0))
  3376. (uuid 974c48bf-534e-4335-98e1-b0426c783e99)
  3377. )
  3378. (polyline (pts (xy 276.86 11.43) (xy 278.13 152.4))
  3379. (stroke (width 0) (type default) (color 0 0 0 0))
  3380. (uuid 97693043-81ba-44a2-b87b-aca6193e0970)
  3381. )
  3382. (wire (pts (xy 121.92 189.23) (xy 133.35 189.23))
  3383. (stroke (width 0) (type default) (color 0 0 0 0))
  3384. (uuid 981ff4de-0330-4757-b746-0cb983df5e7c)
  3385. )
  3386. (wire (pts (xy 233.68 162.56) (xy 233.68 175.26))
  3387. (stroke (width 0) (type default) (color 0 0 0 0))
  3388. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3389. )
  3390. (wire (pts (xy 132.08 67.31) (xy 148.59 67.31))
  3391. (stroke (width 0) (type default) (color 0 0 0 0))
  3392. (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
  3393. )
  3394. (wire (pts (xy 127 167.64) (xy 127 168.91))
  3395. (stroke (width 0) (type default) (color 0 0 0 0))
  3396. (uuid 98e3eabb-9184-4659-a50e-685f71138a57)
  3397. )
  3398. (wire (pts (xy 99.06 77.47) (xy 111.76 77.47))
  3399. (stroke (width 0) (type default) (color 0 0 0 0))
  3400. (uuid 99186658-0361-40ba-ae93-62f23c5622e6)
  3401. )
  3402. (wire (pts (xy 284.48 250.19) (xy 297.18 250.19))
  3403. (stroke (width 0) (type default) (color 0 0 0 0))
  3404. (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c)
  3405. )
  3406. (wire (pts (xy 29.21 36.83) (xy 22.86 36.83))
  3407. (stroke (width 0) (type default) (color 0 0 0 0))
  3408. (uuid 997f686f-a26d-4f9f-ba00-4b422b109969)
  3409. )
  3410. (wire (pts (xy 27.94 199.39) (xy 41.91 199.39))
  3411. (stroke (width 0) (type default) (color 0 0 0 0))
  3412. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  3413. )
  3414. (wire (pts (xy 248.92 242.57) (xy 261.62 242.57))
  3415. (stroke (width 0) (type default) (color 0 0 0 0))
  3416. (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
  3417. )
  3418. (wire (pts (xy 30.48 250.19) (xy 43.18 250.19))
  3419. (stroke (width 0) (type default) (color 0 0 0 0))
  3420. (uuid 9b07d532-5f76-4469-8dbf-25ac27eef589)
  3421. )
  3422. (wire (pts (xy 129.54 161.29) (xy 129.54 162.56))
  3423. (stroke (width 0) (type default) (color 0 0 0 0))
  3424. (uuid 9b82e80e-a228-4b0d-83c1-95993c3989ec)
  3425. )
  3426. (wire (pts (xy 377.19 168.91) (xy 379.73 168.91))
  3427. (stroke (width 0) (type default) (color 0 0 0 0))
  3428. (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
  3429. )
  3430. (wire (pts (xy 334.01 68.58) (xy 340.36 68.58))
  3431. (stroke (width 0) (type default) (color 0 0 0 0))
  3432. (uuid 9cacb6ad-6bbf-4ffe-b0a4-2df24045e046)
  3433. )
  3434. (wire (pts (xy 189.23 162.56) (xy 189.23 167.64))
  3435. (stroke (width 0) (type default) (color 0 0 0 0))
  3436. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  3437. )
  3438. (wire (pts (xy 175.26 92.71) (xy 172.72 92.71))
  3439. (stroke (width 0) (type default) (color 0 0 0 0))
  3440. (uuid 9de304ba-fba7-4896-b969-9d87a3522d74)
  3441. )
  3442. (wire (pts (xy 351.79 186.69) (xy 336.55 186.69))
  3443. (stroke (width 0) (type default) (color 0 0 0 0))
  3444. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  3445. )
  3446. (wire (pts (xy 312.42 33.02) (xy 317.5 33.02))
  3447. (stroke (width 0) (type default) (color 0 0 0 0))
  3448. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  3449. )
  3450. (wire (pts (xy 246.38 88.9) (xy 229.87 88.9))
  3451. (stroke (width 0) (type default) (color 0 0 0 0))
  3452. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  3453. )
  3454. (wire (pts (xy 53.34 78.74) (xy 53.34 81.28))
  3455. (stroke (width 0) (type default) (color 0 0 0 0))
  3456. (uuid 9f782c92-a5e8-49db-bfda-752b35522ce4)
  3457. )
  3458. (wire (pts (xy 130.81 128.27) (xy 132.08 128.27))
  3459. (stroke (width 0) (type default) (color 0 0 0 0))
  3460. (uuid a08c061a-7f5b-4909-b673-0d0a59a012a3)
  3461. )
  3462. (wire (pts (xy 351.79 194.31) (xy 336.55 194.31))
  3463. (stroke (width 0) (type default) (color 0 0 0 0))
  3464. (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714)
  3465. )
  3466. (polyline (pts (xy 110.49 152.4) (xy 278.13 152.4))
  3467. (stroke (width 0) (type default) (color 0 0 0 0))
  3468. (uuid a1701438-3c8b-4b49-8695-36ec7f9ae4d2)
  3469. )
  3470. (wire (pts (xy 189.23 177.8) (xy 189.23 181.61))
  3471. (stroke (width 0) (type default) (color 0 0 0 0))
  3472. (uuid a22bec73-a69c-4ab7-8d8d-f6a6b09f925f)
  3473. )
  3474. (wire (pts (xy 229.87 86.36) (xy 246.38 86.36))
  3475. (stroke (width 0) (type default) (color 0 0 0 0))
  3476. (uuid a48f5fff-52e4-4ae8-8faa-7084c7ae8a28)
  3477. )
  3478. (wire (pts (xy 196.85 124.46) (xy 181.61 124.46))
  3479. (stroke (width 0) (type default) (color 0 0 0 0))
  3480. (uuid a49e8613-3cd2-48ed-8977-6bb5023f7722)
  3481. )
  3482. (wire (pts (xy 105.41 57.15) (xy 119.38 57.15))
  3483. (stroke (width 0) (type default) (color 0 0 0 0))
  3484. (uuid a6706c54-6a82-42d1-a6c9-48341690e19d)
  3485. )
  3486. (polyline (pts (xy 302.26 99.06) (xy 419.1 99.06))
  3487. (stroke (width 0) (type default) (color 0 0 0 0))
  3488. (uuid a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05)
  3489. )
  3490. (wire (pts (xy 383.54 179.07) (xy 383.54 181.61))
  3491. (stroke (width 0) (type default) (color 0 0 0 0))
  3492. (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39)
  3493. )
  3494. (wire (pts (xy 77.47 77.47) (xy 81.28 77.47))
  3495. (stroke (width 0) (type default) (color 0 0 0 0))
  3496. (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
  3497. )
  3498. (wire (pts (xy 50.8 242.57) (xy 54.61 242.57))
  3499. (stroke (width 0) (type default) (color 0 0 0 0))
  3500. (uuid aa0466c6-766f-4bb4-abf1-502a6a06f91d)
  3501. )
  3502. (wire (pts (xy 195.58 209.55) (xy 176.53 209.55))
  3503. (stroke (width 0) (type default) (color 0 0 0 0))
  3504. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  3505. )
  3506. (wire (pts (xy 208.28 190.5) (xy 205.74 190.5))
  3507. (stroke (width 0) (type default) (color 0 0 0 0))
  3508. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3509. )
  3510. (wire (pts (xy 321.31 172.72) (xy 321.31 175.26))
  3511. (stroke (width 0) (type default) (color 0 0 0 0))
  3512. (uuid acb0068c-c0e7-44cf-a209-296716acb6a2)
  3513. )
  3514. (wire (pts (xy 378.46 55.88) (xy 394.97 55.88))
  3515. (stroke (width 0) (type default) (color 0 0 0 0))
  3516. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  3517. )
  3518. (wire (pts (xy 121.92 198.12) (xy 133.35 198.12))
  3519. (stroke (width 0) (type default) (color 0 0 0 0))
  3520. (uuid acf5d924-0760-425a-996c-c1d965700be8)
  3521. )
  3522. (wire (pts (xy 181.61 162.56) (xy 189.23 162.56))
  3523. (stroke (width 0) (type default) (color 0 0 0 0))
  3524. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  3525. )
  3526. (wire (pts (xy 129.54 175.26) (xy 129.54 177.8))
  3527. (stroke (width 0) (type default) (color 0 0 0 0))
  3528. (uuid ae3d654e-1357-479f-b1a9-1d530b592cb0)
  3529. )
  3530. (wire (pts (xy 36.83 36.83) (xy 36.83 35.56))
  3531. (stroke (width 0) (type default) (color 0 0 0 0))
  3532. (uuid b0105b0b-e256-47d0-9cdf-c87e09e836fe)
  3533. )
  3534. (wire (pts (xy 22.86 36.83) (xy 22.86 35.56))
  3535. (stroke (width 0) (type default) (color 0 0 0 0))
  3536. (uuid b0a0c882-5d80-489c-8b26-bd76db9330bb)
  3537. )
  3538. (wire (pts (xy 132.08 168.91) (xy 132.08 170.18))
  3539. (stroke (width 0) (type default) (color 0 0 0 0))
  3540. (uuid b31ad105-6db3-4cf2-b655-507c8670e79c)
  3541. )
  3542. (wire (pts (xy 189.23 181.61) (xy 201.93 181.61))
  3543. (stroke (width 0) (type default) (color 0 0 0 0))
  3544. (uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544)
  3545. )
  3546. (wire (pts (xy 185.42 85.09) (xy 189.23 85.09))
  3547. (stroke (width 0) (type default) (color 0 0 0 0))
  3548. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  3549. )
  3550. (wire (pts (xy 57.15 60.96) (xy 67.31 60.96))
  3551. (stroke (width 0) (type default) (color 0 0 0 0))
  3552. (uuid b4675fcd-90dd-499b-8feb-46b51a88378c)
  3553. )
  3554. (wire (pts (xy 213.36 234.95) (xy 228.6 234.95))
  3555. (stroke (width 0) (type default) (color 0 0 0 0))
  3556. (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
  3557. )
  3558. (wire (pts (xy 327.66 38.1) (xy 340.36 38.1))
  3559. (stroke (width 0) (type default) (color 0 0 0 0))
  3560. (uuid b5ffe018-0d06-4a1b-95ee-b5763a35798d)
  3561. )
  3562. (wire (pts (xy 71.12 143.51) (xy 83.82 143.51))
  3563. (stroke (width 0) (type default) (color 0 0 0 0))
  3564. (uuid b632afec-1444-4246-8afb-cc14a57567e7)
  3565. )
  3566. (wire (pts (xy 118.11 142.24) (xy 130.81 142.24))
  3567. (stroke (width 0) (type default) (color 0 0 0 0))
  3568. (uuid b6924901-677d-424a-a3f4-52c8dd1fa5f5)
  3569. )
  3570. (wire (pts (xy 191.77 187.96) (xy 191.77 182.88))
  3571. (stroke (width 0) (type default) (color 0 0 0 0))
  3572. (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)
  3573. )
  3574. (wire (pts (xy 378.46 45.72) (xy 394.97 45.72))
  3575. (stroke (width 0) (type default) (color 0 0 0 0))
  3576. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  3577. )
  3578. (wire (pts (xy 53.34 73.66) (xy 67.31 73.66))
  3579. (stroke (width 0) (type default) (color 0 0 0 0))
  3580. (uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
  3581. )
  3582. (wire (pts (xy 172.72 92.71) (xy 160.02 92.71))
  3583. (stroke (width 0) (type default) (color 0 0 0 0))
  3584. (uuid b7dfd91c-6180-48d0-832a-f6a5a032a686)
  3585. )
  3586. (wire (pts (xy 144.78 250.19) (xy 157.48 250.19))
  3587. (stroke (width 0) (type default) (color 0 0 0 0))
  3588. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  3589. )
  3590. (wire (pts (xy 231.14 187.96) (xy 256.54 187.96))
  3591. (stroke (width 0) (type default) (color 0 0 0 0))
  3592. (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
  3593. )
  3594. (wire (pts (xy 172.72 240.03) (xy 172.72 250.19))
  3595. (stroke (width 0) (type default) (color 0 0 0 0))
  3596. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  3597. )
  3598. (wire (pts (xy 223.52 71.12) (xy 224.79 71.12))
  3599. (stroke (width 0) (type default) (color 0 0 0 0))
  3600. (uuid bb5d2eae-a96e-45dd-89aa-125fe22cc2fa)
  3601. )
  3602. (wire (pts (xy 228.6 250.19) (xy 241.3 250.19))
  3603. (stroke (width 0) (type default) (color 0 0 0 0))
  3604. (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)
  3605. )
  3606. (wire (pts (xy 36.83 26.67) (xy 40.64 26.67))
  3607. (stroke (width 0) (type default) (color 0 0 0 0))
  3608. (uuid bd19b000-28ed-4d2e-91da-ddfe9db96da3)
  3609. )
  3610. (wire (pts (xy 45.72 134.62) (xy 45.72 129.54))
  3611. (stroke (width 0) (type default) (color 0 0 0 0))
  3612. (uuid be030c62-e776-405f-97d8-4a4c1aa2e428)
  3613. )
  3614. (wire (pts (xy 378.46 33.02) (xy 402.59 33.02))
  3615. (stroke (width 0) (type default) (color 0 0 0 0))
  3616. (uuid be5a7017-fe9d-43ea-9a6a-8fe8deb78420)
  3617. )
  3618. (wire (pts (xy 184.15 187.96) (xy 191.77 187.96))
  3619. (stroke (width 0) (type default) (color 0 0 0 0))
  3620. (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)
  3621. )
  3622. (wire (pts (xy 27.94 191.77) (xy 21.59 191.77))
  3623. (stroke (width 0) (type default) (color 0 0 0 0))
  3624. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  3625. )
  3626. (wire (pts (xy 196.85 127) (xy 181.61 127))
  3627. (stroke (width 0) (type default) (color 0 0 0 0))
  3628. (uuid bf4036b4-c410-489a-b46c-abee2c31db09)
  3629. )
  3630. (wire (pts (xy 394.97 38.1) (xy 378.46 38.1))
  3631. (stroke (width 0) (type default) (color 0 0 0 0))
  3632. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  3633. )
  3634. (wire (pts (xy 144.78 240.03) (xy 144.78 250.19))
  3635. (stroke (width 0) (type default) (color 0 0 0 0))
  3636. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  3637. )
  3638. (wire (pts (xy 203.2 193.04) (xy 203.2 196.85))
  3639. (stroke (width 0) (type default) (color 0 0 0 0))
  3640. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  3641. )
  3642. (wire (pts (xy 246.38 78.74) (xy 229.87 78.74))
  3643. (stroke (width 0) (type default) (color 0 0 0 0))
  3644. (uuid c20aea50-e9e4-4978-b938-d613d445aab7)
  3645. )
  3646. (wire (pts (xy 196.85 134.62) (xy 181.61 134.62))
  3647. (stroke (width 0) (type default) (color 0 0 0 0))
  3648. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  3649. )
  3650. (wire (pts (xy 132.08 69.85) (xy 148.59 69.85))
  3651. (stroke (width 0) (type default) (color 0 0 0 0))
  3652. (uuid c67ad10d-2f75-4ec6-a139-47058f7f06b2)
  3653. )
  3654. (wire (pts (xy 129.54 175.26) (xy 132.08 175.26))
  3655. (stroke (width 0) (type default) (color 0 0 0 0))
  3656. (uuid c7c3f4ab-c9e8-41c0-8cf6-0b178c28a36a)
  3657. )
  3658. (wire (pts (xy 30.48 234.95) (xy 43.18 234.95))
  3659. (stroke (width 0) (type default) (color 0 0 0 0))
  3660. (uuid c7f7bd58-1ebd-40fd-a39d-a95530a751b6)
  3661. )
  3662. (wire (pts (xy 340.36 60.96) (xy 325.12 60.96))
  3663. (stroke (width 0) (type default) (color 0 0 0 0))
  3664. (uuid c811ed5f-f509-4605-b7d3-da6f79935a1e)
  3665. )
  3666. (wire (pts (xy 336.55 200.66) (xy 342.9 200.66))
  3667. (stroke (width 0) (type default) (color 0 0 0 0))
  3668. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  3669. )
  3670. (wire (pts (xy 88.9 256.54) (xy 88.9 250.19))
  3671. (stroke (width 0) (type default) (color 0 0 0 0))
  3672. (uuid c8b6b273-3d20-4a46-8069-f6d608563604)
  3673. )
  3674. (wire (pts (xy 228.6 240.03) (xy 228.6 250.19))
  3675. (stroke (width 0) (type default) (color 0 0 0 0))
  3676. (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
  3677. )
  3678. (wire (pts (xy 156.21 140.97) (xy 172.72 140.97))
  3679. (stroke (width 0) (type default) (color 0 0 0 0))
  3680. (uuid c8b93f12-bc5c-4ce5-b954-377d903895f1)
  3681. )
  3682. (wire (pts (xy 195.58 204.47) (xy 205.74 204.47))
  3683. (stroke (width 0) (type default) (color 0 0 0 0))
  3684. (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9)
  3685. )
  3686. (wire (pts (xy 36.83 191.77) (xy 41.91 191.77))
  3687. (stroke (width 0) (type default) (color 0 0 0 0))
  3688. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  3689. )
  3690. (wire (pts (xy 351.79 179.07) (xy 336.55 179.07))
  3691. (stroke (width 0) (type default) (color 0 0 0 0))
  3692. (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a)
  3693. )
  3694. (wire (pts (xy 54.61 234.95) (xy 54.61 242.57))
  3695. (stroke (width 0) (type default) (color 0 0 0 0))
  3696. (uuid cd48b13f-c989-4ac1-a7f0-053afcd77527)
  3697. )
  3698. (wire (pts (xy 224.79 76.2) (xy 246.38 76.2))
  3699. (stroke (width 0) (type default) (color 0 0 0 0))
  3700. (uuid cd50b8dc-829d-4a1d-8f2a-6471f378ba87)
  3701. )
  3702. (wire (pts (xy 22.86 25.4) (xy 22.86 26.67))
  3703. (stroke (width 0) (type default) (color 0 0 0 0))
  3704. (uuid cd754504-6804-42c4-85d4-3560ea8687ad)
  3705. )
  3706. (wire (pts (xy 332.74 172.72) (xy 323.85 172.72))
  3707. (stroke (width 0) (type default) (color 0 0 0 0))
  3708. (uuid cdfb661b-489b-4b76-99f4-62b92bb1ab18)
  3709. )
  3710. (wire (pts (xy 312.42 33.02) (xy 312.42 45.72))
  3711. (stroke (width 0) (type default) (color 0 0 0 0))
  3712. (uuid ce55d4e5-cb2b-4927-9979-4a7fc840f632)
  3713. )
  3714. (wire (pts (xy 88.9 250.19) (xy 101.6 250.19))
  3715. (stroke (width 0) (type default) (color 0 0 0 0))
  3716. (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
  3717. )
  3718. (wire (pts (xy 53.34 60.96) (xy 57.15 60.96))
  3719. (stroke (width 0) (type default) (color 0 0 0 0))
  3720. (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7)
  3721. )
  3722. (wire (pts (xy 340.36 66.04) (xy 325.12 66.04))
  3723. (stroke (width 0) (type default) (color 0 0 0 0))
  3724. (uuid d035bb7a-e806-42f2-ba95-a390d279aef1)
  3725. )
  3726. (wire (pts (xy 224.79 207.01) (xy 229.87 207.01))
  3727. (stroke (width 0) (type default) (color 0 0 0 0))
  3728. (uuid d07e3af5-8e07-4980-b333-4058c2990257)
  3729. )
  3730. (wire (pts (xy 167.64 181.61) (xy 171.45 181.61))
  3731. (stroke (width 0) (type default) (color 0 0 0 0))
  3732. (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
  3733. )
  3734. (wire (pts (xy 208.28 185.42) (xy 195.58 185.42))
  3735. (stroke (width 0) (type default) (color 0 0 0 0))
  3736. (uuid d1cd5391-31d2-459f-8adb-4ae3f304a833)
  3737. )
  3738. (wire (pts (xy 62.23 161.29) (xy 62.23 162.56))
  3739. (stroke (width 0) (type default) (color 0 0 0 0))
  3740. (uuid d396ce56-1974-47b7-a41b-ae2b20ef835c)
  3741. )
  3742. (wire (pts (xy 163.83 186.69) (xy 163.83 191.77))
  3743. (stroke (width 0) (type default) (color 0 0 0 0))
  3744. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  3745. )
  3746. (wire (pts (xy 201.93 132.08) (xy 207.01 132.08))
  3747. (stroke (width 0) (type default) (color 0 0 0 0))
  3748. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  3749. )
  3750. (wire (pts (xy 363.22 93.98) (xy 363.22 73.66))
  3751. (stroke (width 0) (type default) (color 0 0 0 0))
  3752. (uuid d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d)
  3753. )
  3754. (wire (pts (xy 57.15 58.42) (xy 57.15 60.96))
  3755. (stroke (width 0) (type default) (color 0 0 0 0))
  3756. (uuid d53baa32-ba88-4646-9db3-0e9b0f0da4f0)
  3757. )
  3758. (wire (pts (xy 170.18 127) (xy 172.72 127))
  3759. (stroke (width 0) (type default) (color 0 0 0 0))
  3760. (uuid d5a7688c-7438-4b6d-999f-4f2a3cb18fd6)
  3761. )
  3762. (wire (pts (xy 30.48 229.87) (xy 30.48 234.95))
  3763. (stroke (width 0) (type default) (color 0 0 0 0))
  3764. (uuid d6040293-95f0-436a-938c-ad69875a4be8)
  3765. )
  3766. (polyline (pts (xy 111.76 49.53) (xy 111.76 12.7))
  3767. (stroke (width 0) (type default) (color 0 0 0 0))
  3768. (uuid d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1)
  3769. )
  3770. (wire (pts (xy 133.35 135.89) (xy 133.35 144.78))
  3771. (stroke (width 0) (type default) (color 0 0 0 0))
  3772. (uuid d8f24303-7e52-49a9-9e82-8d60c3aaa009)
  3773. )
  3774. (wire (pts (xy 184.15 189.23) (xy 184.15 187.96))
  3775. (stroke (width 0) (type default) (color 0 0 0 0))
  3776. (uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
  3777. )
  3778. (wire (pts (xy 157.48 250.19) (xy 172.72 250.19))
  3779. (stroke (width 0) (type default) (color 0 0 0 0))
  3780. (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
  3781. )
  3782. (wire (pts (xy 204.47 162.56) (xy 204.47 175.26))
  3783. (stroke (width 0) (type default) (color 0 0 0 0))
  3784. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3785. )
  3786. (wire (pts (xy 53.34 73.66) (xy 53.34 76.2))
  3787. (stroke (width 0) (type default) (color 0 0 0 0))
  3788. (uuid da6f4122-0ecc-496f-b0fd-e4abef534976)
  3789. )
  3790. (wire (pts (xy 365.76 78.74) (xy 365.76 73.66))
  3791. (stroke (width 0) (type default) (color 0 0 0 0))
  3792. (uuid dc628a9d-67e8-4a03-b99f-8cc7a42af6ef)
  3793. )
  3794. (wire (pts (xy 191.77 182.88) (xy 208.28 182.88))
  3795. (stroke (width 0) (type default) (color 0 0 0 0))
  3796. (uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)
  3797. )
  3798. (wire (pts (xy 172.72 162.56) (xy 181.61 162.56))
  3799. (stroke (width 0) (type default) (color 0 0 0 0))
  3800. (uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb)
  3801. )
  3802. (wire (pts (xy 78.74 193.04) (xy 78.74 191.77))
  3803. (stroke (width 0) (type default) (color 0 0 0 0))
  3804. (uuid dd5f7736-b8aa-44f2-a044-e514d63d48f3)
  3805. )
  3806. (wire (pts (xy 201.93 137.16) (xy 207.01 137.16))
  3807. (stroke (width 0) (type default) (color 0 0 0 0))
  3808. (uuid dde4c43d-f33e-48ba-86f3-779fdfce00c2)
  3809. )
  3810. (wire (pts (xy 27.94 196.85) (xy 27.94 199.39))
  3811. (stroke (width 0) (type default) (color 0 0 0 0))
  3812. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  3813. )
  3814. (polyline (pts (xy 110.49 115.57) (xy 110.49 218.44))
  3815. (stroke (width 0) (type default) (color 0 0 0 0))
  3816. (uuid de438bc3-2eba-4b9f-95e9-35ce5db157f6)
  3817. )
  3818. (wire (pts (xy 317.5 27.94) (xy 312.42 27.94))
  3819. (stroke (width 0) (type default) (color 0 0 0 0))
  3820. (uuid de552ae9-cde6-4643-8cc7-9de2579dadae)
  3821. )
  3822. (wire (pts (xy 45.72 162.56) (xy 45.72 142.24))
  3823. (stroke (width 0) (type default) (color 0 0 0 0))
  3824. (uuid e07e1653-d05d-4bf2-bea3-6515a06de065)
  3825. )
  3826. (wire (pts (xy 347.98 217.17) (xy 347.98 212.09))
  3827. (stroke (width 0) (type default) (color 0 0 0 0))
  3828. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  3829. )
  3830. (wire (pts (xy 223.52 76.2) (xy 224.79 76.2))
  3831. (stroke (width 0) (type default) (color 0 0 0 0))
  3832. (uuid e0b0947e-ec91-4d8a-8663-5a112b0a8541)
  3833. )
  3834. (wire (pts (xy 229.87 81.28) (xy 246.38 81.28))
  3835. (stroke (width 0) (type default) (color 0 0 0 0))
  3836. (uuid e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
  3837. )
  3838. (wire (pts (xy 129.54 234.95) (xy 144.78 234.95))
  3839. (stroke (width 0) (type default) (color 0 0 0 0))
  3840. (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
  3841. )
  3842. (wire (pts (xy 156.21 139.7) (xy 156.21 140.97))
  3843. (stroke (width 0) (type default) (color 0 0 0 0))
  3844. (uuid e1fe6230-75c5-4750-aaea-24a9b80589d8)
  3845. )
  3846. (wire (pts (xy 189.23 162.56) (xy 204.47 162.56))
  3847. (stroke (width 0) (type default) (color 0 0 0 0))
  3848. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  3849. )
  3850. (wire (pts (xy 165.1 242.57) (xy 177.8 242.57))
  3851. (stroke (width 0) (type default) (color 0 0 0 0))
  3852. (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
  3853. )
  3854. (wire (pts (xy 67.31 58.42) (xy 67.31 60.96))
  3855. (stroke (width 0) (type default) (color 0 0 0 0))
  3856. (uuid e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e)
  3857. )
  3858. (wire (pts (xy 184.15 181.61) (xy 189.23 181.61))
  3859. (stroke (width 0) (type default) (color 0 0 0 0))
  3860. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  3861. )
  3862. (wire (pts (xy 109.22 242.57) (xy 121.92 242.57))
  3863. (stroke (width 0) (type default) (color 0 0 0 0))
  3864. (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558)
  3865. )
  3866. (wire (pts (xy 284.48 234.95) (xy 297.18 234.95))
  3867. (stroke (width 0) (type default) (color 0 0 0 0))
  3868. (uuid e4e20505-1208-4100-a4aa-676f50844c06)
  3869. )
  3870. (wire (pts (xy 101.6 250.19) (xy 116.84 250.19))
  3871. (stroke (width 0) (type default) (color 0 0 0 0))
  3872. (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
  3873. )
  3874. (wire (pts (xy 379.73 173.99) (xy 393.7 173.99))
  3875. (stroke (width 0) (type default) (color 0 0 0 0))
  3876. (uuid e6bf257d-5112-423c-b70a-adf8446f29da)
  3877. )
  3878. (wire (pts (xy 62.23 162.56) (xy 45.72 162.56))
  3879. (stroke (width 0) (type default) (color 0 0 0 0))
  3880. (uuid e7893166-2c2c-41b4-bd84-76ebc2e06551)
  3881. )
  3882. (wire (pts (xy 241.3 234.95) (xy 256.54 234.95))
  3883. (stroke (width 0) (type default) (color 0 0 0 0))
  3884. (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
  3885. )
  3886. (wire (pts (xy 36.83 191.77) (xy 27.94 191.77))
  3887. (stroke (width 0) (type default) (color 0 0 0 0))
  3888. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  3889. )
  3890. (wire (pts (xy 224.79 71.12) (xy 245.11 71.12))
  3891. (stroke (width 0) (type default) (color 0 0 0 0))
  3892. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  3893. )
  3894. (wire (pts (xy 132.08 85.09) (xy 148.59 85.09))
  3895. (stroke (width 0) (type default) (color 0 0 0 0))
  3896. (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
  3897. )
  3898. (wire (pts (xy 201.93 181.61) (xy 201.93 180.34))
  3899. (stroke (width 0) (type default) (color 0 0 0 0))
  3900. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  3901. )
  3902. (wire (pts (xy 201.93 124.46) (xy 207.01 124.46))
  3903. (stroke (width 0) (type default) (color 0 0 0 0))
  3904. (uuid ec2e3d8a-128c-4be8-b432-9738bca934ae)
  3905. )
  3906. (wire (pts (xy 241.3 134.62) (xy 241.3 133.35))
  3907. (stroke (width 0) (type default) (color 0 0 0 0))
  3908. (uuid ed247857-b2a3-4b23-90ad-758c01ae5e8e)
  3909. )
  3910. (wire (pts (xy 256.54 234.95) (xy 269.24 234.95))
  3911. (stroke (width 0) (type default) (color 0 0 0 0))
  3912. (uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
  3913. )
  3914. (wire (pts (xy 379.73 171.45) (xy 393.7 171.45))
  3915. (stroke (width 0) (type default) (color 0 0 0 0))
  3916. (uuid f1c2e9b0-6f9f-485b-b482-d408df476d0f)
  3917. )
  3918. (wire (pts (xy 214.63 209.55) (xy 214.63 207.01))
  3919. (stroke (width 0) (type default) (color 0 0 0 0))
  3920. (uuid f1f5241b-4870-42ad-abfc-639b0a3a761c)
  3921. )
  3922. (wire (pts (xy 195.58 69.85) (xy 201.93 69.85))
  3923. (stroke (width 0) (type default) (color 0 0 0 0))
  3924. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  3925. )
  3926. (wire (pts (xy 101.6 57.15) (xy 105.41 57.15))
  3927. (stroke (width 0) (type default) (color 0 0 0 0))
  3928. (uuid f28e56e7-283b-4b9a-ae27-95e89770fbf8)
  3929. )
  3930. (wire (pts (xy 83.82 77.47) (xy 83.82 71.12))
  3931. (stroke (width 0) (type default) (color 0 0 0 0))
  3932. (uuid f3044f68-903d-4063-b253-30d8e3a83eae)
  3933. )
  3934. (wire (pts (xy 19.05 26.67) (xy 22.86 26.67))
  3935. (stroke (width 0) (type default) (color 0 0 0 0))
  3936. (uuid f3bd74c5-c1d6-4a76-bd07-bb01ea1de3af)
  3937. )
  3938. (wire (pts (xy 184.15 196.85) (xy 184.15 194.31))
  3939. (stroke (width 0) (type default) (color 0 0 0 0))
  3940. (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
  3941. )
  3942. (wire (pts (xy 229.87 91.44) (xy 246.38 91.44))
  3943. (stroke (width 0) (type default) (color 0 0 0 0))
  3944. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  3945. )
  3946. (wire (pts (xy 351.79 181.61) (xy 336.55 181.61))
  3947. (stroke (width 0) (type default) (color 0 0 0 0))
  3948. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  3949. )
  3950. (wire (pts (xy 127 162.56) (xy 129.54 162.56))
  3951. (stroke (width 0) (type default) (color 0 0 0 0))
  3952. (uuid f574709a-09a8-49be-b930-402309941713)
  3953. )
  3954. (wire (pts (xy 241.3 140.97) (xy 241.3 139.7))
  3955. (stroke (width 0) (type default) (color 0 0 0 0))
  3956. (uuid f5a3f95b-1a53-41b4-b208-bf168c9d9c6d)
  3957. )
  3958. (wire (pts (xy 342.9 172.72) (xy 351.79 172.72))
  3959. (stroke (width 0) (type default) (color 0 0 0 0))
  3960. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  3961. )
  3962. (wire (pts (xy 21.59 191.77) (xy 21.59 187.96))
  3963. (stroke (width 0) (type default) (color 0 0 0 0))
  3964. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  3965. )
  3966. (polyline (pts (xy 278.13 152.4) (xy 278.13 218.44))
  3967. (stroke (width 0) (type default) (color 0 0 0 0))
  3968. (uuid f8a90052-1a8b-4ce5-a1fd-87db944dceac)
  3969. )
  3970. (wire (pts (xy 73.66 242.57) (xy 93.98 242.57))
  3971. (stroke (width 0) (type default) (color 0 0 0 0))
  3972. (uuid f8f3a9fc-1e34-4573-a767-508104e8d242)
  3973. )
  3974. (wire (pts (xy 312.42 27.94) (xy 312.42 25.4))
  3975. (stroke (width 0) (type default) (color 0 0 0 0))
  3976. (uuid f934a442-23d6-4e5b-908f-bb9199ad6f8b)
  3977. )
  3978. (wire (pts (xy 245.11 71.12) (xy 245.11 73.66))
  3979. (stroke (width 0) (type default) (color 0 0 0 0))
  3980. (uuid facb0614-068b-4c9c-a466-d374df96a94c)
  3981. )
  3982. (wire (pts (xy 196.85 129.54) (xy 181.61 129.54))
  3983. (stroke (width 0) (type default) (color 0 0 0 0))
  3984. (uuid fb1a635e-b207-4b36-b0fb-e877e480e86a)
  3985. )
  3986. (wire (pts (xy 201.93 180.34) (xy 208.28 180.34))
  3987. (stroke (width 0) (type default) (color 0 0 0 0))
  3988. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  3989. )
  3990. (wire (pts (xy 99.06 38.1) (xy 102.87 38.1))
  3991. (stroke (width 0) (type default) (color 0 0 0 0))
  3992. (uuid fb57ab52-6f5d-4cad-b7ab-f498751e8ac4)
  3993. )
  3994. (wire (pts (xy 207.01 132.08) (xy 207.01 134.62))
  3995. (stroke (width 0) (type default) (color 0 0 0 0))
  3996. (uuid fbb5e77c-4b41-4796-ad13-1b9e2bbc3c81)
  3997. )
  3998. (wire (pts (xy 193.04 242.57) (xy 205.74 242.57))
  3999. (stroke (width 0) (type default) (color 0 0 0 0))
  4000. (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
  4001. )
  4002. (wire (pts (xy 156.21 133.35) (xy 156.21 134.62))
  4003. (stroke (width 0) (type default) (color 0 0 0 0))
  4004. (uuid fc13962a-a464-4fa2-b9a6-4c26667104ee)
  4005. )
  4006. (wire (pts (xy 130.81 130.81) (xy 130.81 128.27))
  4007. (stroke (width 0) (type default) (color 0 0 0 0))
  4008. (uuid fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942)
  4009. )
  4010. (wire (pts (xy 223.52 76.2) (xy 223.52 77.47))
  4011. (stroke (width 0) (type default) (color 0 0 0 0))
  4012. (uuid fcfb3f77-487d-44de-bd4e-948fbeca3220)
  4013. )
  4014. (wire (pts (xy 379.73 172.72) (xy 379.73 173.99))
  4015. (stroke (width 0) (type default) (color 0 0 0 0))
  4016. (uuid fd34aa56-ded2-4e97-965a-a39457716f0c)
  4017. )
  4018. (wire (pts (xy 78.74 191.77) (xy 101.6 191.77))
  4019. (stroke (width 0) (type default) (color 0 0 0 0))
  4020. (uuid fe1ad3bd-92cc-4e1c-8cc9-a77278095945)
  4021. )
  4022. (wire (pts (xy 256.54 240.03) (xy 256.54 250.19))
  4023. (stroke (width 0) (type default) (color 0 0 0 0))
  4024. (uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
  4025. )
  4026. (text "POWER" (at 12.7 15.24 0)
  4027. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4028. (uuid 08926936-9ea4-4894-afca-caca47f3c238)
  4029. )
  4030. (text "Could put a sense resistor and\nsense amplifier here"
  4031. (at 384.81 185.42 0)
  4032. (effects (font (size 1.27 1.27)) (justify left bottom))
  4033. (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21)
  4034. )
  4035. (text "MCU - ESP32 (T-MICRO32 PLUS)" (at 303.53 15.24 0)
  4036. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4037. (uuid 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
  4038. )
  4039. (text "If your voltage regulator\nfollows the 5V-GND-3V3 pinout\n(AP2114HA) populate your\nregulator on the footprint labled\nU6. If your regulator follows the\npinout of GND-3V3-5V (TS1117BCW33)\npopulate your regulator on the\nfootprint labaled U9)."
  4040. (at 48.26 33.02 0)
  4041. (effects (font (size 1 1)) (justify left bottom))
  4042. (uuid 1e7b0997-eda5-4af5-a3de-5402c348d6bc)
  4043. )
  4044. (text "SENSOR - MAGNETIC ENCODER" (at 12.7 180.34 0)
  4045. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4046. (uuid 21ca1c08-b8a3-4bdc-9356-70a4d86ee444)
  4047. )
  4048. (text "MOTOR DRIVER" (at 314.96 152.4 0)
  4049. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4050. (uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890)
  4051. )
  4052. (text "MECHANICAL/BOM-ONLY" (at 115.57 15.24 0)
  4053. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4054. (uuid 312474c5-a081-4cd1-b2e6-730f0718514a)
  4055. )
  4056. (text "IO2 must be 0 to enter UART\ndownload mode" (at 392.43 72.39 0)
  4057. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  4058. (uuid 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0)
  4059. )
  4060. (text "GPIO12=MTDI. Should be 0 on boot\nfor 3.3v built-in flash/psram on\nESP32-PICO-v3-02"
  4061. (at 304.8 72.39 0)
  4062. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  4063. (uuid 45484f82-420e-44d0-a58e-382bb939dac5)
  4064. )
  4065. (text "Pull-ups on MT6701 allow for I2C\n(though we'll primarily use SSI)"
  4066. (at 111.76 149.86 0)
  4067. (effects (font (size 1.27 1.27)) (justify left bottom))
  4068. (uuid 4e7a230a-c1a4-4455-81ee-277835acf4a2)
  4069. )
  4070. (text "Use either U6 or U9, but not both!" (at 34.29 16.51 0)
  4071. (effects (font (size 1.5 1.5) (thickness 0.6) bold italic) (justify left bottom))
  4072. (uuid 50b1b83b-0232-4b9b-946c-5e8c7e39ce62)
  4073. )
  4074. (text "Rate=1 --> 80 samples per second" (at 234.95 177.8 0)
  4075. (effects (font (size 1.27 1.27)) (justify left bottom))
  4076. (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
  4077. )
  4078. (text "SENSOR - AMBIENT LIGHT" (at 12.7 119.38 0)
  4079. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4080. (uuid 784e3230-2053-4bc9-a786-5ac2bd0df0f5)
  4081. )
  4082. (text "Recommended 1uF-10uF on EN for auto-reset\ncircuitry, per Espressif design notes."
  4083. (at 215.9 151.13 0)
  4084. (effects (font (size 1.27 1.27)) (justify left bottom))
  4085. (uuid 905b154b-e92b-469d-b2e2-340d67daddb7)
  4086. )
  4087. (text "USB" (at 12.7 53.34 0)
  4088. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4089. (uuid a04f8542-6c38-4d5c-bdbb-c8e0311a0936)
  4090. )
  4091. (text "SENSOR - STRAIN" (at 111.76 156.21 0)
  4092. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4093. (uuid a7c83b25-afbd-4974-8870-387db8f81a5c)
  4094. )
  4095. (text "LEDS" (at 12.7 222.25 0)
  4096. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4097. (uuid b1731e91-7698-42fa-ad60-5c60fdd0e1fc)
  4098. )
  4099. (text "PULLUPS, PULLDOWNS" (at 111.76 119.38 0)
  4100. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4101. (uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc)
  4102. )
  4103. (text "LCD CONNECTOR" (at 209.55 53.34 0)
  4104. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4105. (uuid ed612f6d-67c1-4198-976d-84139f8d99bc)
  4106. )
  4107. (text "Reset/Boot via USB serial" (at 167.64 58.42 0)
  4108. (effects (font (size 1.27 1.27)) (justify left bottom))
  4109. (uuid f6a3288e-9575-42bb-af05-a920d59aded8)
  4110. )
  4111. (label "STRAIN_E+" (at 121.92 198.12 0)
  4112. (effects (font (size 1.27 1.27)) (justify left bottom))
  4113. (uuid 01024d27-e392-4482-9e67-565b0c294fe8)
  4114. )
  4115. (label "MAG_CSN" (at 101.6 191.77 180)
  4116. (effects (font (size 1.27 1.27)) (justify right bottom))
  4117. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4118. )
  4119. (label "ESP32_BOOT" (at 398.78 66.04 180)
  4120. (effects (font (size 1.27 1.27)) (justify right bottom))
  4121. (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7)
  4122. )
  4123. (label "LCD_RST" (at 229.87 78.74 0)
  4124. (effects (font (size 1.27 1.27)) (justify left bottom))
  4125. (uuid 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600)
  4126. )
  4127. (label "TMC_VL" (at 181.61 137.16 0)
  4128. (effects (font (size 1.27 1.27)) (justify left bottom))
  4129. (uuid 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca)
  4130. )
  4131. (label "LCD_BACKLIGHT" (at 229.87 86.36 0)
  4132. (effects (font (size 1.27 1.27)) (justify left bottom))
  4133. (uuid 1cb64bfe-d819-47e3-be11-515b04f2c451)
  4134. )
  4135. (label "STRAIN_S+" (at 121.92 189.23 0)
  4136. (effects (font (size 1.27 1.27)) (justify left bottom))
  4137. (uuid 2026567f-be64-41dd-8011-b0897ba0ff2e)
  4138. )
  4139. (label "LCD_RST" (at 394.97 63.5 180)
  4140. (effects (font (size 1.27 1.27)) (justify right bottom))
  4141. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4142. )
  4143. (label "TMC_VH" (at 325.12 60.96 0)
  4144. (effects (font (size 1.27 1.27)) (justify left bottom))
  4145. (uuid 2681e64d-bedc-4e1f-87d2-754aaa485bbd)
  4146. )
  4147. (label "RTS" (at 148.59 87.63 180)
  4148. (effects (font (size 1.27 1.27)) (justify right bottom))
  4149. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  4150. )
  4151. (label "LED_DATA_5V" (at 73.66 242.57 0)
  4152. (effects (font (size 1.27 1.27)) (justify left bottom))
  4153. (uuid 28e37b45-f843-47c2-85c9-ca19f5430ece)
  4154. )
  4155. (label "USB_SERIAL_TXO" (at 148.59 67.31 180)
  4156. (effects (font (size 1.27 1.27)) (justify right bottom))
  4157. (uuid 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
  4158. )
  4159. (label "SCL" (at 83.82 151.13 180)
  4160. (effects (font (size 1.27 1.27)) (justify right bottom))
  4161. (uuid 2ec9be40-1d5a-4e2d-8a4d-4be2d3c079d5)
  4162. )
  4163. (label "USB_SERIAL_TXO" (at 398.78 43.18 180)
  4164. (effects (font (size 1.27 1.27)) (justify right bottom))
  4165. (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b)
  4166. )
  4167. (label "TMC_UL" (at 336.55 179.07 0)
  4168. (effects (font (size 1.27 1.27)) (justify left bottom))
  4169. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  4170. )
  4171. (label "STRAIN_E+" (at 121.92 186.69 0)
  4172. (effects (font (size 1.27 1.27)) (justify left bottom))
  4173. (uuid 34a11a07-8b7f-45d2-96e3-89fd43e62756)
  4174. )
  4175. (label "STRAIN_DO" (at 355.6 96.52 90)
  4176. (effects (font (size 1.27 1.27)) (justify left bottom))
  4177. (uuid 406d491e-5b01-46dc-a768-fd0992cdb346)
  4178. )
  4179. (label "STRAIN_E-" (at 147.32 191.77 0)
  4180. (effects (font (size 1.27 1.27)) (justify left bottom))
  4181. (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17)
  4182. )
  4183. (label "MAG_CSN" (at 323.85 63.5 0)
  4184. (effects (font (size 1.27 1.27)) (justify left bottom))
  4185. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  4186. )
  4187. (label "LCD_DATA" (at 394.97 55.88 180)
  4188. (effects (font (size 1.27 1.27)) (justify right bottom))
  4189. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  4190. )
  4191. (label "TMC_DIAG" (at 336.55 194.31 0)
  4192. (effects (font (size 1.27 1.27)) (justify left bottom))
  4193. (uuid 430d6d73-9de6-41ca-b788-178d709f4aae)
  4194. )
  4195. (label "ESP32_EN" (at 219.71 133.35 0)
  4196. (effects (font (size 1.27 1.27)) (justify left bottom))
  4197. (uuid 45836d49-cd5f-417d-b0f6-c8b43d196a36)
  4198. )
  4199. (label "TMC_WH" (at 325.12 66.04 0)
  4200. (effects (font (size 1.27 1.27)) (justify left bottom))
  4201. (uuid 4fb2577d-2e1c-480c-9060-124510b35053)
  4202. )
  4203. (label "USB_CC2" (at 67.31 68.58 180)
  4204. (effects (font (size 1.27 1.27)) (justify right bottom))
  4205. (uuid 53e34696-241f-47e5-a477-f469335c8a61)
  4206. )
  4207. (label "RTS" (at 201.93 85.09 180)
  4208. (effects (font (size 1.27 1.27)) (justify right bottom))
  4209. (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631)
  4210. )
  4211. (label "USB_D-" (at 67.31 73.66 180)
  4212. (effects (font (size 1.27 1.27)) (justify right bottom))
  4213. (uuid 5a222fb6-5159-4931-9015-19df65643140)
  4214. )
  4215. (label "TMC_UL" (at 325.12 55.88 0)
  4216. (effects (font (size 1.27 1.27)) (justify left bottom))
  4217. (uuid 5a390647-51ba-4684-b747-9001f749ff71)
  4218. )
  4219. (label "TMC_VH" (at 181.61 127 0)
  4220. (effects (font (size 1.27 1.27)) (justify left bottom))
  4221. (uuid 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9)
  4222. )
  4223. (label "USB_D+" (at 99.06 74.93 0)
  4224. (effects (font (size 1.27 1.27)) (justify left bottom))
  4225. (uuid 5f312b85-6822-40a3-b417-2df49696ca2d)
  4226. )
  4227. (label "LCD_SCK" (at 229.87 81.28 0)
  4228. (effects (font (size 1.27 1.27)) (justify left bottom))
  4229. (uuid 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb)
  4230. )
  4231. (label "TMC_UL" (at 181.61 132.08 0)
  4232. (effects (font (size 1.27 1.27)) (justify left bottom))
  4233. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  4234. )
  4235. (label "LED_DATA_5V" (at 71.12 242.57 180)
  4236. (effects (font (size 1.27 1.27)) (justify right bottom))
  4237. (uuid 692d87e9-6b70-46cc-9c78-b75193a484cc)
  4238. )
  4239. (label "STRAIN_S+" (at 115.57 168.91 0)
  4240. (effects (font (size 1.27 1.27)) (justify left bottom))
  4241. (uuid 69f7134a-e27f-442b-a600-8b24c51cc314)
  4242. )
  4243. (label "TMC_VL" (at 325.12 50.8 0)
  4244. (effects (font (size 1.27 1.27)) (justify left bottom))
  4245. (uuid 6b6d35dc-fa1d-46c5-87c0-b0652011059d)
  4246. )
  4247. (label "LCD_SCK" (at 394.97 58.42 180)
  4248. (effects (font (size 1.27 1.27)) (justify right bottom))
  4249. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  4250. )
  4251. (label "TMC_UH" (at 336.55 176.53 0)
  4252. (effects (font (size 1.27 1.27)) (justify left bottom))
  4253. (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
  4254. )
  4255. (label "TMC_VL" (at 336.55 184.15 0)
  4256. (effects (font (size 1.27 1.27)) (justify left bottom))
  4257. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  4258. )
  4259. (label "MAG_DO" (at 353.06 90.17 90)
  4260. (effects (font (size 1.27 1.27)) (justify left bottom))
  4261. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  4262. )
  4263. (label "ESP32_BOOT" (at 160.02 92.71 0)
  4264. (effects (font (size 1.27 1.27)) (justify left bottom))
  4265. (uuid 74855e0d-40e4-4940-a544-edae9207b2ea)
  4266. )
  4267. (label "STRAIN_S+" (at 147.32 209.55 0)
  4268. (effects (font (size 1.27 1.27)) (justify left bottom))
  4269. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  4270. )
  4271. (label "MAG_CLK" (at 350.52 90.17 90)
  4272. (effects (font (size 1.27 1.27)) (justify left bottom))
  4273. (uuid 7582a530-a952-46c1-b7eb-75006524ba29)
  4274. )
  4275. (label "SDA" (at 83.82 143.51 180)
  4276. (effects (font (size 1.27 1.27)) (justify right bottom))
  4277. (uuid 7b75907b-b2ae-4362-89fa-d520339aaa5c)
  4278. )
  4279. (label "USB_D+" (at 67.31 78.74 180)
  4280. (effects (font (size 1.27 1.27)) (justify right bottom))
  4281. (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
  4282. )
  4283. (label "STRAIN_E-" (at 121.92 203.2 0)
  4284. (effects (font (size 1.27 1.27)) (justify left bottom))
  4285. (uuid 88a17e56-466a-45e7-9047-7346a507f505)
  4286. )
  4287. (label "SCL" (at 151.13 140.97 0)
  4288. (effects (font (size 1.27 1.27)) (justify left bottom))
  4289. (uuid 89bd1fdd-6a91-474e-8495-7a2ba7eb6260)
  4290. )
  4291. (label "TMC_UH" (at 325.12 58.42 0)
  4292. (effects (font (size 1.27 1.27)) (justify left bottom))
  4293. (uuid 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0)
  4294. )
  4295. (label "STRAIN_S-" (at 147.32 204.47 0)
  4296. (effects (font (size 1.27 1.27)) (justify left bottom))
  4297. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4298. )
  4299. (label "SDA" (at 151.13 134.62 0)
  4300. (effects (font (size 1.27 1.27)) (justify left bottom))
  4301. (uuid 8b022692-69b7-4bd6-bf38-57edecf356fa)
  4302. )
  4303. (label "MAG_DO" (at 101.6 196.85 180)
  4304. (effects (font (size 1.27 1.27)) (justify right bottom))
  4305. (uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
  4306. )
  4307. (label "SCL" (at 387.35 78.74 180)
  4308. (effects (font (size 1.27 1.27)) (justify right bottom))
  4309. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4310. )
  4311. (label "USB_CC1" (at 67.31 66.04 180)
  4312. (effects (font (size 1.27 1.27)) (justify right bottom))
  4313. (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
  4314. )
  4315. (label "ESP32_EN" (at 160.02 62.23 0)
  4316. (effects (font (size 1.27 1.27)) (justify left bottom))
  4317. (uuid 8e697b96-cf4c-43ef-b321-8c2422b088bf)
  4318. )
  4319. (label "USB_SERIAL_RXI" (at 148.59 69.85 180)
  4320. (effects (font (size 1.27 1.27)) (justify right bottom))
  4321. (uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
  4322. )
  4323. (label "TMC_WH" (at 336.55 186.69 0)
  4324. (effects (font (size 1.27 1.27)) (justify left bottom))
  4325. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  4326. )
  4327. (label "MAG_DO" (at 118.11 142.24 0)
  4328. (effects (font (size 1.27 1.27)) (justify left bottom))
  4329. (uuid 92574e8a-729f-48de-afcb-97b4f5e826f8)
  4330. )
  4331. (label "LCD_CS" (at 394.97 45.72 180)
  4332. (effects (font (size 1.27 1.27)) (justify right bottom))
  4333. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4334. )
  4335. (label "LCD_CMD" (at 394.97 38.1 180)
  4336. (effects (font (size 1.27 1.27)) (justify right bottom))
  4337. (uuid 96781640-c07e-4eea-a372-067ded96b703)
  4338. )
  4339. (label "TMC_WL" (at 181.61 134.62 0)
  4340. (effects (font (size 1.27 1.27)) (justify left bottom))
  4341. (uuid 97e5f992-979e-4291-bd9a-a77c3fd4b1b5)
  4342. )
  4343. (label "STRAIN_E+" (at 119.38 161.29 0)
  4344. (effects (font (size 1.27 1.27)) (justify left bottom))
  4345. (uuid 9b246e8c-ef41-4b1a-8a6c-ea7b4767bc64)
  4346. )
  4347. (label "STRAIN_E-" (at 119.38 177.8 0)
  4348. (effects (font (size 1.27 1.27)) (justify left bottom))
  4349. (uuid 9d4d1f75-25cd-4084-9264-d8392b4ffbb0)
  4350. )
  4351. (label "LCD_CS" (at 229.87 88.9 0)
  4352. (effects (font (size 1.27 1.27)) (justify left bottom))
  4353. (uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540)
  4354. )
  4355. (label "STRAIN_SCK" (at 256.54 187.96 180)
  4356. (effects (font (size 1.27 1.27)) (justify right bottom))
  4357. (uuid 9f969b13-1795-4747-8326-93bdc304ed56)
  4358. )
  4359. (label "TMC_UH" (at 181.61 124.46 0)
  4360. (effects (font (size 1.27 1.27)) (justify left bottom))
  4361. (uuid a323243c-4cab-4689-aa04-1e663cf86177)
  4362. )
  4363. (label "SDA" (at 379.73 73.66 180)
  4364. (effects (font (size 1.27 1.27)) (justify right bottom))
  4365. (uuid a5e6f7cb-0a81-4357-a11f-231d23300342)
  4366. )
  4367. (label "TMC_WL" (at 336.55 189.23 0)
  4368. (effects (font (size 1.27 1.27)) (justify left bottom))
  4369. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  4370. )
  4371. (label "LCD_DATA" (at 229.87 83.82 0)
  4372. (effects (font (size 1.27 1.27)) (justify left bottom))
  4373. (uuid ae158d42-76cc-4911-a621-4cc28931c98b)
  4374. )
  4375. (label "STRAIN_SCK" (at 403.86 68.58 180)
  4376. (effects (font (size 1.27 1.27)) (justify right bottom))
  4377. (uuid c6462399-f2e4-4f1a-b34a-b49a04c8bdb9)
  4378. )
  4379. (label "TMC_WH" (at 181.61 129.54 0)
  4380. (effects (font (size 1.27 1.27)) (justify left bottom))
  4381. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4382. )
  4383. (label "TMC_VH" (at 336.55 181.61 0)
  4384. (effects (font (size 1.27 1.27)) (justify left bottom))
  4385. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  4386. )
  4387. (label "LED_DATA_3V3" (at 363.22 93.98 90)
  4388. (effects (font (size 1.27 1.27)) (justify left bottom))
  4389. (uuid d115a0df-1034-4583-83af-ff1cb8acfa17)
  4390. )
  4391. (label "LCD_CMD" (at 229.87 91.44 0)
  4392. (effects (font (size 1.27 1.27)) (justify left bottom))
  4393. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4394. )
  4395. (label "STRAIN_DO" (at 256.54 185.42 180)
  4396. (effects (font (size 1.27 1.27)) (justify right bottom))
  4397. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4398. )
  4399. (label "DTR" (at 201.93 69.85 180)
  4400. (effects (font (size 1.27 1.27)) (justify right bottom))
  4401. (uuid d68dca9b-48b3-498b-9b5f-3b3838250f82)
  4402. )
  4403. (label "DTR" (at 148.59 85.09 180)
  4404. (effects (font (size 1.27 1.27)) (justify right bottom))
  4405. (uuid d72c89a6-7578-4468-964e-2a845431195f)
  4406. )
  4407. (label "STRAIN_E+" (at 147.32 181.61 0)
  4408. (effects (font (size 1.27 1.27)) (justify left bottom))
  4409. (uuid d8200a86-aa75-47a3-ad2a-7f4c9c999a6f)
  4410. )
  4411. (label "STRAIN_S-" (at 144.78 168.91 180)
  4412. (effects (font (size 1.27 1.27)) (justify right bottom))
  4413. (uuid d8eb202a-33b8-4543-9169-7b8a4ce87c93)
  4414. )
  4415. (label "TMC_DIAG" (at 325.12 40.64 0)
  4416. (effects (font (size 1.27 1.27)) (justify left bottom))
  4417. (uuid e000728f-e3c5-4fc4-86af-db9ceb3a6542)
  4418. )
  4419. (label "MAG_CLK" (at 101.6 194.31 180)
  4420. (effects (font (size 1.27 1.27)) (justify right bottom))
  4421. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  4422. )
  4423. (label "LED_DATA_3V3" (at 15.24 242.57 0)
  4424. (effects (font (size 1.27 1.27)) (justify left bottom))
  4425. (uuid ea28e946-b74f-4ba8-ac7b-b1884c5e7296)
  4426. )
  4427. (label "USB_D-" (at 99.06 77.47 0)
  4428. (effects (font (size 1.27 1.27)) (justify left bottom))
  4429. (uuid ee29d712-3378-4507-a00b-003526b29bb1)
  4430. )
  4431. (label "ESP32_EN" (at 327.66 38.1 0)
  4432. (effects (font (size 1.27 1.27)) (justify left bottom))
  4433. (uuid ef94502b-f22d-4da7-a17f-4100090b03a1)
  4434. )
  4435. (label "TMC_WL" (at 325.12 53.34 0)
  4436. (effects (font (size 1.27 1.27)) (justify left bottom))
  4437. (uuid f08895dc-4dcb-4aef-a39b-5a08864cdaaf)
  4438. )
  4439. (label "LCD_BACKLIGHT" (at 394.97 50.8 180)
  4440. (effects (font (size 1.27 1.27)) (justify right bottom))
  4441. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4442. )
  4443. (label "USB_SERIAL_RXI" (at 398.78 40.64 180)
  4444. (effects (font (size 1.27 1.27)) (justify right bottom))
  4445. (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be)
  4446. )
  4447. (label "STRAIN_E-" (at 121.92 191.77 0)
  4448. (effects (font (size 1.27 1.27)) (justify left bottom))
  4449. (uuid fb9a832c-737d-49fb-bbb4-29a0ba3e8178)
  4450. )
  4451. (label "MAG_CLK" (at 118.11 144.78 0)
  4452. (effects (font (size 1.27 1.27)) (justify left bottom))
  4453. (uuid fe4068b9-89da-4c59-ba51-b5949772f5d8)
  4454. )
  4455. (label "STRAIN_S-" (at 121.92 200.66 0)
  4456. (effects (font (size 1.27 1.27)) (justify left bottom))
  4457. (uuid fead07ab-5a70-40db-ada8-c72dcc827bfc)
  4458. )
  4459. (symbol (lib_id "MagnTek:MT6701-CT") (at 58.42 195.58 0) (unit 1)
  4460. (in_bom yes) (on_board yes)
  4461. (uuid 00000000-0000-0000-0000-000061f4f0c2)
  4462. (property "Reference" "U1" (id 0) (at 59.69 186.055 0))
  4463. (property "Value" "MT6701-CT" (id 1) (at 59.69 188.3664 0))
  4464. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 58.42 195.58 0)
  4465. (effects (font (size 1.27 1.27)) hide)
  4466. )
  4467. (property "Datasheet" "" (id 3) (at 58.42 195.58 0)
  4468. (effects (font (size 1.27 1.27)) hide)
  4469. )
  4470. (property "LCSC" "C2856764, or C3003196" (id 4) (at 58.42 195.58 0)
  4471. (effects (font (size 1.27 1.27)) hide)
  4472. )
  4473. (property "Digikey" "N/A" (id 5) (at 58.42 195.58 0)
  4474. (effects (font (size 1.27 1.27)) hide)
  4475. )
  4476. (property "Mouser" "N/A" (id 6) (at 58.42 195.58 0)
  4477. (effects (font (size 1.27 1.27)) hide)
  4478. )
  4479. (pin "1" (uuid 41445a0a-aba9-4520-8a8a-661b0822bea1))
  4480. (pin "2" (uuid b7a32267-072b-4e70-bfe9-b0a3dfef4c9c))
  4481. (pin "3" (uuid 104c52b0-fa5b-4965-bafe-99b694fc4373))
  4482. (pin "4" (uuid 8e155617-d4f4-46e4-909c-3f000857b3b2))
  4483. (pin "5" (uuid 6c0abecf-f361-4699-8ddd-02d1b8372136))
  4484. (pin "6" (uuid 013fd080-24b1-4ff0-a3fa-a8d9093bae2d))
  4485. (pin "7" (uuid 5f4ddf40-42af-4f8e-9942-235d798238c4))
  4486. (pin "8" (uuid 19771d4c-1e60-41d3-ab7d-ea0ca2bfd638))
  4487. )
  4488. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 101.6 242.57 0) (unit 1)
  4489. (in_bom yes) (on_board yes)
  4490. (uuid 00000000-0000-0000-0000-000061f5027f)
  4491. (property "Reference" "D1" (id 0) (at 93.98 228.6 0)
  4492. (effects (font (size 1.27 1.27)) (justify left))
  4493. )
  4494. (property "Value" "SK6812SIDE-A" (id 1) (at 93.98 231.14 0)
  4495. (effects (font (size 1.27 1.27)) (justify left))
  4496. )
  4497. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 102.87 250.19 0)
  4498. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4499. )
  4500. (property "Datasheet" "" (id 3) (at 104.14 252.095 0)
  4501. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4502. )
  4503. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 101.6 242.57 0)
  4504. (effects (font (size 1.27 1.27)) hide)
  4505. )
  4506. (property "Digikey" "1528-4691-ND" (id 5) (at 101.6 242.57 0)
  4507. (effects (font (size 1.27 1.27)) hide)
  4508. )
  4509. (property "Mouser" "485-4691" (id 6) (at 101.6 242.57 0)
  4510. (effects (font (size 1.27 1.27)) hide)
  4511. )
  4512. (property "LCSC" "C2890037" (id 7) (at 101.6 242.57 0)
  4513. (effects (font (size 1.27 1.27)) hide)
  4514. )
  4515. (pin "1" (uuid bafd7713-de56-4b13-bde3-2bb1eb95b862))
  4516. (pin "2" (uuid b0a9d4e0-4a35-4ef4-bf75-f8230a9a0080))
  4517. (pin "3" (uuid 1bd41d7a-cc03-44d3-8bb3-d6d3905c11be))
  4518. (pin "4" (uuid f01f8ee4-5ab0-46bf-ba4d-6358091f1053))
  4519. )
  4520. (symbol (lib_id "Device:C_Small") (at 88.9 237.49 0) (unit 1)
  4521. (in_bom yes) (on_board yes)
  4522. (uuid 00000000-0000-0000-0000-000061f52a71)
  4523. (property "Reference" "C1" (id 0) (at 91.2368 236.3216 0)
  4524. (effects (font (size 1.27 1.27)) (justify left))
  4525. )
  4526. (property "Value" "0.1uF" (id 1) (at 91.2368 238.633 0)
  4527. (effects (font (size 1.27 1.27)) (justify left))
  4528. )
  4529. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 88.9 237.49 0)
  4530. (effects (font (size 1.27 1.27)) hide)
  4531. )
  4532. (property "Datasheet" "~" (id 3) (at 88.9 237.49 0)
  4533. (effects (font (size 1.27 1.27)) hide)
  4534. )
  4535. (property "LCSC" "C1591" (id 4) (at 88.9 237.49 0)
  4536. (effects (font (size 1.27 1.27)) hide)
  4537. )
  4538. (property "Digikey" "1276-1935-1-ND" (id 5) (at 88.9 237.49 0)
  4539. (effects (font (size 1.27 1.27)) hide)
  4540. )
  4541. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 88.9 237.49 0)
  4542. (effects (font (size 1.27 1.27)) hide)
  4543. )
  4544. (pin "1" (uuid b5b98d18-92b0-45e4-a464-abeb3e63c67f))
  4545. (pin "2" (uuid 3d816713-8e55-4148-9a62-71edf593333b))
  4546. )
  4547. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 129.54 242.57 0) (unit 1)
  4548. (in_bom yes) (on_board yes)
  4549. (uuid 00000000-0000-0000-0000-000061f5739b)
  4550. (property "Reference" "D2" (id 0) (at 121.92 228.6 0)
  4551. (effects (font (size 1.27 1.27)) (justify left))
  4552. )
  4553. (property "Value" "SK6812SIDE-A" (id 1) (at 121.92 231.14 0)
  4554. (effects (font (size 1.27 1.27)) (justify left))
  4555. )
  4556. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 130.81 250.19 0)
  4557. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4558. )
  4559. (property "Datasheet" "" (id 3) (at 132.08 252.095 0)
  4560. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4561. )
  4562. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 129.54 242.57 0)
  4563. (effects (font (size 1.27 1.27)) hide)
  4564. )
  4565. (property "Digikey" "1528-4691-ND" (id 5) (at 129.54 242.57 0)
  4566. (effects (font (size 1.27 1.27)) hide)
  4567. )
  4568. (property "Mouser" "485-4691" (id 6) (at 129.54 242.57 0)
  4569. (effects (font (size 1.27 1.27)) hide)
  4570. )
  4571. (property "LCSC" "C2890037" (id 7) (at 129.54 242.57 0)
  4572. (effects (font (size 1.27 1.27)) hide)
  4573. )
  4574. (pin "1" (uuid 04a28995-10a7-4e8d-bf0a-3c28cd74c2fa))
  4575. (pin "2" (uuid 5b5e9d4f-5380-4795-9c5c-6c9dd2774543))
  4576. (pin "3" (uuid c2113ebe-baee-4c93-b17b-9f259cc79e1d))
  4577. (pin "4" (uuid fce757f0-707e-4a92-9cdc-645159fe4b93))
  4578. )
  4579. (symbol (lib_id "Device:C_Small") (at 116.84 237.49 0) (unit 1)
  4580. (in_bom yes) (on_board yes)
  4581. (uuid 00000000-0000-0000-0000-000061f573a1)
  4582. (property "Reference" "C2" (id 0) (at 119.1768 236.3216 0)
  4583. (effects (font (size 1.27 1.27)) (justify left))
  4584. )
  4585. (property "Value" "0.1uF" (id 1) (at 119.1768 238.633 0)
  4586. (effects (font (size 1.27 1.27)) (justify left))
  4587. )
  4588. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 116.84 237.49 0)
  4589. (effects (font (size 1.27 1.27)) hide)
  4590. )
  4591. (property "Datasheet" "~" (id 3) (at 116.84 237.49 0)
  4592. (effects (font (size 1.27 1.27)) hide)
  4593. )
  4594. (property "LCSC" "C1591" (id 4) (at 116.84 237.49 0)
  4595. (effects (font (size 1.27 1.27)) hide)
  4596. )
  4597. (property "Digikey" "1276-1935-1-ND" (id 5) (at 116.84 237.49 0)
  4598. (effects (font (size 1.27 1.27)) hide)
  4599. )
  4600. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 116.84 237.49 0)
  4601. (effects (font (size 1.27 1.27)) hide)
  4602. )
  4603. (pin "1" (uuid bf709803-4d4f-4339-b1c6-1b1dd9ed8ffe))
  4604. (pin "2" (uuid 9511d6e1-ad69-48c7-ab16-eeced975e0f6))
  4605. )
  4606. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 157.48 242.57 0) (unit 1)
  4607. (in_bom yes) (on_board yes)
  4608. (uuid 00000000-0000-0000-0000-000061f5777f)
  4609. (property "Reference" "D3" (id 0) (at 149.86 228.6 0)
  4610. (effects (font (size 1.27 1.27)) (justify left))
  4611. )
  4612. (property "Value" "SK6812SIDE-A" (id 1) (at 149.86 231.14 0)
  4613. (effects (font (size 1.27 1.27)) (justify left))
  4614. )
  4615. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 158.75 250.19 0)
  4616. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4617. )
  4618. (property "Datasheet" "" (id 3) (at 160.02 252.095 0)
  4619. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4620. )
  4621. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 157.48 242.57 0)
  4622. (effects (font (size 1.27 1.27)) hide)
  4623. )
  4624. (property "Digikey" "1528-4691-ND" (id 5) (at 157.48 242.57 0)
  4625. (effects (font (size 1.27 1.27)) hide)
  4626. )
  4627. (property "Mouser" "485-4691" (id 6) (at 157.48 242.57 0)
  4628. (effects (font (size 1.27 1.27)) hide)
  4629. )
  4630. (property "LCSC" "C2890037" (id 7) (at 157.48 242.57 0)
  4631. (effects (font (size 1.27 1.27)) hide)
  4632. )
  4633. (pin "1" (uuid 201ef1b6-fe47-4e18-a25d-8454a9ece970))
  4634. (pin "2" (uuid 6db3e0a6-b3ef-46d7-a683-43d6b85524e1))
  4635. (pin "3" (uuid 950602fa-6edc-4822-8c77-2744d02a2a8e))
  4636. (pin "4" (uuid e2a94c35-3ea5-4429-9e49-f1597125258b))
  4637. )
  4638. (symbol (lib_id "Device:C_Small") (at 144.78 237.49 0) (unit 1)
  4639. (in_bom yes) (on_board yes)
  4640. (uuid 00000000-0000-0000-0000-000061f57785)
  4641. (property "Reference" "C3" (id 0) (at 147.1168 236.3216 0)
  4642. (effects (font (size 1.27 1.27)) (justify left))
  4643. )
  4644. (property "Value" "0.1uF" (id 1) (at 147.1168 238.633 0)
  4645. (effects (font (size 1.27 1.27)) (justify left))
  4646. )
  4647. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 144.78 237.49 0)
  4648. (effects (font (size 1.27 1.27)) hide)
  4649. )
  4650. (property "Datasheet" "~" (id 3) (at 144.78 237.49 0)
  4651. (effects (font (size 1.27 1.27)) hide)
  4652. )
  4653. (property "LCSC" "C1591" (id 4) (at 144.78 237.49 0)
  4654. (effects (font (size 1.27 1.27)) hide)
  4655. )
  4656. (property "Digikey" "1276-1935-1-ND" (id 5) (at 144.78 237.49 0)
  4657. (effects (font (size 1.27 1.27)) hide)
  4658. )
  4659. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 144.78 237.49 0)
  4660. (effects (font (size 1.27 1.27)) hide)
  4661. )
  4662. (pin "1" (uuid 2ffc2f04-cc47-469f-96de-81004a825de9))
  4663. (pin "2" (uuid aa9279f7-b972-4f25-b0f3-5e0f01a71f40))
  4664. )
  4665. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 185.42 242.57 0) (unit 1)
  4666. (in_bom yes) (on_board yes)
  4667. (uuid 00000000-0000-0000-0000-000061f5835d)
  4668. (property "Reference" "D4" (id 0) (at 177.8 228.6 0)
  4669. (effects (font (size 1.27 1.27)) (justify left))
  4670. )
  4671. (property "Value" "SK6812SIDE-A" (id 1) (at 177.8 231.14 0)
  4672. (effects (font (size 1.27 1.27)) (justify left))
  4673. )
  4674. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 186.69 250.19 0)
  4675. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4676. )
  4677. (property "Datasheet" "" (id 3) (at 187.96 252.095 0)
  4678. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4679. )
  4680. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 185.42 242.57 0)
  4681. (effects (font (size 1.27 1.27)) hide)
  4682. )
  4683. (property "Digikey" "1528-4691-ND" (id 5) (at 185.42 242.57 0)
  4684. (effects (font (size 1.27 1.27)) hide)
  4685. )
  4686. (property "Mouser" "485-4691" (id 6) (at 185.42 242.57 0)
  4687. (effects (font (size 1.27 1.27)) hide)
  4688. )
  4689. (property "LCSC" "C2890037" (id 7) (at 185.42 242.57 0)
  4690. (effects (font (size 1.27 1.27)) hide)
  4691. )
  4692. (pin "1" (uuid d127318f-e6ee-4aa6-8794-a9c8d7148677))
  4693. (pin "2" (uuid e8a993ec-3ca1-4e1c-b9db-8fedba6ba9f3))
  4694. (pin "3" (uuid ddd35cc1-7ea2-4027-93d1-5b3fd2c08415))
  4695. (pin "4" (uuid f853907f-0368-4b9f-8e86-2c6abac9120f))
  4696. )
  4697. (symbol (lib_id "Device:C_Small") (at 172.72 237.49 0) (unit 1)
  4698. (in_bom yes) (on_board yes)
  4699. (uuid 00000000-0000-0000-0000-000061f58363)
  4700. (property "Reference" "C4" (id 0) (at 175.0568 236.3216 0)
  4701. (effects (font (size 1.27 1.27)) (justify left))
  4702. )
  4703. (property "Value" "0.1uF" (id 1) (at 175.0568 238.633 0)
  4704. (effects (font (size 1.27 1.27)) (justify left))
  4705. )
  4706. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 172.72 237.49 0)
  4707. (effects (font (size 1.27 1.27)) hide)
  4708. )
  4709. (property "Datasheet" "~" (id 3) (at 172.72 237.49 0)
  4710. (effects (font (size 1.27 1.27)) hide)
  4711. )
  4712. (property "LCSC" "C1591" (id 4) (at 172.72 237.49 0)
  4713. (effects (font (size 1.27 1.27)) hide)
  4714. )
  4715. (property "Digikey" "1276-1935-1-ND" (id 5) (at 172.72 237.49 0)
  4716. (effects (font (size 1.27 1.27)) hide)
  4717. )
  4718. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 172.72 237.49 0)
  4719. (effects (font (size 1.27 1.27)) hide)
  4720. )
  4721. (pin "1" (uuid b9df3039-b0ba-4288-b952-e06df3568a9e))
  4722. (pin "2" (uuid f6ebdeb1-8356-41f8-aef5-a882f96ea707))
  4723. )
  4724. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 213.36 242.57 0) (unit 1)
  4725. (in_bom yes) (on_board yes)
  4726. (uuid 00000000-0000-0000-0000-000061f59037)
  4727. (property "Reference" "D5" (id 0) (at 205.74 228.6 0)
  4728. (effects (font (size 1.27 1.27)) (justify left))
  4729. )
  4730. (property "Value" "SK6812SIDE-A" (id 1) (at 205.74 231.14 0)
  4731. (effects (font (size 1.27 1.27)) (justify left))
  4732. )
  4733. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 214.63 250.19 0)
  4734. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4735. )
  4736. (property "Datasheet" "" (id 3) (at 215.9 252.095 0)
  4737. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4738. )
  4739. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 213.36 242.57 0)
  4740. (effects (font (size 1.27 1.27)) hide)
  4741. )
  4742. (property "Digikey" "1528-4691-ND" (id 5) (at 213.36 242.57 0)
  4743. (effects (font (size 1.27 1.27)) hide)
  4744. )
  4745. (property "Mouser" "485-4691" (id 6) (at 213.36 242.57 0)
  4746. (effects (font (size 1.27 1.27)) hide)
  4747. )
  4748. (property "LCSC" "C2890037" (id 7) (at 213.36 242.57 0)
  4749. (effects (font (size 1.27 1.27)) hide)
  4750. )
  4751. (pin "1" (uuid c7bd907f-ded5-4071-a8ba-298b61938e2d))
  4752. (pin "2" (uuid d72feaa1-d250-4ba1-908e-630af4ccb017))
  4753. (pin "3" (uuid 863622d7-1ac7-42d5-b53e-b58d28e7ac53))
  4754. (pin "4" (uuid 401cd2a0-2a04-428b-98d5-784a840a38d1))
  4755. )
  4756. (symbol (lib_id "Device:C_Small") (at 200.66 237.49 0) (unit 1)
  4757. (in_bom yes) (on_board yes)
  4758. (uuid 00000000-0000-0000-0000-000061f5903d)
  4759. (property "Reference" "C5" (id 0) (at 202.9968 236.3216 0)
  4760. (effects (font (size 1.27 1.27)) (justify left))
  4761. )
  4762. (property "Value" "0.1uF" (id 1) (at 202.9968 238.633 0)
  4763. (effects (font (size 1.27 1.27)) (justify left))
  4764. )
  4765. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 200.66 237.49 0)
  4766. (effects (font (size 1.27 1.27)) hide)
  4767. )
  4768. (property "Datasheet" "~" (id 3) (at 200.66 237.49 0)
  4769. (effects (font (size 1.27 1.27)) hide)
  4770. )
  4771. (property "LCSC" "C1591" (id 4) (at 200.66 237.49 0)
  4772. (effects (font (size 1.27 1.27)) hide)
  4773. )
  4774. (property "Digikey" "1276-1935-1-ND" (id 5) (at 200.66 237.49 0)
  4775. (effects (font (size 1.27 1.27)) hide)
  4776. )
  4777. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 200.66 237.49 0)
  4778. (effects (font (size 1.27 1.27)) hide)
  4779. )
  4780. (pin "1" (uuid 9bd7e8a2-4890-4d4a-ba78-597a7ab993ac))
  4781. (pin "2" (uuid 222be3c0-bf81-4a68-9c90-b370f4595e2d))
  4782. )
  4783. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 241.3 242.57 0) (unit 1)
  4784. (in_bom yes) (on_board yes)
  4785. (uuid 00000000-0000-0000-0000-000061f59ca5)
  4786. (property "Reference" "D6" (id 0) (at 233.68 228.6 0)
  4787. (effects (font (size 1.27 1.27)) (justify left))
  4788. )
  4789. (property "Value" "SK6812SIDE-A" (id 1) (at 233.68 231.14 0)
  4790. (effects (font (size 1.27 1.27)) (justify left))
  4791. )
  4792. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 242.57 250.19 0)
  4793. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4794. )
  4795. (property "Datasheet" "" (id 3) (at 243.84 252.095 0)
  4796. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4797. )
  4798. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 241.3 242.57 0)
  4799. (effects (font (size 1.27 1.27)) hide)
  4800. )
  4801. (property "Digikey" "1528-4691-ND" (id 5) (at 241.3 242.57 0)
  4802. (effects (font (size 1.27 1.27)) hide)
  4803. )
  4804. (property "Mouser" "485-4691" (id 6) (at 241.3 242.57 0)
  4805. (effects (font (size 1.27 1.27)) hide)
  4806. )
  4807. (property "LCSC" "C2890037" (id 7) (at 241.3 242.57 0)
  4808. (effects (font (size 1.27 1.27)) hide)
  4809. )
  4810. (pin "1" (uuid 1ee46f38-e002-4d3e-ad64-8a0e5f2fcd53))
  4811. (pin "2" (uuid 244a08c3-3e40-487a-bf72-768fa3af4139))
  4812. (pin "3" (uuid bfa445ac-246e-4db8-a60c-beb85501bf65))
  4813. (pin "4" (uuid c3b2e23c-8699-44ed-8837-d92d75420e84))
  4814. )
  4815. (symbol (lib_id "Device:C_Small") (at 228.6 237.49 0) (unit 1)
  4816. (in_bom yes) (on_board yes)
  4817. (uuid 00000000-0000-0000-0000-000061f59cab)
  4818. (property "Reference" "C6" (id 0) (at 230.9368 236.3216 0)
  4819. (effects (font (size 1.27 1.27)) (justify left))
  4820. )
  4821. (property "Value" "0.1uF" (id 1) (at 230.9368 238.633 0)
  4822. (effects (font (size 1.27 1.27)) (justify left))
  4823. )
  4824. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 228.6 237.49 0)
  4825. (effects (font (size 1.27 1.27)) hide)
  4826. )
  4827. (property "Datasheet" "~" (id 3) (at 228.6 237.49 0)
  4828. (effects (font (size 1.27 1.27)) hide)
  4829. )
  4830. (property "LCSC" "C1591" (id 4) (at 228.6 237.49 0)
  4831. (effects (font (size 1.27 1.27)) hide)
  4832. )
  4833. (property "Digikey" "1276-1935-1-ND" (id 5) (at 228.6 237.49 0)
  4834. (effects (font (size 1.27 1.27)) hide)
  4835. )
  4836. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 228.6 237.49 0)
  4837. (effects (font (size 1.27 1.27)) hide)
  4838. )
  4839. (pin "1" (uuid 2c04050f-f512-4581-b983-748e3e9c8741))
  4840. (pin "2" (uuid 0e2b9951-d16b-44e6-b1cb-591d480e8428))
  4841. )
  4842. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 269.24 242.57 0) (unit 1)
  4843. (in_bom yes) (on_board yes)
  4844. (uuid 00000000-0000-0000-0000-000061f5a949)
  4845. (property "Reference" "D7" (id 0) (at 261.62 228.6 0)
  4846. (effects (font (size 1.27 1.27)) (justify left))
  4847. )
  4848. (property "Value" "SK6812SIDE-A" (id 1) (at 261.62 231.14 0)
  4849. (effects (font (size 1.27 1.27)) (justify left))
  4850. )
  4851. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 270.51 250.19 0)
  4852. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4853. )
  4854. (property "Datasheet" "" (id 3) (at 271.78 252.095 0)
  4855. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4856. )
  4857. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 269.24 242.57 0)
  4858. (effects (font (size 1.27 1.27)) hide)
  4859. )
  4860. (property "Digikey" "1528-4691-ND" (id 5) (at 269.24 242.57 0)
  4861. (effects (font (size 1.27 1.27)) hide)
  4862. )
  4863. (property "Mouser" "485-4691" (id 6) (at 269.24 242.57 0)
  4864. (effects (font (size 1.27 1.27)) hide)
  4865. )
  4866. (property "LCSC" "C2890037" (id 7) (at 269.24 242.57 0)
  4867. (effects (font (size 1.27 1.27)) hide)
  4868. )
  4869. (pin "1" (uuid 1d8217dd-eaa5-4107-a059-78f1a0cf2926))
  4870. (pin "2" (uuid 21792e87-7a3e-440b-91e0-fb1e08f2f0ea))
  4871. (pin "3" (uuid 2bcef6ab-349b-4b2d-949e-d48ed58c62d8))
  4872. (pin "4" (uuid 34103ee4-40e1-4607-be07-8f0e21ac8c2f))
  4873. )
  4874. (symbol (lib_id "Device:C_Small") (at 256.54 237.49 0) (unit 1)
  4875. (in_bom yes) (on_board yes)
  4876. (uuid 00000000-0000-0000-0000-000061f5a94f)
  4877. (property "Reference" "C7" (id 0) (at 258.8768 236.3216 0)
  4878. (effects (font (size 1.27 1.27)) (justify left))
  4879. )
  4880. (property "Value" "0.1uF" (id 1) (at 258.8768 238.633 0)
  4881. (effects (font (size 1.27 1.27)) (justify left))
  4882. )
  4883. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 256.54 237.49 0)
  4884. (effects (font (size 1.27 1.27)) hide)
  4885. )
  4886. (property "Datasheet" "~" (id 3) (at 256.54 237.49 0)
  4887. (effects (font (size 1.27 1.27)) hide)
  4888. )
  4889. (property "LCSC" "C1591" (id 4) (at 256.54 237.49 0)
  4890. (effects (font (size 1.27 1.27)) hide)
  4891. )
  4892. (property "Digikey" "1276-1935-1-ND" (id 5) (at 256.54 237.49 0)
  4893. (effects (font (size 1.27 1.27)) hide)
  4894. )
  4895. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 256.54 237.49 0)
  4896. (effects (font (size 1.27 1.27)) hide)
  4897. )
  4898. (pin "1" (uuid 258c48bd-1542-4a0f-b861-39673f328184))
  4899. (pin "2" (uuid 2e1c27a1-dd61-4b32-84b9-2ef402708e70))
  4900. )
  4901. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 297.18 242.57 0) (unit 1)
  4902. (in_bom yes) (on_board yes)
  4903. (uuid 00000000-0000-0000-0000-000061f5bfc3)
  4904. (property "Reference" "D8" (id 0) (at 289.56 228.6 0)
  4905. (effects (font (size 1.27 1.27)) (justify left))
  4906. )
  4907. (property "Value" "SK6812SIDE-A" (id 1) (at 289.56 231.14 0)
  4908. (effects (font (size 1.27 1.27)) (justify left))
  4909. )
  4910. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 298.45 250.19 0)
  4911. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4912. )
  4913. (property "Datasheet" "" (id 3) (at 299.72 252.095 0)
  4914. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4915. )
  4916. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 297.18 242.57 0)
  4917. (effects (font (size 1.27 1.27)) hide)
  4918. )
  4919. (property "Digikey" "1528-4691-ND" (id 5) (at 297.18 242.57 0)
  4920. (effects (font (size 1.27 1.27)) hide)
  4921. )
  4922. (property "Mouser" "485-4691" (id 6) (at 297.18 242.57 0)
  4923. (effects (font (size 1.27 1.27)) hide)
  4924. )
  4925. (property "LCSC" "C2890037" (id 7) (at 297.18 242.57 0)
  4926. (effects (font (size 1.27 1.27)) hide)
  4927. )
  4928. (pin "1" (uuid 288b0cba-a15a-4d68-9c26-9264b1d2c369))
  4929. (pin "2" (uuid e03bd6b8-1308-4880-a800-290862af978e))
  4930. (pin "3" (uuid 71176ca5-c623-4627-aab5-549c91a9fba5))
  4931. (pin "4" (uuid 99a3dbfb-1c73-4c78-be7c-ded34e626f42))
  4932. )
  4933. (symbol (lib_id "Device:C_Small") (at 284.48 237.49 0) (unit 1)
  4934. (in_bom yes) (on_board yes)
  4935. (uuid 00000000-0000-0000-0000-000061f5bfc9)
  4936. (property "Reference" "C8" (id 0) (at 286.8168 236.3216 0)
  4937. (effects (font (size 1.27 1.27)) (justify left))
  4938. )
  4939. (property "Value" "0.1uF" (id 1) (at 286.8168 238.633 0)
  4940. (effects (font (size 1.27 1.27)) (justify left))
  4941. )
  4942. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 284.48 237.49 0)
  4943. (effects (font (size 1.27 1.27)) hide)
  4944. )
  4945. (property "Datasheet" "~" (id 3) (at 284.48 237.49 0)
  4946. (effects (font (size 1.27 1.27)) hide)
  4947. )
  4948. (property "LCSC" "C1591" (id 4) (at 284.48 237.49 0)
  4949. (effects (font (size 1.27 1.27)) hide)
  4950. )
  4951. (property "Digikey" "1276-1935-1-ND" (id 5) (at 284.48 237.49 0)
  4952. (effects (font (size 1.27 1.27)) hide)
  4953. )
  4954. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 284.48 237.49 0)
  4955. (effects (font (size 1.27 1.27)) hide)
  4956. )
  4957. (pin "1" (uuid 2e65c8b8-a3a7-4207-a4c6-ab159b0c890b))
  4958. (pin "2" (uuid 79a2fc97-84ef-4b52-93ec-d9847aacf642))
  4959. )
  4960. (symbol (lib_id "power:+5V") (at 88.9 229.87 0) (unit 1)
  4961. (in_bom yes) (on_board yes)
  4962. (uuid 00000000-0000-0000-0000-000061f5e471)
  4963. (property "Reference" "#PWR0101" (id 0) (at 88.9 233.68 0)
  4964. (effects (font (size 1.27 1.27)) hide)
  4965. )
  4966. (property "Value" "+5V" (id 1) (at 89.281 225.4758 0))
  4967. (property "Footprint" "" (id 2) (at 88.9 229.87 0)
  4968. (effects (font (size 1.27 1.27)) hide)
  4969. )
  4970. (property "Datasheet" "" (id 3) (at 88.9 229.87 0)
  4971. (effects (font (size 1.27 1.27)) hide)
  4972. )
  4973. (pin "1" (uuid 59a13100-a5d0-4346-918b-7d0612ecf423))
  4974. )
  4975. (symbol (lib_id "power:GND") (at 88.9 256.54 0) (unit 1)
  4976. (in_bom yes) (on_board yes)
  4977. (uuid 00000000-0000-0000-0000-000061f5f724)
  4978. (property "Reference" "#PWR0102" (id 0) (at 88.9 262.89 0)
  4979. (effects (font (size 1.27 1.27)) hide)
  4980. )
  4981. (property "Value" "GND" (id 1) (at 89.027 260.9342 0))
  4982. (property "Footprint" "" (id 2) (at 88.9 256.54 0)
  4983. (effects (font (size 1.27 1.27)) hide)
  4984. )
  4985. (property "Datasheet" "" (id 3) (at 88.9 256.54 0)
  4986. (effects (font (size 1.27 1.27)) hide)
  4987. )
  4988. (pin "1" (uuid d060b14c-ff8a-4c92-966f-cf6735c0e13f))
  4989. )
  4990. (symbol (lib_id "Connector:Conn_01x03_Male") (at 398.78 171.45 180) (unit 1)
  4991. (in_bom yes) (on_board yes)
  4992. (uuid 00000000-0000-0000-0000-000061f6e8c0)
  4993. (property "Reference" "J1" (id 0) (at 399.4912 172.0596 0)
  4994. (effects (font (size 1.27 1.27)) (justify right))
  4995. )
  4996. (property "Value" "BLDC" (id 1) (at 399.4912 169.7482 0)
  4997. (effects (font (size 1.27 1.27)) (justify right))
  4998. )
  4999. (property "Footprint" "Molex:532610371" (id 2) (at 398.78 171.45 0)
  5000. (effects (font (size 1.27 1.27)) hide)
  5001. )
  5002. (property "Datasheet" "~" (id 3) (at 398.78 171.45 0)
  5003. (effects (font (size 1.27 1.27)) hide)
  5004. )
  5005. (property "LCSC" "C293630" (id 4) (at 398.78 171.45 0)
  5006. (effects (font (size 1.27 1.27)) hide)
  5007. )
  5008. (property "Digikey" "WM7621CT-ND" (id 5) (at 398.78 171.45 0)
  5009. (effects (font (size 1.27 1.27)) hide)
  5010. )
  5011. (property "Mouser" "538-53261-0371" (id 6) (at 398.78 171.45 0)
  5012. (effects (font (size 1.27 1.27)) hide)
  5013. )
  5014. (pin "1" (uuid 8389195b-356a-44c3-a2e9-7820117d6596))
  5015. (pin "2" (uuid 37202a1b-6857-45c1-82b8-63d2e45accf1))
  5016. (pin "3" (uuid 68266e48-6278-4b4b-9827-471e05208fe8))
  5017. )
  5018. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 120.65 25.4 0) (unit 1)
  5019. (in_bom yes) (on_board yes)
  5020. (uuid 00000000-0000-0000-0000-000061f74a74)
  5021. (property "Reference" "H1" (id 0) (at 119.38 19.05 0)
  5022. (effects (font (size 1.27 1.27)) (justify left))
  5023. )
  5024. (property "Value" "MotorHole" (id 1) (at 119.38 20.32 0)
  5025. (effects (font (size 1.27 1.27)) (justify left))
  5026. )
  5027. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 120.65 25.4 0)
  5028. (effects (font (size 1.27 1.27)) hide)
  5029. )
  5030. (property "Datasheet" "~" (id 3) (at 120.65 25.4 0)
  5031. (effects (font (size 1.27 1.27)) hide)
  5032. )
  5033. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round). LCSC min qty 50 (but still very cheap)" (id 4) (at 120.65 25.4 0)
  5034. (effects (font (size 1.27 1.27)) hide)
  5035. )
  5036. (property "LCSC" "C2931389" (id 5) (at 120.65 25.4 0)
  5037. (effects (font (size 1.27 1.27)) hide)
  5038. )
  5039. (pin "1" (uuid fb7e8f26-7381-4b70-9ac7-a6d9d49f6672))
  5040. )
  5041. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 132.08 25.4 0) (unit 1)
  5042. (in_bom yes) (on_board yes)
  5043. (uuid 00000000-0000-0000-0000-000061f75e86)
  5044. (property "Reference" "H2" (id 0) (at 130.81 19.05 0)
  5045. (effects (font (size 1.27 1.27)) (justify left))
  5046. )
  5047. (property "Value" "MotorHole" (id 1) (at 130.81 20.32 0)
  5048. (effects (font (size 1.27 1.27)) (justify left))
  5049. )
  5050. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 132.08 25.4 0)
  5051. (effects (font (size 1.27 1.27)) hide)
  5052. )
  5053. (property "Datasheet" "~" (id 3) (at 132.08 25.4 0)
  5054. (effects (font (size 1.27 1.27)) hide)
  5055. )
  5056. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round). LCSC min qty 50 (but still very cheap)" (id 4) (at 132.08 25.4 0)
  5057. (effects (font (size 1.27 1.27)) hide)
  5058. )
  5059. (property "LCSC" "C2931389" (id 5) (at 132.08 25.4 0)
  5060. (effects (font (size 1.27 1.27)) hide)
  5061. )
  5062. (pin "1" (uuid a49a4d82-48bd-42b8-95c9-1c983664fc79))
  5063. )
  5064. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 143.51 25.4 0) (unit 1)
  5065. (in_bom yes) (on_board yes)
  5066. (uuid 00000000-0000-0000-0000-000061f76bf7)
  5067. (property "Reference" "H3" (id 0) (at 142.24 19.05 0)
  5068. (effects (font (size 1.27 1.27)) (justify left))
  5069. )
  5070. (property "Value" "MotorHole" (id 1) (at 142.24 20.32 0)
  5071. (effects (font (size 1.27 1.27)) (justify left))
  5072. )
  5073. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 143.51 25.4 0)
  5074. (effects (font (size 1.27 1.27)) hide)
  5075. )
  5076. (property "Datasheet" "~" (id 3) (at 143.51 25.4 0)
  5077. (effects (font (size 1.27 1.27)) hide)
  5078. )
  5079. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round). LCSC min qty 50 (but still very cheap)" (id 4) (at 143.51 25.4 0)
  5080. (effects (font (size 1.27 1.27)) hide)
  5081. )
  5082. (property "LCSC" "C2931389" (id 5) (at 143.51 25.4 0)
  5083. (effects (font (size 1.27 1.27)) hide)
  5084. )
  5085. (pin "1" (uuid f5b3ac78-e150-4b32-bc84-9d75c87fb341))
  5086. )
  5087. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 120.65 40.64 0) (unit 1)
  5088. (in_bom yes) (on_board yes)
  5089. (uuid 00000000-0000-0000-0000-000061f779d1)
  5090. (property "Reference" "H4" (id 0) (at 119.38 34.29 0)
  5091. (effects (font (size 1.27 1.27)) (justify left))
  5092. )
  5093. (property "Value" "MountHole" (id 1) (at 119.38 35.56 0)
  5094. (effects (font (size 1.27 1.27)) (justify left))
  5095. )
  5096. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 120.65 40.64 0)
  5097. (effects (font (size 1.27 1.27)) hide)
  5098. )
  5099. (property "Datasheet" "~" (id 3) (at 120.65 40.64 0)
  5100. (effects (font (size 1.27 1.27)) hide)
  5101. )
  5102. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex. LCSC min qty 50 (but still very cheap)" (id 4) (at 120.65 40.64 0)
  5103. (effects (font (size 1.27 1.27)) hide)
  5104. )
  5105. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 120.65 40.64 0)
  5106. (effects (font (size 1.27 1.27)) hide)
  5107. )
  5108. (pin "1" (uuid 2e306457-a203-45bd-8828-39a6fc7884b5))
  5109. )
  5110. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 132.08 40.64 0) (unit 1)
  5111. (in_bom yes) (on_board yes)
  5112. (uuid 00000000-0000-0000-0000-000061f788c4)
  5113. (property "Reference" "H5" (id 0) (at 130.81 34.29 0)
  5114. (effects (font (size 1.27 1.27)) (justify left))
  5115. )
  5116. (property "Value" "MountHole" (id 1) (at 130.81 35.56 0)
  5117. (effects (font (size 1.27 1.27)) (justify left))
  5118. )
  5119. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 132.08 40.64 0)
  5120. (effects (font (size 1.27 1.27)) hide)
  5121. )
  5122. (property "Datasheet" "~" (id 3) (at 132.08 40.64 0)
  5123. (effects (font (size 1.27 1.27)) hide)
  5124. )
  5125. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex. LCSC min qty 50 (but still very cheap)" (id 4) (at 132.08 40.64 0)
  5126. (effects (font (size 1.27 1.27)) hide)
  5127. )
  5128. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 132.08 40.64 0)
  5129. (effects (font (size 1.27 1.27)) hide)
  5130. )
  5131. (pin "1" (uuid 4a7017bb-a698-433b-a0be-587786fcc0bb))
  5132. )
  5133. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 143.51 40.64 0) (unit 1)
  5134. (in_bom yes) (on_board yes)
  5135. (uuid 00000000-0000-0000-0000-000061f79385)
  5136. (property "Reference" "H6" (id 0) (at 142.24 34.29 0)
  5137. (effects (font (size 1.27 1.27)) (justify left))
  5138. )
  5139. (property "Value" "MountHole" (id 1) (at 142.24 35.56 0)
  5140. (effects (font (size 1.27 1.27)) (justify left))
  5141. )
  5142. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 143.51 40.64 0)
  5143. (effects (font (size 1.27 1.27)) hide)
  5144. )
  5145. (property "Datasheet" "~" (id 3) (at 143.51 40.64 0)
  5146. (effects (font (size 1.27 1.27)) hide)
  5147. )
  5148. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex. LCSC min qty 50 (but still very cheap)" (id 4) (at 143.51 40.64 0)
  5149. (effects (font (size 1.27 1.27)) hide)
  5150. )
  5151. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 143.51 40.64 0)
  5152. (effects (font (size 1.27 1.27)) hide)
  5153. )
  5154. (pin "1" (uuid 1b2eb90f-4916-4496-934c-ebfaf59fd7d2))
  5155. )
  5156. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 154.94 40.64 0) (unit 1)
  5157. (in_bom yes) (on_board yes)
  5158. (uuid 00000000-0000-0000-0000-000061f79f4a)
  5159. (property "Reference" "H7" (id 0) (at 153.67 34.29 0)
  5160. (effects (font (size 1.27 1.27)) (justify left))
  5161. )
  5162. (property "Value" "MountHole" (id 1) (at 153.67 35.56 0)
  5163. (effects (font (size 1.27 1.27)) (justify left))
  5164. )
  5165. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 154.94 40.64 0)
  5166. (effects (font (size 1.27 1.27)) hide)
  5167. )
  5168. (property "Datasheet" "~" (id 3) (at 154.94 40.64 0)
  5169. (effects (font (size 1.27 1.27)) hide)
  5170. )
  5171. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex. LCSC min qty 50 (but still very cheap)" (id 4) (at 154.94 40.64 0)
  5172. (effects (font (size 1.27 1.27)) hide)
  5173. )
  5174. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 154.94 40.64 0)
  5175. (effects (font (size 1.27 1.27)) hide)
  5176. )
  5177. (pin "1" (uuid c18786e1-cb25-48dd-81cc-bf7c7fdf476f))
  5178. )
  5179. (symbol (lib_id "Connector:USB_C_Receptacle_USB2.0") (at 38.1 76.2 0) (unit 1)
  5180. (in_bom yes) (on_board yes)
  5181. (uuid 00000000-0000-0000-0000-000061fcaa5b)
  5182. (property "Reference" "J2" (id 0) (at 40.8178 54.1782 0))
  5183. (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 40.8178 56.4896 0))
  5184. (property "Footprint" "GCT_USB:USB4510_NoPaste" (id 2) (at 41.91 76.2 0)
  5185. (effects (font (size 1.27 1.27)) hide)
  5186. )
  5187. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 41.91 76.2 0)
  5188. (effects (font (size 1.27 1.27)) hide)
  5189. )
  5190. (property "LCSC" "C428463" (id 4) (at 38.1 76.2 0)
  5191. (effects (font (size 1.27 1.27)) hide)
  5192. )
  5193. (property "Mouser" "640-USB4510031A" (id 5) (at 38.1 76.2 0)
  5194. (effects (font (size 1.27 1.27)) hide)
  5195. )
  5196. (property "Digikey" "USB4510-03-1-A" (id 6) (at 38.1 76.2 0)
  5197. (effects (font (size 1.27 1.27)) hide)
  5198. )
  5199. (pin "A1" (uuid 002f7484-2b7c-4028-a197-c7ee893455cd))
  5200. (pin "A12" (uuid b64072d6-c6a3-480c-b247-ced76a0683e2))
  5201. (pin "A4" (uuid fd650d11-1f43-4a29-b666-0e915ada0015))
  5202. (pin "A5" (uuid 11059d92-63df-44ac-a943-05eabeaf6b3b))
  5203. (pin "A6" (uuid 6ca9a15b-7bed-4718-b87f-cf6cd158c0fb))
  5204. (pin "A7" (uuid 065c4afd-f083-4572-ae73-9f005b8a95bc))
  5205. (pin "A8" (uuid 62bc0e7f-185a-4e68-985e-5d6bf4e3ea4f))
  5206. (pin "A9" (uuid f66ea475-b102-46de-8024-e5ca653f9bf4))
  5207. (pin "B1" (uuid 5baffaf4-808e-4171-9980-10bcb56b2135))
  5208. (pin "B12" (uuid 8781b105-979a-42b2-819f-1b043b4adf27))
  5209. (pin "B4" (uuid fac50c0a-4700-4a91-82d0-1c46b35dca25))
  5210. (pin "B5" (uuid 95895ffd-4330-4c63-aa8a-80105ad94072))
  5211. (pin "B6" (uuid d3c25891-3308-4e1a-81a3-920c152e8483))
  5212. (pin "B7" (uuid ded34583-530c-49a3-9bd1-3387d788ac5f))
  5213. (pin "B8" (uuid bab68279-cb28-4a3f-9bf9-91aaa2b9f18f))
  5214. (pin "B9" (uuid 25af3105-71ee-4af7-8f3c-eb77a7b9280e))
  5215. (pin "S1" (uuid 7214610a-9815-4f4b-85c6-8f2cd1130da1))
  5216. )
  5217. (symbol (lib_id "Device:Q_PNP_BEC") (at 191.77 172.72 180) (unit 1)
  5218. (in_bom yes) (on_board yes)
  5219. (uuid 00000000-0000-0000-0000-000061fe5517)
  5220. (property "Reference" "Q1" (id 0) (at 186.9186 171.5516 0)
  5221. (effects (font (size 1.27 1.27)) (justify left))
  5222. )
  5223. (property "Value" "MMBT4403" (id 1) (at 186.9186 173.863 0)
  5224. (effects (font (size 1.27 1.27)) (justify left))
  5225. )
  5226. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 186.69 175.26 0)
  5227. (effects (font (size 1.27 1.27)) hide)
  5228. )
  5229. (property "Datasheet" "~" (id 3) (at 191.77 172.72 0)
  5230. (effects (font (size 1.27 1.27)) hide)
  5231. )
  5232. (property "LCSC" "C78864" (id 4) (at 191.77 172.72 0)
  5233. (effects (font (size 1.27 1.27)) hide)
  5234. )
  5235. (property "Digikey" "MMBT4403LT1GOSCT-ND" (id 5) (at 191.77 172.72 0)
  5236. (effects (font (size 1.27 1.27)) hide)
  5237. )
  5238. (property "Mouser" "241-MMBT4403R100001" (id 6) (at 191.77 172.72 0)
  5239. (effects (font (size 1.27 1.27)) hide)
  5240. )
  5241. (pin "1" (uuid 161b1717-b29c-4bd9-8a62-3aa7a05da5be))
  5242. (pin "2" (uuid a2db5db7-5865-46a7-aee9-882a62db9f60))
  5243. (pin "3" (uuid 32786941-fff9-4885-b617-e55883187978))
  5244. )
  5245. (symbol (lib_id "power:GND") (at 30.48 104.14 0) (unit 1)
  5246. (in_bom yes) (on_board yes)
  5247. (uuid 00000000-0000-0000-0000-000061fefd56)
  5248. (property "Reference" "#PWR0103" (id 0) (at 30.48 110.49 0)
  5249. (effects (font (size 1.27 1.27)) hide)
  5250. )
  5251. (property "Value" "GND" (id 1) (at 30.607 108.5342 0))
  5252. (property "Footprint" "" (id 2) (at 30.48 104.14 0)
  5253. (effects (font (size 1.27 1.27)) hide)
  5254. )
  5255. (property "Datasheet" "" (id 3) (at 30.48 104.14 0)
  5256. (effects (font (size 1.27 1.27)) hide)
  5257. )
  5258. (pin "1" (uuid 753db779-6d2f-4629-a652-9a47910cf470))
  5259. )
  5260. (symbol (lib_id "Device:R_Small") (at 83.82 68.58 0) (unit 1)
  5261. (in_bom yes) (on_board yes)
  5262. (uuid 00000000-0000-0000-0000-000061ff5247)
  5263. (property "Reference" "R1" (id 0) (at 85.3186 67.4116 0)
  5264. (effects (font (size 1.27 1.27)) (justify left))
  5265. )
  5266. (property "Value" "5.1k" (id 1) (at 85.3186 69.723 0)
  5267. (effects (font (size 1.27 1.27)) (justify left))
  5268. )
  5269. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 83.82 68.58 0)
  5270. (effects (font (size 1.27 1.27)) hide)
  5271. )
  5272. (property "Datasheet" "~" (id 3) (at 83.82 68.58 0)
  5273. (effects (font (size 1.27 1.27)) hide)
  5274. )
  5275. (property "LCSC" "C105580" (id 4) (at 83.82 68.58 0)
  5276. (effects (font (size 1.27 1.27)) hide)
  5277. )
  5278. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 83.82 68.58 0)
  5279. (effects (font (size 1.27 1.27)) hide)
  5280. )
  5281. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 83.82 68.58 0)
  5282. (effects (font (size 1.27 1.27)) hide)
  5283. )
  5284. (pin "1" (uuid 2622f595-7ff0-453e-9b78-19125b1110e8))
  5285. (pin "2" (uuid 7bfd21eb-4ee9-42ce-8900-a93d825953d0))
  5286. )
  5287. (symbol (lib_id "Device:R_Small") (at 77.47 71.12 0) (unit 1)
  5288. (in_bom yes) (on_board yes)
  5289. (uuid 00000000-0000-0000-0000-000061ff59bf)
  5290. (property "Reference" "R2" (id 0) (at 78.9686 69.9516 0)
  5291. (effects (font (size 1.27 1.27)) (justify left))
  5292. )
  5293. (property "Value" "5.1k" (id 1) (at 78.9686 72.263 0)
  5294. (effects (font (size 1.27 1.27)) (justify left))
  5295. )
  5296. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 77.47 71.12 0)
  5297. (effects (font (size 1.27 1.27)) hide)
  5298. )
  5299. (property "Datasheet" "~" (id 3) (at 77.47 71.12 0)
  5300. (effects (font (size 1.27 1.27)) hide)
  5301. )
  5302. (property "LCSC" "C105580" (id 4) (at 77.47 71.12 0)
  5303. (effects (font (size 1.27 1.27)) hide)
  5304. )
  5305. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 77.47 71.12 0)
  5306. (effects (font (size 1.27 1.27)) hide)
  5307. )
  5308. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 77.47 71.12 0)
  5309. (effects (font (size 1.27 1.27)) hide)
  5310. )
  5311. (pin "1" (uuid 03899fc2-7ab8-4d54-82c2-1488f5d9b0d9))
  5312. (pin "2" (uuid acc4d69b-68c3-4d63-9943-16f6eacb0ebc))
  5313. )
  5314. (symbol (lib_id "power:GND") (at 81.28 77.47 0) (unit 1)
  5315. (in_bom yes) (on_board yes)
  5316. (uuid 00000000-0000-0000-0000-000061ff8431)
  5317. (property "Reference" "#PWR0104" (id 0) (at 81.28 83.82 0)
  5318. (effects (font (size 1.27 1.27)) hide)
  5319. )
  5320. (property "Value" "GND" (id 1) (at 81.407 81.8642 0))
  5321. (property "Footprint" "" (id 2) (at 81.28 77.47 0)
  5322. (effects (font (size 1.27 1.27)) hide)
  5323. )
  5324. (property "Datasheet" "" (id 3) (at 81.28 77.47 0)
  5325. (effects (font (size 1.27 1.27)) hide)
  5326. )
  5327. (pin "1" (uuid eb8a3560-5898-4134-bac6-7bb251ee79be))
  5328. )
  5329. (symbol (lib_id "Device:R_Small") (at 184.15 184.15 0) (unit 1)
  5330. (in_bom yes) (on_board yes)
  5331. (uuid 00000000-0000-0000-0000-000061ff8747)
  5332. (property "Reference" "R3" (id 0) (at 185.6486 182.9816 0)
  5333. (effects (font (size 1.27 1.27)) (justify left))
  5334. )
  5335. (property "Value" "10k" (id 1) (at 185.6486 185.293 0)
  5336. (effects (font (size 1.27 1.27)) (justify left))
  5337. )
  5338. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 184.15 0)
  5339. (effects (font (size 1.27 1.27)) hide)
  5340. )
  5341. (property "Datasheet" "~" (id 3) (at 184.15 184.15 0)
  5342. (effects (font (size 1.27 1.27)) hide)
  5343. )
  5344. (property "LCSC" "C98220" (id 4) (at 184.15 184.15 0)
  5345. (effects (font (size 1.27 1.27)) hide)
  5346. )
  5347. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 184.15 184.15 0)
  5348. (effects (font (size 1.27 1.27)) hide)
  5349. )
  5350. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 184.15 184.15 0)
  5351. (effects (font (size 1.27 1.27)) hide)
  5352. )
  5353. (pin "1" (uuid 4d0cb151-be02-460e-84ff-e89488e5e234))
  5354. (pin "2" (uuid 5a7e1875-0a35-41e4-b34e-52ef60ffafd7))
  5355. )
  5356. (symbol (lib_id "Device:R_Small") (at 184.15 191.77 0) (unit 1)
  5357. (in_bom yes) (on_board yes)
  5358. (uuid 00000000-0000-0000-0000-000061fff7fc)
  5359. (property "Reference" "R4" (id 0) (at 185.6486 190.6016 0)
  5360. (effects (font (size 1.27 1.27)) (justify left))
  5361. )
  5362. (property "Value" "8.2k" (id 1) (at 185.6486 192.913 0)
  5363. (effects (font (size 1.27 1.27)) (justify left))
  5364. )
  5365. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 191.77 0)
  5366. (effects (font (size 1.27 1.27)) hide)
  5367. )
  5368. (property "Datasheet" "~" (id 3) (at 184.15 191.77 0)
  5369. (effects (font (size 1.27 1.27)) hide)
  5370. )
  5371. (property "LCSC" "C114637" (id 4) (at 184.15 191.77 0)
  5372. (effects (font (size 1.27 1.27)) hide)
  5373. )
  5374. (property "Digikey" "RMCF0603FT8K20CT-ND" (id 5) (at 184.15 191.77 0)
  5375. (effects (font (size 1.27 1.27)) hide)
  5376. )
  5377. (property "Mouser" "652-CR0603FX-8201ELF" (id 6) (at 184.15 191.77 0)
  5378. (effects (font (size 1.27 1.27)) hide)
  5379. )
  5380. (pin "1" (uuid 4677f77b-9c70-421e-9de7-f775b3529feb))
  5381. (pin "2" (uuid 97568c37-72cd-4f98-87e8-6c89ce613585))
  5382. )
  5383. (symbol (lib_id "lilygo_micro32:T-Micro32_Plus") (at 359.41 50.8 0) (unit 1)
  5384. (in_bom yes) (on_board yes)
  5385. (uuid 00000000-0000-0000-0000-00006200e46e)
  5386. (property "Reference" "U2" (id 0) (at 359.41 26.289 0))
  5387. (property "Value" "T-Micro32_Plus" (id 1) (at 359.41 28.6004 0))
  5388. (property "Footprint" "lilygo_micro32:T-Micro32" (id 2) (at 359.41 50.8 0)
  5389. (effects (font (size 1.27 1.27)) hide)
  5390. )
  5391. (property "Datasheet" "" (id 3) (at 359.41 50.8 0)
  5392. (effects (font (size 1.27 1.27)) hide)
  5393. )
  5394. (property "AliExpress" "https://www.aliexpress.com/item/1005002308952882.html" (id 4) (at 359.41 50.8 0)
  5395. (effects (font (size 1.27 1.27)) hide)
  5396. )
  5397. (property "Digikey" "N/A" (id 5) (at 359.41 50.8 0)
  5398. (effects (font (size 1.27 1.27)) hide)
  5399. )
  5400. (property "LCSC" "N/A" (id 6) (at 359.41 50.8 0)
  5401. (effects (font (size 1.27 1.27)) hide)
  5402. )
  5403. (property "Mouser" "N/A" (id 7) (at 359.41 50.8 0)
  5404. (effects (font (size 1.27 1.27)) hide)
  5405. )
  5406. (pin "1" (uuid 6b3002dd-62c9-4f2a-8c51-d319894ff4a7))
  5407. (pin "10" (uuid 34029f0e-f900-4d7a-9828-197bbcb8268d))
  5408. (pin "11" (uuid cbe5ee8f-62c2-4029-9056-b2f9e38d44f7))
  5409. (pin "12" (uuid 1b39aee1-14bb-4f57-949c-af5946eea388))
  5410. (pin "13" (uuid 0471630c-6e2d-4993-a721-ad6b31523ea6))
  5411. (pin "14" (uuid c28a02b8-543d-4b71-94f5-b4f7fb82f2a4))
  5412. (pin "15" (uuid bfdd06e2-88b3-46c3-90e9-61feb9373e52))
  5413. (pin "16" (uuid e55179bd-83e9-4012-8409-5f9273ff012b))
  5414. (pin "17" (uuid e5d566b5-604a-4348-bb23-43d85bcaf394))
  5415. (pin "18" (uuid 3f337261-bd0b-4a3c-af5d-41e4f20b8d2b))
  5416. (pin "19" (uuid 89b4a707-c1ed-4546-9194-77a5268f4f37))
  5417. (pin "2" (uuid 6eb210e6-2a55-4bbe-b437-8097f6ba8718))
  5418. (pin "20" (uuid 70335fd6-e8f4-4775-9886-57d960327617))
  5419. (pin "21" (uuid 89a0ce78-20ea-4c37-a2a1-821844b77b5d))
  5420. (pin "22" (uuid 5c99a6ab-e247-47b9-aa50-cb98a25ea96f))
  5421. (pin "23" (uuid a6891bb5-a357-4c05-8e0e-ce8ff96bc5b7))
  5422. (pin "24" (uuid 89c5080f-2ff3-46dd-9810-2d1cc5f0678f))
  5423. (pin "25" (uuid a0f7b4f1-b832-4e8c-a8da-e907a365d7c9))
  5424. (pin "26" (uuid d462d3d3-f72d-4da5-ba63-9581787e3cbc))
  5425. (pin "27" (uuid 73a6877f-e142-4c8a-9931-2019ad27bde0))
  5426. (pin "28" (uuid da72a49f-1d98-4ec6-a8da-2d113d494eac))
  5427. (pin "29" (uuid f0f06ae3-1e13-44be-bb4c-cd708e56fb43))
  5428. (pin "3" (uuid 502a5913-ee24-401f-9f1a-9d3a372ca6ac))
  5429. (pin "30" (uuid 9ea0d503-4d4d-4c1c-90df-744a6489c595))
  5430. (pin "31" (uuid 9d64d986-5464-4a8c-99c0-33609c2bcbc0))
  5431. (pin "32" (uuid da16f818-0e37-4603-a547-ed7df9a96452))
  5432. (pin "33" (uuid b7f33759-9c41-4f21-9251-82c96e55b33c))
  5433. (pin "34" (uuid 8078e752-010a-4a6c-9826-0a04781deb71))
  5434. (pin "35" (uuid a908c14e-8db0-43d6-ad9e-7bc7cd7d2260))
  5435. (pin "36" (uuid 7e6bef7f-a70d-4c13-b4df-61d4bdc1257a))
  5436. (pin "37" (uuid 2c427024-ca14-4429-b693-ea483e491065))
  5437. (pin "38" (uuid 1da88dc4-5345-4e0d-a84c-400631092f11))
  5438. (pin "4" (uuid bbc62690-b8fb-438a-8ee0-c77d65956f89))
  5439. (pin "5" (uuid bb690633-a2d8-45d8-8d80-85ce2f66f3a7))
  5440. (pin "6" (uuid aa67310a-259a-4b0d-8870-2ee279e7e79a))
  5441. (pin "7" (uuid 6eaf2310-87a6-4b9a-92e8-35debbcaa5b5))
  5442. (pin "8" (uuid d7b0be32-8a7e-4951-abf9-98542738f8f1))
  5443. (pin "9" (uuid 82fd1409-968b-41c3-be8c-cb2561ea3ffe))
  5444. )
  5445. (symbol (lib_id "Device:L_Small") (at 173.99 181.61 270) (unit 1)
  5446. (in_bom yes) (on_board yes)
  5447. (uuid 00000000-0000-0000-0000-00006200e5de)
  5448. (property "Reference" "L1" (id 0) (at 173.99 177.0126 90))
  5449. (property "Value" "3.3uH" (id 1) (at 173.99 179.324 90))
  5450. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 173.99 181.61 0)
  5451. (effects (font (size 1.27 1.27)) hide)
  5452. )
  5453. (property "Datasheet" "~" (id 3) (at 173.99 181.61 0)
  5454. (effects (font (size 1.27 1.27)) hide)
  5455. )
  5456. (property "LCSC" "C307744" (id 4) (at 173.99 181.61 0)
  5457. (effects (font (size 1.27 1.27)) hide)
  5458. )
  5459. (property "Digikey" "445-6394-1-ND" (id 5) (at 173.99 181.61 0)
  5460. (effects (font (size 1.27 1.27)) hide)
  5461. )
  5462. (property "Mouser" "810-MLZ2012A3R3WT000" (id 6) (at 173.99 181.61 0)
  5463. (effects (font (size 1.27 1.27)) hide)
  5464. )
  5465. (pin "1" (uuid 89283502-e13e-4c58-93fe-0e0a0b4dc0b5))
  5466. (pin "2" (uuid 7eb55f38-c35e-457a-b1e4-b1dae5d70338))
  5467. )
  5468. (symbol (lib_id "Device:C_Small") (at 167.64 184.15 0) (unit 1)
  5469. (in_bom yes) (on_board yes)
  5470. (uuid 00000000-0000-0000-0000-0000620172ce)
  5471. (property "Reference" "C19" (id 0) (at 169.9768 182.9816 0)
  5472. (effects (font (size 1.27 1.27)) (justify left))
  5473. )
  5474. (property "Value" "0.1uF" (id 1) (at 169.9768 185.293 0)
  5475. (effects (font (size 1.27 1.27)) (justify left))
  5476. )
  5477. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 167.64 184.15 0)
  5478. (effects (font (size 1.27 1.27)) hide)
  5479. )
  5480. (property "Datasheet" "~" (id 3) (at 167.64 184.15 0)
  5481. (effects (font (size 1.27 1.27)) hide)
  5482. )
  5483. (property "LCSC" "C1591" (id 4) (at 167.64 184.15 0)
  5484. (effects (font (size 1.27 1.27)) hide)
  5485. )
  5486. (property "Digikey" "1276-1935-1-ND" (id 5) (at 167.64 184.15 0)
  5487. (effects (font (size 1.27 1.27)) hide)
  5488. )
  5489. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 167.64 184.15 0)
  5490. (effects (font (size 1.27 1.27)) hide)
  5491. )
  5492. (pin "1" (uuid 3e488e92-bddd-4d44-95f8-53f1899959b3))
  5493. (pin "2" (uuid e97a138c-907f-4ac2-909d-5420774bbc49))
  5494. )
  5495. (symbol (lib_id "Interface_USB:CH340C") (at 121.92 77.47 0) (unit 1)
  5496. (in_bom yes) (on_board yes)
  5497. (uuid 00000000-0000-0000-0000-0000620180e0)
  5498. (property "Reference" "U3" (id 0) (at 114.3 57.15 0))
  5499. (property "Value" "CH340C" (id 1) (at 118.11 81.28 0))
  5500. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 123.19 91.44 0)
  5501. (effects (font (size 1.27 1.27)) (justify left) hide)
  5502. )
  5503. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/Jiangsu-Qin-Heng-CH340C_C84681.pdf" (id 3) (at 113.03 57.15 0)
  5504. (effects (font (size 1.27 1.27)) hide)
  5505. )
  5506. (property "LCSC" "C84681" (id 4) (at 121.92 77.47 0)
  5507. (effects (font (size 1.27 1.27)) hide)
  5508. )
  5509. (property "Digikey" "N/A" (id 5) (at 121.92 77.47 0)
  5510. (effects (font (size 1.27 1.27)) hide)
  5511. )
  5512. (property "Mouser" "N/A" (id 6) (at 121.92 77.47 0)
  5513. (effects (font (size 1.27 1.27)) hide)
  5514. )
  5515. (pin "1" (uuid ec1f1e1b-be42-4866-9a6b-b89e6e88f2c5))
  5516. (pin "10" (uuid 44d072f9-64e1-459e-80d1-c82fa5b6cb3e))
  5517. (pin "11" (uuid 181a4764-a462-4b4f-82ec-35df94857db0))
  5518. (pin "12" (uuid 05f453e1-e6ac-4725-ac6f-c737cb237871))
  5519. (pin "13" (uuid ec54d593-d947-40d5-9ce4-01090f07d42f))
  5520. (pin "14" (uuid 016969ab-09a8-471c-ace6-1bdaa379b509))
  5521. (pin "15" (uuid f12847bd-98ae-41f9-b585-95021b3ae723))
  5522. (pin "16" (uuid d539fbf6-d474-41de-bda0-19ba022ca66a))
  5523. (pin "2" (uuid df232253-71d7-4d83-a4f3-12da054a77bd))
  5524. (pin "3" (uuid 40950b1d-ca89-4396-b2fc-a613e266e57c))
  5525. (pin "4" (uuid be6525b4-e91c-443a-b608-161699ca5e45))
  5526. (pin "5" (uuid daf121ec-2c00-4e96-96aa-2bc6f7a0fed5))
  5527. (pin "6" (uuid 070365ef-242a-4d41-bc0a-b8ed9b91feca))
  5528. (pin "7" (uuid 76011dd7-642b-438a-bb90-b324383a7851))
  5529. (pin "8" (uuid 5e597a99-b966-40ca-93cf-60af0be59632))
  5530. (pin "9" (uuid 62785fc4-216d-4983-9ac2-0f8d21d68772))
  5531. )
  5532. (symbol (lib_id "Device:C_Small") (at 158.75 184.15 0) (unit 1)
  5533. (in_bom yes) (on_board yes)
  5534. (uuid 00000000-0000-0000-0000-0000620191b6)
  5535. (property "Reference" "C18" (id 0) (at 161.0868 182.9816 0)
  5536. (effects (font (size 1.27 1.27)) (justify left))
  5537. )
  5538. (property "Value" "10uF" (id 1) (at 161.0868 185.293 0)
  5539. (effects (font (size 1.27 1.27)) (justify left))
  5540. )
  5541. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 158.75 184.15 0)
  5542. (effects (font (size 1.27 1.27)) hide)
  5543. )
  5544. (property "Datasheet" "~" (id 3) (at 158.75 184.15 0)
  5545. (effects (font (size 1.27 1.27)) hide)
  5546. )
  5547. (property "LCSC" "C15850" (id 4) (at 158.75 184.15 0)
  5548. (effects (font (size 1.27 1.27)) hide)
  5549. )
  5550. (property "Digikey" "1276-2891-1-ND" (id 5) (at 158.75 184.15 0)
  5551. (effects (font (size 1.27 1.27)) hide)
  5552. )
  5553. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 158.75 184.15 0)
  5554. (effects (font (size 1.27 1.27)) hide)
  5555. )
  5556. (pin "1" (uuid dbf73e11-83bc-47c4-99f5-3e855a0a071c))
  5557. (pin "2" (uuid 19b5ceaf-8af8-44bc-8898-82006d249547))
  5558. )
  5559. (symbol (lib_id "strain:HX711") (at 219.71 184.15 0) (unit 1)
  5560. (in_bom yes) (on_board yes)
  5561. (uuid 00000000-0000-0000-0000-00006201f11d)
  5562. (property "Reference" "U4" (id 0) (at 219.71 168.529 0))
  5563. (property "Value" "HX711" (id 1) (at 219.71 170.8404 0))
  5564. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 219.71 184.15 0)
  5565. (effects (font (size 1.27 1.27)) hide)
  5566. )
  5567. (property "Datasheet" "" (id 3) (at 219.71 184.15 0)
  5568. (effects (font (size 1.27 1.27)) hide)
  5569. )
  5570. (property "LCSC" "C43656" (id 4) (at 219.71 184.15 0)
  5571. (effects (font (size 1.27 1.27)) hide)
  5572. )
  5573. (property "Digikey" "N/A" (id 5) (at 219.71 184.15 0)
  5574. (effects (font (size 1.27 1.27)) hide)
  5575. )
  5576. (property "Mouser" "N/A" (id 6) (at 219.71 184.15 0)
  5577. (effects (font (size 1.27 1.27)) hide)
  5578. )
  5579. (pin "1" (uuid 4c48b2b5-5c1e-416c-8af1-9cc6f401041e))
  5580. (pin "10" (uuid 96915e8f-9a52-4410-9b54-bd771f6667c3))
  5581. (pin "11" (uuid 5a56abc4-5b25-4c88-97db-344566c9d379))
  5582. (pin "12" (uuid a424f5d1-34b1-460e-a454-2b7a281b3e10))
  5583. (pin "13" (uuid 936dbf09-d873-41f3-8551-53d6b8cd1ca4))
  5584. (pin "14" (uuid 28c18f4a-6fb8-44d9-9ab6-d3b8ee57c978))
  5585. (pin "15" (uuid 8f9eeb33-e286-45d9-8587-d74e21ad9770))
  5586. (pin "16" (uuid 66308b32-b4c1-4428-8c3f-a86bbc2c13ef))
  5587. (pin "2" (uuid f6c4fb2e-1560-4c98-a4da-d3f3f074bd57))
  5588. (pin "3" (uuid 7f4b0aee-a094-47eb-84a1-4d76eed7332a))
  5589. (pin "4" (uuid 8dbb934a-5586-4bd6-9d1a-9db3e71dd096))
  5590. (pin "5" (uuid 50f92996-a571-4b51-bd1a-6d9c37fd2a8b))
  5591. (pin "6" (uuid 590fc34e-a1ee-43b2-8622-3dfce47b0067))
  5592. (pin "7" (uuid c6d1a5ed-a9f5-400d-9242-15501f9eaaf7))
  5593. (pin "8" (uuid e108e200-0dd3-49db-8f09-dd357f2187a6))
  5594. (pin "9" (uuid 660feb2f-ed14-424b-9bf2-c6c2c987a377))
  5595. )
  5596. (symbol (lib_id "Trinamic:TMC6300") (at 364.49 189.23 0) (unit 1)
  5597. (in_bom yes) (on_board yes)
  5598. (uuid 00000000-0000-0000-0000-0000620241db)
  5599. (property "Reference" "U5" (id 0) (at 364.49 162.179 0))
  5600. (property "Value" "TMC6300" (id 1) (at 364.49 164.4904 0))
  5601. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 364.49 189.23 0)
  5602. (effects (font (size 1.27 1.27)) hide)
  5603. )
  5604. (property "Datasheet" "" (id 3) (at 364.49 189.23 0)
  5605. (effects (font (size 1.27 1.27)) hide)
  5606. )
  5607. (property "Digikey" "TMC6300-LA-T" (id 4) (at 364.49 189.23 0)
  5608. (effects (font (size 1.27 1.27)) hide)
  5609. )
  5610. (property "Mouser" "700-TMC6300-LA" (id 5) (at 364.49 189.23 0)
  5611. (effects (font (size 1.27 1.27)) hide)
  5612. )
  5613. (property "LCSC" "N/A" (id 6) (at 364.49 189.23 0)
  5614. (effects (font (size 1.27 1.27)) hide)
  5615. )
  5616. (pin "1" (uuid 79073c57-46e7-4396-b557-04a02bba0109))
  5617. (pin "10" (uuid ebccd30a-0414-47c3-9936-1d7844f4f6af))
  5618. (pin "11" (uuid ed1b0183-04a2-4cb7-a1a1-20d3a3e82dac))
  5619. (pin "12" (uuid c95b1c20-2052-4a82-9eda-ca9913f1f1b1))
  5620. (pin "13" (uuid 0d0bad9e-9a17-4232-95e2-1777d4b18542))
  5621. (pin "14" (uuid 51bb1c8d-78ec-4290-a93e-a43f4c748f96))
  5622. (pin "15" (uuid c924c1fa-6f69-4c8e-9fab-25fcfa9314ce))
  5623. (pin "16" (uuid dfe691f4-6238-4df2-b80f-62dd5c318974))
  5624. (pin "17" (uuid 135e0385-0438-4b6b-a16a-b2a87c07c49c))
  5625. (pin "18" (uuid 322f22ee-7049-4600-ba35-723eb2cb910d))
  5626. (pin "19" (uuid ebf551f3-3279-4b51-a4ff-85b30e1da558))
  5627. (pin "2" (uuid e41afad5-564e-4b4b-8792-e404cb358545))
  5628. (pin "20" (uuid b9ef4c66-f0a7-428d-ab36-6d0f1a1d0ce2))
  5629. (pin "3" (uuid 5640b998-b28c-4be1-808e-1d6b0cc9509e))
  5630. (pin "4" (uuid aafb4786-bfee-4885-b52c-c4e0221e8073))
  5631. (pin "5" (uuid f1d3d319-55eb-465b-a886-dd1a7bf3a652))
  5632. (pin "6" (uuid 74866e02-9bb1-44c6-9ec8-5e2d99aac1e7))
  5633. (pin "7" (uuid 4991f4b1-e65c-440a-b6db-5dfc5cb33d4f))
  5634. (pin "8" (uuid 10d6bece-2fe2-4e9c-951c-ce0f71bb10fc))
  5635. (pin "9" (uuid 34e599a4-b6fd-4f18-ad63-44c4b0648740))
  5636. (pin "PAD" (uuid b90e91c0-3cef-4715-81b4-93ed637f5b12))
  5637. )
  5638. (symbol (lib_id "no_pin:no_pin") (at 181.61 33.02 0) (unit 1)
  5639. (in_bom yes) (on_board yes)
  5640. (uuid 00000000-0000-0000-0000-000062038103)
  5641. (property "Reference" "Z5" (id 0) (at 181.61 25.7302 0)
  5642. (effects (font (size 1.524 1.524)))
  5643. )
  5644. (property "Value" "dummy_keepouts" (id 1) (at 181.61 28.4226 0)
  5645. (effects (font (size 1.524 1.524)))
  5646. )
  5647. (property "Footprint" "view_custom:ViewKeepouts3d" (id 2) (at 181.61 33.02 0)
  5648. (effects (font (size 1.524 1.524)) hide)
  5649. )
  5650. (property "Datasheet" "" (id 3) (at 181.61 33.02 0)
  5651. (effects (font (size 1.524 1.524)) hide)
  5652. )
  5653. )
  5654. (symbol (lib_id "Regulator_Linear:AP7361C-33E") (at 91.44 19.05 0) (unit 1)
  5655. (in_bom yes) (on_board yes)
  5656. (uuid 00000000-0000-0000-0000-00006203d4f8)
  5657. (property "Reference" "U6" (id 0) (at 100.33 24.13 0))
  5658. (property "Value" "AP2114HA-3.3" (id 1) (at 101.6 26.67 0))
  5659. (property "Footprint" "Modified:SOT-223-3_TabPin2_InGndOut" (id 2) (at 91.44 13.97 0)
  5660. (effects (font (size 1.27 1.27)) hide)
  5661. )
  5662. (property "Datasheet" "" (id 3) (at 93.98 25.4 0)
  5663. (effects (font (size 1.27 1.27)) hide)
  5664. )
  5665. (property "LCSC" "C460314" (id 4) (at 91.44 19.05 0)
  5666. (effects (font (size 1.27 1.27)) hide)
  5667. )
  5668. (property "Digikey" "AP2114HA-3.3TRG1DICT-ND, or MIC39100-3.3WS-CT-ND" (id 5) (at 91.44 19.05 0)
  5669. (effects (font (size 1.27 1.27)) hide)
  5670. )
  5671. (property "Mouser" "621-AP2114HA-3.3TRG1" (id 6) (at 91.44 19.05 0)
  5672. (effects (font (size 1.27 1.27)) hide)
  5673. )
  5674. (property "Note" "Populate either U6 or U9 - depending on pinout - but not both!" (id 7) (at 91.44 19.05 0)
  5675. (effects (font (size 1.27 1.27)) hide)
  5676. )
  5677. (pin "1" (uuid 4f09cb32-5a0c-4f44-89e2-81335d9dbf63))
  5678. (pin "2" (uuid fa8be394-74cd-4d9b-8e36-cbc87a934488))
  5679. (pin "3" (uuid 2b471bad-edbf-44fe-a5a3-8940bcf5d975))
  5680. )
  5681. (symbol (lib_id "power:GND") (at 29.21 40.64 0) (unit 1)
  5682. (in_bom yes) (on_board yes)
  5683. (uuid 00000000-0000-0000-0000-00006204bf3e)
  5684. (property "Reference" "#PWR0105" (id 0) (at 29.21 46.99 0)
  5685. (effects (font (size 1.27 1.27)) hide)
  5686. )
  5687. (property "Value" "GND" (id 1) (at 29.337 45.0342 0))
  5688. (property "Footprint" "" (id 2) (at 29.21 40.64 0)
  5689. (effects (font (size 1.27 1.27)) hide)
  5690. )
  5691. (property "Datasheet" "" (id 3) (at 29.21 40.64 0)
  5692. (effects (font (size 1.27 1.27)) hide)
  5693. )
  5694. (pin "1" (uuid d508eea5-eaef-4fbc-840e-49d8a9aeab5b))
  5695. )
  5696. (symbol (lib_id "Device:C_Small") (at 22.86 33.02 0) (unit 1)
  5697. (in_bom yes) (on_board yes)
  5698. (uuid 00000000-0000-0000-0000-0000620545dc)
  5699. (property "Reference" "C9" (id 0) (at 16.51 31.75 0)
  5700. (effects (font (size 1.27 1.27)) (justify left))
  5701. )
  5702. (property "Value" "10uF" (id 1) (at 16.51 34.29 0)
  5703. (effects (font (size 1.27 1.27)) (justify left))
  5704. )
  5705. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 22.86 33.02 0)
  5706. (effects (font (size 1.27 1.27)) hide)
  5707. )
  5708. (property "Datasheet" "~" (id 3) (at 22.86 33.02 0)
  5709. (effects (font (size 1.27 1.27)) hide)
  5710. )
  5711. (property "LCSC" "C15850" (id 4) (at 22.86 33.02 0)
  5712. (effects (font (size 1.27 1.27)) hide)
  5713. )
  5714. (property "Digikey" "1276-2891-1-ND" (id 5) (at 22.86 33.02 0)
  5715. (effects (font (size 1.27 1.27)) hide)
  5716. )
  5717. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 22.86 33.02 0)
  5718. (effects (font (size 1.27 1.27)) hide)
  5719. )
  5720. (pin "1" (uuid d98776c4-2262-4384-80a2-9ef8792f7c0b))
  5721. (pin "2" (uuid 149d67ae-cae8-40d5-9531-44ab97286a5f))
  5722. )
  5723. (symbol (lib_id "Device:C_Small") (at 36.83 33.02 0) (unit 1)
  5724. (in_bom yes) (on_board yes)
  5725. (uuid 00000000-0000-0000-0000-0000620581b5)
  5726. (property "Reference" "C10" (id 0) (at 39.1668 31.8516 0)
  5727. (effects (font (size 1.27 1.27)) (justify left))
  5728. )
  5729. (property "Value" "10uF" (id 1) (at 39.1668 34.163 0)
  5730. (effects (font (size 1.27 1.27)) (justify left))
  5731. )
  5732. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 36.83 33.02 0)
  5733. (effects (font (size 1.27 1.27)) hide)
  5734. )
  5735. (property "Datasheet" "~" (id 3) (at 36.83 33.02 0)
  5736. (effects (font (size 1.27 1.27)) hide)
  5737. )
  5738. (property "LCSC" "C15850" (id 4) (at 36.83 33.02 0)
  5739. (effects (font (size 1.27 1.27)) hide)
  5740. )
  5741. (property "Digikey" "1276-2891-1-ND" (id 5) (at 36.83 33.02 0)
  5742. (effects (font (size 1.27 1.27)) hide)
  5743. )
  5744. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 36.83 33.02 0)
  5745. (effects (font (size 1.27 1.27)) hide)
  5746. )
  5747. (pin "1" (uuid 9fdc8848-47b8-4f5a-a420-f4c378d4d673))
  5748. (pin "2" (uuid 2592fd2e-0efe-462f-93ce-ac796f2c2a71))
  5749. )
  5750. (symbol (lib_id "power:+3.3V") (at 36.83 25.4 0) (unit 1)
  5751. (in_bom yes) (on_board yes)
  5752. (uuid 00000000-0000-0000-0000-00006205ee7e)
  5753. (property "Reference" "#PWR0106" (id 0) (at 36.83 29.21 0)
  5754. (effects (font (size 1.27 1.27)) hide)
  5755. )
  5756. (property "Value" "+3.3V" (id 1) (at 37.211 21.0058 0))
  5757. (property "Footprint" "" (id 2) (at 36.83 25.4 0)
  5758. (effects (font (size 1.27 1.27)) hide)
  5759. )
  5760. (property "Datasheet" "" (id 3) (at 36.83 25.4 0)
  5761. (effects (font (size 1.27 1.27)) hide)
  5762. )
  5763. (pin "1" (uuid 7a5b9e09-1bda-4ff7-851e-759e442c212e))
  5764. )
  5765. (symbol (lib_id "power:+3.3V") (at 189.23 160.02 0) (unit 1)
  5766. (in_bom yes) (on_board yes)
  5767. (uuid 00000000-0000-0000-0000-0000620606f7)
  5768. (property "Reference" "#PWR0116" (id 0) (at 189.23 163.83 0)
  5769. (effects (font (size 1.27 1.27)) hide)
  5770. )
  5771. (property "Value" "+3.3V" (id 1) (at 189.611 155.6258 0))
  5772. (property "Footprint" "" (id 2) (at 189.23 160.02 0)
  5773. (effects (font (size 1.27 1.27)) hide)
  5774. )
  5775. (property "Datasheet" "" (id 3) (at 189.23 160.02 0)
  5776. (effects (font (size 1.27 1.27)) hide)
  5777. )
  5778. (pin "1" (uuid 52f95826-77fa-45a0-90f2-08a39c194e57))
  5779. )
  5780. (symbol (lib_id "Device:C_Small") (at 172.72 165.1 0) (unit 1)
  5781. (in_bom yes) (on_board yes)
  5782. (uuid 00000000-0000-0000-0000-000062060ff5)
  5783. (property "Reference" "C16" (id 0) (at 175.0568 163.9316 0)
  5784. (effects (font (size 1.27 1.27)) (justify left))
  5785. )
  5786. (property "Value" "10uF" (id 1) (at 175.0568 166.243 0)
  5787. (effects (font (size 1.27 1.27)) (justify left))
  5788. )
  5789. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 172.72 165.1 0)
  5790. (effects (font (size 1.27 1.27)) hide)
  5791. )
  5792. (property "Datasheet" "~" (id 3) (at 172.72 165.1 0)
  5793. (effects (font (size 1.27 1.27)) hide)
  5794. )
  5795. (property "LCSC" "C15850" (id 4) (at 172.72 165.1 0)
  5796. (effects (font (size 1.27 1.27)) hide)
  5797. )
  5798. (property "Digikey" "1276-2891-1-ND" (id 5) (at 172.72 165.1 0)
  5799. (effects (font (size 1.27 1.27)) hide)
  5800. )
  5801. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 172.72 165.1 0)
  5802. (effects (font (size 1.27 1.27)) hide)
  5803. )
  5804. (pin "1" (uuid d553cc01-d5e4-42f9-acdb-7c87d03d3ab9))
  5805. (pin "2" (uuid dbdb625a-6ae2-4268-896f-11debd628c4f))
  5806. )
  5807. (symbol (lib_id "Device:C_Small") (at 27.94 194.31 0) (unit 1)
  5808. (in_bom yes) (on_board yes)
  5809. (uuid 00000000-0000-0000-0000-000062066b6d)
  5810. (property "Reference" "C20" (id 0) (at 30.2768 193.1416 0)
  5811. (effects (font (size 1.27 1.27)) (justify left))
  5812. )
  5813. (property "Value" "0.1uF" (id 1) (at 30.2768 195.453 0)
  5814. (effects (font (size 1.27 1.27)) (justify left))
  5815. )
  5816. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 27.94 194.31 0)
  5817. (effects (font (size 1.27 1.27)) hide)
  5818. )
  5819. (property "Datasheet" "~" (id 3) (at 27.94 194.31 0)
  5820. (effects (font (size 1.27 1.27)) hide)
  5821. )
  5822. (property "LCSC" "C1591" (id 4) (at 27.94 194.31 0)
  5823. (effects (font (size 1.27 1.27)) hide)
  5824. )
  5825. (property "Digikey" "1276-1935-1-ND" (id 5) (at 27.94 194.31 0)
  5826. (effects (font (size 1.27 1.27)) hide)
  5827. )
  5828. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 27.94 194.31 0)
  5829. (effects (font (size 1.27 1.27)) hide)
  5830. )
  5831. (pin "1" (uuid a81f00c9-55ed-4851-af0e-6377a9975736))
  5832. (pin "2" (uuid 4de8b7be-07f1-404c-8a88-482f6237258c))
  5833. )
  5834. (symbol (lib_id "Logic_LevelTranslator:SN74LV1T34DBV") (at 43.18 242.57 0) (unit 1)
  5835. (in_bom yes) (on_board yes)
  5836. (uuid 00000000-0000-0000-0000-0000620700a0)
  5837. (property "Reference" "U7" (id 0) (at 41.91 229.87 0)
  5838. (effects (font (size 1.27 1.27)) (justify left))
  5839. )
  5840. (property "Value" "SN74LV1T34DBV" (id 1) (at 35.56 232.41 0)
  5841. (effects (font (size 1.27 1.27)) (justify left))
  5842. )
  5843. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 59.69 248.92 0)
  5844. (effects (font (size 1.27 1.27)) hide)
  5845. )
  5846. (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at 33.02 247.65 0)
  5847. (effects (font (size 1.27 1.27)) hide)
  5848. )
  5849. (property "LCSC" "C100024" (id 4) (at 43.18 242.57 0)
  5850. (effects (font (size 1.27 1.27)) hide)
  5851. )
  5852. (property "Digikey" "296-37176-1-ND" (id 5) (at 43.18 242.57 0)
  5853. (effects (font (size 1.27 1.27)) hide)
  5854. )
  5855. (property "Mouser" "595-SN74LV1T34DBVR" (id 6) (at 43.18 242.57 0)
  5856. (effects (font (size 1.27 1.27)) hide)
  5857. )
  5858. (pin "1" (uuid bd52c8b7-35b1-46ab-bbd9-f9255e8ba474))
  5859. (pin "2" (uuid b0290cba-1c3c-48c0-a9bc-215e7d25968b))
  5860. (pin "3" (uuid 3fd557e1-bf68-4805-b4ea-17079bc0f2ca))
  5861. (pin "4" (uuid 71d384ef-6541-4d3f-8e57-b50845e9c714))
  5862. (pin "5" (uuid 6f9ff052-6887-4fbe-a989-d0b4f028936c))
  5863. )
  5864. (symbol (lib_id "Connector:TestPoint_Small") (at 19.05 26.67 180) (unit 1)
  5865. (in_bom yes) (on_board yes)
  5866. (uuid 00000000-0000-0000-0000-0000620734a8)
  5867. (property "Reference" "TP1" (id 0) (at 17.8308 27.8384 0)
  5868. (effects (font (size 1.27 1.27)) (justify left))
  5869. )
  5870. (property "Value" "5V" (id 1) (at 17.78 25.4 0)
  5871. (effects (font (size 1.27 1.27)) (justify left))
  5872. )
  5873. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 13.97 26.67 0)
  5874. (effects (font (size 1.27 1.27)) hide)
  5875. )
  5876. (property "Datasheet" "~" (id 3) (at 13.97 26.67 0)
  5877. (effects (font (size 1.27 1.27)) hide)
  5878. )
  5879. (pin "1" (uuid 13663e45-ff00-48c9-a1f3-53ce577f0583))
  5880. )
  5881. (symbol (lib_id "Device:C_Small") (at 30.48 237.49 0) (unit 1)
  5882. (in_bom yes) (on_board yes)
  5883. (uuid 00000000-0000-0000-0000-000062078a75)
  5884. (property "Reference" "C29" (id 0) (at 32.8168 236.3216 0)
  5885. (effects (font (size 1.27 1.27)) (justify left))
  5886. )
  5887. (property "Value" "0.1uF" (id 1) (at 32.8168 238.633 0)
  5888. (effects (font (size 1.27 1.27)) (justify left))
  5889. )
  5890. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 30.48 237.49 0)
  5891. (effects (font (size 1.27 1.27)) hide)
  5892. )
  5893. (property "Datasheet" "~" (id 3) (at 30.48 237.49 0)
  5894. (effects (font (size 1.27 1.27)) hide)
  5895. )
  5896. (property "LCSC" "C1591" (id 4) (at 30.48 237.49 0)
  5897. (effects (font (size 1.27 1.27)) hide)
  5898. )
  5899. (property "Digikey" "1276-1935-1-ND" (id 5) (at 30.48 237.49 0)
  5900. (effects (font (size 1.27 1.27)) hide)
  5901. )
  5902. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 30.48 237.49 0)
  5903. (effects (font (size 1.27 1.27)) hide)
  5904. )
  5905. (pin "1" (uuid 3c273b2a-2c92-4c14-a97a-48cecf1c34d7))
  5906. (pin "2" (uuid 6eea4de7-227d-40d6-acc1-1620ef137fa5))
  5907. )
  5908. (symbol (lib_id "power:+5V") (at 30.48 229.87 0) (unit 1)
  5909. (in_bom yes) (on_board yes)
  5910. (uuid 00000000-0000-0000-0000-000062078a82)
  5911. (property "Reference" "#PWR0133" (id 0) (at 30.48 233.68 0)
  5912. (effects (font (size 1.27 1.27)) hide)
  5913. )
  5914. (property "Value" "+5V" (id 1) (at 30.861 225.4758 0))
  5915. (property "Footprint" "" (id 2) (at 30.48 229.87 0)
  5916. (effects (font (size 1.27 1.27)) hide)
  5917. )
  5918. (property "Datasheet" "" (id 3) (at 30.48 229.87 0)
  5919. (effects (font (size 1.27 1.27)) hide)
  5920. )
  5921. (pin "1" (uuid 93980984-2fb8-43a1-85bb-eca986ca7ba2))
  5922. )
  5923. (symbol (lib_id "power:GND") (at 30.48 256.54 0) (unit 1)
  5924. (in_bom yes) (on_board yes)
  5925. (uuid 00000000-0000-0000-0000-000062078a89)
  5926. (property "Reference" "#PWR0134" (id 0) (at 30.48 262.89 0)
  5927. (effects (font (size 1.27 1.27)) hide)
  5928. )
  5929. (property "Value" "GND" (id 1) (at 30.607 260.9342 0))
  5930. (property "Footprint" "" (id 2) (at 30.48 256.54 0)
  5931. (effects (font (size 1.27 1.27)) hide)
  5932. )
  5933. (property "Datasheet" "" (id 3) (at 30.48 256.54 0)
  5934. (effects (font (size 1.27 1.27)) hide)
  5935. )
  5936. (pin "1" (uuid b9d4e899-1575-4eac-bf26-ac64f406deec))
  5937. )
  5938. (symbol (lib_id "Device:C_Small") (at 342.9 170.18 0) (unit 1)
  5939. (in_bom yes) (on_board yes)
  5940. (uuid 00000000-0000-0000-0000-000062084712)
  5941. (property "Reference" "C15" (id 0) (at 345.2368 169.0116 0)
  5942. (effects (font (size 1.27 1.27)) (justify left))
  5943. )
  5944. (property "Value" "0.1uF" (id 1) (at 345.2368 171.323 0)
  5945. (effects (font (size 1.27 1.27)) (justify left))
  5946. )
  5947. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 342.9 170.18 0)
  5948. (effects (font (size 1.27 1.27)) hide)
  5949. )
  5950. (property "Datasheet" "~" (id 3) (at 342.9 170.18 0)
  5951. (effects (font (size 1.27 1.27)) hide)
  5952. )
  5953. (property "LCSC" "C1591" (id 4) (at 342.9 170.18 0)
  5954. (effects (font (size 1.27 1.27)) hide)
  5955. )
  5956. (property "Digikey" "1276-1935-1-ND" (id 5) (at 342.9 170.18 0)
  5957. (effects (font (size 1.27 1.27)) hide)
  5958. )
  5959. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 342.9 170.18 0)
  5960. (effects (font (size 1.27 1.27)) hide)
  5961. )
  5962. (pin "1" (uuid c304d748-e511-46ac-b8d3-d74b06071a27))
  5963. (pin "2" (uuid edf178cc-a73e-459c-82af-45a152fa31ca))
  5964. )
  5965. (symbol (lib_id "Device:C_Small") (at 332.74 170.18 0) (unit 1)
  5966. (in_bom yes) (on_board yes)
  5967. (uuid 00000000-0000-0000-0000-000062086349)
  5968. (property "Reference" "C14" (id 0) (at 335.0768 169.0116 0)
  5969. (effects (font (size 1.27 1.27)) (justify left))
  5970. )
  5971. (property "Value" "0.1uF" (id 1) (at 335.0768 171.323 0)
  5972. (effects (font (size 1.27 1.27)) (justify left))
  5973. )
  5974. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 332.74 170.18 0)
  5975. (effects (font (size 1.27 1.27)) hide)
  5976. )
  5977. (property "Datasheet" "~" (id 3) (at 332.74 170.18 0)
  5978. (effects (font (size 1.27 1.27)) hide)
  5979. )
  5980. (property "LCSC" "C1591" (id 4) (at 332.74 170.18 0)
  5981. (effects (font (size 1.27 1.27)) hide)
  5982. )
  5983. (property "Digikey" "1276-1935-1-ND" (id 5) (at 332.74 170.18 0)
  5984. (effects (font (size 1.27 1.27)) hide)
  5985. )
  5986. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 332.74 170.18 0)
  5987. (effects (font (size 1.27 1.27)) hide)
  5988. )
  5989. (pin "1" (uuid 0633adfa-914b-4f9d-80ba-161103ceec79))
  5990. (pin "2" (uuid e26458db-ffb9-4a18-886d-cfa3a8d4f544))
  5991. )
  5992. (symbol (lib_id "Device:C_Small") (at 323.85 170.18 0) (unit 1)
  5993. (in_bom yes) (on_board yes)
  5994. (uuid 00000000-0000-0000-0000-00006208a205)
  5995. (property "Reference" "C13" (id 0) (at 326.1868 169.0116 0)
  5996. (effects (font (size 1.27 1.27)) (justify left))
  5997. )
  5998. (property "Value" "22uF" (id 1) (at 326.1868 171.323 0)
  5999. (effects (font (size 1.27 1.27)) (justify left))
  6000. )
  6001. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 323.85 170.18 0)
  6002. (effects (font (size 1.27 1.27)) hide)
  6003. )
  6004. (property "Datasheet" "~" (id 3) (at 323.85 170.18 0)
  6005. (effects (font (size 1.27 1.27)) hide)
  6006. )
  6007. (property "LCSC" "C98190" (id 4) (at 323.85 170.18 0)
  6008. (effects (font (size 1.27 1.27)) hide)
  6009. )
  6010. (property "Digikey" "1276-CL21A226MAYNNNECT-ND" (id 5) (at 323.85 170.18 0)
  6011. (effects (font (size 1.27 1.27)) hide)
  6012. )
  6013. (property "Mouser" "187-CL21A226MAYNNNE" (id 6) (at 323.85 170.18 0)
  6014. (effects (font (size 1.27 1.27)) hide)
  6015. )
  6016. (pin "1" (uuid bb0ba8a2-8b47-4ad8-8cad-d915e088c687))
  6017. (pin "2" (uuid 5956c9c4-93f5-4341-b42d-e62e27b5e9d6))
  6018. )
  6019. (symbol (lib_id "Device:C_Small") (at 381 212.09 0) (unit 1)
  6020. (in_bom yes) (on_board yes)
  6021. (uuid 00000000-0000-0000-0000-00006209158d)
  6022. (property "Reference" "C21" (id 0) (at 383.3368 210.9216 0)
  6023. (effects (font (size 1.27 1.27)) (justify left))
  6024. )
  6025. (property "Value" "0.1uF" (id 1) (at 383.3368 213.233 0)
  6026. (effects (font (size 1.27 1.27)) (justify left))
  6027. )
  6028. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 381 212.09 0)
  6029. (effects (font (size 1.27 1.27)) hide)
  6030. )
  6031. (property "Datasheet" "~" (id 3) (at 381 212.09 0)
  6032. (effects (font (size 1.27 1.27)) hide)
  6033. )
  6034. (property "LCSC" "C1591" (id 4) (at 381 212.09 0)
  6035. (effects (font (size 1.27 1.27)) hide)
  6036. )
  6037. (property "Digikey" "1276-1935-1-ND" (id 5) (at 381 212.09 0)
  6038. (effects (font (size 1.27 1.27)) hide)
  6039. )
  6040. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 381 212.09 0)
  6041. (effects (font (size 1.27 1.27)) hide)
  6042. )
  6043. (pin "1" (uuid 7a2ca59d-820f-4fa1-abab-bd90f7425325))
  6044. (pin "2" (uuid 5b291660-876b-4f49-bc42-f0ce83419c18))
  6045. )
  6046. (symbol (lib_id "Device:C_Small") (at 336.55 203.2 0) (unit 1)
  6047. (in_bom yes) (on_board yes)
  6048. (uuid 00000000-0000-0000-0000-000062091f81)
  6049. (property "Reference" "C17" (id 0) (at 338.8868 202.0316 0)
  6050. (effects (font (size 1.27 1.27)) (justify left))
  6051. )
  6052. (property "Value" "0.1uF" (id 1) (at 338.8868 204.343 0)
  6053. (effects (font (size 1.27 1.27)) (justify left))
  6054. )
  6055. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 336.55 203.2 0)
  6056. (effects (font (size 1.27 1.27)) hide)
  6057. )
  6058. (property "Datasheet" "~" (id 3) (at 336.55 203.2 0)
  6059. (effects (font (size 1.27 1.27)) hide)
  6060. )
  6061. (property "LCSC" "C1591" (id 4) (at 336.55 203.2 0)
  6062. (effects (font (size 1.27 1.27)) hide)
  6063. )
  6064. (property "Digikey" "1276-1935-1-ND" (id 5) (at 336.55 203.2 0)
  6065. (effects (font (size 1.27 1.27)) hide)
  6066. )
  6067. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 336.55 203.2 0)
  6068. (effects (font (size 1.27 1.27)) hide)
  6069. )
  6070. (pin "1" (uuid 0a914979-ff8a-4d1e-ac72-2c67810487be))
  6071. (pin "2" (uuid a3bb59ab-2bb5-4644-8375-027f0cc1abc0))
  6072. )
  6073. (symbol (lib_id "power:GND") (at 381 217.17 0) (unit 1)
  6074. (in_bom yes) (on_board yes)
  6075. (uuid 00000000-0000-0000-0000-000062092c18)
  6076. (property "Reference" "#PWR0107" (id 0) (at 381 223.52 0)
  6077. (effects (font (size 1.27 1.27)) hide)
  6078. )
  6079. (property "Value" "GND" (id 1) (at 381.127 221.5642 0))
  6080. (property "Footprint" "" (id 2) (at 381 217.17 0)
  6081. (effects (font (size 1.27 1.27)) hide)
  6082. )
  6083. (property "Datasheet" "" (id 3) (at 381 217.17 0)
  6084. (effects (font (size 1.27 1.27)) hide)
  6085. )
  6086. (pin "1" (uuid b932d339-7888-4506-92dc-7b9f4a021ec5))
  6087. )
  6088. (symbol (lib_id "Connector:TestPoint_Small") (at 40.64 26.67 0) (unit 1)
  6089. (in_bom yes) (on_board yes)
  6090. (uuid 00000000-0000-0000-0000-0000620939bb)
  6091. (property "Reference" "TP2" (id 0) (at 41.8592 25.5016 0)
  6092. (effects (font (size 1.27 1.27)) (justify left))
  6093. )
  6094. (property "Value" "3.3v" (id 1) (at 41.8592 27.813 0)
  6095. (effects (font (size 1.27 1.27)) (justify left))
  6096. )
  6097. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 45.72 26.67 0)
  6098. (effects (font (size 1.27 1.27)) hide)
  6099. )
  6100. (property "Datasheet" "~" (id 3) (at 45.72 26.67 0)
  6101. (effects (font (size 1.27 1.27)) hide)
  6102. )
  6103. (pin "1" (uuid c5f60ad2-3c12-4476-8404-2c06cc32df66))
  6104. )
  6105. (symbol (lib_id "power:GND") (at 347.98 217.17 0) (unit 1)
  6106. (in_bom yes) (on_board yes)
  6107. (uuid 00000000-0000-0000-0000-000062096fa5)
  6108. (property "Reference" "#PWR0108" (id 0) (at 347.98 223.52 0)
  6109. (effects (font (size 1.27 1.27)) hide)
  6110. )
  6111. (property "Value" "GND" (id 1) (at 348.107 221.5642 0))
  6112. (property "Footprint" "" (id 2) (at 347.98 217.17 0)
  6113. (effects (font (size 1.27 1.27)) hide)
  6114. )
  6115. (property "Datasheet" "" (id 3) (at 347.98 217.17 0)
  6116. (effects (font (size 1.27 1.27)) hide)
  6117. )
  6118. (pin "1" (uuid 513e44b9-1e1a-4ee2-8d06-ac0de5e52179))
  6119. )
  6120. (symbol (lib_id "Device:C_Small") (at 203.2 190.5 180) (unit 1)
  6121. (in_bom yes) (on_board yes)
  6122. (uuid 00000000-0000-0000-0000-00006209787a)
  6123. (property "Reference" "C22" (id 0) (at 200.8632 191.6684 0)
  6124. (effects (font (size 1.27 1.27)) (justify left))
  6125. )
  6126. (property "Value" "0.1uF" (id 1) (at 200.8632 189.357 0)
  6127. (effects (font (size 1.27 1.27)) (justify left))
  6128. )
  6129. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 190.5 0)
  6130. (effects (font (size 1.27 1.27)) hide)
  6131. )
  6132. (property "Datasheet" "~" (id 3) (at 203.2 190.5 0)
  6133. (effects (font (size 1.27 1.27)) hide)
  6134. )
  6135. (property "LCSC" "C1591" (id 4) (at 203.2 190.5 0)
  6136. (effects (font (size 1.27 1.27)) hide)
  6137. )
  6138. (property "Digikey" "1276-1935-1-ND" (id 5) (at 203.2 190.5 0)
  6139. (effects (font (size 1.27 1.27)) hide)
  6140. )
  6141. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 203.2 190.5 0)
  6142. (effects (font (size 1.27 1.27)) hide)
  6143. )
  6144. (pin "1" (uuid fde97225-e327-4f0d-a0d0-ae491822da36))
  6145. (pin "2" (uuid cf99f970-43e4-4767-a02a-b896d20db8c0))
  6146. )
  6147. (symbol (lib_id "power:+3.3V") (at 330.2 200.66 0) (unit 1)
  6148. (in_bom yes) (on_board yes)
  6149. (uuid 00000000-0000-0000-0000-0000620a6032)
  6150. (property "Reference" "#PWR0109" (id 0) (at 330.2 204.47 0)
  6151. (effects (font (size 1.27 1.27)) hide)
  6152. )
  6153. (property "Value" "+3.3V" (id 1) (at 330.581 196.2658 0))
  6154. (property "Footprint" "" (id 2) (at 330.2 200.66 0)
  6155. (effects (font (size 1.27 1.27)) hide)
  6156. )
  6157. (property "Datasheet" "" (id 3) (at 330.2 200.66 0)
  6158. (effects (font (size 1.27 1.27)) hide)
  6159. )
  6160. (pin "1" (uuid 7c6968c0-fe3f-4461-bd16-269e440f9e68))
  6161. )
  6162. (symbol (lib_id "power:GNDA") (at 195.58 196.85 0) (unit 1)
  6163. (in_bom yes) (on_board yes)
  6164. (uuid 00000000-0000-0000-0000-0000620d3feb)
  6165. (property "Reference" "#PWR0117" (id 0) (at 195.58 203.2 0)
  6166. (effects (font (size 1.27 1.27)) hide)
  6167. )
  6168. (property "Value" "GNDA" (id 1) (at 195.707 201.2442 0))
  6169. (property "Footprint" "" (id 2) (at 195.58 196.85 0)
  6170. (effects (font (size 1.27 1.27)) hide)
  6171. )
  6172. (property "Datasheet" "" (id 3) (at 195.58 196.85 0)
  6173. (effects (font (size 1.27 1.27)) hide)
  6174. )
  6175. (pin "1" (uuid 6d96171e-7384-48a3-b7b6-f3f35d176d40))
  6176. )
  6177. (symbol (lib_id "power:GND") (at 383.54 190.5 0) (unit 1)
  6178. (in_bom yes) (on_board yes)
  6179. (uuid 00000000-0000-0000-0000-0000620d59fa)
  6180. (property "Reference" "#PWR0110" (id 0) (at 383.54 196.85 0)
  6181. (effects (font (size 1.27 1.27)) hide)
  6182. )
  6183. (property "Value" "GND" (id 1) (at 383.667 194.8942 0))
  6184. (property "Footprint" "" (id 2) (at 383.54 190.5 0)
  6185. (effects (font (size 1.27 1.27)) hide)
  6186. )
  6187. (property "Datasheet" "" (id 3) (at 383.54 190.5 0)
  6188. (effects (font (size 1.27 1.27)) hide)
  6189. )
  6190. (pin "1" (uuid 73b41eb2-3ccf-4143-92fe-caaab34649bf))
  6191. )
  6192. (symbol (lib_id "Connector:TestPoint_Small") (at 35.56 39.37 0) (unit 1)
  6193. (in_bom yes) (on_board yes)
  6194. (uuid 00000000-0000-0000-0000-0000620f043a)
  6195. (property "Reference" "TP3" (id 0) (at 36.83 39.37 0)
  6196. (effects (font (size 1.27 1.27)) (justify left))
  6197. )
  6198. (property "Value" "GND" (id 1) (at 38.1 41.91 0)
  6199. (effects (font (size 1.27 1.27)) (justify left))
  6200. )
  6201. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 40.64 39.37 0)
  6202. (effects (font (size 1.27 1.27)) hide)
  6203. )
  6204. (property "Datasheet" "~" (id 3) (at 40.64 39.37 0)
  6205. (effects (font (size 1.27 1.27)) hide)
  6206. )
  6207. (pin "1" (uuid 38cdeb79-38b0-4b02-a77a-a4cc178e7598))
  6208. )
  6209. (symbol (lib_id "power:GND") (at 121.92 96.52 0) (unit 1)
  6210. (in_bom yes) (on_board yes)
  6211. (uuid 00000000-0000-0000-0000-00006210086e)
  6212. (property "Reference" "#PWR0111" (id 0) (at 121.92 102.87 0)
  6213. (effects (font (size 1.27 1.27)) hide)
  6214. )
  6215. (property "Value" "GND" (id 1) (at 122.047 100.9142 0))
  6216. (property "Footprint" "" (id 2) (at 121.92 96.52 0)
  6217. (effects (font (size 1.27 1.27)) hide)
  6218. )
  6219. (property "Datasheet" "" (id 3) (at 121.92 96.52 0)
  6220. (effects (font (size 1.27 1.27)) hide)
  6221. )
  6222. (pin "1" (uuid 5ceb0e80-7d98-4e66-aa31-ce51c35f043e))
  6223. )
  6224. (symbol (lib_id "power:+3.3V") (at 101.6 57.15 0) (unit 1)
  6225. (in_bom yes) (on_board yes)
  6226. (uuid 00000000-0000-0000-0000-000062105589)
  6227. (property "Reference" "#PWR0112" (id 0) (at 101.6 60.96 0)
  6228. (effects (font (size 1.27 1.27)) hide)
  6229. )
  6230. (property "Value" "+3.3V" (id 1) (at 101.981 52.7558 0))
  6231. (property "Footprint" "" (id 2) (at 101.6 57.15 0)
  6232. (effects (font (size 1.27 1.27)) hide)
  6233. )
  6234. (property "Datasheet" "" (id 3) (at 101.6 57.15 0)
  6235. (effects (font (size 1.27 1.27)) hide)
  6236. )
  6237. (pin "1" (uuid be7b6fc0-680b-422c-9cd2-a6357a97bdaa))
  6238. )
  6239. (symbol (lib_id "power:GNDA") (at 163.83 196.85 0) (unit 1)
  6240. (in_bom yes) (on_board yes)
  6241. (uuid 00000000-0000-0000-0000-000062110345)
  6242. (property "Reference" "#PWR0118" (id 0) (at 163.83 203.2 0)
  6243. (effects (font (size 1.27 1.27)) hide)
  6244. )
  6245. (property "Value" "GNDA" (id 1) (at 163.957 201.2442 0))
  6246. (property "Footprint" "" (id 2) (at 163.83 196.85 0)
  6247. (effects (font (size 1.27 1.27)) hide)
  6248. )
  6249. (property "Datasheet" "" (id 3) (at 163.83 196.85 0)
  6250. (effects (font (size 1.27 1.27)) hide)
  6251. )
  6252. (pin "1" (uuid 132f87af-fee0-4378-a134-77a68eb21f40))
  6253. )
  6254. (symbol (lib_id "Device:C_Small") (at 105.41 59.69 0) (unit 1)
  6255. (in_bom yes) (on_board yes)
  6256. (uuid 00000000-0000-0000-0000-0000621156c4)
  6257. (property "Reference" "C11" (id 0) (at 107.7468 58.5216 0)
  6258. (effects (font (size 1.27 1.27)) (justify left))
  6259. )
  6260. (property "Value" "0.1uF" (id 1) (at 107.7468 60.833 0)
  6261. (effects (font (size 1.27 1.27)) (justify left))
  6262. )
  6263. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 105.41 59.69 0)
  6264. (effects (font (size 1.27 1.27)) hide)
  6265. )
  6266. (property "Datasheet" "~" (id 3) (at 105.41 59.69 0)
  6267. (effects (font (size 1.27 1.27)) hide)
  6268. )
  6269. (property "LCSC" "C1591" (id 4) (at 105.41 59.69 0)
  6270. (effects (font (size 1.27 1.27)) hide)
  6271. )
  6272. (property "Digikey" "1276-1935-1-ND" (id 5) (at 105.41 59.69 0)
  6273. (effects (font (size 1.27 1.27)) hide)
  6274. )
  6275. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 105.41 59.69 0)
  6276. (effects (font (size 1.27 1.27)) hide)
  6277. )
  6278. (pin "1" (uuid 38b4d1b0-a915-4c3c-be73-8ed9dd8948f2))
  6279. (pin "2" (uuid d9fe496c-d570-49d6-8e55-cc837c24c797))
  6280. )
  6281. (symbol (lib_id "power:GND") (at 105.41 66.04 0) (unit 1)
  6282. (in_bom yes) (on_board yes)
  6283. (uuid 00000000-0000-0000-0000-0000621184b4)
  6284. (property "Reference" "#PWR0113" (id 0) (at 105.41 72.39 0)
  6285. (effects (font (size 1.27 1.27)) hide)
  6286. )
  6287. (property "Value" "GND" (id 1) (at 105.537 70.4342 0))
  6288. (property "Footprint" "" (id 2) (at 105.41 66.04 0)
  6289. (effects (font (size 1.27 1.27)) hide)
  6290. )
  6291. (property "Datasheet" "" (id 3) (at 105.41 66.04 0)
  6292. (effects (font (size 1.27 1.27)) hide)
  6293. )
  6294. (pin "1" (uuid 56101d6e-ac4a-44da-9c84-8faacaf7937d))
  6295. )
  6296. (symbol (lib_id "power:GNDA") (at 184.15 196.85 0) (unit 1)
  6297. (in_bom yes) (on_board yes)
  6298. (uuid 00000000-0000-0000-0000-00006211ae93)
  6299. (property "Reference" "#PWR0119" (id 0) (at 184.15 203.2 0)
  6300. (effects (font (size 1.27 1.27)) hide)
  6301. )
  6302. (property "Value" "GNDA" (id 1) (at 184.277 201.2442 0))
  6303. (property "Footprint" "" (id 2) (at 184.15 196.85 0)
  6304. (effects (font (size 1.27 1.27)) hide)
  6305. )
  6306. (property "Datasheet" "" (id 3) (at 184.15 196.85 0)
  6307. (effects (font (size 1.27 1.27)) hide)
  6308. )
  6309. (pin "1" (uuid f184639c-12d7-4661-a8c4-139986dfaf3a))
  6310. )
  6311. (symbol (lib_id "Device:C_Small") (at 241.3 137.16 0) (unit 1)
  6312. (in_bom yes) (on_board yes)
  6313. (uuid 00000000-0000-0000-0000-00006211bef1)
  6314. (property "Reference" "C28" (id 0) (at 243.6368 135.9916 0)
  6315. (effects (font (size 1.27 1.27)) (justify left))
  6316. )
  6317. (property "Value" "1uF" (id 1) (at 243.6368 138.303 0)
  6318. (effects (font (size 1.27 1.27)) (justify left))
  6319. )
  6320. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 241.3 137.16 0)
  6321. (effects (font (size 1.27 1.27)) hide)
  6322. )
  6323. (property "Datasheet" "~" (id 3) (at 241.3 137.16 0)
  6324. (effects (font (size 1.27 1.27)) hide)
  6325. )
  6326. (property "Mouser" "187-CL10A105KA8NNNC" (id 4) (at 241.3 137.16 0)
  6327. (effects (font (size 1.27 1.27)) hide)
  6328. )
  6329. (property "LCSC" "C5673" (id 5) (at 241.3 137.16 0)
  6330. (effects (font (size 1.27 1.27)) hide)
  6331. )
  6332. (property "Digikey" "1276-1102-1-ND" (id 6) (at 241.3 137.16 0)
  6333. (effects (font (size 1.27 1.27)) hide)
  6334. )
  6335. (pin "1" (uuid acd276fb-d20b-4553-b073-bd7db980812a))
  6336. (pin "2" (uuid 13621f30-38eb-438c-99e2-f2bda3f08c97))
  6337. )
  6338. (symbol (lib_id "power:GNDA") (at 172.72 168.91 0) (unit 1)
  6339. (in_bom yes) (on_board yes)
  6340. (uuid 00000000-0000-0000-0000-000062131aaa)
  6341. (property "Reference" "#PWR0120" (id 0) (at 172.72 175.26 0)
  6342. (effects (font (size 1.27 1.27)) hide)
  6343. )
  6344. (property "Value" "GNDA" (id 1) (at 172.847 173.3042 0))
  6345. (property "Footprint" "" (id 2) (at 172.72 168.91 0)
  6346. (effects (font (size 1.27 1.27)) hide)
  6347. )
  6348. (property "Datasheet" "" (id 3) (at 172.72 168.91 0)
  6349. (effects (font (size 1.27 1.27)) hide)
  6350. )
  6351. (pin "1" (uuid c495cda9-772c-419d-8204-ec560c974d4b))
  6352. )
  6353. (symbol (lib_id "Device:R_Small") (at 130.81 133.35 0) (unit 1)
  6354. (in_bom yes) (on_board yes)
  6355. (uuid 00000000-0000-0000-0000-000062132ffe)
  6356. (property "Reference" "R15" (id 0) (at 125.8316 133.35 90))
  6357. (property "Value" "2.2k" (id 1) (at 128.143 133.35 90))
  6358. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 130.81 133.35 0)
  6359. (effects (font (size 1.27 1.27)) hide)
  6360. )
  6361. (property "Datasheet" "~" (id 3) (at 130.81 133.35 0)
  6362. (effects (font (size 1.27 1.27)) hide)
  6363. )
  6364. (property "LCSC" "C4190" (id 4) (at 130.81 133.35 0)
  6365. (effects (font (size 1.27 1.27)) hide)
  6366. )
  6367. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 130.81 133.35 0)
  6368. (effects (font (size 1.27 1.27)) hide)
  6369. )
  6370. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 130.81 133.35 0)
  6371. (effects (font (size 1.27 1.27)) hide)
  6372. )
  6373. (pin "1" (uuid eb3de0ad-58fd-4c79-81f7-33a544f94145))
  6374. (pin "2" (uuid 6a7410ac-6f2d-41b6-9ae5-119b71f0d7e5))
  6375. )
  6376. (symbol (lib_id "Device:R_Small") (at 133.35 133.35 180) (unit 1)
  6377. (in_bom yes) (on_board yes)
  6378. (uuid 00000000-0000-0000-0000-000062133004)
  6379. (property "Reference" "R16" (id 0) (at 138.3284 133.35 90))
  6380. (property "Value" "2.2k" (id 1) (at 136.017 133.35 90))
  6381. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 133.35 133.35 0)
  6382. (effects (font (size 1.27 1.27)) hide)
  6383. )
  6384. (property "Datasheet" "~" (id 3) (at 133.35 133.35 0)
  6385. (effects (font (size 1.27 1.27)) hide)
  6386. )
  6387. (property "LCSC" "C4190" (id 4) (at 133.35 133.35 0)
  6388. (effects (font (size 1.27 1.27)) hide)
  6389. )
  6390. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 133.35 133.35 0)
  6391. (effects (font (size 1.27 1.27)) hide)
  6392. )
  6393. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 133.35 133.35 0)
  6394. (effects (font (size 1.27 1.27)) hide)
  6395. )
  6396. (pin "1" (uuid 16301ee3-311c-4d9e-9a87-7c01dfd42108))
  6397. (pin "2" (uuid d78f26bb-d771-4fb4-adb7-2b335440ff09))
  6398. )
  6399. (symbol (lib_id "power:+3.3V") (at 132.08 128.27 0) (unit 1)
  6400. (in_bom yes) (on_board yes)
  6401. (uuid 00000000-0000-0000-0000-00006213300a)
  6402. (property "Reference" "#PWR0142" (id 0) (at 132.08 132.08 0)
  6403. (effects (font (size 1.27 1.27)) hide)
  6404. )
  6405. (property "Value" "+3.3V" (id 1) (at 132.461 123.8758 0))
  6406. (property "Footprint" "" (id 2) (at 132.08 128.27 0)
  6407. (effects (font (size 1.27 1.27)) hide)
  6408. )
  6409. (property "Datasheet" "" (id 3) (at 132.08 128.27 0)
  6410. (effects (font (size 1.27 1.27)) hide)
  6411. )
  6412. (pin "1" (uuid be8857bc-d4e7-4da2-b159-61059f2b533c))
  6413. )
  6414. (symbol (lib_id "Connector:TestPoint_Small") (at 57.15 234.95 0) (unit 1)
  6415. (in_bom yes) (on_board yes)
  6416. (uuid 00000000-0000-0000-0000-00006213725a)
  6417. (property "Reference" "TP12" (id 0) (at 58.3692 233.7816 0)
  6418. (effects (font (size 1.27 1.27)) (justify left))
  6419. )
  6420. (property "Value" "LED" (id 1) (at 58.3692 236.093 0)
  6421. (effects (font (size 1.27 1.27)) (justify left))
  6422. )
  6423. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 62.23 234.95 0)
  6424. (effects (font (size 1.27 1.27)) hide)
  6425. )
  6426. (property "Datasheet" "~" (id 3) (at 62.23 234.95 0)
  6427. (effects (font (size 1.27 1.27)) hide)
  6428. )
  6429. (pin "1" (uuid 5f10d7a0-4d70-4b91-97f5-8b7b5b68ee9e))
  6430. )
  6431. (symbol (lib_id "Device:C_Small") (at 181.61 165.1 0) (unit 1)
  6432. (in_bom yes) (on_board yes)
  6433. (uuid 00000000-0000-0000-0000-000062138f96)
  6434. (property "Reference" "C12" (id 0) (at 183.9468 163.9316 0)
  6435. (effects (font (size 1.27 1.27)) (justify left))
  6436. )
  6437. (property "Value" "0.1uF" (id 1) (at 183.9468 166.243 0)
  6438. (effects (font (size 1.27 1.27)) (justify left))
  6439. )
  6440. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 181.61 165.1 0)
  6441. (effects (font (size 1.27 1.27)) hide)
  6442. )
  6443. (property "Datasheet" "~" (id 3) (at 181.61 165.1 0)
  6444. (effects (font (size 1.27 1.27)) hide)
  6445. )
  6446. (property "LCSC" "C1591" (id 4) (at 181.61 165.1 0)
  6447. (effects (font (size 1.27 1.27)) hide)
  6448. )
  6449. (property "Digikey" "1276-1935-1-ND" (id 5) (at 181.61 165.1 0)
  6450. (effects (font (size 1.27 1.27)) hide)
  6451. )
  6452. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 181.61 165.1 0)
  6453. (effects (font (size 1.27 1.27)) hide)
  6454. )
  6455. (pin "1" (uuid 453fc808-4126-453d-85ae-1cdb419088b5))
  6456. (pin "2" (uuid eeebd06e-2360-41d5-bcbf-6a991cfb4216))
  6457. )
  6458. (symbol (lib_id "power:GNDA") (at 203.2 196.85 0) (unit 1)
  6459. (in_bom yes) (on_board yes)
  6460. (uuid 00000000-0000-0000-0000-00006213fbbb)
  6461. (property "Reference" "#PWR0121" (id 0) (at 203.2 203.2 0)
  6462. (effects (font (size 1.27 1.27)) hide)
  6463. )
  6464. (property "Value" "GNDA" (id 1) (at 203.327 201.2442 0))
  6465. (property "Footprint" "" (id 2) (at 203.2 196.85 0)
  6466. (effects (font (size 1.27 1.27)) hide)
  6467. )
  6468. (property "Datasheet" "" (id 3) (at 203.2 196.85 0)
  6469. (effects (font (size 1.27 1.27)) hide)
  6470. )
  6471. (pin "1" (uuid f5a63825-b5d0-4689-95d7-73382f27bff9))
  6472. )
  6473. (symbol (lib_id "Device:C_Small") (at 195.58 207.01 180) (unit 1)
  6474. (in_bom yes) (on_board yes)
  6475. (uuid 00000000-0000-0000-0000-00006213ff11)
  6476. (property "Reference" "C23" (id 0) (at 193.2432 208.1784 0)
  6477. (effects (font (size 1.27 1.27)) (justify left))
  6478. )
  6479. (property "Value" "0.1uF" (id 1) (at 193.2432 205.867 0)
  6480. (effects (font (size 1.27 1.27)) (justify left))
  6481. )
  6482. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 195.58 207.01 0)
  6483. (effects (font (size 1.27 1.27)) hide)
  6484. )
  6485. (property "Datasheet" "~" (id 3) (at 195.58 207.01 0)
  6486. (effects (font (size 1.27 1.27)) hide)
  6487. )
  6488. (property "LCSC" "C1591" (id 4) (at 195.58 207.01 0)
  6489. (effects (font (size 1.27 1.27)) hide)
  6490. )
  6491. (property "Digikey" "1276-1935-1-ND" (id 5) (at 195.58 207.01 0)
  6492. (effects (font (size 1.27 1.27)) hide)
  6493. )
  6494. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 195.58 207.01 0)
  6495. (effects (font (size 1.27 1.27)) hide)
  6496. )
  6497. (pin "1" (uuid 5c15ae8b-cb8e-4d01-9663-994d42e6e174))
  6498. (pin "2" (uuid 077de74b-17bd-4819-ab12-a3d892cfac38))
  6499. )
  6500. (symbol (lib_id "power:+3.3V") (at 21.59 187.96 0) (unit 1)
  6501. (in_bom yes) (on_board yes)
  6502. (uuid 00000000-0000-0000-0000-000062153ea9)
  6503. (property "Reference" "#PWR0114" (id 0) (at 21.59 191.77 0)
  6504. (effects (font (size 1.27 1.27)) hide)
  6505. )
  6506. (property "Value" "+3.3V" (id 1) (at 21.971 183.5658 0))
  6507. (property "Footprint" "" (id 2) (at 21.59 187.96 0)
  6508. (effects (font (size 1.27 1.27)) hide)
  6509. )
  6510. (property "Datasheet" "" (id 3) (at 21.59 187.96 0)
  6511. (effects (font (size 1.27 1.27)) hide)
  6512. )
  6513. (pin "1" (uuid 7cd55ac0-3e83-42d0-a2b4-7a85c4b8c98f))
  6514. )
  6515. (symbol (lib_id "power:GND") (at 27.94 201.93 0) (unit 1)
  6516. (in_bom yes) (on_board yes)
  6517. (uuid 00000000-0000-0000-0000-000062154495)
  6518. (property "Reference" "#PWR0115" (id 0) (at 27.94 208.28 0)
  6519. (effects (font (size 1.27 1.27)) hide)
  6520. )
  6521. (property "Value" "GND" (id 1) (at 28.067 206.3242 0))
  6522. (property "Footprint" "" (id 2) (at 27.94 201.93 0)
  6523. (effects (font (size 1.27 1.27)) hide)
  6524. )
  6525. (property "Datasheet" "" (id 3) (at 27.94 201.93 0)
  6526. (effects (font (size 1.27 1.27)) hide)
  6527. )
  6528. (pin "1" (uuid 1f62f3d5-1557-4819-ae45-dbb47075c859))
  6529. )
  6530. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 193.04 0) (unit 1)
  6531. (in_bom yes) (on_board yes)
  6532. (uuid 00000000-0000-0000-0000-000062179005)
  6533. (property "Reference" "TP9" (id 0) (at 82.4992 191.8716 0)
  6534. (effects (font (size 1.27 1.27)) (justify left))
  6535. )
  6536. (property "Value" "CSN" (id 1) (at 82.55 193.04 0)
  6537. (effects (font (size 1.27 1.27)) (justify left))
  6538. )
  6539. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 193.04 0)
  6540. (effects (font (size 1.27 1.27)) hide)
  6541. )
  6542. (property "Datasheet" "~" (id 3) (at 86.36 193.04 0)
  6543. (effects (font (size 1.27 1.27)) hide)
  6544. )
  6545. (pin "1" (uuid 96a4c85e-b3a9-4ac1-9741-4dab5e7ca8e1))
  6546. )
  6547. (symbol (lib_id "Device:R_Small") (at 199.39 124.46 90) (unit 1)
  6548. (in_bom yes) (on_board yes)
  6549. (uuid 00000000-0000-0000-0000-00006217c4cc)
  6550. (property "Reference" "R7" (id 0) (at 198.12 123.19 90)
  6551. (effects (font (size 1.27 1.27)) (justify left))
  6552. )
  6553. (property "Value" "10k" (id 1) (at 199.39 124.46 90)
  6554. (effects (font (size 0.7874 0.7874)))
  6555. )
  6556. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 124.46 0)
  6557. (effects (font (size 1.27 1.27)) hide)
  6558. )
  6559. (property "Datasheet" "~" (id 3) (at 199.39 124.46 0)
  6560. (effects (font (size 1.27 1.27)) hide)
  6561. )
  6562. (property "LCSC" "C98220" (id 4) (at 199.39 124.46 0)
  6563. (effects (font (size 1.27 1.27)) hide)
  6564. )
  6565. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 124.46 0)
  6566. (effects (font (size 1.27 1.27)) hide)
  6567. )
  6568. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 124.46 0)
  6569. (effects (font (size 1.27 1.27)) hide)
  6570. )
  6571. (pin "1" (uuid 1d127886-5828-493c-86e2-80fa6a7d352c))
  6572. (pin "2" (uuid ae6c9e6d-aafa-464f-a2bc-107cbe65ce24))
  6573. )
  6574. (symbol (lib_id "Device:R_Small") (at 173.99 204.47 270) (unit 1)
  6575. (in_bom yes) (on_board yes)
  6576. (uuid 00000000-0000-0000-0000-00006217ebc1)
  6577. (property "Reference" "R5" (id 0) (at 173.99 199.4916 90))
  6578. (property "Value" "100" (id 1) (at 173.99 201.803 90))
  6579. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 204.47 0)
  6580. (effects (font (size 1.27 1.27)) hide)
  6581. )
  6582. (property "Datasheet" "~" (id 3) (at 173.99 204.47 0)
  6583. (effects (font (size 1.27 1.27)) hide)
  6584. )
  6585. (property "LCSC" "C319953" (id 4) (at 173.99 204.47 0)
  6586. (effects (font (size 1.27 1.27)) hide)
  6587. )
  6588. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 204.47 0)
  6589. (effects (font (size 1.27 1.27)) hide)
  6590. )
  6591. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 204.47 0)
  6592. (effects (font (size 1.27 1.27)) hide)
  6593. )
  6594. (pin "1" (uuid 3fe9d150-a60b-45b7-ac68-9f7b4f02ad5a))
  6595. (pin "2" (uuid b194a5f3-2ea8-4b52-992c-b4253723fa8f))
  6596. )
  6597. (symbol (lib_id "Device:R_Small") (at 173.99 209.55 90) (unit 1)
  6598. (in_bom yes) (on_board yes)
  6599. (uuid 00000000-0000-0000-0000-00006217f6bc)
  6600. (property "Reference" "R6" (id 0) (at 173.99 214.63 90))
  6601. (property "Value" "100" (id 1) (at 173.99 212.09 90))
  6602. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 209.55 0)
  6603. (effects (font (size 1.27 1.27)) hide)
  6604. )
  6605. (property "Datasheet" "~" (id 3) (at 173.99 209.55 0)
  6606. (effects (font (size 1.27 1.27)) hide)
  6607. )
  6608. (property "LCSC" "C319953" (id 4) (at 173.99 209.55 0)
  6609. (effects (font (size 1.27 1.27)) hide)
  6610. )
  6611. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 209.55 0)
  6612. (effects (font (size 1.27 1.27)) hide)
  6613. )
  6614. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 209.55 0)
  6615. (effects (font (size 1.27 1.27)) hide)
  6616. )
  6617. (pin "1" (uuid 8cab69cb-5e51-457c-a7d0-f2fd58e50eb1))
  6618. (pin "2" (uuid c7be23ee-d023-4c4a-b6e8-adaba11d9f62))
  6619. )
  6620. (symbol (lib_id "Device:R_Small") (at 199.39 127 90) (unit 1)
  6621. (in_bom yes) (on_board yes)
  6622. (uuid 00000000-0000-0000-0000-000062180f46)
  6623. (property "Reference" "R8" (id 0) (at 198.12 125.73 90)
  6624. (effects (font (size 1.27 1.27)) (justify left))
  6625. )
  6626. (property "Value" "10k" (id 1) (at 199.39 127 90)
  6627. (effects (font (size 0.7874 0.7874)))
  6628. )
  6629. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 127 0)
  6630. (effects (font (size 1.27 1.27)) hide)
  6631. )
  6632. (property "Datasheet" "~" (id 3) (at 199.39 127 0)
  6633. (effects (font (size 1.27 1.27)) hide)
  6634. )
  6635. (property "LCSC" "C98220" (id 4) (at 199.39 127 0)
  6636. (effects (font (size 1.27 1.27)) hide)
  6637. )
  6638. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 127 0)
  6639. (effects (font (size 1.27 1.27)) hide)
  6640. )
  6641. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 127 0)
  6642. (effects (font (size 1.27 1.27)) hide)
  6643. )
  6644. (pin "1" (uuid 689eb1a4-2d7a-4d99-96ef-c4384e731194))
  6645. (pin "2" (uuid 0d5c8553-0a1e-48c9-8ac0-a164fada8c9a))
  6646. )
  6647. (symbol (lib_id "Device:R_Small") (at 199.39 129.54 90) (unit 1)
  6648. (in_bom yes) (on_board yes)
  6649. (uuid 00000000-0000-0000-0000-0000621810c8)
  6650. (property "Reference" "R9" (id 0) (at 198.12 128.27 90)
  6651. (effects (font (size 1.27 1.27)) (justify left))
  6652. )
  6653. (property "Value" "10k" (id 1) (at 199.39 129.54 90)
  6654. (effects (font (size 0.7874 0.7874)))
  6655. )
  6656. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 129.54 0)
  6657. (effects (font (size 1.27 1.27)) hide)
  6658. )
  6659. (property "Datasheet" "~" (id 3) (at 199.39 129.54 0)
  6660. (effects (font (size 1.27 1.27)) hide)
  6661. )
  6662. (property "LCSC" "C98220" (id 4) (at 199.39 129.54 0)
  6663. (effects (font (size 1.27 1.27)) hide)
  6664. )
  6665. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 129.54 0)
  6666. (effects (font (size 1.27 1.27)) hide)
  6667. )
  6668. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 129.54 0)
  6669. (effects (font (size 1.27 1.27)) hide)
  6670. )
  6671. (pin "1" (uuid 6bef994a-775b-4d4f-bf69-479cd86544c8))
  6672. (pin "2" (uuid 53be0f6b-4e65-4ee5-8c8e-608ec0e40613))
  6673. )
  6674. (symbol (lib_id "Device:R_Small") (at 199.39 132.08 90) (unit 1)
  6675. (in_bom yes) (on_board yes)
  6676. (uuid 00000000-0000-0000-0000-000062181360)
  6677. (property "Reference" "R10" (id 0) (at 198.12 130.81 90)
  6678. (effects (font (size 1.27 1.27)) (justify left))
  6679. )
  6680. (property "Value" "10k" (id 1) (at 199.39 132.08 90)
  6681. (effects (font (size 0.7874 0.7874)))
  6682. )
  6683. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 132.08 0)
  6684. (effects (font (size 1.27 1.27)) hide)
  6685. )
  6686. (property "Datasheet" "~" (id 3) (at 199.39 132.08 0)
  6687. (effects (font (size 1.27 1.27)) hide)
  6688. )
  6689. (property "LCSC" "C98220" (id 4) (at 199.39 132.08 0)
  6690. (effects (font (size 1.27 1.27)) hide)
  6691. )
  6692. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 132.08 0)
  6693. (effects (font (size 1.27 1.27)) hide)
  6694. )
  6695. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 132.08 0)
  6696. (effects (font (size 1.27 1.27)) hide)
  6697. )
  6698. (pin "1" (uuid 241e061c-fed4-4dff-959b-98da9e878eee))
  6699. (pin "2" (uuid 2e877dbb-6832-4630-bc2c-069ff902df6b))
  6700. )
  6701. (symbol (lib_id "Device:R_Small") (at 199.39 134.62 90) (unit 1)
  6702. (in_bom yes) (on_board yes)
  6703. (uuid 00000000-0000-0000-0000-0000621814c1)
  6704. (property "Reference" "R11" (id 0) (at 198.12 133.35 90)
  6705. (effects (font (size 1.27 1.27)) (justify left))
  6706. )
  6707. (property "Value" "10k" (id 1) (at 199.39 134.62 90)
  6708. (effects (font (size 0.7874 0.7874)))
  6709. )
  6710. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 134.62 0)
  6711. (effects (font (size 1.27 1.27)) hide)
  6712. )
  6713. (property "Datasheet" "~" (id 3) (at 199.39 134.62 0)
  6714. (effects (font (size 1.27 1.27)) hide)
  6715. )
  6716. (property "LCSC" "C98220" (id 4) (at 199.39 134.62 0)
  6717. (effects (font (size 1.27 1.27)) hide)
  6718. )
  6719. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 134.62 0)
  6720. (effects (font (size 1.27 1.27)) hide)
  6721. )
  6722. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 134.62 0)
  6723. (effects (font (size 1.27 1.27)) hide)
  6724. )
  6725. (pin "1" (uuid 2974720c-4a0b-45fd-835c-880391f2f884))
  6726. (pin "2" (uuid 58acf8ca-51b2-4de5-ae93-e733a49e6fe1))
  6727. )
  6728. (symbol (lib_id "Device:R_Small") (at 199.39 137.16 90) (unit 1)
  6729. (in_bom yes) (on_board yes)
  6730. (uuid 00000000-0000-0000-0000-00006218171e)
  6731. (property "Reference" "R12" (id 0) (at 198.12 135.89 90)
  6732. (effects (font (size 1.27 1.27)) (justify left))
  6733. )
  6734. (property "Value" "10k" (id 1) (at 199.39 137.16 90)
  6735. (effects (font (size 0.7874 0.7874)))
  6736. )
  6737. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 137.16 0)
  6738. (effects (font (size 1.27 1.27)) hide)
  6739. )
  6740. (property "Datasheet" "~" (id 3) (at 199.39 137.16 0)
  6741. (effects (font (size 1.27 1.27)) hide)
  6742. )
  6743. (property "LCSC" "C98220" (id 4) (at 199.39 137.16 0)
  6744. (effects (font (size 1.27 1.27)) hide)
  6745. )
  6746. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 137.16 0)
  6747. (effects (font (size 1.27 1.27)) hide)
  6748. )
  6749. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 137.16 0)
  6750. (effects (font (size 1.27 1.27)) hide)
  6751. )
  6752. (pin "1" (uuid 0d42402b-f0df-4e33-a8b7-c0e62c06aa04))
  6753. (pin "2" (uuid a3e3c332-5caa-4e5e-b7d6-3a89be67903f))
  6754. )
  6755. (symbol (lib_id "power:GND") (at 207.01 142.24 0) (unit 1)
  6756. (in_bom yes) (on_board yes)
  6757. (uuid 00000000-0000-0000-0000-000062182795)
  6758. (property "Reference" "#PWR0135" (id 0) (at 207.01 148.59 0)
  6759. (effects (font (size 1.27 1.27)) hide)
  6760. )
  6761. (property "Value" "GND" (id 1) (at 207.137 146.6342 0))
  6762. (property "Footprint" "" (id 2) (at 207.01 142.24 0)
  6763. (effects (font (size 1.27 1.27)) hide)
  6764. )
  6765. (property "Datasheet" "" (id 3) (at 207.01 142.24 0)
  6766. (effects (font (size 1.27 1.27)) hide)
  6767. )
  6768. (pin "1" (uuid 26bc4cd1-fdf8-403d-b694-724b6695b14c))
  6769. )
  6770. (symbol (lib_id "power:GNDA") (at 233.68 196.85 0) (unit 1)
  6771. (in_bom yes) (on_board yes)
  6772. (uuid 00000000-0000-0000-0000-0000621b25e8)
  6773. (property "Reference" "#PWR0122" (id 0) (at 233.68 203.2 0)
  6774. (effects (font (size 1.27 1.27)) hide)
  6775. )
  6776. (property "Value" "GNDA" (id 1) (at 233.807 201.2442 0))
  6777. (property "Footprint" "" (id 2) (at 233.68 196.85 0)
  6778. (effects (font (size 1.27 1.27)) hide)
  6779. )
  6780. (property "Datasheet" "" (id 3) (at 233.68 196.85 0)
  6781. (effects (font (size 1.27 1.27)) hide)
  6782. )
  6783. (pin "1" (uuid d018d709-67d3-4ad7-be8b-17913be602e2))
  6784. )
  6785. (symbol (lib_id "Device:R_Small") (at 241.3 128.27 0) (unit 1)
  6786. (in_bom yes) (on_board yes)
  6787. (uuid 00000000-0000-0000-0000-0000621b8442)
  6788. (property "Reference" "R17" (id 0) (at 236.3216 128.27 90))
  6789. (property "Value" "10k" (id 1) (at 238.633 128.27 90))
  6790. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 241.3 128.27 0)
  6791. (effects (font (size 1.27 1.27)) hide)
  6792. )
  6793. (property "Datasheet" "~" (id 3) (at 241.3 128.27 0)
  6794. (effects (font (size 1.27 1.27)) hide)
  6795. )
  6796. (property "LCSC" "C98220" (id 4) (at 241.3 128.27 0)
  6797. (effects (font (size 1.27 1.27)) hide)
  6798. )
  6799. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 241.3 128.27 0)
  6800. (effects (font (size 1.27 1.27)) hide)
  6801. )
  6802. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 241.3 128.27 0)
  6803. (effects (font (size 1.27 1.27)) hide)
  6804. )
  6805. (pin "1" (uuid 4d0ad09d-f9da-4c89-82bd-6ce3882f7602))
  6806. (pin "2" (uuid 095cce66-fe1f-4d0d-8d34-b30a0d2d3fc1))
  6807. )
  6808. (symbol (lib_id "power:+3.3V") (at 241.3 123.19 0) (unit 1)
  6809. (in_bom yes) (on_board yes)
  6810. (uuid 00000000-0000-0000-0000-0000621b8449)
  6811. (property "Reference" "#PWR01" (id 0) (at 241.3 127 0)
  6812. (effects (font (size 1.27 1.27)) hide)
  6813. )
  6814. (property "Value" "+3.3V" (id 1) (at 241.681 118.7958 0))
  6815. (property "Footprint" "" (id 2) (at 241.3 123.19 0)
  6816. (effects (font (size 1.27 1.27)) hide)
  6817. )
  6818. (property "Datasheet" "" (id 3) (at 241.3 123.19 0)
  6819. (effects (font (size 1.27 1.27)) hide)
  6820. )
  6821. (pin "1" (uuid b8351dea-9937-4b77-b800-d92809167b1c))
  6822. )
  6823. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 60.96 0) (unit 1)
  6824. (in_bom yes) (on_board yes)
  6825. (uuid 00000000-0000-0000-0000-0000621b8454)
  6826. (property "Reference" "TP13" (id 0) (at 173.9392 59.7916 0)
  6827. (effects (font (size 1.27 1.27)) (justify left))
  6828. )
  6829. (property "Value" "EN" (id 1) (at 173.99 60.96 0)
  6830. (effects (font (size 1.27 1.27)) (justify left))
  6831. )
  6832. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 60.96 0)
  6833. (effects (font (size 1.27 1.27)) hide)
  6834. )
  6835. (property "Datasheet" "~" (id 3) (at 177.8 60.96 0)
  6836. (effects (font (size 1.27 1.27)) hide)
  6837. )
  6838. (pin "1" (uuid 07e2d2d9-cc28-4fde-9a47-6afb5023973f))
  6839. )
  6840. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 195.58 0) (unit 1)
  6841. (in_bom yes) (on_board yes)
  6842. (uuid 00000000-0000-0000-0000-0000621b8956)
  6843. (property "Reference" "TP10" (id 0) (at 82.4992 194.4116 0)
  6844. (effects (font (size 1.27 1.27)) (justify left))
  6845. )
  6846. (property "Value" "CLK" (id 1) (at 82.55 195.58 0)
  6847. (effects (font (size 1.27 1.27)) (justify left))
  6848. )
  6849. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 195.58 0)
  6850. (effects (font (size 1.27 1.27)) hide)
  6851. )
  6852. (property "Datasheet" "~" (id 3) (at 86.36 195.58 0)
  6853. (effects (font (size 1.27 1.27)) hide)
  6854. )
  6855. (pin "1" (uuid e0450c32-6c7d-418d-bc0f-aa7cbff84d35))
  6856. )
  6857. (symbol (lib_id "power:GNDA") (at 214.63 209.55 0) (unit 1)
  6858. (in_bom yes) (on_board yes)
  6859. (uuid 00000000-0000-0000-0000-0000621d4025)
  6860. (property "Reference" "#PWR0123" (id 0) (at 214.63 215.9 0)
  6861. (effects (font (size 1.27 1.27)) hide)
  6862. )
  6863. (property "Value" "GNDA" (id 1) (at 214.757 213.9442 0))
  6864. (property "Footprint" "" (id 2) (at 214.63 209.55 0)
  6865. (effects (font (size 1.27 1.27)) hide)
  6866. )
  6867. (property "Datasheet" "" (id 3) (at 214.63 209.55 0)
  6868. (effects (font (size 1.27 1.27)) hide)
  6869. )
  6870. (pin "1" (uuid 3e803eba-8186-424f-b068-34ca56535b22))
  6871. )
  6872. (symbol (lib_id "power:GND") (at 229.87 209.55 0) (unit 1)
  6873. (in_bom yes) (on_board yes)
  6874. (uuid 00000000-0000-0000-0000-0000621d490e)
  6875. (property "Reference" "#PWR0124" (id 0) (at 229.87 215.9 0)
  6876. (effects (font (size 1.27 1.27)) hide)
  6877. )
  6878. (property "Value" "GND" (id 1) (at 229.997 213.9442 0))
  6879. (property "Footprint" "" (id 2) (at 229.87 209.55 0)
  6880. (effects (font (size 1.27 1.27)) hide)
  6881. )
  6882. (property "Datasheet" "" (id 3) (at 229.87 209.55 0)
  6883. (effects (font (size 1.27 1.27)) hide)
  6884. )
  6885. (pin "1" (uuid af13bbe6-4b76-49e2-b43c-d33a21379d7a))
  6886. )
  6887. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 198.12 0) (unit 1)
  6888. (in_bom yes) (on_board yes)
  6889. (uuid 00000000-0000-0000-0000-0000621d8fb7)
  6890. (property "Reference" "TP11" (id 0) (at 82.4992 196.9516 0)
  6891. (effects (font (size 1.27 1.27)) (justify left))
  6892. )
  6893. (property "Value" "DO" (id 1) (at 82.55 198.12 0)
  6894. (effects (font (size 1.27 1.27)) (justify left))
  6895. )
  6896. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 198.12 0)
  6897. (effects (font (size 1.27 1.27)) hide)
  6898. )
  6899. (property "Datasheet" "~" (id 3) (at 86.36 198.12 0)
  6900. (effects (font (size 1.27 1.27)) hide)
  6901. )
  6902. (pin "1" (uuid bcf55e80-256f-4b8f-baf1-67feda44bef2))
  6903. )
  6904. (symbol (lib_id "power:GNDA") (at 240.03 180.34 0) (unit 1)
  6905. (in_bom yes) (on_board yes)
  6906. (uuid 00000000-0000-0000-0000-0000621f9c4b)
  6907. (property "Reference" "#PWR0125" (id 0) (at 240.03 186.69 0)
  6908. (effects (font (size 1.27 1.27)) hide)
  6909. )
  6910. (property "Value" "GNDA" (id 1) (at 240.157 184.7342 0))
  6911. (property "Footprint" "" (id 2) (at 240.03 180.34 0)
  6912. (effects (font (size 1.27 1.27)) hide)
  6913. )
  6914. (property "Datasheet" "" (id 3) (at 240.03 180.34 0)
  6915. (effects (font (size 1.27 1.27)) hide)
  6916. )
  6917. (pin "1" (uuid 358b5a19-1161-43b1-8fe8-76dfffdf809b))
  6918. )
  6919. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 167.64 0) (unit 1)
  6920. (in_bom yes) (on_board yes)
  6921. (uuid 00000000-0000-0000-0000-000062263aa7)
  6922. (property "Reference" "TP6" (id 0) (at 380.9492 166.4716 0)
  6923. (effects (font (size 1.27 1.27)) (justify left))
  6924. )
  6925. (property "Value" "U" (id 1) (at 381 167.64 0)
  6926. (effects (font (size 1.27 1.27)) (justify left))
  6927. )
  6928. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 167.64 0)
  6929. (effects (font (size 1.27 1.27)) hide)
  6930. )
  6931. (property "Datasheet" "~" (id 3) (at 384.81 167.64 0)
  6932. (effects (font (size 1.27 1.27)) hide)
  6933. )
  6934. (pin "1" (uuid 7221f931-dfac-4f0d-bd11-296f4aa12b10))
  6935. )
  6936. (symbol (lib_id "power:GND") (at 241.3 140.97 0) (unit 1)
  6937. (in_bom yes) (on_board yes)
  6938. (uuid 00000000-0000-0000-0000-000062269e5e)
  6939. (property "Reference" "#PWR02" (id 0) (at 241.3 147.32 0)
  6940. (effects (font (size 1.27 1.27)) hide)
  6941. )
  6942. (property "Value" "GND" (id 1) (at 241.427 145.3642 0))
  6943. (property "Footprint" "" (id 2) (at 241.3 140.97 0)
  6944. (effects (font (size 1.27 1.27)) hide)
  6945. )
  6946. (property "Datasheet" "" (id 3) (at 241.3 140.97 0)
  6947. (effects (font (size 1.27 1.27)) hide)
  6948. )
  6949. (pin "1" (uuid 198dd92f-055f-4b28-85e1-2a45cc19fbc5))
  6950. )
  6951. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 170.18 0) (unit 1)
  6952. (in_bom yes) (on_board yes)
  6953. (uuid 00000000-0000-0000-0000-0000622a8e6d)
  6954. (property "Reference" "TP7" (id 0) (at 380.9492 169.0116 0)
  6955. (effects (font (size 1.27 1.27)) (justify left))
  6956. )
  6957. (property "Value" "V" (id 1) (at 381 170.18 0)
  6958. (effects (font (size 1.27 1.27)) (justify left))
  6959. )
  6960. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 170.18 0)
  6961. (effects (font (size 1.27 1.27)) hide)
  6962. )
  6963. (property "Datasheet" "~" (id 3) (at 384.81 170.18 0)
  6964. (effects (font (size 1.27 1.27)) hide)
  6965. )
  6966. (pin "1" (uuid a15af6c7-e3a9-47d1-99d9-d37c012c0b96))
  6967. )
  6968. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 172.72 0) (unit 1)
  6969. (in_bom yes) (on_board yes)
  6970. (uuid 00000000-0000-0000-0000-0000622cad46)
  6971. (property "Reference" "TP8" (id 0) (at 380.9492 171.5516 0)
  6972. (effects (font (size 1.27 1.27)) (justify left))
  6973. )
  6974. (property "Value" "W" (id 1) (at 381 172.72 0)
  6975. (effects (font (size 1.27 1.27)) (justify left))
  6976. )
  6977. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 172.72 0)
  6978. (effects (font (size 1.27 1.27)) hide)
  6979. )
  6980. (property "Datasheet" "~" (id 3) (at 384.81 172.72 0)
  6981. (effects (font (size 1.27 1.27)) hide)
  6982. )
  6983. (pin "1" (uuid ed030602-ad33-43c6-8797-055c5097d7b0))
  6984. )
  6985. (symbol (lib_id "Connector_Generic:Conn_01x08") (at 251.46 81.28 0) (unit 1)
  6986. (in_bom yes) (on_board yes)
  6987. (uuid 00000000-0000-0000-0000-0000622dfef9)
  6988. (property "Reference" "J3" (id 0) (at 253.492 81.4832 0)
  6989. (effects (font (size 1.27 1.27)) (justify left))
  6990. )
  6991. (property "Value" "LCD" (id 1) (at 253.492 83.7946 0)
  6992. (effects (font (size 1.27 1.27)) (justify left))
  6993. )
  6994. (property "Footprint" "SolderPads:SolderPads_2mm_8" (id 2) (at 251.46 81.28 0)
  6995. (effects (font (size 1.27 1.27)) hide)
  6996. )
  6997. (property "Datasheet" "~" (id 3) (at 251.46 81.28 0)
  6998. (effects (font (size 1.27 1.27)) hide)
  6999. )
  7000. (pin "1" (uuid 521b2398-56fa-4338-8610-870ca4d61557))
  7001. (pin "2" (uuid a201db9e-baf7-4871-be5a-ff795414340c))
  7002. (pin "3" (uuid 17e880b1-271c-4cec-8d9b-beeeb30a1b89))
  7003. (pin "4" (uuid 1a87a7f3-d023-4106-84ee-f187c706415f))
  7004. (pin "5" (uuid caa42d03-8d73-4d57-b233-e69949da956a))
  7005. (pin "6" (uuid e72203a7-4fd3-4622-bb9c-8600bfabdd8f))
  7006. (pin "7" (uuid 35f3c689-1acd-4f9d-8a20-40aa0367785d))
  7007. (pin "8" (uuid 077d5522-c76b-482a-bb37-34c61cd35bac))
  7008. )
  7009. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 69.85 0) (mirror y) (unit 1)
  7010. (in_bom yes) (on_board yes)
  7011. (uuid 00000000-0000-0000-0000-0000622e5052)
  7012. (property "Reference" "Q2" (id 0) (at 172.9486 68.6816 0)
  7013. (effects (font (size 1.27 1.27)) (justify left))
  7014. )
  7015. (property "Value" "UMH3N" (id 1) (at 172.9486 70.993 0)
  7016. (effects (font (size 1.27 1.27)) (justify left))
  7017. )
  7018. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 81.026 0)
  7019. (effects (font (size 1.27 1.27)) hide)
  7020. )
  7021. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 69.85 0)
  7022. (effects (font (size 1.27 1.27)) hide)
  7023. )
  7024. (property "LCSC" "C62892" (id 4) (at 180.34 69.85 0)
  7025. (effects (font (size 1.27 1.27)) hide)
  7026. )
  7027. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 69.85 0)
  7028. (effects (font (size 1.27 1.27)) hide)
  7029. )
  7030. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 69.85 0)
  7031. (effects (font (size 1.27 1.27)) hide)
  7032. )
  7033. (pin "1" (uuid 6691ca19-6715-4a80-847e-ca117309ce61))
  7034. (pin "2" (uuid 76cae1b5-a024-4bde-989b-5ff609e0e526))
  7035. (pin "6" (uuid 0b81ceb9-a3fb-4c04-8c6e-575ef33f6392))
  7036. (pin "3" (uuid d6fc91b9-3675-4ade-9918-6116602d2cdf))
  7037. (pin "4" (uuid ffb75972-f30a-4fb1-8f00-ff2653dbf2db))
  7038. (pin "5" (uuid b02f9511-2061-45c8-8bd6-ba849d7a0eeb))
  7039. )
  7040. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 85.09 180) (unit 2)
  7041. (in_bom yes) (on_board yes)
  7042. (uuid 00000000-0000-0000-0000-0000622e5b70)
  7043. (property "Reference" "Q2" (id 0) (at 172.9486 83.9216 0)
  7044. (effects (font (size 1.27 1.27)) (justify left))
  7045. )
  7046. (property "Value" "UMH3N" (id 1) (at 172.9486 86.233 0)
  7047. (effects (font (size 1.27 1.27)) (justify left))
  7048. )
  7049. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 73.914 0)
  7050. (effects (font (size 1.27 1.27)) hide)
  7051. )
  7052. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 85.09 0)
  7053. (effects (font (size 1.27 1.27)) hide)
  7054. )
  7055. (property "LCSC" "C62892" (id 4) (at 180.34 85.09 0)
  7056. (effects (font (size 1.27 1.27)) hide)
  7057. )
  7058. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 85.09 0)
  7059. (effects (font (size 1.27 1.27)) hide)
  7060. )
  7061. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 85.09 0)
  7062. (effects (font (size 1.27 1.27)) hide)
  7063. )
  7064. (pin "1" (uuid c1bec82d-bcfc-4ffd-9b29-aad0bc15267a))
  7065. (pin "2" (uuid b80cc904-f790-42df-b2f6-ef82a594cbe4))
  7066. (pin "6" (uuid 109cb803-fb15-43a3-a52f-3a5ae2a5aa7b))
  7067. (pin "3" (uuid 8760d1f3-4419-461e-b7ab-5248c2bbbb92))
  7068. (pin "4" (uuid d1bfa2a4-7f52-4f58-86f4-99ff41468384))
  7069. (pin "5" (uuid 33b75fa6-e454-4222-af75-e36476064ee7))
  7070. )
  7071. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 133.35 0) (unit 1)
  7072. (in_bom yes) (on_board yes)
  7073. (uuid 00000000-0000-0000-0000-0000622f4012)
  7074. (property "Reference" "TP4" (id 0) (at 157.4292 132.1816 0)
  7075. (effects (font (size 1.27 1.27)) (justify left))
  7076. )
  7077. (property "Value" "SDA" (id 1) (at 157.48 133.35 0)
  7078. (effects (font (size 1.27 1.27)) (justify left))
  7079. )
  7080. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 133.35 0)
  7081. (effects (font (size 1.27 1.27)) hide)
  7082. )
  7083. (property "Datasheet" "~" (id 3) (at 161.29 133.35 0)
  7084. (effects (font (size 1.27 1.27)) hide)
  7085. )
  7086. (pin "1" (uuid a314d631-cc6f-4d86-afb5-c4e22d9ee906))
  7087. )
  7088. (symbol (lib_id "no_pin:no_pin") (at 218.44 33.02 0) (unit 1)
  7089. (in_bom yes) (on_board yes)
  7090. (uuid 00000000-0000-0000-0000-000062311cef)
  7091. (property "Reference" "Z6" (id 0) (at 218.44 25.7302 0)
  7092. (effects (font (size 1.524 1.524)))
  7093. )
  7094. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 218.44 28.4226 0)
  7095. (effects (font (size 1.524 1.524)))
  7096. )
  7097. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 218.44 33.02 0)
  7098. (effects (font (size 1.524 1.524)) hide)
  7099. )
  7100. (property "Datasheet" "" (id 3) (at 218.44 33.02 0)
  7101. (effects (font (size 1.524 1.524)) hide)
  7102. )
  7103. (property "Note" "Screw: M1.6x3 (countersunk). LCSC C2931384 could work, but tall hex socket head leaves very little clearance for soldered screen PCB wires. Beware: long screws may scrape internal motor stator windings!" (id 4) (at 218.44 33.02 0)
  7104. (effects (font (size 1.27 1.27)) hide)
  7105. )
  7106. )
  7107. (symbol (lib_id "no_pin:no_pin") (at 240.03 33.02 0) (unit 1)
  7108. (in_bom yes) (on_board yes)
  7109. (uuid 00000000-0000-0000-0000-000062314e0d)
  7110. (property "Reference" "Z7" (id 0) (at 240.03 25.7302 0)
  7111. (effects (font (size 1.524 1.524)))
  7112. )
  7113. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 240.03 28.4226 0)
  7114. (effects (font (size 1.524 1.524)))
  7115. )
  7116. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 240.03 33.02 0)
  7117. (effects (font (size 1.524 1.524)) hide)
  7118. )
  7119. (property "Datasheet" "" (id 3) (at 240.03 33.02 0)
  7120. (effects (font (size 1.524 1.524)) hide)
  7121. )
  7122. (property "Note" "Screw: M1.6x3 (countersunk). LCSC C2931384 could work, but tall hex socket head leaves very little clearance for soldered screen PCB wires. Beware: long screws may scrape internal motor stator windings!" (id 4) (at 240.03 33.02 0)
  7123. (effects (font (size 1.27 1.27)) hide)
  7124. )
  7125. )
  7126. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 139.7 0) (unit 1)
  7127. (in_bom yes) (on_board yes)
  7128. (uuid 00000000-0000-0000-0000-0000623162cf)
  7129. (property "Reference" "TP5" (id 0) (at 157.4292 138.5316 0)
  7130. (effects (font (size 1.27 1.27)) (justify left))
  7131. )
  7132. (property "Value" "SCL" (id 1) (at 157.48 139.7 0)
  7133. (effects (font (size 1.27 1.27)) (justify left))
  7134. )
  7135. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 139.7 0)
  7136. (effects (font (size 1.27 1.27)) hide)
  7137. )
  7138. (property "Datasheet" "~" (id 3) (at 161.29 139.7 0)
  7139. (effects (font (size 1.27 1.27)) hide)
  7140. )
  7141. (pin "1" (uuid 8b08f3ad-d9c5-4621-9d11-9579e8e0a6d2))
  7142. )
  7143. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 95.25 0) (unit 1)
  7144. (in_bom yes) (on_board yes)
  7145. (uuid 00000000-0000-0000-0000-000062317868)
  7146. (property "Reference" "TP14" (id 0) (at 173.9392 94.0816 0)
  7147. (effects (font (size 1.27 1.27)) (justify left))
  7148. )
  7149. (property "Value" "BOOT" (id 1) (at 173.99 95.25 0)
  7150. (effects (font (size 1.27 1.27)) (justify left))
  7151. )
  7152. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 95.25 0)
  7153. (effects (font (size 1.27 1.27)) hide)
  7154. )
  7155. (property "Datasheet" "~" (id 3) (at 177.8 95.25 0)
  7156. (effects (font (size 1.27 1.27)) hide)
  7157. )
  7158. (pin "1" (uuid ba51139c-0c14-4520-b3c5-4cd60fc7a73f))
  7159. )
  7160. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 171.45 44.45 0) (unit 1)
  7161. (in_bom yes) (on_board yes)
  7162. (uuid 00000000-0000-0000-0000-0000623284d1)
  7163. (property "Reference" "H8" (id 0) (at 170.18 38.1 0)
  7164. (effects (font (size 1.27 1.27)) (justify left))
  7165. )
  7166. (property "Value" "AlignmentHole" (id 1) (at 170.18 39.37 0)
  7167. (effects (font (size 1.27 1.27)) (justify left))
  7168. )
  7169. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 171.45 44.45 0)
  7170. (effects (font (size 1.27 1.27)) hide)
  7171. )
  7172. (property "Datasheet" "~" (id 3) (at 171.45 44.45 0)
  7173. (effects (font (size 1.27 1.27)) hide)
  7174. )
  7175. (property "Note" "" (id 4) (at 171.45 44.45 0)
  7176. (effects (font (size 1.27 1.27)) hide)
  7177. )
  7178. (pin "1" (uuid d8058f93-8b91-4e0b-826a-2f09b4026bee))
  7179. )
  7180. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 182.88 44.45 0) (unit 1)
  7181. (in_bom yes) (on_board yes)
  7182. (uuid 00000000-0000-0000-0000-0000623284d9)
  7183. (property "Reference" "H9" (id 0) (at 181.61 38.1 0)
  7184. (effects (font (size 1.27 1.27)) (justify left))
  7185. )
  7186. (property "Value" "AlignmentHole" (id 1) (at 181.61 39.37 0)
  7187. (effects (font (size 1.27 1.27)) (justify left))
  7188. )
  7189. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 182.88 44.45 0)
  7190. (effects (font (size 1.27 1.27)) hide)
  7191. )
  7192. (property "Datasheet" "~" (id 3) (at 182.88 44.45 0)
  7193. (effects (font (size 1.27 1.27)) hide)
  7194. )
  7195. (property "Note" "" (id 4) (at 182.88 44.45 0)
  7196. (effects (font (size 1.27 1.27)) hide)
  7197. )
  7198. (pin "1" (uuid da4b4b3b-963a-4206-8440-61248fca61a5))
  7199. )
  7200. (symbol (lib_id "no_pin:no_pin") (at 261.62 33.02 0) (unit 1)
  7201. (in_bom yes) (on_board yes)
  7202. (uuid 00000000-0000-0000-0000-00006233c06f)
  7203. (property "Reference" "Z8" (id 0) (at 261.62 25.7302 0)
  7204. (effects (font (size 1.524 1.524)))
  7205. )
  7206. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 261.62 28.4226 0)
  7207. (effects (font (size 1.524 1.524)))
  7208. )
  7209. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 261.62 33.02 0)
  7210. (effects (font (size 1.524 1.524)) hide)
  7211. )
  7212. (property "Datasheet" "" (id 3) (at 261.62 33.02 0)
  7213. (effects (font (size 1.524 1.524)) hide)
  7214. )
  7215. (property "Note" "Screw: M1.6x3 (countersunk). LCSC C2931384 could work, but tall hex socket head leaves very little clearance for soldered screen PCB wires. Beware: long screws may scrape internal motor stator windings!" (id 4) (at 261.62 33.02 0)
  7216. (effects (font (size 1.27 1.27)) hide)
  7217. )
  7218. )
  7219. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 40.64 0) (unit 1)
  7220. (in_bom yes) (on_board yes)
  7221. (uuid 00000000-0000-0000-0000-000062379e81)
  7222. (property "Reference" "TP15" (id 0) (at 402.5392 39.4716 0)
  7223. (effects (font (size 1.27 1.27)) (justify left))
  7224. )
  7225. (property "Value" "TX" (id 1) (at 402.59 40.64 0)
  7226. (effects (font (size 1.27 1.27)) (justify left))
  7227. )
  7228. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 40.64 0)
  7229. (effects (font (size 1.27 1.27)) hide)
  7230. )
  7231. (property "Datasheet" "~" (id 3) (at 406.4 40.64 0)
  7232. (effects (font (size 1.27 1.27)) hide)
  7233. )
  7234. (pin "1" (uuid d88397a1-27ae-408d-87ab-cc3630533b80))
  7235. )
  7236. (symbol (lib_id "Device:C_Small") (at 326.39 30.48 0) (unit 1)
  7237. (in_bom yes) (on_board yes)
  7238. (uuid 00000000-0000-0000-0000-000062390737)
  7239. (property "Reference" "C25" (id 0) (at 328.7268 29.3116 0)
  7240. (effects (font (size 1.27 1.27)) (justify left))
  7241. )
  7242. (property "Value" "0.1uF" (id 1) (at 328.7268 31.623 0)
  7243. (effects (font (size 1.27 1.27)) (justify left))
  7244. )
  7245. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 326.39 30.48 0)
  7246. (effects (font (size 1.27 1.27)) hide)
  7247. )
  7248. (property "Datasheet" "~" (id 3) (at 326.39 30.48 0)
  7249. (effects (font (size 1.27 1.27)) hide)
  7250. )
  7251. (property "LCSC" "C1591" (id 4) (at 326.39 30.48 0)
  7252. (effects (font (size 1.27 1.27)) hide)
  7253. )
  7254. (property "Digikey" "1276-1935-1-ND" (id 5) (at 326.39 30.48 0)
  7255. (effects (font (size 1.27 1.27)) hide)
  7256. )
  7257. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 326.39 30.48 0)
  7258. (effects (font (size 1.27 1.27)) hide)
  7259. )
  7260. (pin "1" (uuid 10c554fd-22dd-46cf-acfe-70c8dfb45b11))
  7261. (pin "2" (uuid 85094a5b-8cf5-4fd4-95c7-e6160dca3246))
  7262. )
  7263. (symbol (lib_id "Device:C_Small") (at 317.5 30.48 0) (unit 1)
  7264. (in_bom yes) (on_board yes)
  7265. (uuid 00000000-0000-0000-0000-0000623909d3)
  7266. (property "Reference" "C24" (id 0) (at 319.8368 29.3116 0)
  7267. (effects (font (size 1.27 1.27)) (justify left))
  7268. )
  7269. (property "Value" "10uF" (id 1) (at 319.8368 31.623 0)
  7270. (effects (font (size 1.27 1.27)) (justify left))
  7271. )
  7272. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 317.5 30.48 0)
  7273. (effects (font (size 1.27 1.27)) hide)
  7274. )
  7275. (property "Datasheet" "~" (id 3) (at 317.5 30.48 0)
  7276. (effects (font (size 1.27 1.27)) hide)
  7277. )
  7278. (property "LCSC" "C15850" (id 4) (at 317.5 30.48 0)
  7279. (effects (font (size 1.27 1.27)) hide)
  7280. )
  7281. (property "Digikey" "1276-2891-1-ND" (id 5) (at 317.5 30.48 0)
  7282. (effects (font (size 1.27 1.27)) hide)
  7283. )
  7284. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 317.5 30.48 0)
  7285. (effects (font (size 1.27 1.27)) hide)
  7286. )
  7287. (pin "1" (uuid 7efbb406-d445-4109-b6da-573057ce7536))
  7288. (pin "2" (uuid 372c03b7-f3ce-4285-8a79-a23ebebdc0f1))
  7289. )
  7290. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 43.18 0) (unit 1)
  7291. (in_bom yes) (on_board yes)
  7292. (uuid 00000000-0000-0000-0000-0000623a126c)
  7293. (property "Reference" "TP16" (id 0) (at 402.5392 42.0116 0)
  7294. (effects (font (size 1.27 1.27)) (justify left))
  7295. )
  7296. (property "Value" "RX" (id 1) (at 402.59 43.18 0)
  7297. (effects (font (size 1.27 1.27)) (justify left))
  7298. )
  7299. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 43.18 0)
  7300. (effects (font (size 1.27 1.27)) hide)
  7301. )
  7302. (property "Datasheet" "~" (id 3) (at 406.4 43.18 0)
  7303. (effects (font (size 1.27 1.27)) hide)
  7304. )
  7305. (pin "1" (uuid 3aec649b-7bfb-45b0-aab7-a7fd1c3cd2bb))
  7306. )
  7307. (symbol (lib_id "power:+3.3V") (at 312.42 25.4 0) (unit 1)
  7308. (in_bom yes) (on_board yes)
  7309. (uuid 00000000-0000-0000-0000-0000623d2efc)
  7310. (property "Reference" "#PWR0126" (id 0) (at 312.42 29.21 0)
  7311. (effects (font (size 1.27 1.27)) hide)
  7312. )
  7313. (property "Value" "+3.3V" (id 1) (at 312.801 21.0058 0))
  7314. (property "Footprint" "" (id 2) (at 312.42 25.4 0)
  7315. (effects (font (size 1.27 1.27)) hide)
  7316. )
  7317. (property "Datasheet" "" (id 3) (at 312.42 25.4 0)
  7318. (effects (font (size 1.27 1.27)) hide)
  7319. )
  7320. (pin "1" (uuid e4fcdd73-1b73-41d5-86e8-fa708452c6d3))
  7321. )
  7322. (symbol (lib_id "power:GND") (at 312.42 45.72 0) (unit 1)
  7323. (in_bom yes) (on_board yes)
  7324. (uuid 00000000-0000-0000-0000-0000623d364a)
  7325. (property "Reference" "#PWR0127" (id 0) (at 312.42 52.07 0)
  7326. (effects (font (size 1.27 1.27)) hide)
  7327. )
  7328. (property "Value" "GND" (id 1) (at 312.547 50.1142 0))
  7329. (property "Footprint" "" (id 2) (at 312.42 45.72 0)
  7330. (effects (font (size 1.27 1.27)) hide)
  7331. )
  7332. (property "Datasheet" "" (id 3) (at 312.42 45.72 0)
  7333. (effects (font (size 1.27 1.27)) hide)
  7334. )
  7335. (pin "1" (uuid c18e9869-03c4-4f9f-af59-b974de518cf0))
  7336. )
  7337. (symbol (lib_id "no_pin:no_pin") (at 218.44 45.72 0) (unit 1)
  7338. (in_bom yes) (on_board yes)
  7339. (uuid 00000000-0000-0000-0000-0000623f109c)
  7340. (property "Reference" "Z9" (id 0) (at 218.44 38.4302 0)
  7341. (effects (font (size 1.524 1.524)))
  7342. )
  7343. (property "Value" "WatchGlass39.5mm" (id 1) (at 218.44 41.1226 0)
  7344. (effects (font (size 1.524 1.524)))
  7345. )
  7346. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 218.44 45.72 0)
  7347. (effects (font (size 1.524 1.524)) hide)
  7348. )
  7349. (property "Datasheet" "" (id 3) (at 218.44 45.72 0)
  7350. (effects (font (size 1.524 1.524)) hide)
  7351. )
  7352. (property "Note" "Watch glass: 1mm thick, 39.5mm diameter" (id 4) (at 218.44 45.72 0)
  7353. (effects (font (size 1.27 1.27)) hide)
  7354. )
  7355. (property "AliExpress" "https://www.aliexpress.com/item/33055356489.html" (id 5) (at 218.44 45.72 0)
  7356. (effects (font (size 1.27 1.27)) hide)
  7357. )
  7358. )
  7359. (symbol (lib_id "power:GND") (at 402.59 33.02 0) (unit 1)
  7360. (in_bom yes) (on_board yes)
  7361. (uuid 00000000-0000-0000-0000-0000623f1786)
  7362. (property "Reference" "#PWR0128" (id 0) (at 402.59 39.37 0)
  7363. (effects (font (size 1.27 1.27)) hide)
  7364. )
  7365. (property "Value" "GND" (id 1) (at 402.717 37.4142 0))
  7366. (property "Footprint" "" (id 2) (at 402.59 33.02 0)
  7367. (effects (font (size 1.27 1.27)) hide)
  7368. )
  7369. (property "Datasheet" "" (id 3) (at 402.59 33.02 0)
  7370. (effects (font (size 1.27 1.27)) hide)
  7371. )
  7372. (pin "1" (uuid 638f25d2-c0f3-4b26-98c2-56361c19f1f1))
  7373. )
  7374. (symbol (lib_id "power:GND") (at 334.01 71.12 0) (unit 1)
  7375. (in_bom yes) (on_board yes)
  7376. (uuid 00000000-0000-0000-0000-0000623f1d8e)
  7377. (property "Reference" "#PWR0129" (id 0) (at 334.01 77.47 0)
  7378. (effects (font (size 1.27 1.27)) hide)
  7379. )
  7380. (property "Value" "GND" (id 1) (at 334.137 75.5142 0))
  7381. (property "Footprint" "" (id 2) (at 334.01 71.12 0)
  7382. (effects (font (size 1.27 1.27)) hide)
  7383. )
  7384. (property "Datasheet" "" (id 3) (at 334.01 71.12 0)
  7385. (effects (font (size 1.27 1.27)) hide)
  7386. )
  7387. (pin "1" (uuid 91a3fbaf-aacd-4755-b3f8-d13cadbd6007))
  7388. )
  7389. (symbol (lib_id "power:+3.3V") (at 223.52 69.85 0) (unit 1)
  7390. (in_bom yes) (on_board yes)
  7391. (uuid 00000000-0000-0000-0000-00006245e5c2)
  7392. (property "Reference" "#PWR0130" (id 0) (at 223.52 73.66 0)
  7393. (effects (font (size 1.27 1.27)) hide)
  7394. )
  7395. (property "Value" "+3.3V" (id 1) (at 223.901 65.4558 0))
  7396. (property "Footprint" "" (id 2) (at 223.52 69.85 0)
  7397. (effects (font (size 1.27 1.27)) hide)
  7398. )
  7399. (property "Datasheet" "" (id 3) (at 223.52 69.85 0)
  7400. (effects (font (size 1.27 1.27)) hide)
  7401. )
  7402. (pin "1" (uuid cd758a1e-1d24-42e5-94f9-c79dc5fb0413))
  7403. )
  7404. (symbol (lib_id "power:GND") (at 223.52 77.47 0) (unit 1)
  7405. (in_bom yes) (on_board yes)
  7406. (uuid 00000000-0000-0000-0000-00006245ef1e)
  7407. (property "Reference" "#PWR0131" (id 0) (at 223.52 83.82 0)
  7408. (effects (font (size 1.27 1.27)) hide)
  7409. )
  7410. (property "Value" "GND" (id 1) (at 223.647 81.8642 0))
  7411. (property "Footprint" "" (id 2) (at 223.52 77.47 0)
  7412. (effects (font (size 1.27 1.27)) hide)
  7413. )
  7414. (property "Datasheet" "" (id 3) (at 223.52 77.47 0)
  7415. (effects (font (size 1.27 1.27)) hide)
  7416. )
  7417. (pin "1" (uuid 43f7b188-3c38-4aec-8f91-8fbccbdd3dcd))
  7418. )
  7419. (symbol (lib_id "no_pin:no_pin") (at 240.03 45.72 0) (unit 1)
  7420. (in_bom yes) (on_board yes)
  7421. (uuid 00000000-0000-0000-0000-00006246aa1a)
  7422. (property "Reference" "Z10" (id 0) (at 240.03 38.4302 0)
  7423. (effects (font (size 1.524 1.524)))
  7424. )
  7425. (property "Value" "BLDCMotor" (id 1) (at 240.03 41.1226 0)
  7426. (effects (font (size 1.524 1.524)))
  7427. )
  7428. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 240.03 45.72 0)
  7429. (effects (font (size 1.524 1.524)) hide)
  7430. )
  7431. (property "Datasheet" "" (id 3) (at 240.03 45.72 0)
  7432. (effects (font (size 1.524 1.524)) hide)
  7433. )
  7434. (property "Note" "SparkFun: https://www.sparkfun.com/products/20441" (id 4) (at 240.03 45.72 0)
  7435. (effects (font (size 1.27 1.27)) hide)
  7436. )
  7437. (property "AliExpress" "" (id 5) (at 240.03 45.72 0)
  7438. (effects (font (size 1.27 1.27)) hide)
  7439. )
  7440. )
  7441. (symbol (lib_id "Device:C_Small") (at 224.79 73.66 0) (unit 1)
  7442. (in_bom yes) (on_board yes)
  7443. (uuid 00000000-0000-0000-0000-00006246f069)
  7444. (property "Reference" "C26" (id 0) (at 227.1268 72.4916 0)
  7445. (effects (font (size 1.27 1.27)) (justify left))
  7446. )
  7447. (property "Value" "10uF" (id 1) (at 227.1268 74.803 0)
  7448. (effects (font (size 1.27 1.27)) (justify left))
  7449. )
  7450. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 224.79 73.66 0)
  7451. (effects (font (size 1.27 1.27)) hide)
  7452. )
  7453. (property "Datasheet" "~" (id 3) (at 224.79 73.66 0)
  7454. (effects (font (size 1.27 1.27)) hide)
  7455. )
  7456. (property "LCSC" "C15850" (id 4) (at 224.79 73.66 0)
  7457. (effects (font (size 1.27 1.27)) hide)
  7458. )
  7459. (property "Digikey" "1276-2891-1-ND" (id 5) (at 224.79 73.66 0)
  7460. (effects (font (size 1.27 1.27)) hide)
  7461. )
  7462. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 224.79 73.66 0)
  7463. (effects (font (size 1.27 1.27)) hide)
  7464. )
  7465. (pin "1" (uuid fcbbeefe-3039-4d5e-b86c-9c72c7ae9bfc))
  7466. (pin "2" (uuid 294a1a09-794d-4457-8db5-2717b007b81c))
  7467. )
  7468. (symbol (lib_id "power:PWR_FLAG") (at 57.15 58.42 0) (unit 1)
  7469. (in_bom yes) (on_board yes)
  7470. (uuid 00000000-0000-0000-0000-0000625e1008)
  7471. (property "Reference" "#FLG0101" (id 0) (at 57.15 56.515 0)
  7472. (effects (font (size 1.27 1.27)) hide)
  7473. )
  7474. (property "Value" "PWR_FLAG" (id 1) (at 57.15 54.0258 0))
  7475. (property "Footprint" "" (id 2) (at 57.15 58.42 0)
  7476. (effects (font (size 1.27 1.27)) hide)
  7477. )
  7478. (property "Datasheet" "~" (id 3) (at 57.15 58.42 0)
  7479. (effects (font (size 1.27 1.27)) hide)
  7480. )
  7481. (pin "1" (uuid d3d27eed-0d1a-4443-9ecf-3382e9e5792c))
  7482. )
  7483. (symbol (lib_id "power:PWR_FLAG") (at 45.72 100.33 0) (unit 1)
  7484. (in_bom yes) (on_board yes)
  7485. (uuid 00000000-0000-0000-0000-0000625fa47a)
  7486. (property "Reference" "#FLG0102" (id 0) (at 45.72 98.425 0)
  7487. (effects (font (size 1.27 1.27)) hide)
  7488. )
  7489. (property "Value" "PWR_FLAG" (id 1) (at 45.72 95.9358 0))
  7490. (property "Footprint" "" (id 2) (at 45.72 100.33 0)
  7491. (effects (font (size 1.27 1.27)) hide)
  7492. )
  7493. (property "Datasheet" "~" (id 3) (at 45.72 100.33 0)
  7494. (effects (font (size 1.27 1.27)) hide)
  7495. )
  7496. (pin "1" (uuid 3596e4f6-a62f-45f3-a36d-75a44a506f70))
  7497. )
  7498. (symbol (lib_id "power:+5V") (at 67.31 58.42 0) (unit 1)
  7499. (in_bom yes) (on_board yes)
  7500. (uuid 00000000-0000-0000-0000-000062644c87)
  7501. (property "Reference" "#PWR0136" (id 0) (at 67.31 62.23 0)
  7502. (effects (font (size 1.27 1.27)) hide)
  7503. )
  7504. (property "Value" "+5V" (id 1) (at 67.691 54.0258 0))
  7505. (property "Footprint" "" (id 2) (at 67.31 58.42 0)
  7506. (effects (font (size 1.27 1.27)) hide)
  7507. )
  7508. (property "Datasheet" "" (id 3) (at 67.31 58.42 0)
  7509. (effects (font (size 1.27 1.27)) hide)
  7510. )
  7511. (pin "1" (uuid a65f4b08-ed17-4666-991e-102dbdbbb7ae))
  7512. )
  7513. (symbol (lib_id "power:+5V") (at 321.31 165.1 0) (unit 1)
  7514. (in_bom yes) (on_board yes)
  7515. (uuid 00000000-0000-0000-0000-000062663a0f)
  7516. (property "Reference" "#PWR0137" (id 0) (at 321.31 168.91 0)
  7517. (effects (font (size 1.27 1.27)) hide)
  7518. )
  7519. (property "Value" "+5V" (id 1) (at 321.691 160.7058 0))
  7520. (property "Footprint" "" (id 2) (at 321.31 165.1 0)
  7521. (effects (font (size 1.27 1.27)) hide)
  7522. )
  7523. (property "Datasheet" "" (id 3) (at 321.31 165.1 0)
  7524. (effects (font (size 1.27 1.27)) hide)
  7525. )
  7526. (pin "1" (uuid e127aca6-2244-4ab0-a5ba-d39a64f63be0))
  7527. )
  7528. (symbol (lib_id "power:+5V") (at 22.86 25.4 0) (unit 1)
  7529. (in_bom yes) (on_board yes)
  7530. (uuid 00000000-0000-0000-0000-00006269a626)
  7531. (property "Reference" "#PWR0138" (id 0) (at 22.86 29.21 0)
  7532. (effects (font (size 1.27 1.27)) hide)
  7533. )
  7534. (property "Value" "+5V" (id 1) (at 22.86 21.59 0))
  7535. (property "Footprint" "" (id 2) (at 22.86 25.4 0)
  7536. (effects (font (size 1.27 1.27)) hide)
  7537. )
  7538. (property "Datasheet" "" (id 3) (at 22.86 25.4 0)
  7539. (effects (font (size 1.27 1.27)) hide)
  7540. )
  7541. (pin "1" (uuid 2e063fff-a2c7-45f0-96f6-e7831414a280))
  7542. )
  7543. (symbol (lib_id "power:GND") (at 321.31 175.26 0) (unit 1)
  7544. (in_bom yes) (on_board yes)
  7545. (uuid 00000000-0000-0000-0000-0000626b6cf1)
  7546. (property "Reference" "#PWR0132" (id 0) (at 321.31 181.61 0)
  7547. (effects (font (size 1.27 1.27)) hide)
  7548. )
  7549. (property "Value" "GND" (id 1) (at 321.437 179.6542 0))
  7550. (property "Footprint" "" (id 2) (at 321.31 175.26 0)
  7551. (effects (font (size 1.27 1.27)) hide)
  7552. )
  7553. (property "Datasheet" "" (id 3) (at 321.31 175.26 0)
  7554. (effects (font (size 1.27 1.27)) hide)
  7555. )
  7556. (pin "1" (uuid bc72b5b2-7af7-488d-b91b-58a1a8d3b9ab))
  7557. )
  7558. (symbol (lib_id "VEML7700:VEML7700") (at 62.23 147.32 0) (unit 1)
  7559. (in_bom yes) (on_board yes)
  7560. (uuid 00000000-0000-0000-0000-00006271597a)
  7561. (property "Reference" "U8" (id 0) (at 55.1688 146.7866 0)
  7562. (effects (font (size 1.27 1.27)) (justify right))
  7563. )
  7564. (property "Value" "VEML7700" (id 1) (at 55.1688 149.098 0)
  7565. (effects (font (size 1.27 1.27)) (justify right))
  7566. )
  7567. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 62.23 147.32 0)
  7568. (effects (font (size 1.27 1.27)) hide)
  7569. )
  7570. (property "Datasheet" "" (id 3) (at 62.23 147.32 0)
  7571. (effects (font (size 1.27 1.27)) hide)
  7572. )
  7573. (property "Digikey" "VEML7700-TT" (id 4) (at 62.23 147.32 0)
  7574. (effects (font (size 1.27 1.27)) hide)
  7575. )
  7576. (property "Mouser" "78-VEML7700-TT" (id 5) (at 62.23 147.32 0)
  7577. (effects (font (size 1.27 1.27)) hide)
  7578. )
  7579. (property "LCSC" "C1850416" (id 6) (at 62.23 147.32 0)
  7580. (effects (font (size 1.27 1.27)) hide)
  7581. )
  7582. (pin "1" (uuid 4e639396-fd0d-48f3-ae01-491cad4cd2ae))
  7583. (pin "2" (uuid cf7662f5-8d7d-406e-833a-14d8e8de7e9e))
  7584. (pin "3" (uuid b64ab217-2d8d-49d7-adba-67ecfdf386a3))
  7585. (pin "4" (uuid a91d6319-4f81-4284-8582-de6896fbd8c1))
  7586. )
  7587. (symbol (lib_id "Device:C_Small") (at 45.72 139.7 0) (unit 1)
  7588. (in_bom yes) (on_board yes)
  7589. (uuid 00000000-0000-0000-0000-00006271863d)
  7590. (property "Reference" "C27" (id 0) (at 48.0568 138.5316 0)
  7591. (effects (font (size 1.27 1.27)) (justify left))
  7592. )
  7593. (property "Value" "0.1uF" (id 1) (at 48.0568 140.843 0)
  7594. (effects (font (size 1.27 1.27)) (justify left))
  7595. )
  7596. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 45.72 139.7 0)
  7597. (effects (font (size 1.27 1.27)) hide)
  7598. )
  7599. (property "Datasheet" "~" (id 3) (at 45.72 139.7 0)
  7600. (effects (font (size 1.27 1.27)) hide)
  7601. )
  7602. (property "LCSC" "C1591" (id 4) (at 45.72 139.7 0)
  7603. (effects (font (size 1.27 1.27)) hide)
  7604. )
  7605. (property "Digikey" "1276-1935-1-ND" (id 5) (at 45.72 139.7 0)
  7606. (effects (font (size 1.27 1.27)) hide)
  7607. )
  7608. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 45.72 139.7 0)
  7609. (effects (font (size 1.27 1.27)) hide)
  7610. )
  7611. (pin "1" (uuid 661ecab7-71a0-40fb-9b45-35d1b476f11d))
  7612. (pin "2" (uuid d5ba6e76-eefc-42d3-a8c9-fcf1e81d29a6))
  7613. )
  7614. (symbol (lib_id "power:+3.3V") (at 45.72 129.54 0) (unit 1)
  7615. (in_bom yes) (on_board yes)
  7616. (uuid 00000000-0000-0000-0000-000062719d79)
  7617. (property "Reference" "#PWR0139" (id 0) (at 45.72 133.35 0)
  7618. (effects (font (size 1.27 1.27)) hide)
  7619. )
  7620. (property "Value" "+3.3V" (id 1) (at 46.101 125.1458 0))
  7621. (property "Footprint" "" (id 2) (at 45.72 129.54 0)
  7622. (effects (font (size 1.27 1.27)) hide)
  7623. )
  7624. (property "Datasheet" "" (id 3) (at 45.72 129.54 0)
  7625. (effects (font (size 1.27 1.27)) hide)
  7626. )
  7627. (pin "1" (uuid 7174babe-609e-414a-875a-5d616c24c193))
  7628. )
  7629. (symbol (lib_id "power:GND") (at 45.72 165.1 0) (unit 1)
  7630. (in_bom yes) (on_board yes)
  7631. (uuid 00000000-0000-0000-0000-00006271a63e)
  7632. (property "Reference" "#PWR0140" (id 0) (at 45.72 171.45 0)
  7633. (effects (font (size 1.27 1.27)) hide)
  7634. )
  7635. (property "Value" "GND" (id 1) (at 45.847 169.4942 0))
  7636. (property "Footprint" "" (id 2) (at 45.72 165.1 0)
  7637. (effects (font (size 1.27 1.27)) hide)
  7638. )
  7639. (property "Datasheet" "" (id 3) (at 45.72 165.1 0)
  7640. (effects (font (size 1.27 1.27)) hide)
  7641. )
  7642. (pin "1" (uuid 2a2a4016-7e4c-44fd-931a-e34a173acb81))
  7643. )
  7644. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 189.23 0) (unit 1)
  7645. (in_bom yes) (on_board yes)
  7646. (uuid 00000000-0000-0000-0000-000062748b8a)
  7647. (property "Reference" "J4" (id 0) (at 140.462 188.1632 0)
  7648. (effects (font (size 1.27 1.27)) (justify left))
  7649. )
  7650. (property "Value" "A" (id 1) (at 140.462 190.4746 0)
  7651. (effects (font (size 1.27 1.27)) (justify left))
  7652. )
  7653. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 189.23 0)
  7654. (effects (font (size 1.27 1.27)) hide)
  7655. )
  7656. (property "Datasheet" "~" (id 3) (at 138.43 189.23 0)
  7657. (effects (font (size 1.27 1.27)) hide)
  7658. )
  7659. (pin "1" (uuid 46a17313-3b78-4a84-8f45-a37ea5833dad))
  7660. (pin "2" (uuid 8b9119fb-4888-4674-b5b7-19ba6fe17e82))
  7661. (pin "3" (uuid 8c1feb9f-d0b8-42a7-8406-aa936270dc75))
  7662. )
  7663. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 200.66 0) (unit 1)
  7664. (in_bom yes) (on_board yes)
  7665. (uuid 00000000-0000-0000-0000-00006274a9bb)
  7666. (property "Reference" "J5" (id 0) (at 140.462 199.5932 0)
  7667. (effects (font (size 1.27 1.27)) (justify left))
  7668. )
  7669. (property "Value" "B" (id 1) (at 140.462 201.9046 0)
  7670. (effects (font (size 1.27 1.27)) (justify left))
  7671. )
  7672. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 200.66 0)
  7673. (effects (font (size 1.27 1.27)) hide)
  7674. )
  7675. (property "Datasheet" "~" (id 3) (at 138.43 200.66 0)
  7676. (effects (font (size 1.27 1.27)) hide)
  7677. )
  7678. (pin "1" (uuid e14baf8b-f165-42d0-ab67-48db2ef1f110))
  7679. (pin "2" (uuid 674dc7df-a1ab-4b4f-990f-590eb08c2ce2))
  7680. (pin "3" (uuid ff42b5b9-653e-46b0-81ab-36da556cf5d0))
  7681. )
  7682. (symbol (lib_id "Device:R_Small") (at 166.37 132.08 0) (unit 1)
  7683. (in_bom yes) (on_board yes)
  7684. (uuid 00000000-0000-0000-0000-0000627e020e)
  7685. (property "Reference" "R13" (id 0) (at 161.3916 132.08 90))
  7686. (property "Value" "2.2k" (id 1) (at 163.703 132.08 90))
  7687. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 166.37 132.08 0)
  7688. (effects (font (size 1.27 1.27)) hide)
  7689. )
  7690. (property "Datasheet" "~" (id 3) (at 166.37 132.08 0)
  7691. (effects (font (size 1.27 1.27)) hide)
  7692. )
  7693. (property "LCSC" "C4190" (id 4) (at 166.37 132.08 0)
  7694. (effects (font (size 1.27 1.27)) hide)
  7695. )
  7696. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 166.37 132.08 0)
  7697. (effects (font (size 1.27 1.27)) hide)
  7698. )
  7699. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 166.37 132.08 0)
  7700. (effects (font (size 1.27 1.27)) hide)
  7701. )
  7702. (pin "1" (uuid 0e3e8dbc-ddc7-40fc-a10a-28e14606eb80))
  7703. (pin "2" (uuid efc8f1b1-e26b-4dcb-9909-745df981a878))
  7704. )
  7705. (symbol (lib_id "Device:R_Small") (at 172.72 138.43 0) (unit 1)
  7706. (in_bom yes) (on_board yes)
  7707. (uuid 00000000-0000-0000-0000-0000627eadb9)
  7708. (property "Reference" "R14" (id 0) (at 167.7416 138.43 90))
  7709. (property "Value" "2.2k" (id 1) (at 170.053 138.43 90))
  7710. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 172.72 138.43 0)
  7711. (effects (font (size 1.27 1.27)) hide)
  7712. )
  7713. (property "Datasheet" "~" (id 3) (at 172.72 138.43 0)
  7714. (effects (font (size 1.27 1.27)) hide)
  7715. )
  7716. (property "LCSC" "C4190" (id 4) (at 172.72 138.43 0)
  7717. (effects (font (size 1.27 1.27)) hide)
  7718. )
  7719. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 172.72 138.43 0)
  7720. (effects (font (size 1.27 1.27)) hide)
  7721. )
  7722. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 172.72 138.43 0)
  7723. (effects (font (size 1.27 1.27)) hide)
  7724. )
  7725. (pin "1" (uuid 5c368fdc-8657-4d4e-bac9-9fad9b825df9))
  7726. (pin "2" (uuid 2ba6ef0c-0901-4570-8a77-6e40184846a7))
  7727. )
  7728. (symbol (lib_id "power:+3.3V") (at 170.18 127 0) (unit 1)
  7729. (in_bom yes) (on_board yes)
  7730. (uuid 00000000-0000-0000-0000-000062826cad)
  7731. (property "Reference" "#PWR0141" (id 0) (at 170.18 130.81 0)
  7732. (effects (font (size 1.27 1.27)) hide)
  7733. )
  7734. (property "Value" "+3.3V" (id 1) (at 170.561 122.6058 0))
  7735. (property "Footprint" "" (id 2) (at 170.18 127 0)
  7736. (effects (font (size 1.27 1.27)) hide)
  7737. )
  7738. (property "Datasheet" "" (id 3) (at 170.18 127 0)
  7739. (effects (font (size 1.27 1.27)) hide)
  7740. )
  7741. (pin "1" (uuid fd271d37-3ee8-4620-82ff-72683338471b))
  7742. )
  7743. (symbol (lib_id "power:+5V") (at 80.01 19.05 0) (unit 1)
  7744. (in_bom yes) (on_board yes)
  7745. (uuid 093ff7b3-d0be-4d5f-8dd6-2db6a01d471d)
  7746. (property "Reference" "#PWR0150" (id 0) (at 80.01 22.86 0)
  7747. (effects (font (size 1.27 1.27)) hide)
  7748. )
  7749. (property "Value" "+5V" (id 1) (at 80.01 15.24 0))
  7750. (property "Footprint" "" (id 2) (at 80.01 19.05 0)
  7751. (effects (font (size 1.27 1.27)) hide)
  7752. )
  7753. (property "Datasheet" "" (id 3) (at 80.01 19.05 0)
  7754. (effects (font (size 1.27 1.27)) hide)
  7755. )
  7756. (pin "1" (uuid 813c6a5d-dc7f-4d8b-8cc6-6f054f0f92cc))
  7757. )
  7758. (symbol (lib_id "power:+3.3V") (at 102.87 19.05 0) (unit 1)
  7759. (in_bom yes) (on_board yes)
  7760. (uuid 2f95654e-b711-4440-bf72-ec5c79a93a6e)
  7761. (property "Reference" "#PWR0147" (id 0) (at 102.87 22.86 0)
  7762. (effects (font (size 1.27 1.27)) hide)
  7763. )
  7764. (property "Value" "+3.3V" (id 1) (at 103.251 14.6558 0))
  7765. (property "Footprint" "" (id 2) (at 102.87 19.05 0)
  7766. (effects (font (size 1.27 1.27)) hide)
  7767. )
  7768. (property "Datasheet" "" (id 3) (at 102.87 19.05 0)
  7769. (effects (font (size 1.27 1.27)) hide)
  7770. )
  7771. (pin "1" (uuid dea93584-1893-4f9e-b562-3d5b2d32508c))
  7772. )
  7773. (symbol (lib_id "power:PWR_FLAG") (at 214.63 207.01 0) (unit 1)
  7774. (in_bom yes) (on_board yes) (fields_autoplaced)
  7775. (uuid 6ae86d03-847c-45a5-8903-ce32ee0509d6)
  7776. (property "Reference" "#FLG0103" (id 0) (at 214.63 205.105 0)
  7777. (effects (font (size 1.27 1.27)) hide)
  7778. )
  7779. (property "Value" "PWR_FLAG" (id 1) (at 214.63 201.93 0))
  7780. (property "Footprint" "" (id 2) (at 214.63 207.01 0)
  7781. (effects (font (size 1.27 1.27)) hide)
  7782. )
  7783. (property "Datasheet" "~" (id 3) (at 214.63 207.01 0)
  7784. (effects (font (size 1.27 1.27)) hide)
  7785. )
  7786. (pin "1" (uuid a5cdc951-a651-4b84-af46-2da1a268b065))
  7787. )
  7788. (symbol (lib_id "Device:NetTie_2") (at 222.25 207.01 0) (unit 1)
  7789. (in_bom no) (on_board yes)
  7790. (uuid 6c2ba31f-e69e-499b-a871-fef898c318d8)
  7791. (property "Reference" "NT1" (id 0) (at 222.25 208.28 0))
  7792. (property "Value" "NetTie_2" (id 1) (at 222.25 210.82 0)
  7793. (effects (font (size 1.27 1.27)) hide)
  7794. )
  7795. (property "Footprint" "NetTie:NetTie-2_SMD_Pad0.5mm" (id 2) (at 222.25 207.01 0)
  7796. (effects (font (size 1.27 1.27)) hide)
  7797. )
  7798. (property "Datasheet" "~" (id 3) (at 222.25 207.01 0)
  7799. (effects (font (size 1.27 1.27)) hide)
  7800. )
  7801. (pin "1" (uuid 64a816d7-8779-40eb-abd0-dcef6915077a))
  7802. (pin "2" (uuid f190f63b-6701-467a-ae0a-1f70e305fc5d))
  7803. )
  7804. (symbol (lib_id "Regulator_Linear:TS1117BCW33_RPG") (at 91.44 38.1 0) (unit 1)
  7805. (in_bom yes) (on_board yes)
  7806. (uuid 805c7193-24d6-419b-a5cd-d127eb5a1a11)
  7807. (property "Reference" "U9" (id 0) (at 100.33 41.91 0))
  7808. (property "Value" "TS1117BCW33_RPG" (id 1) (at 101.6 44.45 0))
  7809. (property "Footprint" "Modified:SOT-223-3_TabPin2_GndOutIn" (id 2) (at 91.44 26.67 0)
  7810. (effects (font (size 1.27 1.27)) hide)
  7811. )
  7812. (property "Datasheet" "https://www.mouser.com/datasheet/2/395/TS1117B_H1607-1918589.pdf" (id 3) (at 90.17 24.13 0)
  7813. (effects (font (size 1.27 1.27)) hide)
  7814. )
  7815. (property "Note" "Populate either U6 or U9 - depending on pinout - but not both!" (id 4) (at 91.44 38.1 0)
  7816. (effects (font (size 1.27 1.27)) hide)
  7817. )
  7818. (property "LCSC" "C6186, C35879, or others" (id 5) (at 91.44 38.1 0)
  7819. (effects (font (size 1.27 1.27)) hide)
  7820. )
  7821. (property "Digikey" "296-35976-1-ND" (id 6) (at 91.44 38.1 0)
  7822. (effects (font (size 1.27 1.27)) hide)
  7823. )
  7824. (property "Mouser" "821-TS1117BCW33RPG" (id 7) (at 91.44 38.1 0)
  7825. (effects (font (size 1.27 1.27)) hide)
  7826. )
  7827. (pin "1" (uuid e129339a-ebd9-4e8e-a2ca-746c5ff8e2c9))
  7828. (pin "2" (uuid 941b231a-410a-42be-82e3-bcf100220d44))
  7829. (pin "3" (uuid 89f89a97-a177-4d69-9ac2-5b850e1dab3c))
  7830. )
  7831. (symbol (lib_id "power:GND") (at 91.44 44.45 0) (unit 1)
  7832. (in_bom yes) (on_board yes)
  7833. (uuid 85bc403f-16fe-415f-b7a8-bafec0496ea2)
  7834. (property "Reference" "#PWR0146" (id 0) (at 91.44 50.8 0)
  7835. (effects (font (size 1.27 1.27)) hide)
  7836. )
  7837. (property "Value" "GND" (id 1) (at 91.44 48.26 0))
  7838. (property "Footprint" "" (id 2) (at 91.44 44.45 0)
  7839. (effects (font (size 1.27 1.27)) hide)
  7840. )
  7841. (property "Datasheet" "" (id 3) (at 91.44 44.45 0)
  7842. (effects (font (size 1.27 1.27)) hide)
  7843. )
  7844. (pin "1" (uuid 81cef10f-a981-49be-a2df-80c1afa3a888))
  7845. )
  7846. (symbol (lib_id "power:GND") (at 91.44 26.67 0) (unit 1)
  7847. (in_bom yes) (on_board yes)
  7848. (uuid 8f361398-ca89-4cfc-aab0-c57487ab886f)
  7849. (property "Reference" "#PWR0148" (id 0) (at 91.44 33.02 0)
  7850. (effects (font (size 1.27 1.27)) hide)
  7851. )
  7852. (property "Value" "GND" (id 1) (at 91.44 30.48 0))
  7853. (property "Footprint" "" (id 2) (at 91.44 26.67 0)
  7854. (effects (font (size 1.27 1.27)) hide)
  7855. )
  7856. (property "Datasheet" "" (id 3) (at 91.44 26.67 0)
  7857. (effects (font (size 1.27 1.27)) hide)
  7858. )
  7859. (pin "1" (uuid 240b9b36-db65-4afd-b902-bcd6d1c05ca2))
  7860. )
  7861. (symbol (lib_id "Device:R_Small") (at 127 172.72 0) (unit 1)
  7862. (in_bom yes) (on_board yes)
  7863. (uuid ac4215d7-373b-4202-9de3-1eb6cecdb1ed)
  7864. (property "Reference" "R19" (id 0) (at 121.92 171.45 0)
  7865. (effects (font (size 1.27 1.27)) (justify left))
  7866. )
  7867. (property "Value" "330" (id 1) (at 121.92 173.99 0)
  7868. (effects (font (size 1.27 1.27)) (justify left))
  7869. )
  7870. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 127 172.72 0)
  7871. (effects (font (size 1.27 1.27)) hide)
  7872. )
  7873. (property "Datasheet" "~" (id 3) (at 127 172.72 0)
  7874. (effects (font (size 1.27 1.27)) hide)
  7875. )
  7876. (property "LCSC" "C19866" (id 4) (at 127 172.72 0)
  7877. (effects (font (size 1.27 1.27)) hide)
  7878. )
  7879. (pin "1" (uuid 400e323c-69cd-4ed5-88ac-d8df735e43ba))
  7880. (pin "2" (uuid 64795bdc-3ed8-4d0b-a7d7-175b74736289))
  7881. )
  7882. (symbol (lib_id "Device:R_Small") (at 132.08 172.72 180) (unit 1)
  7883. (in_bom yes) (on_board yes) (fields_autoplaced)
  7884. (uuid bdc179f6-c955-4c31-a328-98d06146a815)
  7885. (property "Reference" "R21" (id 0) (at 134.62 171.4499 0)
  7886. (effects (font (size 1.27 1.27)) (justify right))
  7887. )
  7888. (property "Value" "330" (id 1) (at 134.62 173.9899 0)
  7889. (effects (font (size 1.27 1.27)) (justify right))
  7890. )
  7891. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 132.08 172.72 0)
  7892. (effects (font (size 1.27 1.27)) hide)
  7893. )
  7894. (property "Datasheet" "~" (id 3) (at 132.08 172.72 0)
  7895. (effects (font (size 1.27 1.27)) hide)
  7896. )
  7897. (property "LCSC" "C19866" (id 4) (at 132.08 172.72 0)
  7898. (effects (font (size 1.27 1.27)) hide)
  7899. )
  7900. (pin "1" (uuid a80129b5-a058-4a81-b9e9-db5ff4760db6))
  7901. (pin "2" (uuid bb1bdfd3-62a8-4d1b-b8f9-348c50acf43b))
  7902. )
  7903. (symbol (lib_id "Device:R_Small") (at 132.08 165.1 180) (unit 1)
  7904. (in_bom yes) (on_board yes)
  7905. (uuid d48ba7d8-0dc0-49fa-8611-f11e53bc9223)
  7906. (property "Reference" "R20" (id 0) (at 134.62 163.8299 0)
  7907. (effects (font (size 1.27 1.27)) (justify right))
  7908. )
  7909. (property "Value" "330" (id 1) (at 134.62 166.3699 0)
  7910. (effects (font (size 1.27 1.27)) (justify right))
  7911. )
  7912. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 132.08 165.1 0)
  7913. (effects (font (size 1.27 1.27)) hide)
  7914. )
  7915. (property "Datasheet" "~" (id 3) (at 132.08 165.1 0)
  7916. (effects (font (size 1.27 1.27)) hide)
  7917. )
  7918. (property "LCSC" "C19866" (id 4) (at 132.08 165.1 0)
  7919. (effects (font (size 1.27 1.27)) hide)
  7920. )
  7921. (pin "1" (uuid 71a41343-8573-4fd7-ae3b-10afd3f59c2e))
  7922. (pin "2" (uuid ca5ce314-a0bb-4bf7-97ae-76ae4918f090))
  7923. )
  7924. (symbol (lib_id "power:+5V") (at 80.01 38.1 0) (unit 1)
  7925. (in_bom yes) (on_board yes)
  7926. (uuid da20535e-de5b-4dbb-9928-a1153b041fcc)
  7927. (property "Reference" "#PWR0144" (id 0) (at 80.01 41.91 0)
  7928. (effects (font (size 1.27 1.27)) hide)
  7929. )
  7930. (property "Value" "+5V" (id 1) (at 80.01 34.29 0))
  7931. (property "Footprint" "" (id 2) (at 80.01 38.1 0)
  7932. (effects (font (size 1.27 1.27)) hide)
  7933. )
  7934. (property "Datasheet" "" (id 3) (at 80.01 38.1 0)
  7935. (effects (font (size 1.27 1.27)) hide)
  7936. )
  7937. (pin "1" (uuid 2af433dc-5119-491d-ac92-77a75a4771f2))
  7938. )
  7939. (symbol (lib_id "Device:R_Small") (at 127 165.1 0) (unit 1)
  7940. (in_bom yes) (on_board yes)
  7941. (uuid ddedfbfe-1283-4b0a-bf65-25d108845240)
  7942. (property "Reference" "R18" (id 0) (at 121.92 163.83 0)
  7943. (effects (font (size 1.27 1.27)) (justify left))
  7944. )
  7945. (property "Value" "330" (id 1) (at 121.92 166.37 0)
  7946. (effects (font (size 1.27 1.27)) (justify left))
  7947. )
  7948. (property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 127 165.1 0)
  7949. (effects (font (size 1.27 1.27)) hide)
  7950. )
  7951. (property "Datasheet" "~" (id 3) (at 127 165.1 0)
  7952. (effects (font (size 1.27 1.27)) hide)
  7953. )
  7954. (property "LCSC" "C19866" (id 4) (at 127 165.1 0)
  7955. (effects (font (size 1.27 1.27)) hide)
  7956. )
  7957. (pin "1" (uuid c24c4313-3e54-4ecb-a0f9-e70cdd69fafd))
  7958. (pin "2" (uuid e0b5b362-6518-475f-b771-02b10ddb6865))
  7959. )
  7960. (symbol (lib_id "power:+3.3V") (at 102.87 38.1 0) (unit 1)
  7961. (in_bom yes) (on_board yes)
  7962. (uuid f30f2b63-8d91-4c88-980a-7e701d94e79c)
  7963. (property "Reference" "#PWR0145" (id 0) (at 102.87 41.91 0)
  7964. (effects (font (size 1.27 1.27)) hide)
  7965. )
  7966. (property "Value" "+3.3V" (id 1) (at 103.251 33.7058 0))
  7967. (property "Footprint" "" (id 2) (at 102.87 38.1 0)
  7968. (effects (font (size 1.27 1.27)) hide)
  7969. )
  7970. (property "Datasheet" "" (id 3) (at 102.87 38.1 0)
  7971. (effects (font (size 1.27 1.27)) hide)
  7972. )
  7973. (pin "1" (uuid 7280275e-f980-4453-849c-406076e3e7e5))
  7974. )
  7975. (sheet_instances
  7976. (path "/" (page "1"))
  7977. )
  7978. (symbol_instances
  7979. (path "/00000000-0000-0000-0000-0000625e1008"
  7980. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7981. )
  7982. (path "/00000000-0000-0000-0000-0000625fa47a"
  7983. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7984. )
  7985. (path "/6ae86d03-847c-45a5-8903-ce32ee0509d6"
  7986. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7987. )
  7988. (path "/00000000-0000-0000-0000-0000621b8449"
  7989. (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "")
  7990. )
  7991. (path "/00000000-0000-0000-0000-000062269e5e"
  7992. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  7993. )
  7994. (path "/00000000-0000-0000-0000-000061f5e471"
  7995. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  7996. )
  7997. (path "/00000000-0000-0000-0000-000061f5f724"
  7998. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7999. )
  8000. (path "/00000000-0000-0000-0000-000061fefd56"
  8001. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  8002. )
  8003. (path "/00000000-0000-0000-0000-000061ff8431"
  8004. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  8005. )
  8006. (path "/00000000-0000-0000-0000-00006204bf3e"
  8007. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  8008. )
  8009. (path "/00000000-0000-0000-0000-00006205ee7e"
  8010. (reference "#PWR0106") (unit 1) (value "+3.3V") (footprint "")
  8011. )
  8012. (path "/00000000-0000-0000-0000-000062092c18"
  8013. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  8014. )
  8015. (path "/00000000-0000-0000-0000-000062096fa5"
  8016. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  8017. )
  8018. (path "/00000000-0000-0000-0000-0000620a6032"
  8019. (reference "#PWR0109") (unit 1) (value "+3.3V") (footprint "")
  8020. )
  8021. (path "/00000000-0000-0000-0000-0000620d59fa"
  8022. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  8023. )
  8024. (path "/00000000-0000-0000-0000-00006210086e"
  8025. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  8026. )
  8027. (path "/00000000-0000-0000-0000-000062105589"
  8028. (reference "#PWR0112") (unit 1) (value "+3.3V") (footprint "")
  8029. )
  8030. (path "/00000000-0000-0000-0000-0000621184b4"
  8031. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  8032. )
  8033. (path "/00000000-0000-0000-0000-000062153ea9"
  8034. (reference "#PWR0114") (unit 1) (value "+3.3V") (footprint "")
  8035. )
  8036. (path "/00000000-0000-0000-0000-000062154495"
  8037. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  8038. )
  8039. (path "/00000000-0000-0000-0000-0000620606f7"
  8040. (reference "#PWR0116") (unit 1) (value "+3.3V") (footprint "")
  8041. )
  8042. (path "/00000000-0000-0000-0000-0000620d3feb"
  8043. (reference "#PWR0117") (unit 1) (value "GNDA") (footprint "")
  8044. )
  8045. (path "/00000000-0000-0000-0000-000062110345"
  8046. (reference "#PWR0118") (unit 1) (value "GNDA") (footprint "")
  8047. )
  8048. (path "/00000000-0000-0000-0000-00006211ae93"
  8049. (reference "#PWR0119") (unit 1) (value "GNDA") (footprint "")
  8050. )
  8051. (path "/00000000-0000-0000-0000-000062131aaa"
  8052. (reference "#PWR0120") (unit 1) (value "GNDA") (footprint "")
  8053. )
  8054. (path "/00000000-0000-0000-0000-00006213fbbb"
  8055. (reference "#PWR0121") (unit 1) (value "GNDA") (footprint "")
  8056. )
  8057. (path "/00000000-0000-0000-0000-0000621b25e8"
  8058. (reference "#PWR0122") (unit 1) (value "GNDA") (footprint "")
  8059. )
  8060. (path "/00000000-0000-0000-0000-0000621d4025"
  8061. (reference "#PWR0123") (unit 1) (value "GNDA") (footprint "")
  8062. )
  8063. (path "/00000000-0000-0000-0000-0000621d490e"
  8064. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  8065. )
  8066. (path "/00000000-0000-0000-0000-0000621f9c4b"
  8067. (reference "#PWR0125") (unit 1) (value "GNDA") (footprint "")
  8068. )
  8069. (path "/00000000-0000-0000-0000-0000623d2efc"
  8070. (reference "#PWR0126") (unit 1) (value "+3.3V") (footprint "")
  8071. )
  8072. (path "/00000000-0000-0000-0000-0000623d364a"
  8073. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  8074. )
  8075. (path "/00000000-0000-0000-0000-0000623f1786"
  8076. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  8077. )
  8078. (path "/00000000-0000-0000-0000-0000623f1d8e"
  8079. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  8080. )
  8081. (path "/00000000-0000-0000-0000-00006245e5c2"
  8082. (reference "#PWR0130") (unit 1) (value "+3.3V") (footprint "")
  8083. )
  8084. (path "/00000000-0000-0000-0000-00006245ef1e"
  8085. (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
  8086. )
  8087. (path "/00000000-0000-0000-0000-0000626b6cf1"
  8088. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  8089. )
  8090. (path "/00000000-0000-0000-0000-000062078a82"
  8091. (reference "#PWR0133") (unit 1) (value "+5V") (footprint "")
  8092. )
  8093. (path "/00000000-0000-0000-0000-000062078a89"
  8094. (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
  8095. )
  8096. (path "/00000000-0000-0000-0000-000062182795"
  8097. (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
  8098. )
  8099. (path "/00000000-0000-0000-0000-000062644c87"
  8100. (reference "#PWR0136") (unit 1) (value "+5V") (footprint "")
  8101. )
  8102. (path "/00000000-0000-0000-0000-000062663a0f"
  8103. (reference "#PWR0137") (unit 1) (value "+5V") (footprint "")
  8104. )
  8105. (path "/00000000-0000-0000-0000-00006269a626"
  8106. (reference "#PWR0138") (unit 1) (value "+5V") (footprint "")
  8107. )
  8108. (path "/00000000-0000-0000-0000-000062719d79"
  8109. (reference "#PWR0139") (unit 1) (value "+3.3V") (footprint "")
  8110. )
  8111. (path "/00000000-0000-0000-0000-00006271a63e"
  8112. (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
  8113. )
  8114. (path "/00000000-0000-0000-0000-000062826cad"
  8115. (reference "#PWR0141") (unit 1) (value "+3.3V") (footprint "")
  8116. )
  8117. (path "/00000000-0000-0000-0000-00006213300a"
  8118. (reference "#PWR0142") (unit 1) (value "+3.3V") (footprint "")
  8119. )
  8120. (path "/da20535e-de5b-4dbb-9928-a1153b041fcc"
  8121. (reference "#PWR0144") (unit 1) (value "+5V") (footprint "")
  8122. )
  8123. (path "/f30f2b63-8d91-4c88-980a-7e701d94e79c"
  8124. (reference "#PWR0145") (unit 1) (value "+3.3V") (footprint "")
  8125. )
  8126. (path "/85bc403f-16fe-415f-b7a8-bafec0496ea2"
  8127. (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
  8128. )
  8129. (path "/2f95654e-b711-4440-bf72-ec5c79a93a6e"
  8130. (reference "#PWR0147") (unit 1) (value "+3.3V") (footprint "")
  8131. )
  8132. (path "/8f361398-ca89-4cfc-aab0-c57487ab886f"
  8133. (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
  8134. )
  8135. (path "/093ff7b3-d0be-4d5f-8dd6-2db6a01d471d"
  8136. (reference "#PWR0150") (unit 1) (value "+5V") (footprint "")
  8137. )
  8138. (path "/00000000-0000-0000-0000-000061f52a71"
  8139. (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8140. )
  8141. (path "/00000000-0000-0000-0000-000061f573a1"
  8142. (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8143. )
  8144. (path "/00000000-0000-0000-0000-000061f57785"
  8145. (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8146. )
  8147. (path "/00000000-0000-0000-0000-000061f58363"
  8148. (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8149. )
  8150. (path "/00000000-0000-0000-0000-000061f5903d"
  8151. (reference "C5") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8152. )
  8153. (path "/00000000-0000-0000-0000-000061f59cab"
  8154. (reference "C6") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8155. )
  8156. (path "/00000000-0000-0000-0000-000061f5a94f"
  8157. (reference "C7") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8158. )
  8159. (path "/00000000-0000-0000-0000-000061f5bfc9"
  8160. (reference "C8") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8161. )
  8162. (path "/00000000-0000-0000-0000-0000620545dc"
  8163. (reference "C9") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8164. )
  8165. (path "/00000000-0000-0000-0000-0000620581b5"
  8166. (reference "C10") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8167. )
  8168. (path "/00000000-0000-0000-0000-0000621156c4"
  8169. (reference "C11") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8170. )
  8171. (path "/00000000-0000-0000-0000-000062138f96"
  8172. (reference "C12") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8173. )
  8174. (path "/00000000-0000-0000-0000-00006208a205"
  8175. (reference "C13") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8176. )
  8177. (path "/00000000-0000-0000-0000-000062086349"
  8178. (reference "C14") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8179. )
  8180. (path "/00000000-0000-0000-0000-000062084712"
  8181. (reference "C15") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8182. )
  8183. (path "/00000000-0000-0000-0000-000062060ff5"
  8184. (reference "C16") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8185. )
  8186. (path "/00000000-0000-0000-0000-000062091f81"
  8187. (reference "C17") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8188. )
  8189. (path "/00000000-0000-0000-0000-0000620191b6"
  8190. (reference "C18") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8191. )
  8192. (path "/00000000-0000-0000-0000-0000620172ce"
  8193. (reference "C19") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8194. )
  8195. (path "/00000000-0000-0000-0000-000062066b6d"
  8196. (reference "C20") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8197. )
  8198. (path "/00000000-0000-0000-0000-00006209158d"
  8199. (reference "C21") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8200. )
  8201. (path "/00000000-0000-0000-0000-00006209787a"
  8202. (reference "C22") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8203. )
  8204. (path "/00000000-0000-0000-0000-00006213ff11"
  8205. (reference "C23") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8206. )
  8207. (path "/00000000-0000-0000-0000-0000623909d3"
  8208. (reference "C24") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8209. )
  8210. (path "/00000000-0000-0000-0000-000062390737"
  8211. (reference "C25") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8212. )
  8213. (path "/00000000-0000-0000-0000-00006246f069"
  8214. (reference "C26") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8215. )
  8216. (path "/00000000-0000-0000-0000-00006271863d"
  8217. (reference "C27") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8218. )
  8219. (path "/00000000-0000-0000-0000-00006211bef1"
  8220. (reference "C28") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8221. )
  8222. (path "/00000000-0000-0000-0000-000062078a75"
  8223. (reference "C29") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8224. )
  8225. (path "/00000000-0000-0000-0000-000061f5027f"
  8226. (reference "D1") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8227. )
  8228. (path "/00000000-0000-0000-0000-000061f5739b"
  8229. (reference "D2") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8230. )
  8231. (path "/00000000-0000-0000-0000-000061f5777f"
  8232. (reference "D3") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8233. )
  8234. (path "/00000000-0000-0000-0000-000061f5835d"
  8235. (reference "D4") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8236. )
  8237. (path "/00000000-0000-0000-0000-000061f59037"
  8238. (reference "D5") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8239. )
  8240. (path "/00000000-0000-0000-0000-000061f59ca5"
  8241. (reference "D6") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8242. )
  8243. (path "/00000000-0000-0000-0000-000061f5a949"
  8244. (reference "D7") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8245. )
  8246. (path "/00000000-0000-0000-0000-000061f5bfc3"
  8247. (reference "D8") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8248. )
  8249. (path "/00000000-0000-0000-0000-000061f74a74"
  8250. (reference "H1") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8251. )
  8252. (path "/00000000-0000-0000-0000-000061f75e86"
  8253. (reference "H2") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8254. )
  8255. (path "/00000000-0000-0000-0000-000061f76bf7"
  8256. (reference "H3") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8257. )
  8258. (path "/00000000-0000-0000-0000-000061f779d1"
  8259. (reference "H4") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8260. )
  8261. (path "/00000000-0000-0000-0000-000061f788c4"
  8262. (reference "H5") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8263. )
  8264. (path "/00000000-0000-0000-0000-000061f79385"
  8265. (reference "H6") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8266. )
  8267. (path "/00000000-0000-0000-0000-000061f79f4a"
  8268. (reference "H7") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8269. )
  8270. (path "/00000000-0000-0000-0000-0000623284d1"
  8271. (reference "H8") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8272. )
  8273. (path "/00000000-0000-0000-0000-0000623284d9"
  8274. (reference "H9") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8275. )
  8276. (path "/00000000-0000-0000-0000-000061f6e8c0"
  8277. (reference "J1") (unit 1) (value "BLDC") (footprint "Molex:532610371")
  8278. )
  8279. (path "/00000000-0000-0000-0000-000061fcaa5b"
  8280. (reference "J2") (unit 1) (value "USB_C_Receptacle_USB2.0") (footprint "GCT_USB:USB4510_NoPaste")
  8281. )
  8282. (path "/00000000-0000-0000-0000-0000622dfef9"
  8283. (reference "J3") (unit 1) (value "LCD") (footprint "SolderPads:SolderPads_2mm_8")
  8284. )
  8285. (path "/00000000-0000-0000-0000-000062748b8a"
  8286. (reference "J4") (unit 1) (value "A") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8287. )
  8288. (path "/00000000-0000-0000-0000-00006274a9bb"
  8289. (reference "J5") (unit 1) (value "B") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8290. )
  8291. (path "/00000000-0000-0000-0000-00006200e5de"
  8292. (reference "L1") (unit 1) (value "3.3uH") (footprint "Inductor_SMD:L_0805_2012Metric")
  8293. )
  8294. (path "/6c2ba31f-e69e-499b-a871-fef898c318d8"
  8295. (reference "NT1") (unit 1) (value "NetTie_2") (footprint "NetTie:NetTie-2_SMD_Pad0.5mm")
  8296. )
  8297. (path "/00000000-0000-0000-0000-000061fe5517"
  8298. (reference "Q1") (unit 1) (value "MMBT4403") (footprint "Package_TO_SOT_SMD:SOT-23")
  8299. )
  8300. (path "/00000000-0000-0000-0000-0000622e5052"
  8301. (reference "Q2") (unit 1) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8302. )
  8303. (path "/00000000-0000-0000-0000-0000622e5b70"
  8304. (reference "Q2") (unit 2) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8305. )
  8306. (path "/00000000-0000-0000-0000-000061ff5247"
  8307. (reference "R1") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8308. )
  8309. (path "/00000000-0000-0000-0000-000061ff59bf"
  8310. (reference "R2") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8311. )
  8312. (path "/00000000-0000-0000-0000-000061ff8747"
  8313. (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8314. )
  8315. (path "/00000000-0000-0000-0000-000061fff7fc"
  8316. (reference "R4") (unit 1) (value "8.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8317. )
  8318. (path "/00000000-0000-0000-0000-00006217ebc1"
  8319. (reference "R5") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8320. )
  8321. (path "/00000000-0000-0000-0000-00006217f6bc"
  8322. (reference "R6") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8323. )
  8324. (path "/00000000-0000-0000-0000-00006217c4cc"
  8325. (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8326. )
  8327. (path "/00000000-0000-0000-0000-000062180f46"
  8328. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8329. )
  8330. (path "/00000000-0000-0000-0000-0000621810c8"
  8331. (reference "R9") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8332. )
  8333. (path "/00000000-0000-0000-0000-000062181360"
  8334. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8335. )
  8336. (path "/00000000-0000-0000-0000-0000621814c1"
  8337. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8338. )
  8339. (path "/00000000-0000-0000-0000-00006218171e"
  8340. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8341. )
  8342. (path "/00000000-0000-0000-0000-0000627e020e"
  8343. (reference "R13") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8344. )
  8345. (path "/00000000-0000-0000-0000-0000627eadb9"
  8346. (reference "R14") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8347. )
  8348. (path "/00000000-0000-0000-0000-000062132ffe"
  8349. (reference "R15") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8350. )
  8351. (path "/00000000-0000-0000-0000-000062133004"
  8352. (reference "R16") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8353. )
  8354. (path "/00000000-0000-0000-0000-0000621b8442"
  8355. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8356. )
  8357. (path "/ddedfbfe-1283-4b0a-bf65-25d108845240"
  8358. (reference "R18") (unit 1) (value "330") (footprint "Resistor_SMD:R_2512_6332Metric")
  8359. )
  8360. (path "/ac4215d7-373b-4202-9de3-1eb6cecdb1ed"
  8361. (reference "R19") (unit 1) (value "330") (footprint "Resistor_SMD:R_2512_6332Metric")
  8362. )
  8363. (path "/d48ba7d8-0dc0-49fa-8611-f11e53bc9223"
  8364. (reference "R20") (unit 1) (value "330") (footprint "Resistor_SMD:R_2512_6332Metric")
  8365. )
  8366. (path "/bdc179f6-c955-4c31-a328-98d06146a815"
  8367. (reference "R21") (unit 1) (value "330") (footprint "Resistor_SMD:R_2512_6332Metric")
  8368. )
  8369. (path "/00000000-0000-0000-0000-0000620734a8"
  8370. (reference "TP1") (unit 1) (value "5V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8371. )
  8372. (path "/00000000-0000-0000-0000-0000620939bb"
  8373. (reference "TP2") (unit 1) (value "3.3v") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8374. )
  8375. (path "/00000000-0000-0000-0000-0000620f043a"
  8376. (reference "TP3") (unit 1) (value "GND") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8377. )
  8378. (path "/00000000-0000-0000-0000-0000622f4012"
  8379. (reference "TP4") (unit 1) (value "SDA") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8380. )
  8381. (path "/00000000-0000-0000-0000-0000623162cf"
  8382. (reference "TP5") (unit 1) (value "SCL") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8383. )
  8384. (path "/00000000-0000-0000-0000-000062263aa7"
  8385. (reference "TP6") (unit 1) (value "U") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8386. )
  8387. (path "/00000000-0000-0000-0000-0000622a8e6d"
  8388. (reference "TP7") (unit 1) (value "V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8389. )
  8390. (path "/00000000-0000-0000-0000-0000622cad46"
  8391. (reference "TP8") (unit 1) (value "W") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8392. )
  8393. (path "/00000000-0000-0000-0000-000062179005"
  8394. (reference "TP9") (unit 1) (value "CSN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8395. )
  8396. (path "/00000000-0000-0000-0000-0000621b8956"
  8397. (reference "TP10") (unit 1) (value "CLK") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8398. )
  8399. (path "/00000000-0000-0000-0000-0000621d8fb7"
  8400. (reference "TP11") (unit 1) (value "DO") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8401. )
  8402. (path "/00000000-0000-0000-0000-00006213725a"
  8403. (reference "TP12") (unit 1) (value "LED") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8404. )
  8405. (path "/00000000-0000-0000-0000-0000621b8454"
  8406. (reference "TP13") (unit 1) (value "EN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8407. )
  8408. (path "/00000000-0000-0000-0000-000062317868"
  8409. (reference "TP14") (unit 1) (value "BOOT") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8410. )
  8411. (path "/00000000-0000-0000-0000-000062379e81"
  8412. (reference "TP15") (unit 1) (value "TX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8413. )
  8414. (path "/00000000-0000-0000-0000-0000623a126c"
  8415. (reference "TP16") (unit 1) (value "RX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8416. )
  8417. (path "/00000000-0000-0000-0000-000061f4f0c2"
  8418. (reference "U1") (unit 1) (value "MT6701-CT") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8419. )
  8420. (path "/00000000-0000-0000-0000-00006200e46e"
  8421. (reference "U2") (unit 1) (value "T-Micro32_Plus") (footprint "lilygo_micro32:T-Micro32")
  8422. )
  8423. (path "/00000000-0000-0000-0000-0000620180e0"
  8424. (reference "U3") (unit 1) (value "CH340C") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8425. )
  8426. (path "/00000000-0000-0000-0000-00006201f11d"
  8427. (reference "U4") (unit 1) (value "HX711") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8428. )
  8429. (path "/00000000-0000-0000-0000-0000620241db"
  8430. (reference "U5") (unit 1) (value "TMC6300") (footprint "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles")
  8431. )
  8432. (path "/00000000-0000-0000-0000-00006203d4f8"
  8433. (reference "U6") (unit 1) (value "AP2114HA-3.3") (footprint "Modified:SOT-223-3_TabPin2_InGndOut")
  8434. )
  8435. (path "/00000000-0000-0000-0000-0000620700a0"
  8436. (reference "U7") (unit 1) (value "SN74LV1T34DBV") (footprint "Package_TO_SOT_SMD:SOT-23-5")
  8437. )
  8438. (path "/00000000-0000-0000-0000-00006271597a"
  8439. (reference "U8") (unit 1) (value "VEML7700") (footprint "VEML7700:VEML7700-TOP")
  8440. )
  8441. (path "/805c7193-24d6-419b-a5cd-d127eb5a1a11"
  8442. (reference "U9") (unit 1) (value "TS1117BCW33_RPG") (footprint "Modified:SOT-223-3_TabPin2_GndOutIn")
  8443. )
  8444. (path "/00000000-0000-0000-0000-000062038103"
  8445. (reference "Z5") (unit 1) (value "dummy_keepouts") (footprint "view_custom:ViewKeepouts3d")
  8446. )
  8447. (path "/00000000-0000-0000-0000-000062311cef"
  8448. (reference "Z6") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8449. )
  8450. (path "/00000000-0000-0000-0000-000062314e0d"
  8451. (reference "Z7") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8452. )
  8453. (path "/00000000-0000-0000-0000-00006233c06f"
  8454. (reference "Z8") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8455. )
  8456. (path "/00000000-0000-0000-0000-0000623f109c"
  8457. (reference "Z9") (unit 1) (value "WatchGlass39.5mm") (footprint "BOM_Only:bom_only_no_pin")
  8458. )
  8459. (path "/00000000-0000-0000-0000-00006246aa1a"
  8460. (reference "Z10") (unit 1) (value "BLDCMotor") (footprint "BOM_Only:bom_only_no_pin")
  8461. )
  8462. )
  8463. )