view_base.kicad_sch 335 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593
  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 207.01 137.16) (diameter 0) (color 0 0 0 0)
  2157. (uuid 1b98de85-f9de-4825-baf2-c96991615275)
  2158. )
  2159. (junction (at 105.41 57.15) (diameter 0) (color 0 0 0 0)
  2160. (uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
  2161. )
  2162. (junction (at 195.58 209.55) (diameter 0) (color 0 0 0 0)
  2163. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  2164. )
  2165. (junction (at 284.48 234.95) (diameter 0) (color 0 0 0 0)
  2166. (uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
  2167. )
  2168. (junction (at 228.6 250.19) (diameter 0) (color 0 0 0 0)
  2169. (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
  2170. )
  2171. (junction (at 347.98 209.55) (diameter 0) (color 0 0 0 0)
  2172. (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
  2173. )
  2174. (junction (at 379.73 171.45) (diameter 0) (color 0 0 0 0)
  2175. (uuid 24a492d9-25a9-4fba-b51b-3effb576b351)
  2176. )
  2177. (junction (at 78.74 194.31) (diameter 0) (color 0 0 0 0)
  2178. (uuid 24fd922c-d488-4d61-b6dc-9d3e359ccc82)
  2179. )
  2180. (junction (at 88.9 234.95) (diameter 0) (color 0 0 0 0)
  2181. (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
  2182. )
  2183. (junction (at 189.23 162.56) (diameter 0) (color 0 0 0 0)
  2184. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  2185. )
  2186. (junction (at 129.54 234.95) (diameter 0) (color 0 0 0 0)
  2187. (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
  2188. )
  2189. (junction (at 45.72 162.56) (diameter 0) (color 0 0 0 0)
  2190. (uuid 341dde39-440e-4d05-8def-6a5cecefd88c)
  2191. )
  2192. (junction (at 207.01 132.08) (diameter 0) (color 0 0 0 0)
  2193. (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37)
  2194. )
  2195. (junction (at 317.5 27.94) (diameter 0) (color 0 0 0 0)
  2196. (uuid 386faf3f-2adf-472a-84bf-bd511edf2429)
  2197. )
  2198. (junction (at 200.66 234.95) (diameter 0) (color 0 0 0 0)
  2199. (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
  2200. )
  2201. (junction (at 241.3 133.35) (diameter 0) (color 0 0 0 0)
  2202. (uuid 3d70e675-48ae-4edd-b95d-3ca51e634018)
  2203. )
  2204. (junction (at 317.5 33.02) (diameter 0) (color 0 0 0 0)
  2205. (uuid 3e87b259-dfc1-4885-8dcf-7e7ae39674ed)
  2206. )
  2207. (junction (at 144.78 234.95) (diameter 0) (color 0 0 0 0)
  2208. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  2209. )
  2210. (junction (at 184.15 181.61) (diameter 0) (color 0 0 0 0)
  2211. (uuid 41485de5-6ed3-4c83-b69e-ef83ae18093c)
  2212. )
  2213. (junction (at 241.3 250.19) (diameter 0) (color 0 0 0 0)
  2214. (uuid 4185c36c-c66e-4dbd-be5d-841e551f4885)
  2215. )
  2216. (junction (at 323.85 172.72) (diameter 0) (color 0 0 0 0)
  2217. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  2218. )
  2219. (junction (at 195.58 204.47) (diameter 0) (color 0 0 0 0)
  2220. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  2221. )
  2222. (junction (at 129.54 250.19) (diameter 0) (color 0 0 0 0)
  2223. (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
  2224. )
  2225. (junction (at 256.54 250.19) (diameter 0) (color 0 0 0 0)
  2226. (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
  2227. )
  2228. (junction (at 101.6 250.19) (diameter 0) (color 0 0 0 0)
  2229. (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
  2230. )
  2231. (junction (at 342.9 167.64) (diameter 0) (color 0 0 0 0)
  2232. (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
  2233. )
  2234. (junction (at 78.74 196.85) (diameter 0) (color 0 0 0 0)
  2235. (uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9)
  2236. )
  2237. (junction (at 167.64 181.61) (diameter 0) (color 0 0 0 0)
  2238. (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)
  2239. )
  2240. (junction (at 27.94 191.77) (diameter 0) (color 0 0 0 0)
  2241. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  2242. )
  2243. (junction (at 213.36 234.95) (diameter 0) (color 0 0 0 0)
  2244. (uuid 71c6e723-673c-45a9-a0e4-9742220c52a3)
  2245. )
  2246. (junction (at 326.39 27.94) (diameter 0) (color 0 0 0 0)
  2247. (uuid 72366acb-6c86-4134-89df-01ed6e4dc8e0)
  2248. )
  2249. (junction (at 189.23 85.09) (diameter 0) (color 0 0 0 0)
  2250. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  2251. )
  2252. (junction (at 38.1 99.06) (diameter 0) (color 0 0 0 0)
  2253. (uuid 7806469b-c133-4e19-b2d5-f2b690b4b2f3)
  2254. )
  2255. (junction (at 78.74 191.77) (diameter 0) (color 0 0 0 0)
  2256. (uuid 7ce4aab5-8271-4432-a4b1-bff168293b45)
  2257. )
  2258. (junction (at 53.34 78.74) (diameter 0) (color 0 0 0 0)
  2259. (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
  2260. )
  2261. (junction (at 157.48 234.95) (diameter 0) (color 0 0 0 0)
  2262. (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
  2263. )
  2264. (junction (at 383.54 181.61) (diameter 0) (color 0 0 0 0)
  2265. (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a)
  2266. )
  2267. (junction (at 29.21 36.83) (diameter 0) (color 0 0 0 0)
  2268. (uuid 865cb63d-852e-4a25-afdb-7bcd1e43246b)
  2269. )
  2270. (junction (at 172.72 234.95) (diameter 0) (color 0 0 0 0)
  2271. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  2272. )
  2273. (junction (at 347.98 212.09) (diameter 0) (color 0 0 0 0)
  2274. (uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
  2275. )
  2276. (junction (at 172.72 167.64) (diameter 0) (color 0 0 0 0)
  2277. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  2278. )
  2279. (junction (at 156.21 140.97) (diameter 0) (color 0 0 0 0)
  2280. (uuid 8afe1dbf-1187-4362-8af8-a90ca839a6b3)
  2281. )
  2282. (junction (at 157.48 250.19) (diameter 0) (color 0 0 0 0)
  2283. (uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
  2284. )
  2285. (junction (at 132.08 128.27) (diameter 0) (color 0 0 0 0)
  2286. (uuid 8efe6411-1919-4082-b5b8-393585e068c8)
  2287. )
  2288. (junction (at 101.6 234.95) (diameter 0) (color 0 0 0 0)
  2289. (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
  2290. )
  2291. (junction (at 185.42 234.95) (diameter 0) (color 0 0 0 0)
  2292. (uuid 935057d5-6882-4c15-9a35-54677912ba12)
  2293. )
  2294. (junction (at 207.01 127) (diameter 0) (color 0 0 0 0)
  2295. (uuid 971d1932-4a99-4265-9c76-26e554bde4fe)
  2296. )
  2297. (junction (at 36.83 26.67) (diameter 0) (color 0 0 0 0)
  2298. (uuid 9726a8d4-dc0a-4024-be2d-2a1a65d77359)
  2299. )
  2300. (junction (at 347.98 207.01) (diameter 0) (color 0 0 0 0)
  2301. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  2302. )
  2303. (junction (at 116.84 234.95) (diameter 0) (color 0 0 0 0)
  2304. (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
  2305. )
  2306. (junction (at 284.48 250.19) (diameter 0) (color 0 0 0 0)
  2307. (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
  2308. )
  2309. (junction (at 30.48 250.19) (diameter 0) (color 0 0 0 0)
  2310. (uuid 9a595c4c-9ac1-4ae3-8ff3-1b7f2281a894)
  2311. )
  2312. (junction (at 45.72 134.62) (diameter 0) (color 0 0 0 0)
  2313. (uuid 9c0314b1-f82f-432d-95a0-65e191202552)
  2314. )
  2315. (junction (at 54.61 242.57) (diameter 0) (color 0 0 0 0)
  2316. (uuid 9e18f8b3-9e1a-4022-9224-10c12ca8a28d)
  2317. )
  2318. (junction (at 30.48 234.95) (diameter 0) (color 0 0 0 0)
  2319. (uuid a26bdee6-0e16-4ea6-87f7-fb32c714896e)
  2320. )
  2321. (junction (at 233.68 193.04) (diameter 0) (color 0 0 0 0)
  2322. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  2323. )
  2324. (junction (at 269.24 234.95) (diameter 0) (color 0 0 0 0)
  2325. (uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
  2326. )
  2327. (junction (at 22.86 26.67) (diameter 0) (color 0 0 0 0)
  2328. (uuid afd0a773-43d9-4253-a280-3ee707f12610)
  2329. )
  2330. (junction (at 213.36 250.19) (diameter 0) (color 0 0 0 0)
  2331. (uuid b4833916-7a3e-4498-86fb-ec6d13262ffe)
  2332. )
  2333. (junction (at 53.34 73.66) (diameter 0) (color 0 0 0 0)
  2334. (uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
  2335. )
  2336. (junction (at 170.18 127) (diameter 0) (color 0 0 0 0)
  2337. (uuid b606e532-e4c7-444d-b9ff-879f52cfde92)
  2338. )
  2339. (junction (at 326.39 33.02) (diameter 0) (color 0 0 0 0)
  2340. (uuid ba116096-3ccc-4cc8-a185-5325439e4e24)
  2341. )
  2342. (junction (at 189.23 181.61) (diameter 0) (color 0 0 0 0)
  2343. (uuid bd29b6d3-a58c-4b1f-9c20-de4efb708ab2)
  2344. )
  2345. (junction (at 158.75 181.61) (diameter 0) (color 0 0 0 0)
  2346. (uuid c2dd13db-24b6-40f1-b75b-b9ab893d92ea)
  2347. )
  2348. (junction (at 224.79 71.12) (diameter 0) (color 0 0 0 0)
  2349. (uuid c37d3f0c-41ec-4928-8869-febc821c6326)
  2350. )
  2351. (junction (at 163.83 191.77) (diameter 0) (color 0 0 0 0)
  2352. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  2353. )
  2354. (junction (at 163.83 186.69) (diameter 0) (color 0 0 0 0)
  2355. (uuid c401e9c6-1deb-4979-99be-7c801c952098)
  2356. )
  2357. (junction (at 156.21 134.62) (diameter 0) (color 0 0 0 0)
  2358. (uuid c482f4f0-b441-4301-a9f1-c7f9e511d699)
  2359. )
  2360. (junction (at 233.68 175.26) (diameter 0) (color 0 0 0 0)
  2361. (uuid c512fed3-9770-476b-b048-e781b4f3cd72)
  2362. )
  2363. (junction (at 181.61 162.56) (diameter 0) (color 0 0 0 0)
  2364. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  2365. )
  2366. (junction (at 241.3 234.95) (diameter 0) (color 0 0 0 0)
  2367. (uuid cc48dd41-7768-48d3-b096-2c4cc2126c9d)
  2368. )
  2369. (junction (at 336.55 200.66) (diameter 0) (color 0 0 0 0)
  2370. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  2371. )
  2372. (junction (at 224.79 76.2) (diameter 0) (color 0 0 0 0)
  2373. (uuid d1441985-7b63-4bf8-a06d-c70da2e3b78b)
  2374. )
  2375. (junction (at 195.58 69.85) (diameter 0) (color 0 0 0 0)
  2376. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  2377. )
  2378. (junction (at 379.73 173.99) (diameter 0) (color 0 0 0 0)
  2379. (uuid d7df1f01-3f56-437b-a452-e88ad90a9805)
  2380. )
  2381. (junction (at 207.01 129.54) (diameter 0) (color 0 0 0 0)
  2382. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  2383. )
  2384. (junction (at 27.94 199.39) (diameter 0) (color 0 0 0 0)
  2385. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  2386. )
  2387. (junction (at 172.72 92.71) (diameter 0) (color 0 0 0 0)
  2388. (uuid dbbbcbf5-ed09-4c20-902c-70f108158aba)
  2389. )
  2390. (junction (at 379.73 168.91) (diameter 0) (color 0 0 0 0)
  2391. (uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1)
  2392. )
  2393. (junction (at 185.42 250.19) (diameter 0) (color 0 0 0 0)
  2394. (uuid e091e263-c616-48ef-a460-465c70218987)
  2395. )
  2396. (junction (at 119.38 57.15) (diameter 0) (color 0 0 0 0)
  2397. (uuid e2b24e25-1a0d-434a-876b-c595b47d80d2)
  2398. )
  2399. (junction (at 116.84 250.19) (diameter 0) (color 0 0 0 0)
  2400. (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
  2401. )
  2402. (junction (at 214.63 207.01) (diameter 0) (color 0 0 0 0)
  2403. (uuid ea6e56c6-8250-47d0-a0e8-238d8f05bf5b)
  2404. )
  2405. (junction (at 88.9 250.19) (diameter 0) (color 0 0 0 0)
  2406. (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
  2407. )
  2408. (junction (at 57.15 60.96) (diameter 0) (color 0 0 0 0)
  2409. (uuid ef3dded2-639c-45d4-8076-84cfb5189592)
  2410. )
  2411. (junction (at 172.72 62.23) (diameter 0) (color 0 0 0 0)
  2412. (uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
  2413. )
  2414. (junction (at 347.98 204.47) (diameter 0) (color 0 0 0 0)
  2415. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  2416. )
  2417. (junction (at 256.54 234.95) (diameter 0) (color 0 0 0 0)
  2418. (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
  2419. )
  2420. (junction (at 207.01 134.62) (diameter 0) (color 0 0 0 0)
  2421. (uuid fdc57161-f7f8-4584-b0ec-8c1aa24339c6)
  2422. )
  2423. (junction (at 30.48 99.06) (diameter 0) (color 0 0 0 0)
  2424. (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
  2425. )
  2426. (no_connect (at 132.08 43.18) (uuid 011ee658-718d-416a-85fd-961729cd1ee5))
  2427. (no_connect (at 231.14 182.88) (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
  2428. (no_connect (at 132.08 77.47) (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17))
  2429. (no_connect (at 132.08 74.93) (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
  2430. (no_connect (at 304.8 242.57) (uuid 1a813eeb-ee58-4579-81e1-3f9a7227213c))
  2431. (no_connect (at 132.08 27.94) (uuid 29bb7297-26fb-4776-9266-2355d022bab0))
  2432. (no_connect (at 340.36 45.72) (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f))
  2433. (no_connect (at 132.08 80.01) (uuid 4344bc11-e822-474b-8d61-d12211e719b1))
  2434. (no_connect (at 340.36 48.26) (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48))
  2435. (no_connect (at 120.65 27.94) (uuid 5c30b9b4-3014-4f50-9329-27a539b67e01))
  2436. (no_connect (at 111.76 69.85) (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
  2437. (no_connect (at 53.34 91.44) (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b))
  2438. (no_connect (at 77.47 199.39) (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa))
  2439. (no_connect (at 120.65 43.18) (uuid 96de0051-7945-413a-9219-1ab367546962))
  2440. (no_connect (at 378.46 48.26) (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e))
  2441. (no_connect (at 171.45 46.99) (uuid b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
  2442. (no_connect (at 154.94 43.18) (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
  2443. (no_connect (at 143.51 43.18) (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054))
  2444. (no_connect (at 53.34 88.9) (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21))
  2445. (no_connect (at 182.88 46.99) (uuid ce3f834f-337d-4957-8d02-e900d7024614))
  2446. (no_connect (at 340.36 43.18) (uuid d554632b-6dd0-47f8-b59b-3ce25177ca3e))
  2447. (no_connect (at 132.08 82.55) (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa))
  2448. (no_connect (at 143.51 27.94) (uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b))
  2449. (no_connect (at 41.91 196.85) (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63))
  2450. (wire (pts (xy 80.01 19.05) (xy 83.82 19.05))
  2451. (stroke (width 0) (type default) (color 0 0 0 0))
  2452. (uuid 006a6278-181f-41f3-9d68-edd5f627ea02)
  2453. )
  2454. (wire (pts (xy 88.9 240.03) (xy 88.9 250.19))
  2455. (stroke (width 0) (type default) (color 0 0 0 0))
  2456. (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
  2457. )
  2458. (wire (pts (xy 220.98 242.57) (xy 233.68 242.57))
  2459. (stroke (width 0) (type default) (color 0 0 0 0))
  2460. (uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
  2461. )
  2462. (wire (pts (xy 231.14 180.34) (xy 240.03 180.34))
  2463. (stroke (width 0) (type default) (color 0 0 0 0))
  2464. (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76)
  2465. )
  2466. (wire (pts (xy 157.48 234.95) (xy 172.72 234.95))
  2467. (stroke (width 0) (type default) (color 0 0 0 0))
  2468. (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
  2469. )
  2470. (wire (pts (xy 144.78 234.95) (xy 157.48 234.95))
  2471. (stroke (width 0) (type default) (color 0 0 0 0))
  2472. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  2473. )
  2474. (wire (pts (xy 353.06 73.66) (xy 353.06 90.17))
  2475. (stroke (width 0) (type default) (color 0 0 0 0))
  2476. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  2477. )
  2478. (wire (pts (xy 229.87 207.01) (xy 229.87 209.55))
  2479. (stroke (width 0) (type default) (color 0 0 0 0))
  2480. (uuid 0476c30e-6498-4edb-86a5-14460aba01fe)
  2481. )
  2482. (wire (pts (xy 321.31 167.64) (xy 323.85 167.64))
  2483. (stroke (width 0) (type default) (color 0 0 0 0))
  2484. (uuid 04d60995-4f82-4f17-8f82-2f27a0a779cc)
  2485. )
  2486. (wire (pts (xy 121.92 62.23) (xy 121.92 57.15))
  2487. (stroke (width 0) (type default) (color 0 0 0 0))
  2488. (uuid 051b8cb0-ae77-4e09-98a7-bf2103319e66)
  2489. )
  2490. (wire (pts (xy 228.6 234.95) (xy 241.3 234.95))
  2491. (stroke (width 0) (type default) (color 0 0 0 0))
  2492. (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
  2493. )
  2494. (wire (pts (xy 53.34 68.58) (xy 77.47 68.58))
  2495. (stroke (width 0) (type default) (color 0 0 0 0))
  2496. (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
  2497. )
  2498. (wire (pts (xy 207.01 124.46) (xy 207.01 127))
  2499. (stroke (width 0) (type default) (color 0 0 0 0))
  2500. (uuid 08da8f18-02c3-4a28-a400-670f01755980)
  2501. )
  2502. (wire (pts (xy 207.01 137.16) (xy 207.01 142.24))
  2503. (stroke (width 0) (type default) (color 0 0 0 0))
  2504. (uuid 0938c137-668b-4d2f-b92b-cadb1df72bdb)
  2505. )
  2506. (wire (pts (xy 241.3 125.73) (xy 241.3 123.19))
  2507. (stroke (width 0) (type default) (color 0 0 0 0))
  2508. (uuid 094dc71e-7ea9-4e30-8ba7-749216ec2a8b)
  2509. )
  2510. (wire (pts (xy 196.85 172.72) (xy 201.93 172.72))
  2511. (stroke (width 0) (type default) (color 0 0 0 0))
  2512. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  2513. )
  2514. (wire (pts (xy 81.28 198.12) (xy 78.74 198.12))
  2515. (stroke (width 0) (type default) (color 0 0 0 0))
  2516. (uuid 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2)
  2517. )
  2518. (wire (pts (xy 36.83 194.31) (xy 36.83 191.77))
  2519. (stroke (width 0) (type default) (color 0 0 0 0))
  2520. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  2521. )
  2522. (wire (pts (xy 377.19 181.61) (xy 383.54 181.61))
  2523. (stroke (width 0) (type default) (color 0 0 0 0))
  2524. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  2525. )
  2526. (wire (pts (xy 223.52 69.85) (xy 223.52 71.12))
  2527. (stroke (width 0) (type default) (color 0 0 0 0))
  2528. (uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef)
  2529. )
  2530. (wire (pts (xy 151.13 134.62) (xy 156.21 134.62))
  2531. (stroke (width 0) (type default) (color 0 0 0 0))
  2532. (uuid 0c9bbc06-f1c0-4359-8448-9c515b32a886)
  2533. )
  2534. (wire (pts (xy 45.72 134.62) (xy 62.23 134.62))
  2535. (stroke (width 0) (type default) (color 0 0 0 0))
  2536. (uuid 0cc094e7-c1c0-457d-bd94-3db91c23be55)
  2537. )
  2538. (wire (pts (xy 351.79 209.55) (xy 347.98 209.55))
  2539. (stroke (width 0) (type default) (color 0 0 0 0))
  2540. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  2541. )
  2542. (wire (pts (xy 29.21 39.37) (xy 29.21 40.64))
  2543. (stroke (width 0) (type default) (color 0 0 0 0))
  2544. (uuid 0eb774f4-dc67-436b-8caf-f4502c5ee2de)
  2545. )
  2546. (wire (pts (xy 116.84 250.19) (xy 129.54 250.19))
  2547. (stroke (width 0) (type default) (color 0 0 0 0))
  2548. (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
  2549. )
  2550. (wire (pts (xy 105.41 62.23) (xy 105.41 66.04))
  2551. (stroke (width 0) (type default) (color 0 0 0 0))
  2552. (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
  2553. )
  2554. (wire (pts (xy 137.16 242.57) (xy 149.86 242.57))
  2555. (stroke (width 0) (type default) (color 0 0 0 0))
  2556. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  2557. )
  2558. (polyline (pts (xy 208.28 49.53) (xy 208.28 115.57))
  2559. (stroke (width 0) (type default) (color 0 0 0 0))
  2560. (uuid 1053b01a-057e-4e79-a21c-42780a737ea9)
  2561. )
  2562. (polyline (pts (xy 12.7 218.44) (xy 307.34 218.44))
  2563. (stroke (width 0) (type default) (color 0 0 0 0))
  2564. (uuid 105d44ff-63b9-4299-9078-473af583971a)
  2565. )
  2566. (wire (pts (xy 378.46 66.04) (xy 398.78 66.04))
  2567. (stroke (width 0) (type default) (color 0 0 0 0))
  2568. (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa)
  2569. )
  2570. (wire (pts (xy 54.61 242.57) (xy 71.12 242.57))
  2571. (stroke (width 0) (type default) (color 0 0 0 0))
  2572. (uuid 10fa1a8c-62cb-4b8f-b916-b18d737ff71b)
  2573. )
  2574. (wire (pts (xy 200.66 250.19) (xy 213.36 250.19))
  2575. (stroke (width 0) (type default) (color 0 0 0 0))
  2576. (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
  2577. )
  2578. (wire (pts (xy 156.21 134.62) (xy 166.37 134.62))
  2579. (stroke (width 0) (type default) (color 0 0 0 0))
  2580. (uuid 15a5a11b-0ea1-4f6e-b356-cc2d530615ed)
  2581. )
  2582. (wire (pts (xy 378.46 68.58) (xy 403.86 68.58))
  2583. (stroke (width 0) (type default) (color 0 0 0 0))
  2584. (uuid 15ea3484-2685-47cb-9e01-ec01c6d477b8)
  2585. )
  2586. (wire (pts (xy 241.3 250.19) (xy 256.54 250.19))
  2587. (stroke (width 0) (type default) (color 0 0 0 0))
  2588. (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
  2589. )
  2590. (wire (pts (xy 175.26 62.23) (xy 175.26 64.77))
  2591. (stroke (width 0) (type default) (color 0 0 0 0))
  2592. (uuid 165f4d8d-26a9-4cf2-a8d6-9936cd983be4)
  2593. )
  2594. (wire (pts (xy 38.1 99.06) (xy 38.1 100.33))
  2595. (stroke (width 0) (type default) (color 0 0 0 0))
  2596. (uuid 16d5bf81-590a-4149-97e0-64f3b3ad6f52)
  2597. )
  2598. (wire (pts (xy 269.24 250.19) (xy 284.48 250.19))
  2599. (stroke (width 0) (type default) (color 0 0 0 0))
  2600. (uuid 180245d9-4a3f-4d1b-adcc-b4eafac722e0)
  2601. )
  2602. (wire (pts (xy 116.84 240.03) (xy 116.84 250.19))
  2603. (stroke (width 0) (type default) (color 0 0 0 0))
  2604. (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
  2605. )
  2606. (wire (pts (xy 351.79 189.23) (xy 336.55 189.23))
  2607. (stroke (width 0) (type default) (color 0 0 0 0))
  2608. (uuid 1b023dd4-5185-4576-b544-68a05b9c360b)
  2609. )
  2610. (wire (pts (xy 176.53 204.47) (xy 195.58 204.47))
  2611. (stroke (width 0) (type default) (color 0 0 0 0))
  2612. (uuid 1cacb878-9da4-41fc-aa80-018bc841e19a)
  2613. )
  2614. (wire (pts (xy 241.3 133.35) (xy 241.3 130.81))
  2615. (stroke (width 0) (type default) (color 0 0 0 0))
  2616. (uuid 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b)
  2617. )
  2618. (polyline (pts (xy 313.69 234.95) (xy 313.69 148.59))
  2619. (stroke (width 0) (type default) (color 0 0 0 0))
  2620. (uuid 1d9dc91c-3457-4ca5-8e42-43be60ae0831)
  2621. )
  2622. (wire (pts (xy 53.34 66.04) (xy 83.82 66.04))
  2623. (stroke (width 0) (type default) (color 0 0 0 0))
  2624. (uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
  2625. )
  2626. (wire (pts (xy 200.66 240.03) (xy 200.66 250.19))
  2627. (stroke (width 0) (type default) (color 0 0 0 0))
  2628. (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
  2629. )
  2630. (wire (pts (xy 246.38 83.82) (xy 229.87 83.82))
  2631. (stroke (width 0) (type default) (color 0 0 0 0))
  2632. (uuid 2028d85e-9e27-4758-8c0b-559fad072813)
  2633. )
  2634. (wire (pts (xy 80.01 38.1) (xy 83.82 38.1))
  2635. (stroke (width 0) (type default) (color 0 0 0 0))
  2636. (uuid 20a167d5-2883-430d-9eb3-b6f2e2052ad6)
  2637. )
  2638. (wire (pts (xy 231.14 190.5) (xy 233.68 190.5))
  2639. (stroke (width 0) (type default) (color 0 0 0 0))
  2640. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  2641. )
  2642. (wire (pts (xy 330.2 200.66) (xy 336.55 200.66))
  2643. (stroke (width 0) (type default) (color 0 0 0 0))
  2644. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  2645. )
  2646. (wire (pts (xy 377.19 209.55) (xy 381 209.55))
  2647. (stroke (width 0) (type default) (color 0 0 0 0))
  2648. (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
  2649. )
  2650. (wire (pts (xy 166.37 127) (xy 170.18 127))
  2651. (stroke (width 0) (type default) (color 0 0 0 0))
  2652. (uuid 22ab392d-1989-4185-9178-8083812ea067)
  2653. )
  2654. (wire (pts (xy 27.94 199.39) (xy 27.94 201.93))
  2655. (stroke (width 0) (type default) (color 0 0 0 0))
  2656. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  2657. )
  2658. (wire (pts (xy 195.58 209.55) (xy 208.28 209.55))
  2659. (stroke (width 0) (type default) (color 0 0 0 0))
  2660. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  2661. )
  2662. (wire (pts (xy 195.58 185.42) (xy 195.58 196.85))
  2663. (stroke (width 0) (type default) (color 0 0 0 0))
  2664. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  2665. )
  2666. (wire (pts (xy 176.53 181.61) (xy 184.15 181.61))
  2667. (stroke (width 0) (type default) (color 0 0 0 0))
  2668. (uuid 26bc8641-9bca-4204-9709-deedbe202a36)
  2669. )
  2670. (wire (pts (xy 231.14 193.04) (xy 233.68 193.04))
  2671. (stroke (width 0) (type default) (color 0 0 0 0))
  2672. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  2673. )
  2674. (wire (pts (xy 233.68 175.26) (xy 231.14 175.26))
  2675. (stroke (width 0) (type default) (color 0 0 0 0))
  2676. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  2677. )
  2678. (wire (pts (xy 323.85 167.64) (xy 332.74 167.64))
  2679. (stroke (width 0) (type default) (color 0 0 0 0))
  2680. (uuid 28b01cd2-da3a-46ec-8825-b0f31a0b8987)
  2681. )
  2682. (wire (pts (xy 189.23 162.56) (xy 189.23 160.02))
  2683. (stroke (width 0) (type default) (color 0 0 0 0))
  2684. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  2685. )
  2686. (wire (pts (xy 189.23 85.09) (xy 201.93 85.09))
  2687. (stroke (width 0) (type default) (color 0 0 0 0))
  2688. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  2689. )
  2690. (wire (pts (xy 158.75 186.69) (xy 163.83 186.69))
  2691. (stroke (width 0) (type default) (color 0 0 0 0))
  2692. (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
  2693. )
  2694. (wire (pts (xy 81.28 77.47) (xy 83.82 77.47))
  2695. (stroke (width 0) (type default) (color 0 0 0 0))
  2696. (uuid 2a1de22d-6451-488d-af77-0bf8841bd695)
  2697. )
  2698. (wire (pts (xy 379.73 168.91) (xy 393.7 168.91))
  2699. (stroke (width 0) (type default) (color 0 0 0 0))
  2700. (uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
  2701. )
  2702. (wire (pts (xy 111.76 74.93) (xy 99.06 74.93))
  2703. (stroke (width 0) (type default) (color 0 0 0 0))
  2704. (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
  2705. )
  2706. (wire (pts (xy 394.97 50.8) (xy 378.46 50.8))
  2707. (stroke (width 0) (type default) (color 0 0 0 0))
  2708. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  2709. )
  2710. (wire (pts (xy 78.74 194.31) (xy 101.6 194.31))
  2711. (stroke (width 0) (type default) (color 0 0 0 0))
  2712. (uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
  2713. )
  2714. (wire (pts (xy 365.76 78.74) (xy 387.35 78.74))
  2715. (stroke (width 0) (type default) (color 0 0 0 0))
  2716. (uuid 2c488362-c230-4f6d-82f9-a229b1171a23)
  2717. )
  2718. (wire (pts (xy 383.54 181.61) (xy 383.54 190.5))
  2719. (stroke (width 0) (type default) (color 0 0 0 0))
  2720. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  2721. )
  2722. (wire (pts (xy 172.72 127) (xy 172.72 135.89))
  2723. (stroke (width 0) (type default) (color 0 0 0 0))
  2724. (uuid 2dc66f7e-d85d-4081-ae71-fd8851d6aeda)
  2725. )
  2726. (wire (pts (xy 81.28 193.04) (xy 78.74 193.04))
  2727. (stroke (width 0) (type default) (color 0 0 0 0))
  2728. (uuid 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5)
  2729. )
  2730. (wire (pts (xy 78.74 195.58) (xy 78.74 194.31))
  2731. (stroke (width 0) (type default) (color 0 0 0 0))
  2732. (uuid 315d2b15-cfe6-4672-b3ad-24773f3df12c)
  2733. )
  2734. (wire (pts (xy 326.39 33.02) (xy 317.5 33.02))
  2735. (stroke (width 0) (type default) (color 0 0 0 0))
  2736. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  2737. )
  2738. (wire (pts (xy 351.79 184.15) (xy 336.55 184.15))
  2739. (stroke (width 0) (type default) (color 0 0 0 0))
  2740. (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8)
  2741. )
  2742. (wire (pts (xy 29.21 39.37) (xy 35.56 39.37))
  2743. (stroke (width 0) (type default) (color 0 0 0 0))
  2744. (uuid 3283e0d7-cabf-4ad2-bdff-f363128a72ab)
  2745. )
  2746. (polyline (pts (xy 307.34 218.44) (xy 307.34 266.7))
  2747. (stroke (width 0) (type default) (color 0 0 0 0))
  2748. (uuid 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a)
  2749. )
  2750. (wire (pts (xy 347.98 201.93) (xy 351.79 201.93))
  2751. (stroke (width 0) (type default) (color 0 0 0 0))
  2752. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  2753. )
  2754. (wire (pts (xy 172.72 234.95) (xy 185.42 234.95))
  2755. (stroke (width 0) (type default) (color 0 0 0 0))
  2756. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  2757. )
  2758. (wire (pts (xy 321.31 172.72) (xy 323.85 172.72))
  2759. (stroke (width 0) (type default) (color 0 0 0 0))
  2760. (uuid 34ddb753-e57c-4ca8-a67b-d7cdf62cae93)
  2761. )
  2762. (wire (pts (xy 83.82 151.13) (xy 71.12 151.13))
  2763. (stroke (width 0) (type default) (color 0 0 0 0))
  2764. (uuid 35343f32-90ff-4059-a108-111fb444c3d2)
  2765. )
  2766. (wire (pts (xy 163.83 186.69) (xy 167.64 186.69))
  2767. (stroke (width 0) (type default) (color 0 0 0 0))
  2768. (uuid 355ced6c-c08a-4586-9a09-7a9c624536f6)
  2769. )
  2770. (wire (pts (xy 121.92 57.15) (xy 119.38 57.15))
  2771. (stroke (width 0) (type default) (color 0 0 0 0))
  2772. (uuid 35c09d1f-2914-4d1e-a002-df30af772f3b)
  2773. )
  2774. (wire (pts (xy 189.23 74.93) (xy 189.23 85.09))
  2775. (stroke (width 0) (type default) (color 0 0 0 0))
  2776. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  2777. )
  2778. (wire (pts (xy 336.55 27.94) (xy 326.39 27.94))
  2779. (stroke (width 0) (type default) (color 0 0 0 0))
  2780. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  2781. )
  2782. (wire (pts (xy 347.98 207.01) (xy 347.98 204.47))
  2783. (stroke (width 0) (type default) (color 0 0 0 0))
  2784. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  2785. )
  2786. (wire (pts (xy 336.55 35.56) (xy 336.55 27.94))
  2787. (stroke (width 0) (type default) (color 0 0 0 0))
  2788. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  2789. )
  2790. (wire (pts (xy 172.72 250.19) (xy 185.42 250.19))
  2791. (stroke (width 0) (type default) (color 0 0 0 0))
  2792. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  2793. )
  2794. (wire (pts (xy 347.98 209.55) (xy 347.98 207.01))
  2795. (stroke (width 0) (type default) (color 0 0 0 0))
  2796. (uuid 386ad9e3-71fa-420f-8722-88548b024fc5)
  2797. )
  2798. (wire (pts (xy 185.42 250.19) (xy 200.66 250.19))
  2799. (stroke (width 0) (type default) (color 0 0 0 0))
  2800. (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
  2801. )
  2802. (wire (pts (xy 171.45 204.47) (xy 147.32 204.47))
  2803. (stroke (width 0) (type default) (color 0 0 0 0))
  2804. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  2805. )
  2806. (wire (pts (xy 340.36 53.34) (xy 325.12 53.34))
  2807. (stroke (width 0) (type default) (color 0 0 0 0))
  2808. (uuid 3b9c5ffd-e59b-402d-8c5e-052f7ca643a4)
  2809. )
  2810. (wire (pts (xy 184.15 186.69) (xy 184.15 187.96))
  2811. (stroke (width 0) (type default) (color 0 0 0 0))
  2812. (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)
  2813. )
  2814. (wire (pts (xy 30.48 240.03) (xy 30.48 250.19))
  2815. (stroke (width 0) (type default) (color 0 0 0 0))
  2816. (uuid 3c121a93-b189-409b-a104-2bdd37ff0b51)
  2817. )
  2818. (wire (pts (xy 378.46 40.64) (xy 401.32 40.64))
  2819. (stroke (width 0) (type default) (color 0 0 0 0))
  2820. (uuid 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0)
  2821. )
  2822. (wire (pts (xy 158.75 181.61) (xy 167.64 181.61))
  2823. (stroke (width 0) (type default) (color 0 0 0 0))
  2824. (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333)
  2825. )
  2826. (wire (pts (xy 351.79 176.53) (xy 336.55 176.53))
  2827. (stroke (width 0) (type default) (color 0 0 0 0))
  2828. (uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
  2829. )
  2830. (wire (pts (xy 30.48 256.54) (xy 30.48 250.19))
  2831. (stroke (width 0) (type default) (color 0 0 0 0))
  2832. (uuid 3f1ab70d-3263-42b5-9c61-0360188ff2b7)
  2833. )
  2834. (wire (pts (xy 233.68 190.5) (xy 233.68 193.04))
  2835. (stroke (width 0) (type default) (color 0 0 0 0))
  2836. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  2837. )
  2838. (wire (pts (xy 172.72 168.91) (xy 172.72 167.64))
  2839. (stroke (width 0) (type default) (color 0 0 0 0))
  2840. (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7)
  2841. )
  2842. (wire (pts (xy 81.28 195.58) (xy 78.74 195.58))
  2843. (stroke (width 0) (type default) (color 0 0 0 0))
  2844. (uuid 41524d81-a7f7-45af-a8c6-15609b68d1fd)
  2845. )
  2846. (wire (pts (xy 118.11 144.78) (xy 133.35 144.78))
  2847. (stroke (width 0) (type default) (color 0 0 0 0))
  2848. (uuid 41ab46ed-40f5-461d-81aa-1f02dc069a49)
  2849. )
  2850. (wire (pts (xy 201.93 172.72) (xy 201.93 177.8))
  2851. (stroke (width 0) (type default) (color 0 0 0 0))
  2852. (uuid 42ecdba3-f348-4384-8d4b-cd21e56f3613)
  2853. )
  2854. (wire (pts (xy 233.68 177.8) (xy 233.68 175.26))
  2855. (stroke (width 0) (type default) (color 0 0 0 0))
  2856. (uuid 4346fe55-f906-453a-b81a-1c013104a598)
  2857. )
  2858. (wire (pts (xy 342.9 200.66) (xy 342.9 196.85))
  2859. (stroke (width 0) (type default) (color 0 0 0 0))
  2860. (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
  2861. )
  2862. (wire (pts (xy 207.01 127) (xy 207.01 129.54))
  2863. (stroke (width 0) (type default) (color 0 0 0 0))
  2864. (uuid 444b2eaf-241d-42e5-8717-27a83d099c5b)
  2865. )
  2866. (wire (pts (xy 204.47 175.26) (xy 208.28 175.26))
  2867. (stroke (width 0) (type default) (color 0 0 0 0))
  2868. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  2869. )
  2870. (wire (pts (xy 147.32 181.61) (xy 158.75 181.61))
  2871. (stroke (width 0) (type default) (color 0 0 0 0))
  2872. (uuid 465137b4-f6f7-4d51-9b40-b161947d5cc1)
  2873. )
  2874. (wire (pts (xy 201.93 129.54) (xy 207.01 129.54))
  2875. (stroke (width 0) (type default) (color 0 0 0 0))
  2876. (uuid 469f89fd-f629-46b7-b106-a0088168c9ec)
  2877. )
  2878. (wire (pts (xy 378.46 43.18) (xy 401.32 43.18))
  2879. (stroke (width 0) (type default) (color 0 0 0 0))
  2880. (uuid 47957453-fce7-4d98-833c-e34bb8a852a5)
  2881. )
  2882. (wire (pts (xy 121.92 186.69) (xy 133.35 186.69))
  2883. (stroke (width 0) (type default) (color 0 0 0 0))
  2884. (uuid 47993d80-a37e-426e-90c9-fd54b49ed166)
  2885. )
  2886. (wire (pts (xy 36.83 26.67) (xy 36.83 30.48))
  2887. (stroke (width 0) (type default) (color 0 0 0 0))
  2888. (uuid 48ad6ea8-19f0-4121-9a0a-6370eae9c47e)
  2889. )
  2890. (wire (pts (xy 246.38 73.66) (xy 245.11 73.66))
  2891. (stroke (width 0) (type default) (color 0 0 0 0))
  2892. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  2893. )
  2894. (wire (pts (xy 175.26 80.01) (xy 175.26 77.47))
  2895. (stroke (width 0) (type default) (color 0 0 0 0))
  2896. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  2897. )
  2898. (wire (pts (xy 147.32 209.55) (xy 171.45 209.55))
  2899. (stroke (width 0) (type default) (color 0 0 0 0))
  2900. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  2901. )
  2902. (wire (pts (xy 181.61 167.64) (xy 172.72 167.64))
  2903. (stroke (width 0) (type default) (color 0 0 0 0))
  2904. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  2905. )
  2906. (wire (pts (xy 213.36 250.19) (xy 228.6 250.19))
  2907. (stroke (width 0) (type default) (color 0 0 0 0))
  2908. (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)
  2909. )
  2910. (wire (pts (xy 147.32 191.77) (xy 163.83 191.77))
  2911. (stroke (width 0) (type default) (color 0 0 0 0))
  2912. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  2913. )
  2914. (wire (pts (xy 204.47 162.56) (xy 233.68 162.56))
  2915. (stroke (width 0) (type default) (color 0 0 0 0))
  2916. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  2917. )
  2918. (wire (pts (xy 203.2 187.96) (xy 208.28 187.96))
  2919. (stroke (width 0) (type default) (color 0 0 0 0))
  2920. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  2921. )
  2922. (wire (pts (xy 57.15 234.95) (xy 54.61 234.95))
  2923. (stroke (width 0) (type default) (color 0 0 0 0))
  2924. (uuid 4d51bc15-1f84-46be-8e16-e836b10f854e)
  2925. )
  2926. (wire (pts (xy 175.26 74.93) (xy 189.23 74.93))
  2927. (stroke (width 0) (type default) (color 0 0 0 0))
  2928. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  2929. )
  2930. (wire (pts (xy 340.36 58.42) (xy 325.12 58.42))
  2931. (stroke (width 0) (type default) (color 0 0 0 0))
  2932. (uuid 4ef07d45-f940-4cb6-bb96-2ddec13fd099)
  2933. )
  2934. (wire (pts (xy 200.66 234.95) (xy 213.36 234.95))
  2935. (stroke (width 0) (type default) (color 0 0 0 0))
  2936. (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
  2937. )
  2938. (wire (pts (xy 77.47 194.31) (xy 78.74 194.31))
  2939. (stroke (width 0) (type default) (color 0 0 0 0))
  2940. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  2941. )
  2942. (wire (pts (xy 78.74 196.85) (xy 101.6 196.85))
  2943. (stroke (width 0) (type default) (color 0 0 0 0))
  2944. (uuid 51f5536d-48d2-4807-be44-93f427952b0e)
  2945. )
  2946. (wire (pts (xy 36.83 25.4) (xy 36.83 26.67))
  2947. (stroke (width 0) (type default) (color 0 0 0 0))
  2948. (uuid 53dffb3b-ac45-42a4-8f71-c36ca50fc21c)
  2949. )
  2950. (wire (pts (xy 121.92 191.77) (xy 133.35 191.77))
  2951. (stroke (width 0) (type default) (color 0 0 0 0))
  2952. (uuid 54093c93-5e7e-4c8d-8d94-40c077747c12)
  2953. )
  2954. (wire (pts (xy 269.24 234.95) (xy 284.48 234.95))
  2955. (stroke (width 0) (type default) (color 0 0 0 0))
  2956. (uuid 54212c01-b363-47b8-a145-45c40df316f4)
  2957. )
  2958. (wire (pts (xy 172.72 62.23) (xy 175.26 62.23))
  2959. (stroke (width 0) (type default) (color 0 0 0 0))
  2960. (uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
  2961. )
  2962. (wire (pts (xy 214.63 207.01) (xy 219.71 207.01))
  2963. (stroke (width 0) (type default) (color 0 0 0 0))
  2964. (uuid 562b7df8-cdaa-48ed-bd95-bf2fa6dac339)
  2965. )
  2966. (wire (pts (xy 207.01 134.62) (xy 207.01 137.16))
  2967. (stroke (width 0) (type default) (color 0 0 0 0))
  2968. (uuid 5698a460-6e24-4857-84d8-4a43acd2325d)
  2969. )
  2970. (wire (pts (xy 151.13 140.97) (xy 156.21 140.97))
  2971. (stroke (width 0) (type default) (color 0 0 0 0))
  2972. (uuid 58a87288-e2bf-4c88-9871-a753efc69e9d)
  2973. )
  2974. (wire (pts (xy 175.26 90.17) (xy 175.26 92.71))
  2975. (stroke (width 0) (type default) (color 0 0 0 0))
  2976. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  2977. )
  2978. (wire (pts (xy 342.9 167.64) (xy 332.74 167.64))
  2979. (stroke (width 0) (type default) (color 0 0 0 0))
  2980. (uuid 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
  2981. )
  2982. (wire (pts (xy 78.74 198.12) (xy 78.74 196.85))
  2983. (stroke (width 0) (type default) (color 0 0 0 0))
  2984. (uuid 5a319d05-1a85-43fe-a179-ebcee7212a03)
  2985. )
  2986. (wire (pts (xy 394.97 58.42) (xy 378.46 58.42))
  2987. (stroke (width 0) (type default) (color 0 0 0 0))
  2988. (uuid 5a33f5a4-a470-4c04-9e2d-532b5f01a5d6)
  2989. )
  2990. (wire (pts (xy 196.85 137.16) (xy 181.61 137.16))
  2991. (stroke (width 0) (type default) (color 0 0 0 0))
  2992. (uuid 5a397f61-35c4-4c18-9dcd-73a2d44cc9af)
  2993. )
  2994. (wire (pts (xy 133.35 128.27) (xy 133.35 130.81))
  2995. (stroke (width 0) (type default) (color 0 0 0 0))
  2996. (uuid 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
  2997. )
  2998. (wire (pts (xy 347.98 212.09) (xy 347.98 209.55))
  2999. (stroke (width 0) (type default) (color 0 0 0 0))
  3000. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  3001. )
  3002. (wire (pts (xy 231.14 177.8) (xy 233.68 177.8))
  3003. (stroke (width 0) (type default) (color 0 0 0 0))
  3004. (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861)
  3005. )
  3006. (wire (pts (xy 334.01 71.12) (xy 334.01 68.58))
  3007. (stroke (width 0) (type default) (color 0 0 0 0))
  3008. (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236)
  3009. )
  3010. (wire (pts (xy 132.08 87.63) (xy 148.59 87.63))
  3011. (stroke (width 0) (type default) (color 0 0 0 0))
  3012. (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
  3013. )
  3014. (wire (pts (xy 208.28 193.04) (xy 208.28 209.55))
  3015. (stroke (width 0) (type default) (color 0 0 0 0))
  3016. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  3017. )
  3018. (wire (pts (xy 116.84 234.95) (xy 129.54 234.95))
  3019. (stroke (width 0) (type default) (color 0 0 0 0))
  3020. (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
  3021. )
  3022. (wire (pts (xy 378.46 63.5) (xy 394.97 63.5))
  3023. (stroke (width 0) (type default) (color 0 0 0 0))
  3024. (uuid 6133fb54-5524-482e-9ae2-adbf29aced9e)
  3025. )
  3026. (polyline (pts (xy 302.26 99.06) (xy 302.26 12.7))
  3027. (stroke (width 0) (type default) (color 0 0 0 0))
  3028. (uuid 61a18b62-4111-4a9d-8fca-04c4c6f90cc3)
  3029. )
  3030. (wire (pts (xy 185.42 69.85) (xy 195.58 69.85))
  3031. (stroke (width 0) (type default) (color 0 0 0 0))
  3032. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3033. )
  3034. (wire (pts (xy 340.36 63.5) (xy 323.85 63.5))
  3035. (stroke (width 0) (type default) (color 0 0 0 0))
  3036. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  3037. )
  3038. (wire (pts (xy 379.73 173.99) (xy 377.19 173.99))
  3039. (stroke (width 0) (type default) (color 0 0 0 0))
  3040. (uuid 665081dc-8354-4d41-8855-bde8901aee4c)
  3041. )
  3042. (wire (pts (xy 231.14 185.42) (xy 256.54 185.42))
  3043. (stroke (width 0) (type default) (color 0 0 0 0))
  3044. (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec)
  3045. )
  3046. (wire (pts (xy 29.21 36.83) (xy 36.83 36.83))
  3047. (stroke (width 0) (type default) (color 0 0 0 0))
  3048. (uuid 677c56b5-fc0e-48fb-a9bb-76dcc53cea33)
  3049. )
  3050. (wire (pts (xy 45.72 137.16) (xy 45.72 134.62))
  3051. (stroke (width 0) (type default) (color 0 0 0 0))
  3052. (uuid 680c3e83-f590-4924-85a1-36d51b076683)
  3053. )
  3054. (wire (pts (xy 53.34 78.74) (xy 67.31 78.74))
  3055. (stroke (width 0) (type default) (color 0 0 0 0))
  3056. (uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
  3057. )
  3058. (wire (pts (xy 132.08 128.27) (xy 133.35 128.27))
  3059. (stroke (width 0) (type default) (color 0 0 0 0))
  3060. (uuid 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f)
  3061. )
  3062. (wire (pts (xy 130.81 135.89) (xy 130.81 142.24))
  3063. (stroke (width 0) (type default) (color 0 0 0 0))
  3064. (uuid 6a25c4e1-7129-430c-892b-6eecb6ffdb47)
  3065. )
  3066. (wire (pts (xy 336.55 205.74) (xy 336.55 212.09))
  3067. (stroke (width 0) (type default) (color 0 0 0 0))
  3068. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  3069. )
  3070. (wire (pts (xy 77.47 73.66) (xy 77.47 77.47))
  3071. (stroke (width 0) (type default) (color 0 0 0 0))
  3072. (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e)
  3073. )
  3074. (wire (pts (xy 195.58 77.47) (xy 195.58 69.85))
  3075. (stroke (width 0) (type default) (color 0 0 0 0))
  3076. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3077. )
  3078. (wire (pts (xy 38.1 99.06) (xy 30.48 99.06))
  3079. (stroke (width 0) (type default) (color 0 0 0 0))
  3080. (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
  3081. )
  3082. (wire (pts (xy 340.36 50.8) (xy 325.12 50.8))
  3083. (stroke (width 0) (type default) (color 0 0 0 0))
  3084. (uuid 6b8c153e-62fe-42fb-aa7f-caef740ef6fd)
  3085. )
  3086. (wire (pts (xy 351.79 204.47) (xy 347.98 204.47))
  3087. (stroke (width 0) (type default) (color 0 0 0 0))
  3088. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  3089. )
  3090. (wire (pts (xy 321.31 165.1) (xy 321.31 167.64))
  3091. (stroke (width 0) (type default) (color 0 0 0 0))
  3092. (uuid 6f44a349-1ba9-4965-b217-aa1589a07228)
  3093. )
  3094. (wire (pts (xy 166.37 129.54) (xy 166.37 127))
  3095. (stroke (width 0) (type default) (color 0 0 0 0))
  3096. (uuid 6fd21292-6577-40e1-bbda-18906b5e9f6f)
  3097. )
  3098. (polyline (pts (xy 110.49 176.53) (xy 12.7 176.53))
  3099. (stroke (width 0) (type default) (color 0 0 0 0))
  3100. (uuid 7043f61a-4f1e-4cab-9031-a6449e41a893)
  3101. )
  3102. (wire (pts (xy 196.85 132.08) (xy 181.61 132.08))
  3103. (stroke (width 0) (type default) (color 0 0 0 0))
  3104. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3105. )
  3106. (wire (pts (xy 185.42 234.95) (xy 200.66 234.95))
  3107. (stroke (width 0) (type default) (color 0 0 0 0))
  3108. (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
  3109. )
  3110. (polyline (pts (xy 313.69 148.59) (xy 419.1 148.59))
  3111. (stroke (width 0) (type default) (color 0 0 0 0))
  3112. (uuid 717b25a7-c9c2-4f6f-b744-a96113325c99)
  3113. )
  3114. (wire (pts (xy 77.47 191.77) (xy 78.74 191.77))
  3115. (stroke (width 0) (type default) (color 0 0 0 0))
  3116. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  3117. )
  3118. (wire (pts (xy 340.36 40.64) (xy 325.12 40.64))
  3119. (stroke (width 0) (type default) (color 0 0 0 0))
  3120. (uuid 720ec55a-7c69-4064-b792-ef3dbba4eab9)
  3121. )
  3122. (wire (pts (xy 172.72 60.96) (xy 172.72 62.23))
  3123. (stroke (width 0) (type default) (color 0 0 0 0))
  3124. (uuid 7247fe96-7885-4063-8282-ea2fd2b28b0d)
  3125. )
  3126. (wire (pts (xy 207.01 127) (xy 201.93 127))
  3127. (stroke (width 0) (type default) (color 0 0 0 0))
  3128. (uuid 7255cbd1-8d38-4545-be9a-7fc5488ef942)
  3129. )
  3130. (wire (pts (xy 233.68 193.04) (xy 233.68 196.85))
  3131. (stroke (width 0) (type default) (color 0 0 0 0))
  3132. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3133. )
  3134. (wire (pts (xy 326.39 27.94) (xy 317.5 27.94))
  3135. (stroke (width 0) (type default) (color 0 0 0 0))
  3136. (uuid 7274c82d-0cb9-47de-b093-7d848f491410)
  3137. )
  3138. (wire (pts (xy 219.71 133.35) (xy 241.3 133.35))
  3139. (stroke (width 0) (type default) (color 0 0 0 0))
  3140. (uuid 72f9157b-77da-4a6d-9880-0711b21f6e23)
  3141. )
  3142. (wire (pts (xy 355.6 73.66) (xy 355.6 96.52))
  3143. (stroke (width 0) (type default) (color 0 0 0 0))
  3144. (uuid 74096bdc-b668-408c-af3a-b048c20bd605)
  3145. )
  3146. (wire (pts (xy 340.36 55.88) (xy 325.12 55.88))
  3147. (stroke (width 0) (type default) (color 0 0 0 0))
  3148. (uuid 765684c2-53b3-4ef7-bd1b-7a4a73d87b76)
  3149. )
  3150. (wire (pts (xy 340.36 35.56) (xy 336.55 35.56))
  3151. (stroke (width 0) (type default) (color 0 0 0 0))
  3152. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  3153. )
  3154. (wire (pts (xy 377.19 179.07) (xy 383.54 179.07))
  3155. (stroke (width 0) (type default) (color 0 0 0 0))
  3156. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  3157. )
  3158. (wire (pts (xy 336.55 212.09) (xy 347.98 212.09))
  3159. (stroke (width 0) (type default) (color 0 0 0 0))
  3160. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  3161. )
  3162. (wire (pts (xy 121.92 203.2) (xy 133.35 203.2))
  3163. (stroke (width 0) (type default) (color 0 0 0 0))
  3164. (uuid 77ef8901-6325-4427-901a-4acd9074dd7b)
  3165. )
  3166. (wire (pts (xy 351.79 167.64) (xy 342.9 167.64))
  3167. (stroke (width 0) (type default) (color 0 0 0 0))
  3168. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  3169. )
  3170. (wire (pts (xy 121.92 200.66) (xy 133.35 200.66))
  3171. (stroke (width 0) (type default) (color 0 0 0 0))
  3172. (uuid 7943ed8c-e760-4ace-9c5f-baf5589fae39)
  3173. )
  3174. (wire (pts (xy 284.48 240.03) (xy 284.48 250.19))
  3175. (stroke (width 0) (type default) (color 0 0 0 0))
  3176. (uuid 79770cd5-32d7-429a-8248-0d9e6212231a)
  3177. )
  3178. (wire (pts (xy 29.21 36.83) (xy 29.21 39.37))
  3179. (stroke (width 0) (type default) (color 0 0 0 0))
  3180. (uuid 7ab8d0fc-8abe-47f7-ba88-5e4166d9e70e)
  3181. )
  3182. (wire (pts (xy 276.86 242.57) (xy 289.56 242.57))
  3183. (stroke (width 0) (type default) (color 0 0 0 0))
  3184. (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041)
  3185. )
  3186. (wire (pts (xy 101.6 234.95) (xy 116.84 234.95))
  3187. (stroke (width 0) (type default) (color 0 0 0 0))
  3188. (uuid 7c04618d-9115-4179-b234-a8faf854ea92)
  3189. )
  3190. (wire (pts (xy 347.98 204.47) (xy 347.98 201.93))
  3191. (stroke (width 0) (type default) (color 0 0 0 0))
  3192. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  3193. )
  3194. (wire (pts (xy 379.73 167.64) (xy 379.73 168.91))
  3195. (stroke (width 0) (type default) (color 0 0 0 0))
  3196. (uuid 7df9ce6f-7f38-4582-a049-7f92faf1abc9)
  3197. )
  3198. (wire (pts (xy 99.06 19.05) (xy 102.87 19.05))
  3199. (stroke (width 0) (type default) (color 0 0 0 0))
  3200. (uuid 7e809a74-bbd3-4d41-bb93-4477e7025903)
  3201. )
  3202. (wire (pts (xy 340.36 33.02) (xy 326.39 33.02))
  3203. (stroke (width 0) (type default) (color 0 0 0 0))
  3204. (uuid 7f064424-06a6-4f5b-87d6-1970ae527766)
  3205. )
  3206. (polyline (pts (xy 12.7 115.57) (xy 278.13 115.57))
  3207. (stroke (width 0) (type default) (color 0 0 0 0))
  3208. (uuid 80b9a57f-3326-43ca-b6ca-5e911992b3c4)
  3209. )
  3210. (wire (pts (xy 129.54 250.19) (xy 144.78 250.19))
  3211. (stroke (width 0) (type default) (color 0 0 0 0))
  3212. (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
  3213. )
  3214. (wire (pts (xy 172.72 95.25) (xy 172.72 92.71))
  3215. (stroke (width 0) (type default) (color 0 0 0 0))
  3216. (uuid 81ab7ed7-7160-4650-b711-4daa2902dc8b)
  3217. )
  3218. (wire (pts (xy 201.93 134.62) (xy 207.01 134.62))
  3219. (stroke (width 0) (type default) (color 0 0 0 0))
  3220. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  3221. )
  3222. (wire (pts (xy 41.91 194.31) (xy 36.83 194.31))
  3223. (stroke (width 0) (type default) (color 0 0 0 0))
  3224. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  3225. )
  3226. (wire (pts (xy 207.01 129.54) (xy 207.01 132.08))
  3227. (stroke (width 0) (type default) (color 0 0 0 0))
  3228. (uuid 848c6095-3966-404d-9f2a-51150fd8dc54)
  3229. )
  3230. (wire (pts (xy 30.48 99.06) (xy 30.48 104.14))
  3231. (stroke (width 0) (type default) (color 0 0 0 0))
  3232. (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
  3233. )
  3234. (wire (pts (xy 381 214.63) (xy 381 217.17))
  3235. (stroke (width 0) (type default) (color 0 0 0 0))
  3236. (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5)
  3237. )
  3238. (wire (pts (xy 77.47 196.85) (xy 78.74 196.85))
  3239. (stroke (width 0) (type default) (color 0 0 0 0))
  3240. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  3241. )
  3242. (wire (pts (xy 175.26 77.47) (xy 195.58 77.47))
  3243. (stroke (width 0) (type default) (color 0 0 0 0))
  3244. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  3245. )
  3246. (wire (pts (xy 88.9 229.87) (xy 88.9 234.95))
  3247. (stroke (width 0) (type default) (color 0 0 0 0))
  3248. (uuid 88610282-a92d-4c3d-917a-ea95d59e0759)
  3249. )
  3250. (polyline (pts (xy 12.7 49.53) (xy 276.86 49.53))
  3251. (stroke (width 0) (type default) (color 0 0 0 0))
  3252. (uuid 897277a3-b7ce-4d18-8c5f-1c984a246298)
  3253. )
  3254. (wire (pts (xy 351.79 172.72) (xy 351.79 171.45))
  3255. (stroke (width 0) (type default) (color 0 0 0 0))
  3256. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  3257. )
  3258. (wire (pts (xy 368.3 73.66) (xy 379.73 73.66))
  3259. (stroke (width 0) (type default) (color 0 0 0 0))
  3260. (uuid 89df70f4-3579-42b9-861e-6beb04a3b25e)
  3261. )
  3262. (wire (pts (xy 347.98 207.01) (xy 351.79 207.01))
  3263. (stroke (width 0) (type default) (color 0 0 0 0))
  3264. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  3265. )
  3266. (wire (pts (xy 45.72 165.1) (xy 45.72 162.56))
  3267. (stroke (width 0) (type default) (color 0 0 0 0))
  3268. (uuid 8ade7975-64a0-440a-8545-11958836bf48)
  3269. )
  3270. (wire (pts (xy 350.52 73.66) (xy 350.52 90.17))
  3271. (stroke (width 0) (type default) (color 0 0 0 0))
  3272. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  3273. )
  3274. (wire (pts (xy 201.93 177.8) (xy 208.28 177.8))
  3275. (stroke (width 0) (type default) (color 0 0 0 0))
  3276. (uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
  3277. )
  3278. (wire (pts (xy 351.79 168.91) (xy 351.79 167.64))
  3279. (stroke (width 0) (type default) (color 0 0 0 0))
  3280. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  3281. )
  3282. (wire (pts (xy 351.79 196.85) (xy 342.9 196.85))
  3283. (stroke (width 0) (type default) (color 0 0 0 0))
  3284. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  3285. )
  3286. (wire (pts (xy 121.92 96.52) (xy 121.92 92.71))
  3287. (stroke (width 0) (type default) (color 0 0 0 0))
  3288. (uuid 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129)
  3289. )
  3290. (wire (pts (xy 256.54 250.19) (xy 269.24 250.19))
  3291. (stroke (width 0) (type default) (color 0 0 0 0))
  3292. (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
  3293. )
  3294. (wire (pts (xy 22.86 26.67) (xy 22.86 30.48))
  3295. (stroke (width 0) (type default) (color 0 0 0 0))
  3296. (uuid 90ac412a-d9d6-41b9-92c8-22bd6b5f3a14)
  3297. )
  3298. (wire (pts (xy 379.73 170.18) (xy 379.73 171.45))
  3299. (stroke (width 0) (type default) (color 0 0 0 0))
  3300. (uuid 90d503cf-92b2-4120-a4b0-03a2eddde893)
  3301. )
  3302. (wire (pts (xy 38.1 100.33) (xy 45.72 100.33))
  3303. (stroke (width 0) (type default) (color 0 0 0 0))
  3304. (uuid 90fa0465-7fe5-474b-8e7c-9f955c02a0f6)
  3305. )
  3306. (wire (pts (xy 88.9 234.95) (xy 101.6 234.95))
  3307. (stroke (width 0) (type default) (color 0 0 0 0))
  3308. (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
  3309. )
  3310. (wire (pts (xy 205.74 190.5) (xy 205.74 204.47))
  3311. (stroke (width 0) (type default) (color 0 0 0 0))
  3312. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  3313. )
  3314. (wire (pts (xy 160.02 62.23) (xy 172.72 62.23))
  3315. (stroke (width 0) (type default) (color 0 0 0 0))
  3316. (uuid 92a23ed4-a5ea-4cea-bc33-0a83191a0d32)
  3317. )
  3318. (wire (pts (xy 377.19 171.45) (xy 379.73 171.45))
  3319. (stroke (width 0) (type default) (color 0 0 0 0))
  3320. (uuid 946404ba-9297-43ec-9d67-30184041145f)
  3321. )
  3322. (wire (pts (xy 15.24 242.57) (xy 35.56 242.57))
  3323. (stroke (width 0) (type default) (color 0 0 0 0))
  3324. (uuid 94c3d0e3-d7fb-421d-bbb4-5c800d76c809)
  3325. )
  3326. (wire (pts (xy 163.83 191.77) (xy 163.83 196.85))
  3327. (stroke (width 0) (type default) (color 0 0 0 0))
  3328. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  3329. )
  3330. (wire (pts (xy 119.38 57.15) (xy 119.38 62.23))
  3331. (stroke (width 0) (type default) (color 0 0 0 0))
  3332. (uuid 974c48bf-534e-4335-98e1-b0426c783e99)
  3333. )
  3334. (polyline (pts (xy 276.86 11.43) (xy 278.13 152.4))
  3335. (stroke (width 0) (type default) (color 0 0 0 0))
  3336. (uuid 97693043-81ba-44a2-b87b-aca6193e0970)
  3337. )
  3338. (wire (pts (xy 121.92 189.23) (xy 133.35 189.23))
  3339. (stroke (width 0) (type default) (color 0 0 0 0))
  3340. (uuid 981ff4de-0330-4757-b746-0cb983df5e7c)
  3341. )
  3342. (wire (pts (xy 233.68 162.56) (xy 233.68 175.26))
  3343. (stroke (width 0) (type default) (color 0 0 0 0))
  3344. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3345. )
  3346. (wire (pts (xy 132.08 67.31) (xy 148.59 67.31))
  3347. (stroke (width 0) (type default) (color 0 0 0 0))
  3348. (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
  3349. )
  3350. (wire (pts (xy 99.06 77.47) (xy 111.76 77.47))
  3351. (stroke (width 0) (type default) (color 0 0 0 0))
  3352. (uuid 99186658-0361-40ba-ae93-62f23c5622e6)
  3353. )
  3354. (wire (pts (xy 284.48 250.19) (xy 297.18 250.19))
  3355. (stroke (width 0) (type default) (color 0 0 0 0))
  3356. (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c)
  3357. )
  3358. (wire (pts (xy 29.21 36.83) (xy 22.86 36.83))
  3359. (stroke (width 0) (type default) (color 0 0 0 0))
  3360. (uuid 997f686f-a26d-4f9f-ba00-4b422b109969)
  3361. )
  3362. (wire (pts (xy 27.94 199.39) (xy 41.91 199.39))
  3363. (stroke (width 0) (type default) (color 0 0 0 0))
  3364. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  3365. )
  3366. (wire (pts (xy 248.92 242.57) (xy 261.62 242.57))
  3367. (stroke (width 0) (type default) (color 0 0 0 0))
  3368. (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
  3369. )
  3370. (wire (pts (xy 30.48 250.19) (xy 43.18 250.19))
  3371. (stroke (width 0) (type default) (color 0 0 0 0))
  3372. (uuid 9b07d532-5f76-4469-8dbf-25ac27eef589)
  3373. )
  3374. (wire (pts (xy 377.19 168.91) (xy 379.73 168.91))
  3375. (stroke (width 0) (type default) (color 0 0 0 0))
  3376. (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
  3377. )
  3378. (wire (pts (xy 334.01 68.58) (xy 340.36 68.58))
  3379. (stroke (width 0) (type default) (color 0 0 0 0))
  3380. (uuid 9cacb6ad-6bbf-4ffe-b0a4-2df24045e046)
  3381. )
  3382. (wire (pts (xy 189.23 162.56) (xy 189.23 167.64))
  3383. (stroke (width 0) (type default) (color 0 0 0 0))
  3384. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  3385. )
  3386. (wire (pts (xy 175.26 92.71) (xy 172.72 92.71))
  3387. (stroke (width 0) (type default) (color 0 0 0 0))
  3388. (uuid 9de304ba-fba7-4896-b969-9d87a3522d74)
  3389. )
  3390. (wire (pts (xy 351.79 186.69) (xy 336.55 186.69))
  3391. (stroke (width 0) (type default) (color 0 0 0 0))
  3392. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  3393. )
  3394. (wire (pts (xy 312.42 33.02) (xy 317.5 33.02))
  3395. (stroke (width 0) (type default) (color 0 0 0 0))
  3396. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  3397. )
  3398. (wire (pts (xy 246.38 88.9) (xy 229.87 88.9))
  3399. (stroke (width 0) (type default) (color 0 0 0 0))
  3400. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  3401. )
  3402. (wire (pts (xy 53.34 78.74) (xy 53.34 81.28))
  3403. (stroke (width 0) (type default) (color 0 0 0 0))
  3404. (uuid 9f782c92-a5e8-49db-bfda-752b35522ce4)
  3405. )
  3406. (wire (pts (xy 130.81 128.27) (xy 132.08 128.27))
  3407. (stroke (width 0) (type default) (color 0 0 0 0))
  3408. (uuid a08c061a-7f5b-4909-b673-0d0a59a012a3)
  3409. )
  3410. (wire (pts (xy 351.79 194.31) (xy 336.55 194.31))
  3411. (stroke (width 0) (type default) (color 0 0 0 0))
  3412. (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714)
  3413. )
  3414. (polyline (pts (xy 110.49 152.4) (xy 278.13 152.4))
  3415. (stroke (width 0) (type default) (color 0 0 0 0))
  3416. (uuid a1701438-3c8b-4b49-8695-36ec7f9ae4d2)
  3417. )
  3418. (wire (pts (xy 189.23 177.8) (xy 189.23 181.61))
  3419. (stroke (width 0) (type default) (color 0 0 0 0))
  3420. (uuid a22bec73-a69c-4ab7-8d8d-f6a6b09f925f)
  3421. )
  3422. (wire (pts (xy 229.87 86.36) (xy 246.38 86.36))
  3423. (stroke (width 0) (type default) (color 0 0 0 0))
  3424. (uuid a48f5fff-52e4-4ae8-8faa-7084c7ae8a28)
  3425. )
  3426. (wire (pts (xy 196.85 124.46) (xy 181.61 124.46))
  3427. (stroke (width 0) (type default) (color 0 0 0 0))
  3428. (uuid a49e8613-3cd2-48ed-8977-6bb5023f7722)
  3429. )
  3430. (wire (pts (xy 105.41 57.15) (xy 119.38 57.15))
  3431. (stroke (width 0) (type default) (color 0 0 0 0))
  3432. (uuid a6706c54-6a82-42d1-a6c9-48341690e19d)
  3433. )
  3434. (polyline (pts (xy 302.26 99.06) (xy 419.1 99.06))
  3435. (stroke (width 0) (type default) (color 0 0 0 0))
  3436. (uuid a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05)
  3437. )
  3438. (wire (pts (xy 383.54 179.07) (xy 383.54 181.61))
  3439. (stroke (width 0) (type default) (color 0 0 0 0))
  3440. (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39)
  3441. )
  3442. (wire (pts (xy 77.47 77.47) (xy 81.28 77.47))
  3443. (stroke (width 0) (type default) (color 0 0 0 0))
  3444. (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
  3445. )
  3446. (wire (pts (xy 50.8 242.57) (xy 54.61 242.57))
  3447. (stroke (width 0) (type default) (color 0 0 0 0))
  3448. (uuid aa0466c6-766f-4bb4-abf1-502a6a06f91d)
  3449. )
  3450. (wire (pts (xy 195.58 209.55) (xy 176.53 209.55))
  3451. (stroke (width 0) (type default) (color 0 0 0 0))
  3452. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  3453. )
  3454. (wire (pts (xy 208.28 190.5) (xy 205.74 190.5))
  3455. (stroke (width 0) (type default) (color 0 0 0 0))
  3456. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3457. )
  3458. (wire (pts (xy 321.31 172.72) (xy 321.31 175.26))
  3459. (stroke (width 0) (type default) (color 0 0 0 0))
  3460. (uuid acb0068c-c0e7-44cf-a209-296716acb6a2)
  3461. )
  3462. (wire (pts (xy 378.46 55.88) (xy 394.97 55.88))
  3463. (stroke (width 0) (type default) (color 0 0 0 0))
  3464. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  3465. )
  3466. (wire (pts (xy 121.92 198.12) (xy 133.35 198.12))
  3467. (stroke (width 0) (type default) (color 0 0 0 0))
  3468. (uuid acf5d924-0760-425a-996c-c1d965700be8)
  3469. )
  3470. (wire (pts (xy 181.61 162.56) (xy 189.23 162.56))
  3471. (stroke (width 0) (type default) (color 0 0 0 0))
  3472. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  3473. )
  3474. (wire (pts (xy 36.83 36.83) (xy 36.83 35.56))
  3475. (stroke (width 0) (type default) (color 0 0 0 0))
  3476. (uuid b0105b0b-e256-47d0-9cdf-c87e09e836fe)
  3477. )
  3478. (wire (pts (xy 22.86 36.83) (xy 22.86 35.56))
  3479. (stroke (width 0) (type default) (color 0 0 0 0))
  3480. (uuid b0a0c882-5d80-489c-8b26-bd76db9330bb)
  3481. )
  3482. (wire (pts (xy 189.23 181.61) (xy 201.93 181.61))
  3483. (stroke (width 0) (type default) (color 0 0 0 0))
  3484. (uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544)
  3485. )
  3486. (wire (pts (xy 185.42 85.09) (xy 189.23 85.09))
  3487. (stroke (width 0) (type default) (color 0 0 0 0))
  3488. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  3489. )
  3490. (wire (pts (xy 57.15 60.96) (xy 67.31 60.96))
  3491. (stroke (width 0) (type default) (color 0 0 0 0))
  3492. (uuid b4675fcd-90dd-499b-8feb-46b51a88378c)
  3493. )
  3494. (wire (pts (xy 213.36 234.95) (xy 228.6 234.95))
  3495. (stroke (width 0) (type default) (color 0 0 0 0))
  3496. (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
  3497. )
  3498. (wire (pts (xy 327.66 38.1) (xy 340.36 38.1))
  3499. (stroke (width 0) (type default) (color 0 0 0 0))
  3500. (uuid b5ffe018-0d06-4a1b-95ee-b5763a35798d)
  3501. )
  3502. (wire (pts (xy 71.12 143.51) (xy 83.82 143.51))
  3503. (stroke (width 0) (type default) (color 0 0 0 0))
  3504. (uuid b632afec-1444-4246-8afb-cc14a57567e7)
  3505. )
  3506. (wire (pts (xy 118.11 142.24) (xy 130.81 142.24))
  3507. (stroke (width 0) (type default) (color 0 0 0 0))
  3508. (uuid b6924901-677d-424a-a3f4-52c8dd1fa5f5)
  3509. )
  3510. (wire (pts (xy 191.77 187.96) (xy 191.77 182.88))
  3511. (stroke (width 0) (type default) (color 0 0 0 0))
  3512. (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)
  3513. )
  3514. (wire (pts (xy 378.46 45.72) (xy 394.97 45.72))
  3515. (stroke (width 0) (type default) (color 0 0 0 0))
  3516. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  3517. )
  3518. (wire (pts (xy 53.34 73.66) (xy 67.31 73.66))
  3519. (stroke (width 0) (type default) (color 0 0 0 0))
  3520. (uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
  3521. )
  3522. (wire (pts (xy 172.72 92.71) (xy 160.02 92.71))
  3523. (stroke (width 0) (type default) (color 0 0 0 0))
  3524. (uuid b7dfd91c-6180-48d0-832a-f6a5a032a686)
  3525. )
  3526. (wire (pts (xy 144.78 250.19) (xy 157.48 250.19))
  3527. (stroke (width 0) (type default) (color 0 0 0 0))
  3528. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  3529. )
  3530. (wire (pts (xy 231.14 187.96) (xy 256.54 187.96))
  3531. (stroke (width 0) (type default) (color 0 0 0 0))
  3532. (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
  3533. )
  3534. (wire (pts (xy 172.72 240.03) (xy 172.72 250.19))
  3535. (stroke (width 0) (type default) (color 0 0 0 0))
  3536. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  3537. )
  3538. (wire (pts (xy 223.52 71.12) (xy 224.79 71.12))
  3539. (stroke (width 0) (type default) (color 0 0 0 0))
  3540. (uuid bb5d2eae-a96e-45dd-89aa-125fe22cc2fa)
  3541. )
  3542. (wire (pts (xy 228.6 250.19) (xy 241.3 250.19))
  3543. (stroke (width 0) (type default) (color 0 0 0 0))
  3544. (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)
  3545. )
  3546. (wire (pts (xy 36.83 26.67) (xy 40.64 26.67))
  3547. (stroke (width 0) (type default) (color 0 0 0 0))
  3548. (uuid bd19b000-28ed-4d2e-91da-ddfe9db96da3)
  3549. )
  3550. (wire (pts (xy 45.72 134.62) (xy 45.72 129.54))
  3551. (stroke (width 0) (type default) (color 0 0 0 0))
  3552. (uuid be030c62-e776-405f-97d8-4a4c1aa2e428)
  3553. )
  3554. (wire (pts (xy 378.46 33.02) (xy 402.59 33.02))
  3555. (stroke (width 0) (type default) (color 0 0 0 0))
  3556. (uuid be5a7017-fe9d-43ea-9a6a-8fe8deb78420)
  3557. )
  3558. (wire (pts (xy 184.15 187.96) (xy 191.77 187.96))
  3559. (stroke (width 0) (type default) (color 0 0 0 0))
  3560. (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)
  3561. )
  3562. (wire (pts (xy 27.94 191.77) (xy 21.59 191.77))
  3563. (stroke (width 0) (type default) (color 0 0 0 0))
  3564. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  3565. )
  3566. (wire (pts (xy 196.85 127) (xy 181.61 127))
  3567. (stroke (width 0) (type default) (color 0 0 0 0))
  3568. (uuid bf4036b4-c410-489a-b46c-abee2c31db09)
  3569. )
  3570. (wire (pts (xy 394.97 38.1) (xy 378.46 38.1))
  3571. (stroke (width 0) (type default) (color 0 0 0 0))
  3572. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  3573. )
  3574. (wire (pts (xy 144.78 240.03) (xy 144.78 250.19))
  3575. (stroke (width 0) (type default) (color 0 0 0 0))
  3576. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  3577. )
  3578. (wire (pts (xy 203.2 193.04) (xy 203.2 196.85))
  3579. (stroke (width 0) (type default) (color 0 0 0 0))
  3580. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  3581. )
  3582. (wire (pts (xy 246.38 78.74) (xy 229.87 78.74))
  3583. (stroke (width 0) (type default) (color 0 0 0 0))
  3584. (uuid c20aea50-e9e4-4978-b938-d613d445aab7)
  3585. )
  3586. (wire (pts (xy 196.85 134.62) (xy 181.61 134.62))
  3587. (stroke (width 0) (type default) (color 0 0 0 0))
  3588. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  3589. )
  3590. (wire (pts (xy 132.08 69.85) (xy 148.59 69.85))
  3591. (stroke (width 0) (type default) (color 0 0 0 0))
  3592. (uuid c67ad10d-2f75-4ec6-a139-47058f7f06b2)
  3593. )
  3594. (wire (pts (xy 30.48 234.95) (xy 43.18 234.95))
  3595. (stroke (width 0) (type default) (color 0 0 0 0))
  3596. (uuid c7f7bd58-1ebd-40fd-a39d-a95530a751b6)
  3597. )
  3598. (wire (pts (xy 340.36 60.96) (xy 325.12 60.96))
  3599. (stroke (width 0) (type default) (color 0 0 0 0))
  3600. (uuid c811ed5f-f509-4605-b7d3-da6f79935a1e)
  3601. )
  3602. (wire (pts (xy 336.55 200.66) (xy 342.9 200.66))
  3603. (stroke (width 0) (type default) (color 0 0 0 0))
  3604. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  3605. )
  3606. (wire (pts (xy 88.9 256.54) (xy 88.9 250.19))
  3607. (stroke (width 0) (type default) (color 0 0 0 0))
  3608. (uuid c8b6b273-3d20-4a46-8069-f6d608563604)
  3609. )
  3610. (wire (pts (xy 228.6 240.03) (xy 228.6 250.19))
  3611. (stroke (width 0) (type default) (color 0 0 0 0))
  3612. (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
  3613. )
  3614. (wire (pts (xy 156.21 140.97) (xy 172.72 140.97))
  3615. (stroke (width 0) (type default) (color 0 0 0 0))
  3616. (uuid c8b93f12-bc5c-4ce5-b954-377d903895f1)
  3617. )
  3618. (wire (pts (xy 195.58 204.47) (xy 205.74 204.47))
  3619. (stroke (width 0) (type default) (color 0 0 0 0))
  3620. (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9)
  3621. )
  3622. (wire (pts (xy 36.83 191.77) (xy 41.91 191.77))
  3623. (stroke (width 0) (type default) (color 0 0 0 0))
  3624. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  3625. )
  3626. (wire (pts (xy 351.79 179.07) (xy 336.55 179.07))
  3627. (stroke (width 0) (type default) (color 0 0 0 0))
  3628. (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a)
  3629. )
  3630. (wire (pts (xy 54.61 234.95) (xy 54.61 242.57))
  3631. (stroke (width 0) (type default) (color 0 0 0 0))
  3632. (uuid cd48b13f-c989-4ac1-a7f0-053afcd77527)
  3633. )
  3634. (wire (pts (xy 224.79 76.2) (xy 246.38 76.2))
  3635. (stroke (width 0) (type default) (color 0 0 0 0))
  3636. (uuid cd50b8dc-829d-4a1d-8f2a-6471f378ba87)
  3637. )
  3638. (wire (pts (xy 22.86 25.4) (xy 22.86 26.67))
  3639. (stroke (width 0) (type default) (color 0 0 0 0))
  3640. (uuid cd754504-6804-42c4-85d4-3560ea8687ad)
  3641. )
  3642. (wire (pts (xy 332.74 172.72) (xy 323.85 172.72))
  3643. (stroke (width 0) (type default) (color 0 0 0 0))
  3644. (uuid cdfb661b-489b-4b76-99f4-62b92bb1ab18)
  3645. )
  3646. (wire (pts (xy 312.42 33.02) (xy 312.42 45.72))
  3647. (stroke (width 0) (type default) (color 0 0 0 0))
  3648. (uuid ce55d4e5-cb2b-4927-9979-4a7fc840f632)
  3649. )
  3650. (wire (pts (xy 88.9 250.19) (xy 101.6 250.19))
  3651. (stroke (width 0) (type default) (color 0 0 0 0))
  3652. (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
  3653. )
  3654. (wire (pts (xy 53.34 60.96) (xy 57.15 60.96))
  3655. (stroke (width 0) (type default) (color 0 0 0 0))
  3656. (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7)
  3657. )
  3658. (wire (pts (xy 340.36 66.04) (xy 325.12 66.04))
  3659. (stroke (width 0) (type default) (color 0 0 0 0))
  3660. (uuid d035bb7a-e806-42f2-ba95-a390d279aef1)
  3661. )
  3662. (wire (pts (xy 224.79 207.01) (xy 229.87 207.01))
  3663. (stroke (width 0) (type default) (color 0 0 0 0))
  3664. (uuid d07e3af5-8e07-4980-b333-4058c2990257)
  3665. )
  3666. (wire (pts (xy 167.64 181.61) (xy 171.45 181.61))
  3667. (stroke (width 0) (type default) (color 0 0 0 0))
  3668. (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
  3669. )
  3670. (wire (pts (xy 208.28 185.42) (xy 195.58 185.42))
  3671. (stroke (width 0) (type default) (color 0 0 0 0))
  3672. (uuid d1cd5391-31d2-459f-8adb-4ae3f304a833)
  3673. )
  3674. (wire (pts (xy 62.23 161.29) (xy 62.23 162.56))
  3675. (stroke (width 0) (type default) (color 0 0 0 0))
  3676. (uuid d396ce56-1974-47b7-a41b-ae2b20ef835c)
  3677. )
  3678. (wire (pts (xy 163.83 186.69) (xy 163.83 191.77))
  3679. (stroke (width 0) (type default) (color 0 0 0 0))
  3680. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  3681. )
  3682. (wire (pts (xy 201.93 132.08) (xy 207.01 132.08))
  3683. (stroke (width 0) (type default) (color 0 0 0 0))
  3684. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  3685. )
  3686. (wire (pts (xy 363.22 93.98) (xy 363.22 73.66))
  3687. (stroke (width 0) (type default) (color 0 0 0 0))
  3688. (uuid d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d)
  3689. )
  3690. (wire (pts (xy 57.15 58.42) (xy 57.15 60.96))
  3691. (stroke (width 0) (type default) (color 0 0 0 0))
  3692. (uuid d53baa32-ba88-4646-9db3-0e9b0f0da4f0)
  3693. )
  3694. (wire (pts (xy 170.18 127) (xy 172.72 127))
  3695. (stroke (width 0) (type default) (color 0 0 0 0))
  3696. (uuid d5a7688c-7438-4b6d-999f-4f2a3cb18fd6)
  3697. )
  3698. (wire (pts (xy 30.48 229.87) (xy 30.48 234.95))
  3699. (stroke (width 0) (type default) (color 0 0 0 0))
  3700. (uuid d6040293-95f0-436a-938c-ad69875a4be8)
  3701. )
  3702. (polyline (pts (xy 111.76 49.53) (xy 111.76 12.7))
  3703. (stroke (width 0) (type default) (color 0 0 0 0))
  3704. (uuid d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1)
  3705. )
  3706. (wire (pts (xy 133.35 135.89) (xy 133.35 144.78))
  3707. (stroke (width 0) (type default) (color 0 0 0 0))
  3708. (uuid d8f24303-7e52-49a9-9e82-8d60c3aaa009)
  3709. )
  3710. (wire (pts (xy 184.15 189.23) (xy 184.15 187.96))
  3711. (stroke (width 0) (type default) (color 0 0 0 0))
  3712. (uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
  3713. )
  3714. (wire (pts (xy 157.48 250.19) (xy 172.72 250.19))
  3715. (stroke (width 0) (type default) (color 0 0 0 0))
  3716. (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
  3717. )
  3718. (wire (pts (xy 204.47 162.56) (xy 204.47 175.26))
  3719. (stroke (width 0) (type default) (color 0 0 0 0))
  3720. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3721. )
  3722. (wire (pts (xy 53.34 73.66) (xy 53.34 76.2))
  3723. (stroke (width 0) (type default) (color 0 0 0 0))
  3724. (uuid da6f4122-0ecc-496f-b0fd-e4abef534976)
  3725. )
  3726. (wire (pts (xy 365.76 78.74) (xy 365.76 73.66))
  3727. (stroke (width 0) (type default) (color 0 0 0 0))
  3728. (uuid dc628a9d-67e8-4a03-b99f-8cc7a42af6ef)
  3729. )
  3730. (wire (pts (xy 191.77 182.88) (xy 208.28 182.88))
  3731. (stroke (width 0) (type default) (color 0 0 0 0))
  3732. (uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)
  3733. )
  3734. (wire (pts (xy 172.72 162.56) (xy 181.61 162.56))
  3735. (stroke (width 0) (type default) (color 0 0 0 0))
  3736. (uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb)
  3737. )
  3738. (wire (pts (xy 78.74 193.04) (xy 78.74 191.77))
  3739. (stroke (width 0) (type default) (color 0 0 0 0))
  3740. (uuid dd5f7736-b8aa-44f2-a044-e514d63d48f3)
  3741. )
  3742. (wire (pts (xy 201.93 137.16) (xy 207.01 137.16))
  3743. (stroke (width 0) (type default) (color 0 0 0 0))
  3744. (uuid dde4c43d-f33e-48ba-86f3-779fdfce00c2)
  3745. )
  3746. (wire (pts (xy 27.94 196.85) (xy 27.94 199.39))
  3747. (stroke (width 0) (type default) (color 0 0 0 0))
  3748. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  3749. )
  3750. (polyline (pts (xy 110.49 115.57) (xy 110.49 218.44))
  3751. (stroke (width 0) (type default) (color 0 0 0 0))
  3752. (uuid de438bc3-2eba-4b9f-95e9-35ce5db157f6)
  3753. )
  3754. (wire (pts (xy 317.5 27.94) (xy 312.42 27.94))
  3755. (stroke (width 0) (type default) (color 0 0 0 0))
  3756. (uuid de552ae9-cde6-4643-8cc7-9de2579dadae)
  3757. )
  3758. (wire (pts (xy 45.72 162.56) (xy 45.72 142.24))
  3759. (stroke (width 0) (type default) (color 0 0 0 0))
  3760. (uuid e07e1653-d05d-4bf2-bea3-6515a06de065)
  3761. )
  3762. (wire (pts (xy 347.98 217.17) (xy 347.98 212.09))
  3763. (stroke (width 0) (type default) (color 0 0 0 0))
  3764. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  3765. )
  3766. (wire (pts (xy 223.52 76.2) (xy 224.79 76.2))
  3767. (stroke (width 0) (type default) (color 0 0 0 0))
  3768. (uuid e0b0947e-ec91-4d8a-8663-5a112b0a8541)
  3769. )
  3770. (wire (pts (xy 229.87 81.28) (xy 246.38 81.28))
  3771. (stroke (width 0) (type default) (color 0 0 0 0))
  3772. (uuid e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
  3773. )
  3774. (wire (pts (xy 129.54 234.95) (xy 144.78 234.95))
  3775. (stroke (width 0) (type default) (color 0 0 0 0))
  3776. (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
  3777. )
  3778. (wire (pts (xy 156.21 139.7) (xy 156.21 140.97))
  3779. (stroke (width 0) (type default) (color 0 0 0 0))
  3780. (uuid e1fe6230-75c5-4750-aaea-24a9b80589d8)
  3781. )
  3782. (wire (pts (xy 189.23 162.56) (xy 204.47 162.56))
  3783. (stroke (width 0) (type default) (color 0 0 0 0))
  3784. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  3785. )
  3786. (wire (pts (xy 165.1 242.57) (xy 177.8 242.57))
  3787. (stroke (width 0) (type default) (color 0 0 0 0))
  3788. (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
  3789. )
  3790. (wire (pts (xy 67.31 58.42) (xy 67.31 60.96))
  3791. (stroke (width 0) (type default) (color 0 0 0 0))
  3792. (uuid e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e)
  3793. )
  3794. (wire (pts (xy 184.15 181.61) (xy 189.23 181.61))
  3795. (stroke (width 0) (type default) (color 0 0 0 0))
  3796. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  3797. )
  3798. (wire (pts (xy 109.22 242.57) (xy 121.92 242.57))
  3799. (stroke (width 0) (type default) (color 0 0 0 0))
  3800. (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558)
  3801. )
  3802. (wire (pts (xy 284.48 234.95) (xy 297.18 234.95))
  3803. (stroke (width 0) (type default) (color 0 0 0 0))
  3804. (uuid e4e20505-1208-4100-a4aa-676f50844c06)
  3805. )
  3806. (wire (pts (xy 101.6 250.19) (xy 116.84 250.19))
  3807. (stroke (width 0) (type default) (color 0 0 0 0))
  3808. (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
  3809. )
  3810. (wire (pts (xy 379.73 173.99) (xy 393.7 173.99))
  3811. (stroke (width 0) (type default) (color 0 0 0 0))
  3812. (uuid e6bf257d-5112-423c-b70a-adf8446f29da)
  3813. )
  3814. (wire (pts (xy 62.23 162.56) (xy 45.72 162.56))
  3815. (stroke (width 0) (type default) (color 0 0 0 0))
  3816. (uuid e7893166-2c2c-41b4-bd84-76ebc2e06551)
  3817. )
  3818. (wire (pts (xy 241.3 234.95) (xy 256.54 234.95))
  3819. (stroke (width 0) (type default) (color 0 0 0 0))
  3820. (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
  3821. )
  3822. (wire (pts (xy 36.83 191.77) (xy 27.94 191.77))
  3823. (stroke (width 0) (type default) (color 0 0 0 0))
  3824. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  3825. )
  3826. (wire (pts (xy 224.79 71.12) (xy 245.11 71.12))
  3827. (stroke (width 0) (type default) (color 0 0 0 0))
  3828. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  3829. )
  3830. (wire (pts (xy 132.08 85.09) (xy 148.59 85.09))
  3831. (stroke (width 0) (type default) (color 0 0 0 0))
  3832. (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
  3833. )
  3834. (wire (pts (xy 201.93 181.61) (xy 201.93 180.34))
  3835. (stroke (width 0) (type default) (color 0 0 0 0))
  3836. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  3837. )
  3838. (wire (pts (xy 201.93 124.46) (xy 207.01 124.46))
  3839. (stroke (width 0) (type default) (color 0 0 0 0))
  3840. (uuid ec2e3d8a-128c-4be8-b432-9738bca934ae)
  3841. )
  3842. (wire (pts (xy 241.3 134.62) (xy 241.3 133.35))
  3843. (stroke (width 0) (type default) (color 0 0 0 0))
  3844. (uuid ed247857-b2a3-4b23-90ad-758c01ae5e8e)
  3845. )
  3846. (wire (pts (xy 256.54 234.95) (xy 269.24 234.95))
  3847. (stroke (width 0) (type default) (color 0 0 0 0))
  3848. (uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
  3849. )
  3850. (wire (pts (xy 379.73 171.45) (xy 393.7 171.45))
  3851. (stroke (width 0) (type default) (color 0 0 0 0))
  3852. (uuid f1c2e9b0-6f9f-485b-b482-d408df476d0f)
  3853. )
  3854. (wire (pts (xy 214.63 209.55) (xy 214.63 207.01))
  3855. (stroke (width 0) (type default) (color 0 0 0 0))
  3856. (uuid f1f5241b-4870-42ad-abfc-639b0a3a761c)
  3857. )
  3858. (wire (pts (xy 195.58 69.85) (xy 201.93 69.85))
  3859. (stroke (width 0) (type default) (color 0 0 0 0))
  3860. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  3861. )
  3862. (wire (pts (xy 101.6 57.15) (xy 105.41 57.15))
  3863. (stroke (width 0) (type default) (color 0 0 0 0))
  3864. (uuid f28e56e7-283b-4b9a-ae27-95e89770fbf8)
  3865. )
  3866. (wire (pts (xy 83.82 77.47) (xy 83.82 71.12))
  3867. (stroke (width 0) (type default) (color 0 0 0 0))
  3868. (uuid f3044f68-903d-4063-b253-30d8e3a83eae)
  3869. )
  3870. (wire (pts (xy 19.05 26.67) (xy 22.86 26.67))
  3871. (stroke (width 0) (type default) (color 0 0 0 0))
  3872. (uuid f3bd74c5-c1d6-4a76-bd07-bb01ea1de3af)
  3873. )
  3874. (wire (pts (xy 184.15 196.85) (xy 184.15 194.31))
  3875. (stroke (width 0) (type default) (color 0 0 0 0))
  3876. (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
  3877. )
  3878. (wire (pts (xy 229.87 91.44) (xy 246.38 91.44))
  3879. (stroke (width 0) (type default) (color 0 0 0 0))
  3880. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  3881. )
  3882. (wire (pts (xy 351.79 181.61) (xy 336.55 181.61))
  3883. (stroke (width 0) (type default) (color 0 0 0 0))
  3884. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  3885. )
  3886. (wire (pts (xy 241.3 140.97) (xy 241.3 139.7))
  3887. (stroke (width 0) (type default) (color 0 0 0 0))
  3888. (uuid f5a3f95b-1a53-41b4-b208-bf168c9d9c6d)
  3889. )
  3890. (wire (pts (xy 342.9 172.72) (xy 351.79 172.72))
  3891. (stroke (width 0) (type default) (color 0 0 0 0))
  3892. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  3893. )
  3894. (wire (pts (xy 21.59 191.77) (xy 21.59 187.96))
  3895. (stroke (width 0) (type default) (color 0 0 0 0))
  3896. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  3897. )
  3898. (polyline (pts (xy 278.13 152.4) (xy 278.13 218.44))
  3899. (stroke (width 0) (type default) (color 0 0 0 0))
  3900. (uuid f8a90052-1a8b-4ce5-a1fd-87db944dceac)
  3901. )
  3902. (wire (pts (xy 73.66 242.57) (xy 93.98 242.57))
  3903. (stroke (width 0) (type default) (color 0 0 0 0))
  3904. (uuid f8f3a9fc-1e34-4573-a767-508104e8d242)
  3905. )
  3906. (wire (pts (xy 312.42 27.94) (xy 312.42 25.4))
  3907. (stroke (width 0) (type default) (color 0 0 0 0))
  3908. (uuid f934a442-23d6-4e5b-908f-bb9199ad6f8b)
  3909. )
  3910. (wire (pts (xy 245.11 71.12) (xy 245.11 73.66))
  3911. (stroke (width 0) (type default) (color 0 0 0 0))
  3912. (uuid facb0614-068b-4c9c-a466-d374df96a94c)
  3913. )
  3914. (wire (pts (xy 196.85 129.54) (xy 181.61 129.54))
  3915. (stroke (width 0) (type default) (color 0 0 0 0))
  3916. (uuid fb1a635e-b207-4b36-b0fb-e877e480e86a)
  3917. )
  3918. (wire (pts (xy 201.93 180.34) (xy 208.28 180.34))
  3919. (stroke (width 0) (type default) (color 0 0 0 0))
  3920. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  3921. )
  3922. (wire (pts (xy 99.06 38.1) (xy 102.87 38.1))
  3923. (stroke (width 0) (type default) (color 0 0 0 0))
  3924. (uuid fb57ab52-6f5d-4cad-b7ab-f498751e8ac4)
  3925. )
  3926. (wire (pts (xy 207.01 132.08) (xy 207.01 134.62))
  3927. (stroke (width 0) (type default) (color 0 0 0 0))
  3928. (uuid fbb5e77c-4b41-4796-ad13-1b9e2bbc3c81)
  3929. )
  3930. (wire (pts (xy 193.04 242.57) (xy 205.74 242.57))
  3931. (stroke (width 0) (type default) (color 0 0 0 0))
  3932. (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
  3933. )
  3934. (wire (pts (xy 156.21 133.35) (xy 156.21 134.62))
  3935. (stroke (width 0) (type default) (color 0 0 0 0))
  3936. (uuid fc13962a-a464-4fa2-b9a6-4c26667104ee)
  3937. )
  3938. (wire (pts (xy 130.81 130.81) (xy 130.81 128.27))
  3939. (stroke (width 0) (type default) (color 0 0 0 0))
  3940. (uuid fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942)
  3941. )
  3942. (wire (pts (xy 223.52 76.2) (xy 223.52 77.47))
  3943. (stroke (width 0) (type default) (color 0 0 0 0))
  3944. (uuid fcfb3f77-487d-44de-bd4e-948fbeca3220)
  3945. )
  3946. (wire (pts (xy 379.73 172.72) (xy 379.73 173.99))
  3947. (stroke (width 0) (type default) (color 0 0 0 0))
  3948. (uuid fd34aa56-ded2-4e97-965a-a39457716f0c)
  3949. )
  3950. (wire (pts (xy 78.74 191.77) (xy 101.6 191.77))
  3951. (stroke (width 0) (type default) (color 0 0 0 0))
  3952. (uuid fe1ad3bd-92cc-4e1c-8cc9-a77278095945)
  3953. )
  3954. (wire (pts (xy 256.54 240.03) (xy 256.54 250.19))
  3955. (stroke (width 0) (type default) (color 0 0 0 0))
  3956. (uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
  3957. )
  3958. (text "POWER" (at 12.7 15.24 0)
  3959. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3960. (uuid 08926936-9ea4-4894-afca-caca47f3c238)
  3961. )
  3962. (text "Could put a sense resistor and\nsense amplifier here"
  3963. (at 384.81 185.42 0)
  3964. (effects (font (size 1.27 1.27)) (justify left bottom))
  3965. (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21)
  3966. )
  3967. (text "MCU - ESP32 (T-MICRO32 PLUS)" (at 303.53 15.24 0)
  3968. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3969. (uuid 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
  3970. )
  3971. (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)."
  3972. (at 48.26 33.02 0)
  3973. (effects (font (size 1 1)) (justify left bottom))
  3974. (uuid 1e7b0997-eda5-4af5-a3de-5402c348d6bc)
  3975. )
  3976. (text "SENSOR - MAGNETIC ENCODER" (at 12.7 180.34 0)
  3977. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3978. (uuid 21ca1c08-b8a3-4bdc-9356-70a4d86ee444)
  3979. )
  3980. (text "MOTOR DRIVER" (at 314.96 152.4 0)
  3981. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3982. (uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890)
  3983. )
  3984. (text "MECHANICAL/BOM-ONLY" (at 115.57 15.24 0)
  3985. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3986. (uuid 312474c5-a081-4cd1-b2e6-730f0718514a)
  3987. )
  3988. (text "IO2 must be 0 to enter UART\ndownload mode" (at 392.43 72.39 0)
  3989. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  3990. (uuid 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0)
  3991. )
  3992. (text "GPIO12=MTDI. Should be 0 on boot\nfor 3.3v built-in flash/psram on\nESP32-PICO-v3-02"
  3993. (at 304.8 72.39 0)
  3994. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  3995. (uuid 45484f82-420e-44d0-a58e-382bb939dac5)
  3996. )
  3997. (text "Pull-ups on MT6701 allow for I2C\n(though we'll primarily use SSI)"
  3998. (at 111.76 149.86 0)
  3999. (effects (font (size 1.27 1.27)) (justify left bottom))
  4000. (uuid 4e7a230a-c1a4-4455-81ee-277835acf4a2)
  4001. )
  4002. (text "Use either U6 or U9, but not both!" (at 34.29 16.51 0)
  4003. (effects (font (size 1.5 1.5) (thickness 0.6) bold italic) (justify left bottom))
  4004. (uuid 50b1b83b-0232-4b9b-946c-5e8c7e39ce62)
  4005. )
  4006. (text "Rate=1 --> 80 samples per second" (at 234.95 177.8 0)
  4007. (effects (font (size 1.27 1.27)) (justify left bottom))
  4008. (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
  4009. )
  4010. (text "SENSOR - AMBIENT LIGHT" (at 12.7 119.38 0)
  4011. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4012. (uuid 784e3230-2053-4bc9-a786-5ac2bd0df0f5)
  4013. )
  4014. (text "Recommended 1uF-10uF on EN for auto-reset\ncircuitry, per Espressif design notes."
  4015. (at 215.9 151.13 0)
  4016. (effects (font (size 1.27 1.27)) (justify left bottom))
  4017. (uuid 905b154b-e92b-469d-b2e2-340d67daddb7)
  4018. )
  4019. (text "USB" (at 12.7 53.34 0)
  4020. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4021. (uuid a04f8542-6c38-4d5c-bdbb-c8e0311a0936)
  4022. )
  4023. (text "SENSOR - STRAIN" (at 111.76 156.21 0)
  4024. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4025. (uuid a7c83b25-afbd-4974-8870-387db8f81a5c)
  4026. )
  4027. (text "LEDS" (at 12.7 222.25 0)
  4028. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4029. (uuid b1731e91-7698-42fa-ad60-5c60fdd0e1fc)
  4030. )
  4031. (text "PULLUPS, PULLDOWNS" (at 111.76 119.38 0)
  4032. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4033. (uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc)
  4034. )
  4035. (text "LCD CONNECTOR" (at 209.55 53.34 0)
  4036. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4037. (uuid ed612f6d-67c1-4198-976d-84139f8d99bc)
  4038. )
  4039. (text "Reset/Boot via USB serial" (at 167.64 58.42 0)
  4040. (effects (font (size 1.27 1.27)) (justify left bottom))
  4041. (uuid f6a3288e-9575-42bb-af05-a920d59aded8)
  4042. )
  4043. (label "STRAIN_E+" (at 121.92 198.12 0)
  4044. (effects (font (size 1.27 1.27)) (justify left bottom))
  4045. (uuid 01024d27-e392-4482-9e67-565b0c294fe8)
  4046. )
  4047. (label "MAG_CSN" (at 101.6 191.77 180)
  4048. (effects (font (size 1.27 1.27)) (justify right bottom))
  4049. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4050. )
  4051. (label "ESP32_BOOT" (at 398.78 66.04 180)
  4052. (effects (font (size 1.27 1.27)) (justify right bottom))
  4053. (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7)
  4054. )
  4055. (label "LCD_RST" (at 229.87 78.74 0)
  4056. (effects (font (size 1.27 1.27)) (justify left bottom))
  4057. (uuid 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600)
  4058. )
  4059. (label "TMC_VL" (at 181.61 137.16 0)
  4060. (effects (font (size 1.27 1.27)) (justify left bottom))
  4061. (uuid 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca)
  4062. )
  4063. (label "LCD_BACKLIGHT" (at 229.87 86.36 0)
  4064. (effects (font (size 1.27 1.27)) (justify left bottom))
  4065. (uuid 1cb64bfe-d819-47e3-be11-515b04f2c451)
  4066. )
  4067. (label "STRAIN_S+" (at 121.92 189.23 0)
  4068. (effects (font (size 1.27 1.27)) (justify left bottom))
  4069. (uuid 2026567f-be64-41dd-8011-b0897ba0ff2e)
  4070. )
  4071. (label "LCD_RST" (at 394.97 63.5 180)
  4072. (effects (font (size 1.27 1.27)) (justify right bottom))
  4073. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4074. )
  4075. (label "TMC_VH" (at 325.12 60.96 0)
  4076. (effects (font (size 1.27 1.27)) (justify left bottom))
  4077. (uuid 2681e64d-bedc-4e1f-87d2-754aaa485bbd)
  4078. )
  4079. (label "RTS" (at 148.59 87.63 180)
  4080. (effects (font (size 1.27 1.27)) (justify right bottom))
  4081. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  4082. )
  4083. (label "LED_DATA_5V" (at 73.66 242.57 0)
  4084. (effects (font (size 1.27 1.27)) (justify left bottom))
  4085. (uuid 28e37b45-f843-47c2-85c9-ca19f5430ece)
  4086. )
  4087. (label "USB_SERIAL_TXO" (at 148.59 67.31 180)
  4088. (effects (font (size 1.27 1.27)) (justify right bottom))
  4089. (uuid 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
  4090. )
  4091. (label "SCL" (at 83.82 151.13 180)
  4092. (effects (font (size 1.27 1.27)) (justify right bottom))
  4093. (uuid 2ec9be40-1d5a-4e2d-8a4d-4be2d3c079d5)
  4094. )
  4095. (label "USB_SERIAL_TXO" (at 398.78 43.18 180)
  4096. (effects (font (size 1.27 1.27)) (justify right bottom))
  4097. (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b)
  4098. )
  4099. (label "TMC_UL" (at 336.55 179.07 0)
  4100. (effects (font (size 1.27 1.27)) (justify left bottom))
  4101. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  4102. )
  4103. (label "STRAIN_E+" (at 121.92 186.69 0)
  4104. (effects (font (size 1.27 1.27)) (justify left bottom))
  4105. (uuid 34a11a07-8b7f-45d2-96e3-89fd43e62756)
  4106. )
  4107. (label "STRAIN_DO" (at 355.6 96.52 90)
  4108. (effects (font (size 1.27 1.27)) (justify left bottom))
  4109. (uuid 406d491e-5b01-46dc-a768-fd0992cdb346)
  4110. )
  4111. (label "STRAIN_E-" (at 147.32 191.77 0)
  4112. (effects (font (size 1.27 1.27)) (justify left bottom))
  4113. (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17)
  4114. )
  4115. (label "MAG_CSN" (at 323.85 63.5 0)
  4116. (effects (font (size 1.27 1.27)) (justify left bottom))
  4117. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  4118. )
  4119. (label "LCD_DATA" (at 394.97 55.88 180)
  4120. (effects (font (size 1.27 1.27)) (justify right bottom))
  4121. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  4122. )
  4123. (label "TMC_DIAG" (at 336.55 194.31 0)
  4124. (effects (font (size 1.27 1.27)) (justify left bottom))
  4125. (uuid 430d6d73-9de6-41ca-b788-178d709f4aae)
  4126. )
  4127. (label "ESP32_EN" (at 219.71 133.35 0)
  4128. (effects (font (size 1.27 1.27)) (justify left bottom))
  4129. (uuid 45836d49-cd5f-417d-b0f6-c8b43d196a36)
  4130. )
  4131. (label "TMC_WH" (at 325.12 66.04 0)
  4132. (effects (font (size 1.27 1.27)) (justify left bottom))
  4133. (uuid 4fb2577d-2e1c-480c-9060-124510b35053)
  4134. )
  4135. (label "USB_CC2" (at 67.31 68.58 180)
  4136. (effects (font (size 1.27 1.27)) (justify right bottom))
  4137. (uuid 53e34696-241f-47e5-a477-f469335c8a61)
  4138. )
  4139. (label "RTS" (at 201.93 85.09 180)
  4140. (effects (font (size 1.27 1.27)) (justify right bottom))
  4141. (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631)
  4142. )
  4143. (label "USB_D-" (at 67.31 73.66 180)
  4144. (effects (font (size 1.27 1.27)) (justify right bottom))
  4145. (uuid 5a222fb6-5159-4931-9015-19df65643140)
  4146. )
  4147. (label "TMC_UL" (at 325.12 55.88 0)
  4148. (effects (font (size 1.27 1.27)) (justify left bottom))
  4149. (uuid 5a390647-51ba-4684-b747-9001f749ff71)
  4150. )
  4151. (label "TMC_VH" (at 181.61 127 0)
  4152. (effects (font (size 1.27 1.27)) (justify left bottom))
  4153. (uuid 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9)
  4154. )
  4155. (label "USB_D+" (at 99.06 74.93 0)
  4156. (effects (font (size 1.27 1.27)) (justify left bottom))
  4157. (uuid 5f312b85-6822-40a3-b417-2df49696ca2d)
  4158. )
  4159. (label "LCD_SCK" (at 229.87 81.28 0)
  4160. (effects (font (size 1.27 1.27)) (justify left bottom))
  4161. (uuid 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb)
  4162. )
  4163. (label "TMC_UL" (at 181.61 132.08 0)
  4164. (effects (font (size 1.27 1.27)) (justify left bottom))
  4165. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  4166. )
  4167. (label "LED_DATA_5V" (at 71.12 242.57 180)
  4168. (effects (font (size 1.27 1.27)) (justify right bottom))
  4169. (uuid 692d87e9-6b70-46cc-9c78-b75193a484cc)
  4170. )
  4171. (label "TMC_VL" (at 325.12 50.8 0)
  4172. (effects (font (size 1.27 1.27)) (justify left bottom))
  4173. (uuid 6b6d35dc-fa1d-46c5-87c0-b0652011059d)
  4174. )
  4175. (label "LCD_SCK" (at 394.97 58.42 180)
  4176. (effects (font (size 1.27 1.27)) (justify right bottom))
  4177. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  4178. )
  4179. (label "TMC_UH" (at 336.55 176.53 0)
  4180. (effects (font (size 1.27 1.27)) (justify left bottom))
  4181. (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
  4182. )
  4183. (label "TMC_VL" (at 336.55 184.15 0)
  4184. (effects (font (size 1.27 1.27)) (justify left bottom))
  4185. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  4186. )
  4187. (label "MAG_DO" (at 353.06 90.17 90)
  4188. (effects (font (size 1.27 1.27)) (justify left bottom))
  4189. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  4190. )
  4191. (label "ESP32_BOOT" (at 160.02 92.71 0)
  4192. (effects (font (size 1.27 1.27)) (justify left bottom))
  4193. (uuid 74855e0d-40e4-4940-a544-edae9207b2ea)
  4194. )
  4195. (label "STRAIN_S+" (at 147.32 209.55 0)
  4196. (effects (font (size 1.27 1.27)) (justify left bottom))
  4197. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  4198. )
  4199. (label "MAG_CLK" (at 350.52 90.17 90)
  4200. (effects (font (size 1.27 1.27)) (justify left bottom))
  4201. (uuid 7582a530-a952-46c1-b7eb-75006524ba29)
  4202. )
  4203. (label "SDA" (at 83.82 143.51 180)
  4204. (effects (font (size 1.27 1.27)) (justify right bottom))
  4205. (uuid 7b75907b-b2ae-4362-89fa-d520339aaa5c)
  4206. )
  4207. (label "USB_D+" (at 67.31 78.74 180)
  4208. (effects (font (size 1.27 1.27)) (justify right bottom))
  4209. (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
  4210. )
  4211. (label "STRAIN_E-" (at 121.92 203.2 0)
  4212. (effects (font (size 1.27 1.27)) (justify left bottom))
  4213. (uuid 88a17e56-466a-45e7-9047-7346a507f505)
  4214. )
  4215. (label "SCL" (at 151.13 140.97 0)
  4216. (effects (font (size 1.27 1.27)) (justify left bottom))
  4217. (uuid 89bd1fdd-6a91-474e-8495-7a2ba7eb6260)
  4218. )
  4219. (label "TMC_UH" (at 325.12 58.42 0)
  4220. (effects (font (size 1.27 1.27)) (justify left bottom))
  4221. (uuid 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0)
  4222. )
  4223. (label "STRAIN_S-" (at 147.32 204.47 0)
  4224. (effects (font (size 1.27 1.27)) (justify left bottom))
  4225. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4226. )
  4227. (label "SDA" (at 151.13 134.62 0)
  4228. (effects (font (size 1.27 1.27)) (justify left bottom))
  4229. (uuid 8b022692-69b7-4bd6-bf38-57edecf356fa)
  4230. )
  4231. (label "MAG_DO" (at 101.6 196.85 180)
  4232. (effects (font (size 1.27 1.27)) (justify right bottom))
  4233. (uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
  4234. )
  4235. (label "SCL" (at 387.35 78.74 180)
  4236. (effects (font (size 1.27 1.27)) (justify right bottom))
  4237. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4238. )
  4239. (label "USB_CC1" (at 67.31 66.04 180)
  4240. (effects (font (size 1.27 1.27)) (justify right bottom))
  4241. (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
  4242. )
  4243. (label "ESP32_EN" (at 160.02 62.23 0)
  4244. (effects (font (size 1.27 1.27)) (justify left bottom))
  4245. (uuid 8e697b96-cf4c-43ef-b321-8c2422b088bf)
  4246. )
  4247. (label "USB_SERIAL_RXI" (at 148.59 69.85 180)
  4248. (effects (font (size 1.27 1.27)) (justify right bottom))
  4249. (uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
  4250. )
  4251. (label "TMC_WH" (at 336.55 186.69 0)
  4252. (effects (font (size 1.27 1.27)) (justify left bottom))
  4253. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  4254. )
  4255. (label "MAG_DO" (at 118.11 142.24 0)
  4256. (effects (font (size 1.27 1.27)) (justify left bottom))
  4257. (uuid 92574e8a-729f-48de-afcb-97b4f5e826f8)
  4258. )
  4259. (label "LCD_CS" (at 394.97 45.72 180)
  4260. (effects (font (size 1.27 1.27)) (justify right bottom))
  4261. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4262. )
  4263. (label "LCD_CMD" (at 394.97 38.1 180)
  4264. (effects (font (size 1.27 1.27)) (justify right bottom))
  4265. (uuid 96781640-c07e-4eea-a372-067ded96b703)
  4266. )
  4267. (label "TMC_WL" (at 181.61 134.62 0)
  4268. (effects (font (size 1.27 1.27)) (justify left bottom))
  4269. (uuid 97e5f992-979e-4291-bd9a-a77c3fd4b1b5)
  4270. )
  4271. (label "LCD_CS" (at 229.87 88.9 0)
  4272. (effects (font (size 1.27 1.27)) (justify left bottom))
  4273. (uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540)
  4274. )
  4275. (label "STRAIN_SCK" (at 256.54 187.96 180)
  4276. (effects (font (size 1.27 1.27)) (justify right bottom))
  4277. (uuid 9f969b13-1795-4747-8326-93bdc304ed56)
  4278. )
  4279. (label "TMC_UH" (at 181.61 124.46 0)
  4280. (effects (font (size 1.27 1.27)) (justify left bottom))
  4281. (uuid a323243c-4cab-4689-aa04-1e663cf86177)
  4282. )
  4283. (label "SDA" (at 379.73 73.66 180)
  4284. (effects (font (size 1.27 1.27)) (justify right bottom))
  4285. (uuid a5e6f7cb-0a81-4357-a11f-231d23300342)
  4286. )
  4287. (label "TMC_WL" (at 336.55 189.23 0)
  4288. (effects (font (size 1.27 1.27)) (justify left bottom))
  4289. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  4290. )
  4291. (label "LCD_DATA" (at 229.87 83.82 0)
  4292. (effects (font (size 1.27 1.27)) (justify left bottom))
  4293. (uuid ae158d42-76cc-4911-a621-4cc28931c98b)
  4294. )
  4295. (label "STRAIN_SCK" (at 403.86 68.58 180)
  4296. (effects (font (size 1.27 1.27)) (justify right bottom))
  4297. (uuid c6462399-f2e4-4f1a-b34a-b49a04c8bdb9)
  4298. )
  4299. (label "TMC_WH" (at 181.61 129.54 0)
  4300. (effects (font (size 1.27 1.27)) (justify left bottom))
  4301. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4302. )
  4303. (label "TMC_VH" (at 336.55 181.61 0)
  4304. (effects (font (size 1.27 1.27)) (justify left bottom))
  4305. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  4306. )
  4307. (label "LED_DATA_3V3" (at 363.22 93.98 90)
  4308. (effects (font (size 1.27 1.27)) (justify left bottom))
  4309. (uuid d115a0df-1034-4583-83af-ff1cb8acfa17)
  4310. )
  4311. (label "LCD_CMD" (at 229.87 91.44 0)
  4312. (effects (font (size 1.27 1.27)) (justify left bottom))
  4313. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4314. )
  4315. (label "STRAIN_DO" (at 256.54 185.42 180)
  4316. (effects (font (size 1.27 1.27)) (justify right bottom))
  4317. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4318. )
  4319. (label "DTR" (at 201.93 69.85 180)
  4320. (effects (font (size 1.27 1.27)) (justify right bottom))
  4321. (uuid d68dca9b-48b3-498b-9b5f-3b3838250f82)
  4322. )
  4323. (label "DTR" (at 148.59 85.09 180)
  4324. (effects (font (size 1.27 1.27)) (justify right bottom))
  4325. (uuid d72c89a6-7578-4468-964e-2a845431195f)
  4326. )
  4327. (label "STRAIN_E+" (at 147.32 181.61 0)
  4328. (effects (font (size 1.27 1.27)) (justify left bottom))
  4329. (uuid d8200a86-aa75-47a3-ad2a-7f4c9c999a6f)
  4330. )
  4331. (label "TMC_DIAG" (at 325.12 40.64 0)
  4332. (effects (font (size 1.27 1.27)) (justify left bottom))
  4333. (uuid e000728f-e3c5-4fc4-86af-db9ceb3a6542)
  4334. )
  4335. (label "MAG_CLK" (at 101.6 194.31 180)
  4336. (effects (font (size 1.27 1.27)) (justify right bottom))
  4337. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  4338. )
  4339. (label "LED_DATA_3V3" (at 15.24 242.57 0)
  4340. (effects (font (size 1.27 1.27)) (justify left bottom))
  4341. (uuid ea28e946-b74f-4ba8-ac7b-b1884c5e7296)
  4342. )
  4343. (label "USB_D-" (at 99.06 77.47 0)
  4344. (effects (font (size 1.27 1.27)) (justify left bottom))
  4345. (uuid ee29d712-3378-4507-a00b-003526b29bb1)
  4346. )
  4347. (label "ESP32_EN" (at 327.66 38.1 0)
  4348. (effects (font (size 1.27 1.27)) (justify left bottom))
  4349. (uuid ef94502b-f22d-4da7-a17f-4100090b03a1)
  4350. )
  4351. (label "TMC_WL" (at 325.12 53.34 0)
  4352. (effects (font (size 1.27 1.27)) (justify left bottom))
  4353. (uuid f08895dc-4dcb-4aef-a39b-5a08864cdaaf)
  4354. )
  4355. (label "LCD_BACKLIGHT" (at 394.97 50.8 180)
  4356. (effects (font (size 1.27 1.27)) (justify right bottom))
  4357. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4358. )
  4359. (label "USB_SERIAL_RXI" (at 398.78 40.64 180)
  4360. (effects (font (size 1.27 1.27)) (justify right bottom))
  4361. (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be)
  4362. )
  4363. (label "STRAIN_E-" (at 121.92 191.77 0)
  4364. (effects (font (size 1.27 1.27)) (justify left bottom))
  4365. (uuid fb9a832c-737d-49fb-bbb4-29a0ba3e8178)
  4366. )
  4367. (label "MAG_CLK" (at 118.11 144.78 0)
  4368. (effects (font (size 1.27 1.27)) (justify left bottom))
  4369. (uuid fe4068b9-89da-4c59-ba51-b5949772f5d8)
  4370. )
  4371. (label "STRAIN_S-" (at 121.92 200.66 0)
  4372. (effects (font (size 1.27 1.27)) (justify left bottom))
  4373. (uuid fead07ab-5a70-40db-ada8-c72dcc827bfc)
  4374. )
  4375. (symbol (lib_id "MagnTek:MT6701-CT") (at 58.42 195.58 0) (unit 1)
  4376. (in_bom yes) (on_board yes)
  4377. (uuid 00000000-0000-0000-0000-000061f4f0c2)
  4378. (property "Reference" "U1" (id 0) (at 59.69 186.055 0))
  4379. (property "Value" "MT6701-CT" (id 1) (at 59.69 188.3664 0))
  4380. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 58.42 195.58 0)
  4381. (effects (font (size 1.27 1.27)) hide)
  4382. )
  4383. (property "Datasheet" "" (id 3) (at 58.42 195.58 0)
  4384. (effects (font (size 1.27 1.27)) hide)
  4385. )
  4386. (property "LCSC" "C2856764, or C3003196" (id 4) (at 58.42 195.58 0)
  4387. (effects (font (size 1.27 1.27)) hide)
  4388. )
  4389. (property "Digikey" "N/A" (id 5) (at 58.42 195.58 0)
  4390. (effects (font (size 1.27 1.27)) hide)
  4391. )
  4392. (property "Mouser" "N/A" (id 6) (at 58.42 195.58 0)
  4393. (effects (font (size 1.27 1.27)) hide)
  4394. )
  4395. (pin "1" (uuid 41445a0a-aba9-4520-8a8a-661b0822bea1))
  4396. (pin "2" (uuid b7a32267-072b-4e70-bfe9-b0a3dfef4c9c))
  4397. (pin "3" (uuid 104c52b0-fa5b-4965-bafe-99b694fc4373))
  4398. (pin "4" (uuid 8e155617-d4f4-46e4-909c-3f000857b3b2))
  4399. (pin "5" (uuid 6c0abecf-f361-4699-8ddd-02d1b8372136))
  4400. (pin "6" (uuid 013fd080-24b1-4ff0-a3fa-a8d9093bae2d))
  4401. (pin "7" (uuid 5f4ddf40-42af-4f8e-9942-235d798238c4))
  4402. (pin "8" (uuid 19771d4c-1e60-41d3-ab7d-ea0ca2bfd638))
  4403. )
  4404. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 101.6 242.57 0) (unit 1)
  4405. (in_bom yes) (on_board yes)
  4406. (uuid 00000000-0000-0000-0000-000061f5027f)
  4407. (property "Reference" "D1" (id 0) (at 93.98 228.6 0)
  4408. (effects (font (size 1.27 1.27)) (justify left))
  4409. )
  4410. (property "Value" "SK6812SIDE-A" (id 1) (at 93.98 231.14 0)
  4411. (effects (font (size 1.27 1.27)) (justify left))
  4412. )
  4413. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 102.87 250.19 0)
  4414. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4415. )
  4416. (property "Datasheet" "" (id 3) (at 104.14 252.095 0)
  4417. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4418. )
  4419. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 101.6 242.57 0)
  4420. (effects (font (size 1.27 1.27)) hide)
  4421. )
  4422. (property "Digikey" "1528-4691-ND" (id 5) (at 101.6 242.57 0)
  4423. (effects (font (size 1.27 1.27)) hide)
  4424. )
  4425. (property "Mouser" "485-4691" (id 6) (at 101.6 242.57 0)
  4426. (effects (font (size 1.27 1.27)) hide)
  4427. )
  4428. (property "LCSC" "C2890037" (id 7) (at 101.6 242.57 0)
  4429. (effects (font (size 1.27 1.27)) hide)
  4430. )
  4431. (pin "1" (uuid bafd7713-de56-4b13-bde3-2bb1eb95b862))
  4432. (pin "2" (uuid b0a9d4e0-4a35-4ef4-bf75-f8230a9a0080))
  4433. (pin "3" (uuid 1bd41d7a-cc03-44d3-8bb3-d6d3905c11be))
  4434. (pin "4" (uuid f01f8ee4-5ab0-46bf-ba4d-6358091f1053))
  4435. )
  4436. (symbol (lib_id "Device:C_Small") (at 88.9 237.49 0) (unit 1)
  4437. (in_bom yes) (on_board yes)
  4438. (uuid 00000000-0000-0000-0000-000061f52a71)
  4439. (property "Reference" "C1" (id 0) (at 91.2368 236.3216 0)
  4440. (effects (font (size 1.27 1.27)) (justify left))
  4441. )
  4442. (property "Value" "0.1uF" (id 1) (at 91.2368 238.633 0)
  4443. (effects (font (size 1.27 1.27)) (justify left))
  4444. )
  4445. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 88.9 237.49 0)
  4446. (effects (font (size 1.27 1.27)) hide)
  4447. )
  4448. (property "Datasheet" "~" (id 3) (at 88.9 237.49 0)
  4449. (effects (font (size 1.27 1.27)) hide)
  4450. )
  4451. (property "LCSC" "C1591" (id 4) (at 88.9 237.49 0)
  4452. (effects (font (size 1.27 1.27)) hide)
  4453. )
  4454. (property "Digikey" "1276-1935-1-ND" (id 5) (at 88.9 237.49 0)
  4455. (effects (font (size 1.27 1.27)) hide)
  4456. )
  4457. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 88.9 237.49 0)
  4458. (effects (font (size 1.27 1.27)) hide)
  4459. )
  4460. (pin "1" (uuid b5b98d18-92b0-45e4-a464-abeb3e63c67f))
  4461. (pin "2" (uuid 3d816713-8e55-4148-9a62-71edf593333b))
  4462. )
  4463. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 129.54 242.57 0) (unit 1)
  4464. (in_bom yes) (on_board yes)
  4465. (uuid 00000000-0000-0000-0000-000061f5739b)
  4466. (property "Reference" "D2" (id 0) (at 121.92 228.6 0)
  4467. (effects (font (size 1.27 1.27)) (justify left))
  4468. )
  4469. (property "Value" "SK6812SIDE-A" (id 1) (at 121.92 231.14 0)
  4470. (effects (font (size 1.27 1.27)) (justify left))
  4471. )
  4472. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 130.81 250.19 0)
  4473. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4474. )
  4475. (property "Datasheet" "" (id 3) (at 132.08 252.095 0)
  4476. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4477. )
  4478. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 129.54 242.57 0)
  4479. (effects (font (size 1.27 1.27)) hide)
  4480. )
  4481. (property "Digikey" "1528-4691-ND" (id 5) (at 129.54 242.57 0)
  4482. (effects (font (size 1.27 1.27)) hide)
  4483. )
  4484. (property "Mouser" "485-4691" (id 6) (at 129.54 242.57 0)
  4485. (effects (font (size 1.27 1.27)) hide)
  4486. )
  4487. (property "LCSC" "C2890037" (id 7) (at 129.54 242.57 0)
  4488. (effects (font (size 1.27 1.27)) hide)
  4489. )
  4490. (pin "1" (uuid 04a28995-10a7-4e8d-bf0a-3c28cd74c2fa))
  4491. (pin "2" (uuid 5b5e9d4f-5380-4795-9c5c-6c9dd2774543))
  4492. (pin "3" (uuid c2113ebe-baee-4c93-b17b-9f259cc79e1d))
  4493. (pin "4" (uuid fce757f0-707e-4a92-9cdc-645159fe4b93))
  4494. )
  4495. (symbol (lib_id "Device:C_Small") (at 116.84 237.49 0) (unit 1)
  4496. (in_bom yes) (on_board yes)
  4497. (uuid 00000000-0000-0000-0000-000061f573a1)
  4498. (property "Reference" "C2" (id 0) (at 119.1768 236.3216 0)
  4499. (effects (font (size 1.27 1.27)) (justify left))
  4500. )
  4501. (property "Value" "0.1uF" (id 1) (at 119.1768 238.633 0)
  4502. (effects (font (size 1.27 1.27)) (justify left))
  4503. )
  4504. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 116.84 237.49 0)
  4505. (effects (font (size 1.27 1.27)) hide)
  4506. )
  4507. (property "Datasheet" "~" (id 3) (at 116.84 237.49 0)
  4508. (effects (font (size 1.27 1.27)) hide)
  4509. )
  4510. (property "LCSC" "C1591" (id 4) (at 116.84 237.49 0)
  4511. (effects (font (size 1.27 1.27)) hide)
  4512. )
  4513. (property "Digikey" "1276-1935-1-ND" (id 5) (at 116.84 237.49 0)
  4514. (effects (font (size 1.27 1.27)) hide)
  4515. )
  4516. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 116.84 237.49 0)
  4517. (effects (font (size 1.27 1.27)) hide)
  4518. )
  4519. (pin "1" (uuid bf709803-4d4f-4339-b1c6-1b1dd9ed8ffe))
  4520. (pin "2" (uuid 9511d6e1-ad69-48c7-ab16-eeced975e0f6))
  4521. )
  4522. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 157.48 242.57 0) (unit 1)
  4523. (in_bom yes) (on_board yes)
  4524. (uuid 00000000-0000-0000-0000-000061f5777f)
  4525. (property "Reference" "D3" (id 0) (at 149.86 228.6 0)
  4526. (effects (font (size 1.27 1.27)) (justify left))
  4527. )
  4528. (property "Value" "SK6812SIDE-A" (id 1) (at 149.86 231.14 0)
  4529. (effects (font (size 1.27 1.27)) (justify left))
  4530. )
  4531. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 158.75 250.19 0)
  4532. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4533. )
  4534. (property "Datasheet" "" (id 3) (at 160.02 252.095 0)
  4535. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4536. )
  4537. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 157.48 242.57 0)
  4538. (effects (font (size 1.27 1.27)) hide)
  4539. )
  4540. (property "Digikey" "1528-4691-ND" (id 5) (at 157.48 242.57 0)
  4541. (effects (font (size 1.27 1.27)) hide)
  4542. )
  4543. (property "Mouser" "485-4691" (id 6) (at 157.48 242.57 0)
  4544. (effects (font (size 1.27 1.27)) hide)
  4545. )
  4546. (property "LCSC" "C2890037" (id 7) (at 157.48 242.57 0)
  4547. (effects (font (size 1.27 1.27)) hide)
  4548. )
  4549. (pin "1" (uuid 201ef1b6-fe47-4e18-a25d-8454a9ece970))
  4550. (pin "2" (uuid 6db3e0a6-b3ef-46d7-a683-43d6b85524e1))
  4551. (pin "3" (uuid 950602fa-6edc-4822-8c77-2744d02a2a8e))
  4552. (pin "4" (uuid e2a94c35-3ea5-4429-9e49-f1597125258b))
  4553. )
  4554. (symbol (lib_id "Device:C_Small") (at 144.78 237.49 0) (unit 1)
  4555. (in_bom yes) (on_board yes)
  4556. (uuid 00000000-0000-0000-0000-000061f57785)
  4557. (property "Reference" "C3" (id 0) (at 147.1168 236.3216 0)
  4558. (effects (font (size 1.27 1.27)) (justify left))
  4559. )
  4560. (property "Value" "0.1uF" (id 1) (at 147.1168 238.633 0)
  4561. (effects (font (size 1.27 1.27)) (justify left))
  4562. )
  4563. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 144.78 237.49 0)
  4564. (effects (font (size 1.27 1.27)) hide)
  4565. )
  4566. (property "Datasheet" "~" (id 3) (at 144.78 237.49 0)
  4567. (effects (font (size 1.27 1.27)) hide)
  4568. )
  4569. (property "LCSC" "C1591" (id 4) (at 144.78 237.49 0)
  4570. (effects (font (size 1.27 1.27)) hide)
  4571. )
  4572. (property "Digikey" "1276-1935-1-ND" (id 5) (at 144.78 237.49 0)
  4573. (effects (font (size 1.27 1.27)) hide)
  4574. )
  4575. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 144.78 237.49 0)
  4576. (effects (font (size 1.27 1.27)) hide)
  4577. )
  4578. (pin "1" (uuid 2ffc2f04-cc47-469f-96de-81004a825de9))
  4579. (pin "2" (uuid aa9279f7-b972-4f25-b0f3-5e0f01a71f40))
  4580. )
  4581. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 185.42 242.57 0) (unit 1)
  4582. (in_bom yes) (on_board yes)
  4583. (uuid 00000000-0000-0000-0000-000061f5835d)
  4584. (property "Reference" "D4" (id 0) (at 177.8 228.6 0)
  4585. (effects (font (size 1.27 1.27)) (justify left))
  4586. )
  4587. (property "Value" "SK6812SIDE-A" (id 1) (at 177.8 231.14 0)
  4588. (effects (font (size 1.27 1.27)) (justify left))
  4589. )
  4590. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 186.69 250.19 0)
  4591. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4592. )
  4593. (property "Datasheet" "" (id 3) (at 187.96 252.095 0)
  4594. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4595. )
  4596. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 185.42 242.57 0)
  4597. (effects (font (size 1.27 1.27)) hide)
  4598. )
  4599. (property "Digikey" "1528-4691-ND" (id 5) (at 185.42 242.57 0)
  4600. (effects (font (size 1.27 1.27)) hide)
  4601. )
  4602. (property "Mouser" "485-4691" (id 6) (at 185.42 242.57 0)
  4603. (effects (font (size 1.27 1.27)) hide)
  4604. )
  4605. (property "LCSC" "C2890037" (id 7) (at 185.42 242.57 0)
  4606. (effects (font (size 1.27 1.27)) hide)
  4607. )
  4608. (pin "1" (uuid d127318f-e6ee-4aa6-8794-a9c8d7148677))
  4609. (pin "2" (uuid e8a993ec-3ca1-4e1c-b9db-8fedba6ba9f3))
  4610. (pin "3" (uuid ddd35cc1-7ea2-4027-93d1-5b3fd2c08415))
  4611. (pin "4" (uuid f853907f-0368-4b9f-8e86-2c6abac9120f))
  4612. )
  4613. (symbol (lib_id "Device:C_Small") (at 172.72 237.49 0) (unit 1)
  4614. (in_bom yes) (on_board yes)
  4615. (uuid 00000000-0000-0000-0000-000061f58363)
  4616. (property "Reference" "C4" (id 0) (at 175.0568 236.3216 0)
  4617. (effects (font (size 1.27 1.27)) (justify left))
  4618. )
  4619. (property "Value" "0.1uF" (id 1) (at 175.0568 238.633 0)
  4620. (effects (font (size 1.27 1.27)) (justify left))
  4621. )
  4622. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 172.72 237.49 0)
  4623. (effects (font (size 1.27 1.27)) hide)
  4624. )
  4625. (property "Datasheet" "~" (id 3) (at 172.72 237.49 0)
  4626. (effects (font (size 1.27 1.27)) hide)
  4627. )
  4628. (property "LCSC" "C1591" (id 4) (at 172.72 237.49 0)
  4629. (effects (font (size 1.27 1.27)) hide)
  4630. )
  4631. (property "Digikey" "1276-1935-1-ND" (id 5) (at 172.72 237.49 0)
  4632. (effects (font (size 1.27 1.27)) hide)
  4633. )
  4634. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 172.72 237.49 0)
  4635. (effects (font (size 1.27 1.27)) hide)
  4636. )
  4637. (pin "1" (uuid b9df3039-b0ba-4288-b952-e06df3568a9e))
  4638. (pin "2" (uuid f6ebdeb1-8356-41f8-aef5-a882f96ea707))
  4639. )
  4640. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 213.36 242.57 0) (unit 1)
  4641. (in_bom yes) (on_board yes)
  4642. (uuid 00000000-0000-0000-0000-000061f59037)
  4643. (property "Reference" "D5" (id 0) (at 205.74 228.6 0)
  4644. (effects (font (size 1.27 1.27)) (justify left))
  4645. )
  4646. (property "Value" "SK6812SIDE-A" (id 1) (at 205.74 231.14 0)
  4647. (effects (font (size 1.27 1.27)) (justify left))
  4648. )
  4649. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 214.63 250.19 0)
  4650. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4651. )
  4652. (property "Datasheet" "" (id 3) (at 215.9 252.095 0)
  4653. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4654. )
  4655. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 213.36 242.57 0)
  4656. (effects (font (size 1.27 1.27)) hide)
  4657. )
  4658. (property "Digikey" "1528-4691-ND" (id 5) (at 213.36 242.57 0)
  4659. (effects (font (size 1.27 1.27)) hide)
  4660. )
  4661. (property "Mouser" "485-4691" (id 6) (at 213.36 242.57 0)
  4662. (effects (font (size 1.27 1.27)) hide)
  4663. )
  4664. (property "LCSC" "C2890037" (id 7) (at 213.36 242.57 0)
  4665. (effects (font (size 1.27 1.27)) hide)
  4666. )
  4667. (pin "1" (uuid c7bd907f-ded5-4071-a8ba-298b61938e2d))
  4668. (pin "2" (uuid d72feaa1-d250-4ba1-908e-630af4ccb017))
  4669. (pin "3" (uuid 863622d7-1ac7-42d5-b53e-b58d28e7ac53))
  4670. (pin "4" (uuid 401cd2a0-2a04-428b-98d5-784a840a38d1))
  4671. )
  4672. (symbol (lib_id "Device:C_Small") (at 200.66 237.49 0) (unit 1)
  4673. (in_bom yes) (on_board yes)
  4674. (uuid 00000000-0000-0000-0000-000061f5903d)
  4675. (property "Reference" "C5" (id 0) (at 202.9968 236.3216 0)
  4676. (effects (font (size 1.27 1.27)) (justify left))
  4677. )
  4678. (property "Value" "0.1uF" (id 1) (at 202.9968 238.633 0)
  4679. (effects (font (size 1.27 1.27)) (justify left))
  4680. )
  4681. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 200.66 237.49 0)
  4682. (effects (font (size 1.27 1.27)) hide)
  4683. )
  4684. (property "Datasheet" "~" (id 3) (at 200.66 237.49 0)
  4685. (effects (font (size 1.27 1.27)) hide)
  4686. )
  4687. (property "LCSC" "C1591" (id 4) (at 200.66 237.49 0)
  4688. (effects (font (size 1.27 1.27)) hide)
  4689. )
  4690. (property "Digikey" "1276-1935-1-ND" (id 5) (at 200.66 237.49 0)
  4691. (effects (font (size 1.27 1.27)) hide)
  4692. )
  4693. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 200.66 237.49 0)
  4694. (effects (font (size 1.27 1.27)) hide)
  4695. )
  4696. (pin "1" (uuid 9bd7e8a2-4890-4d4a-ba78-597a7ab993ac))
  4697. (pin "2" (uuid 222be3c0-bf81-4a68-9c90-b370f4595e2d))
  4698. )
  4699. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 241.3 242.57 0) (unit 1)
  4700. (in_bom yes) (on_board yes)
  4701. (uuid 00000000-0000-0000-0000-000061f59ca5)
  4702. (property "Reference" "D6" (id 0) (at 233.68 228.6 0)
  4703. (effects (font (size 1.27 1.27)) (justify left))
  4704. )
  4705. (property "Value" "SK6812SIDE-A" (id 1) (at 233.68 231.14 0)
  4706. (effects (font (size 1.27 1.27)) (justify left))
  4707. )
  4708. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 242.57 250.19 0)
  4709. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4710. )
  4711. (property "Datasheet" "" (id 3) (at 243.84 252.095 0)
  4712. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4713. )
  4714. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 241.3 242.57 0)
  4715. (effects (font (size 1.27 1.27)) hide)
  4716. )
  4717. (property "Digikey" "1528-4691-ND" (id 5) (at 241.3 242.57 0)
  4718. (effects (font (size 1.27 1.27)) hide)
  4719. )
  4720. (property "Mouser" "485-4691" (id 6) (at 241.3 242.57 0)
  4721. (effects (font (size 1.27 1.27)) hide)
  4722. )
  4723. (property "LCSC" "C2890037" (id 7) (at 241.3 242.57 0)
  4724. (effects (font (size 1.27 1.27)) hide)
  4725. )
  4726. (pin "1" (uuid 1ee46f38-e002-4d3e-ad64-8a0e5f2fcd53))
  4727. (pin "2" (uuid 244a08c3-3e40-487a-bf72-768fa3af4139))
  4728. (pin "3" (uuid bfa445ac-246e-4db8-a60c-beb85501bf65))
  4729. (pin "4" (uuid c3b2e23c-8699-44ed-8837-d92d75420e84))
  4730. )
  4731. (symbol (lib_id "Device:C_Small") (at 228.6 237.49 0) (unit 1)
  4732. (in_bom yes) (on_board yes)
  4733. (uuid 00000000-0000-0000-0000-000061f59cab)
  4734. (property "Reference" "C6" (id 0) (at 230.9368 236.3216 0)
  4735. (effects (font (size 1.27 1.27)) (justify left))
  4736. )
  4737. (property "Value" "0.1uF" (id 1) (at 230.9368 238.633 0)
  4738. (effects (font (size 1.27 1.27)) (justify left))
  4739. )
  4740. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 228.6 237.49 0)
  4741. (effects (font (size 1.27 1.27)) hide)
  4742. )
  4743. (property "Datasheet" "~" (id 3) (at 228.6 237.49 0)
  4744. (effects (font (size 1.27 1.27)) hide)
  4745. )
  4746. (property "LCSC" "C1591" (id 4) (at 228.6 237.49 0)
  4747. (effects (font (size 1.27 1.27)) hide)
  4748. )
  4749. (property "Digikey" "1276-1935-1-ND" (id 5) (at 228.6 237.49 0)
  4750. (effects (font (size 1.27 1.27)) hide)
  4751. )
  4752. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 228.6 237.49 0)
  4753. (effects (font (size 1.27 1.27)) hide)
  4754. )
  4755. (pin "1" (uuid 2c04050f-f512-4581-b983-748e3e9c8741))
  4756. (pin "2" (uuid 0e2b9951-d16b-44e6-b1cb-591d480e8428))
  4757. )
  4758. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 269.24 242.57 0) (unit 1)
  4759. (in_bom yes) (on_board yes)
  4760. (uuid 00000000-0000-0000-0000-000061f5a949)
  4761. (property "Reference" "D7" (id 0) (at 261.62 228.6 0)
  4762. (effects (font (size 1.27 1.27)) (justify left))
  4763. )
  4764. (property "Value" "SK6812SIDE-A" (id 1) (at 261.62 231.14 0)
  4765. (effects (font (size 1.27 1.27)) (justify left))
  4766. )
  4767. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 270.51 250.19 0)
  4768. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4769. )
  4770. (property "Datasheet" "" (id 3) (at 271.78 252.095 0)
  4771. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4772. )
  4773. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 269.24 242.57 0)
  4774. (effects (font (size 1.27 1.27)) hide)
  4775. )
  4776. (property "Digikey" "1528-4691-ND" (id 5) (at 269.24 242.57 0)
  4777. (effects (font (size 1.27 1.27)) hide)
  4778. )
  4779. (property "Mouser" "485-4691" (id 6) (at 269.24 242.57 0)
  4780. (effects (font (size 1.27 1.27)) hide)
  4781. )
  4782. (property "LCSC" "C2890037" (id 7) (at 269.24 242.57 0)
  4783. (effects (font (size 1.27 1.27)) hide)
  4784. )
  4785. (pin "1" (uuid 1d8217dd-eaa5-4107-a059-78f1a0cf2926))
  4786. (pin "2" (uuid 21792e87-7a3e-440b-91e0-fb1e08f2f0ea))
  4787. (pin "3" (uuid 2bcef6ab-349b-4b2d-949e-d48ed58c62d8))
  4788. (pin "4" (uuid 34103ee4-40e1-4607-be07-8f0e21ac8c2f))
  4789. )
  4790. (symbol (lib_id "Device:C_Small") (at 256.54 237.49 0) (unit 1)
  4791. (in_bom yes) (on_board yes)
  4792. (uuid 00000000-0000-0000-0000-000061f5a94f)
  4793. (property "Reference" "C7" (id 0) (at 258.8768 236.3216 0)
  4794. (effects (font (size 1.27 1.27)) (justify left))
  4795. )
  4796. (property "Value" "0.1uF" (id 1) (at 258.8768 238.633 0)
  4797. (effects (font (size 1.27 1.27)) (justify left))
  4798. )
  4799. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 256.54 237.49 0)
  4800. (effects (font (size 1.27 1.27)) hide)
  4801. )
  4802. (property "Datasheet" "~" (id 3) (at 256.54 237.49 0)
  4803. (effects (font (size 1.27 1.27)) hide)
  4804. )
  4805. (property "LCSC" "C1591" (id 4) (at 256.54 237.49 0)
  4806. (effects (font (size 1.27 1.27)) hide)
  4807. )
  4808. (property "Digikey" "1276-1935-1-ND" (id 5) (at 256.54 237.49 0)
  4809. (effects (font (size 1.27 1.27)) hide)
  4810. )
  4811. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 256.54 237.49 0)
  4812. (effects (font (size 1.27 1.27)) hide)
  4813. )
  4814. (pin "1" (uuid 258c48bd-1542-4a0f-b861-39673f328184))
  4815. (pin "2" (uuid 2e1c27a1-dd61-4b32-84b9-2ef402708e70))
  4816. )
  4817. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 297.18 242.57 0) (unit 1)
  4818. (in_bom yes) (on_board yes)
  4819. (uuid 00000000-0000-0000-0000-000061f5bfc3)
  4820. (property "Reference" "D8" (id 0) (at 289.56 228.6 0)
  4821. (effects (font (size 1.27 1.27)) (justify left))
  4822. )
  4823. (property "Value" "SK6812SIDE-A" (id 1) (at 289.56 231.14 0)
  4824. (effects (font (size 1.27 1.27)) (justify left))
  4825. )
  4826. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 298.45 250.19 0)
  4827. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4828. )
  4829. (property "Datasheet" "" (id 3) (at 299.72 252.095 0)
  4830. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4831. )
  4832. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 297.18 242.57 0)
  4833. (effects (font (size 1.27 1.27)) hide)
  4834. )
  4835. (property "Digikey" "1528-4691-ND" (id 5) (at 297.18 242.57 0)
  4836. (effects (font (size 1.27 1.27)) hide)
  4837. )
  4838. (property "Mouser" "485-4691" (id 6) (at 297.18 242.57 0)
  4839. (effects (font (size 1.27 1.27)) hide)
  4840. )
  4841. (property "LCSC" "C2890037" (id 7) (at 297.18 242.57 0)
  4842. (effects (font (size 1.27 1.27)) hide)
  4843. )
  4844. (pin "1" (uuid 288b0cba-a15a-4d68-9c26-9264b1d2c369))
  4845. (pin "2" (uuid e03bd6b8-1308-4880-a800-290862af978e))
  4846. (pin "3" (uuid 71176ca5-c623-4627-aab5-549c91a9fba5))
  4847. (pin "4" (uuid 99a3dbfb-1c73-4c78-be7c-ded34e626f42))
  4848. )
  4849. (symbol (lib_id "Device:C_Small") (at 284.48 237.49 0) (unit 1)
  4850. (in_bom yes) (on_board yes)
  4851. (uuid 00000000-0000-0000-0000-000061f5bfc9)
  4852. (property "Reference" "C8" (id 0) (at 286.8168 236.3216 0)
  4853. (effects (font (size 1.27 1.27)) (justify left))
  4854. )
  4855. (property "Value" "0.1uF" (id 1) (at 286.8168 238.633 0)
  4856. (effects (font (size 1.27 1.27)) (justify left))
  4857. )
  4858. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 284.48 237.49 0)
  4859. (effects (font (size 1.27 1.27)) hide)
  4860. )
  4861. (property "Datasheet" "~" (id 3) (at 284.48 237.49 0)
  4862. (effects (font (size 1.27 1.27)) hide)
  4863. )
  4864. (property "LCSC" "C1591" (id 4) (at 284.48 237.49 0)
  4865. (effects (font (size 1.27 1.27)) hide)
  4866. )
  4867. (property "Digikey" "1276-1935-1-ND" (id 5) (at 284.48 237.49 0)
  4868. (effects (font (size 1.27 1.27)) hide)
  4869. )
  4870. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 284.48 237.49 0)
  4871. (effects (font (size 1.27 1.27)) hide)
  4872. )
  4873. (pin "1" (uuid 2e65c8b8-a3a7-4207-a4c6-ab159b0c890b))
  4874. (pin "2" (uuid 79a2fc97-84ef-4b52-93ec-d9847aacf642))
  4875. )
  4876. (symbol (lib_id "power:+5V") (at 88.9 229.87 0) (unit 1)
  4877. (in_bom yes) (on_board yes)
  4878. (uuid 00000000-0000-0000-0000-000061f5e471)
  4879. (property "Reference" "#PWR0101" (id 0) (at 88.9 233.68 0)
  4880. (effects (font (size 1.27 1.27)) hide)
  4881. )
  4882. (property "Value" "+5V" (id 1) (at 89.281 225.4758 0))
  4883. (property "Footprint" "" (id 2) (at 88.9 229.87 0)
  4884. (effects (font (size 1.27 1.27)) hide)
  4885. )
  4886. (property "Datasheet" "" (id 3) (at 88.9 229.87 0)
  4887. (effects (font (size 1.27 1.27)) hide)
  4888. )
  4889. (pin "1" (uuid 59a13100-a5d0-4346-918b-7d0612ecf423))
  4890. )
  4891. (symbol (lib_id "power:GND") (at 88.9 256.54 0) (unit 1)
  4892. (in_bom yes) (on_board yes)
  4893. (uuid 00000000-0000-0000-0000-000061f5f724)
  4894. (property "Reference" "#PWR0102" (id 0) (at 88.9 262.89 0)
  4895. (effects (font (size 1.27 1.27)) hide)
  4896. )
  4897. (property "Value" "GND" (id 1) (at 89.027 260.9342 0))
  4898. (property "Footprint" "" (id 2) (at 88.9 256.54 0)
  4899. (effects (font (size 1.27 1.27)) hide)
  4900. )
  4901. (property "Datasheet" "" (id 3) (at 88.9 256.54 0)
  4902. (effects (font (size 1.27 1.27)) hide)
  4903. )
  4904. (pin "1" (uuid d060b14c-ff8a-4c92-966f-cf6735c0e13f))
  4905. )
  4906. (symbol (lib_id "Connector:Conn_01x03_Male") (at 398.78 171.45 180) (unit 1)
  4907. (in_bom yes) (on_board yes)
  4908. (uuid 00000000-0000-0000-0000-000061f6e8c0)
  4909. (property "Reference" "J1" (id 0) (at 399.4912 172.0596 0)
  4910. (effects (font (size 1.27 1.27)) (justify right))
  4911. )
  4912. (property "Value" "BLDC" (id 1) (at 399.4912 169.7482 0)
  4913. (effects (font (size 1.27 1.27)) (justify right))
  4914. )
  4915. (property "Footprint" "Molex:532610371" (id 2) (at 398.78 171.45 0)
  4916. (effects (font (size 1.27 1.27)) hide)
  4917. )
  4918. (property "Datasheet" "~" (id 3) (at 398.78 171.45 0)
  4919. (effects (font (size 1.27 1.27)) hide)
  4920. )
  4921. (property "LCSC" "C293630" (id 4) (at 398.78 171.45 0)
  4922. (effects (font (size 1.27 1.27)) hide)
  4923. )
  4924. (property "Digikey" "WM7621CT-ND" (id 5) (at 398.78 171.45 0)
  4925. (effects (font (size 1.27 1.27)) hide)
  4926. )
  4927. (property "Mouser" "538-53261-0371" (id 6) (at 398.78 171.45 0)
  4928. (effects (font (size 1.27 1.27)) hide)
  4929. )
  4930. (pin "1" (uuid 8389195b-356a-44c3-a2e9-7820117d6596))
  4931. (pin "2" (uuid 37202a1b-6857-45c1-82b8-63d2e45accf1))
  4932. (pin "3" (uuid 68266e48-6278-4b4b-9827-471e05208fe8))
  4933. )
  4934. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 120.65 25.4 0) (unit 1)
  4935. (in_bom yes) (on_board yes)
  4936. (uuid 00000000-0000-0000-0000-000061f74a74)
  4937. (property "Reference" "H1" (id 0) (at 119.38 19.05 0)
  4938. (effects (font (size 1.27 1.27)) (justify left))
  4939. )
  4940. (property "Value" "MotorHole" (id 1) (at 119.38 20.32 0)
  4941. (effects (font (size 1.27 1.27)) (justify left))
  4942. )
  4943. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 120.65 25.4 0)
  4944. (effects (font (size 1.27 1.27)) hide)
  4945. )
  4946. (property "Datasheet" "~" (id 3) (at 120.65 25.4 0)
  4947. (effects (font (size 1.27 1.27)) hide)
  4948. )
  4949. (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)
  4950. (effects (font (size 1.27 1.27)) hide)
  4951. )
  4952. (property "LCSC" "C2931389" (id 5) (at 120.65 25.4 0)
  4953. (effects (font (size 1.27 1.27)) hide)
  4954. )
  4955. (pin "1" (uuid fb7e8f26-7381-4b70-9ac7-a6d9d49f6672))
  4956. )
  4957. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 132.08 25.4 0) (unit 1)
  4958. (in_bom yes) (on_board yes)
  4959. (uuid 00000000-0000-0000-0000-000061f75e86)
  4960. (property "Reference" "H2" (id 0) (at 130.81 19.05 0)
  4961. (effects (font (size 1.27 1.27)) (justify left))
  4962. )
  4963. (property "Value" "MotorHole" (id 1) (at 130.81 20.32 0)
  4964. (effects (font (size 1.27 1.27)) (justify left))
  4965. )
  4966. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 132.08 25.4 0)
  4967. (effects (font (size 1.27 1.27)) hide)
  4968. )
  4969. (property "Datasheet" "~" (id 3) (at 132.08 25.4 0)
  4970. (effects (font (size 1.27 1.27)) hide)
  4971. )
  4972. (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)
  4973. (effects (font (size 1.27 1.27)) hide)
  4974. )
  4975. (property "LCSC" "C2931389" (id 5) (at 132.08 25.4 0)
  4976. (effects (font (size 1.27 1.27)) hide)
  4977. )
  4978. (pin "1" (uuid a49a4d82-48bd-42b8-95c9-1c983664fc79))
  4979. )
  4980. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 143.51 25.4 0) (unit 1)
  4981. (in_bom yes) (on_board yes)
  4982. (uuid 00000000-0000-0000-0000-000061f76bf7)
  4983. (property "Reference" "H3" (id 0) (at 142.24 19.05 0)
  4984. (effects (font (size 1.27 1.27)) (justify left))
  4985. )
  4986. (property "Value" "MotorHole" (id 1) (at 142.24 20.32 0)
  4987. (effects (font (size 1.27 1.27)) (justify left))
  4988. )
  4989. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 143.51 25.4 0)
  4990. (effects (font (size 1.27 1.27)) hide)
  4991. )
  4992. (property "Datasheet" "~" (id 3) (at 143.51 25.4 0)
  4993. (effects (font (size 1.27 1.27)) hide)
  4994. )
  4995. (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)
  4996. (effects (font (size 1.27 1.27)) hide)
  4997. )
  4998. (property "LCSC" "C2931389" (id 5) (at 143.51 25.4 0)
  4999. (effects (font (size 1.27 1.27)) hide)
  5000. )
  5001. (pin "1" (uuid f5b3ac78-e150-4b32-bc84-9d75c87fb341))
  5002. )
  5003. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 120.65 40.64 0) (unit 1)
  5004. (in_bom yes) (on_board yes)
  5005. (uuid 00000000-0000-0000-0000-000061f779d1)
  5006. (property "Reference" "H4" (id 0) (at 119.38 34.29 0)
  5007. (effects (font (size 1.27 1.27)) (justify left))
  5008. )
  5009. (property "Value" "MountHole" (id 1) (at 119.38 35.56 0)
  5010. (effects (font (size 1.27 1.27)) (justify left))
  5011. )
  5012. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 120.65 40.64 0)
  5013. (effects (font (size 1.27 1.27)) hide)
  5014. )
  5015. (property "Datasheet" "~" (id 3) (at 120.65 40.64 0)
  5016. (effects (font (size 1.27 1.27)) hide)
  5017. )
  5018. (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)
  5019. (effects (font (size 1.27 1.27)) hide)
  5020. )
  5021. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 120.65 40.64 0)
  5022. (effects (font (size 1.27 1.27)) hide)
  5023. )
  5024. (pin "1" (uuid 2e306457-a203-45bd-8828-39a6fc7884b5))
  5025. )
  5026. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 132.08 40.64 0) (unit 1)
  5027. (in_bom yes) (on_board yes)
  5028. (uuid 00000000-0000-0000-0000-000061f788c4)
  5029. (property "Reference" "H5" (id 0) (at 130.81 34.29 0)
  5030. (effects (font (size 1.27 1.27)) (justify left))
  5031. )
  5032. (property "Value" "MountHole" (id 1) (at 130.81 35.56 0)
  5033. (effects (font (size 1.27 1.27)) (justify left))
  5034. )
  5035. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 132.08 40.64 0)
  5036. (effects (font (size 1.27 1.27)) hide)
  5037. )
  5038. (property "Datasheet" "~" (id 3) (at 132.08 40.64 0)
  5039. (effects (font (size 1.27 1.27)) hide)
  5040. )
  5041. (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)
  5042. (effects (font (size 1.27 1.27)) hide)
  5043. )
  5044. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 132.08 40.64 0)
  5045. (effects (font (size 1.27 1.27)) hide)
  5046. )
  5047. (pin "1" (uuid 4a7017bb-a698-433b-a0be-587786fcc0bb))
  5048. )
  5049. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 143.51 40.64 0) (unit 1)
  5050. (in_bom yes) (on_board yes)
  5051. (uuid 00000000-0000-0000-0000-000061f79385)
  5052. (property "Reference" "H6" (id 0) (at 142.24 34.29 0)
  5053. (effects (font (size 1.27 1.27)) (justify left))
  5054. )
  5055. (property "Value" "MountHole" (id 1) (at 142.24 35.56 0)
  5056. (effects (font (size 1.27 1.27)) (justify left))
  5057. )
  5058. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 143.51 40.64 0)
  5059. (effects (font (size 1.27 1.27)) hide)
  5060. )
  5061. (property "Datasheet" "~" (id 3) (at 143.51 40.64 0)
  5062. (effects (font (size 1.27 1.27)) hide)
  5063. )
  5064. (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)
  5065. (effects (font (size 1.27 1.27)) hide)
  5066. )
  5067. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 143.51 40.64 0)
  5068. (effects (font (size 1.27 1.27)) hide)
  5069. )
  5070. (pin "1" (uuid 1b2eb90f-4916-4496-934c-ebfaf59fd7d2))
  5071. )
  5072. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 154.94 40.64 0) (unit 1)
  5073. (in_bom yes) (on_board yes)
  5074. (uuid 00000000-0000-0000-0000-000061f79f4a)
  5075. (property "Reference" "H7" (id 0) (at 153.67 34.29 0)
  5076. (effects (font (size 1.27 1.27)) (justify left))
  5077. )
  5078. (property "Value" "MountHole" (id 1) (at 153.67 35.56 0)
  5079. (effects (font (size 1.27 1.27)) (justify left))
  5080. )
  5081. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 154.94 40.64 0)
  5082. (effects (font (size 1.27 1.27)) hide)
  5083. )
  5084. (property "Datasheet" "~" (id 3) (at 154.94 40.64 0)
  5085. (effects (font (size 1.27 1.27)) hide)
  5086. )
  5087. (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)
  5088. (effects (font (size 1.27 1.27)) hide)
  5089. )
  5090. (property "LCSC" "C2911210 or C2911532 (screw), C2961595 (nut)" (id 5) (at 154.94 40.64 0)
  5091. (effects (font (size 1.27 1.27)) hide)
  5092. )
  5093. (pin "1" (uuid c18786e1-cb25-48dd-81cc-bf7c7fdf476f))
  5094. )
  5095. (symbol (lib_id "no_pin:no_pin") (at 181.61 21.59 0) (unit 1)
  5096. (in_bom yes) (on_board yes)
  5097. (uuid 00000000-0000-0000-0000-000061fa38cf)
  5098. (property "Reference" "Z1" (id 0) (at 181.61 14.3002 0)
  5099. (effects (font (size 1.524 1.524)))
  5100. )
  5101. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 181.61 16.9926 0)
  5102. (effects (font (size 1.524 1.524)))
  5103. )
  5104. (property "Footprint" "strain:BF350-3AA" (id 2) (at 181.61 21.59 0)
  5105. (effects (font (size 1.524 1.524)) hide)
  5106. )
  5107. (property "Datasheet" "" (id 3) (at 181.61 21.59 0)
  5108. (effects (font (size 1.524 1.524)) hide)
  5109. )
  5110. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 181.61 21.59 0)
  5111. (effects (font (size 1.27 1.27)) hide)
  5112. )
  5113. (property "Digikey" "N/A" (id 5) (at 181.61 21.59 0)
  5114. (effects (font (size 1.27 1.27)) hide)
  5115. )
  5116. (property "LCSC" "N/A" (id 6) (at 181.61 21.59 0)
  5117. (effects (font (size 1.27 1.27)) hide)
  5118. )
  5119. (property "Mouser" "N/A" (id 7) (at 181.61 21.59 0)
  5120. (effects (font (size 1.27 1.27)) hide)
  5121. )
  5122. )
  5123. (symbol (lib_id "no_pin:no_pin") (at 203.2 21.59 0) (unit 1)
  5124. (in_bom yes) (on_board yes)
  5125. (uuid 00000000-0000-0000-0000-000061fa43dc)
  5126. (property "Reference" "Z2" (id 0) (at 203.2 14.3002 0)
  5127. (effects (font (size 1.524 1.524)))
  5128. )
  5129. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 203.2 16.9926 0)
  5130. (effects (font (size 1.524 1.524)))
  5131. )
  5132. (property "Footprint" "strain:BF350-3AA" (id 2) (at 203.2 21.59 0)
  5133. (effects (font (size 1.524 1.524)) hide)
  5134. )
  5135. (property "Datasheet" "" (id 3) (at 203.2 21.59 0)
  5136. (effects (font (size 1.524 1.524)) hide)
  5137. )
  5138. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 203.2 21.59 0)
  5139. (effects (font (size 1.27 1.27)) hide)
  5140. )
  5141. (property "Digikey" "N/A" (id 5) (at 203.2 21.59 0)
  5142. (effects (font (size 1.27 1.27)) hide)
  5143. )
  5144. (property "LCSC" "N/A" (id 6) (at 203.2 21.59 0)
  5145. (effects (font (size 1.27 1.27)) hide)
  5146. )
  5147. (property "Mouser" "N/A" (id 7) (at 203.2 21.59 0)
  5148. (effects (font (size 1.27 1.27)) hide)
  5149. )
  5150. )
  5151. (symbol (lib_id "no_pin:no_pin") (at 224.79 21.59 0) (unit 1)
  5152. (in_bom yes) (on_board yes)
  5153. (uuid 00000000-0000-0000-0000-000061fa4fb7)
  5154. (property "Reference" "Z3" (id 0) (at 224.79 14.3002 0)
  5155. (effects (font (size 1.524 1.524)))
  5156. )
  5157. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 224.79 16.9926 0)
  5158. (effects (font (size 1.524 1.524)))
  5159. )
  5160. (property "Footprint" "strain:BF350-3AA" (id 2) (at 224.79 21.59 0)
  5161. (effects (font (size 1.524 1.524)) hide)
  5162. )
  5163. (property "Datasheet" "" (id 3) (at 224.79 21.59 0)
  5164. (effects (font (size 1.524 1.524)) hide)
  5165. )
  5166. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 224.79 21.59 0)
  5167. (effects (font (size 1.27 1.27)) hide)
  5168. )
  5169. (property "Digikey" "N/A" (id 5) (at 224.79 21.59 0)
  5170. (effects (font (size 1.27 1.27)) hide)
  5171. )
  5172. (property "LCSC" "N/A" (id 6) (at 224.79 21.59 0)
  5173. (effects (font (size 1.27 1.27)) hide)
  5174. )
  5175. (property "Mouser" "N/A" (id 7) (at 224.79 21.59 0)
  5176. (effects (font (size 1.27 1.27)) hide)
  5177. )
  5178. )
  5179. (symbol (lib_id "no_pin:no_pin") (at 246.38 21.59 0) (unit 1)
  5180. (in_bom yes) (on_board yes)
  5181. (uuid 00000000-0000-0000-0000-000061fa5b5e)
  5182. (property "Reference" "Z4" (id 0) (at 246.38 14.3002 0)
  5183. (effects (font (size 1.524 1.524)))
  5184. )
  5185. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 246.38 16.9926 0)
  5186. (effects (font (size 1.524 1.524)))
  5187. )
  5188. (property "Footprint" "strain:BF350-3AA" (id 2) (at 246.38 21.59 0)
  5189. (effects (font (size 1.524 1.524)) hide)
  5190. )
  5191. (property "Datasheet" "" (id 3) (at 246.38 21.59 0)
  5192. (effects (font (size 1.524 1.524)) hide)
  5193. )
  5194. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 246.38 21.59 0)
  5195. (effects (font (size 1.27 1.27)) hide)
  5196. )
  5197. (property "Digikey" "N/A" (id 5) (at 246.38 21.59 0)
  5198. (effects (font (size 1.27 1.27)) hide)
  5199. )
  5200. (property "LCSC" "N/A" (id 6) (at 246.38 21.59 0)
  5201. (effects (font (size 1.27 1.27)) hide)
  5202. )
  5203. (property "Mouser" "N/A" (id 7) (at 246.38 21.59 0)
  5204. (effects (font (size 1.27 1.27)) hide)
  5205. )
  5206. )
  5207. (symbol (lib_id "Connector:USB_C_Receptacle_USB2.0") (at 38.1 76.2 0) (unit 1)
  5208. (in_bom yes) (on_board yes)
  5209. (uuid 00000000-0000-0000-0000-000061fcaa5b)
  5210. (property "Reference" "J2" (id 0) (at 40.8178 54.1782 0))
  5211. (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 40.8178 56.4896 0))
  5212. (property "Footprint" "GCT_USB:USB4510_NoPaste" (id 2) (at 41.91 76.2 0)
  5213. (effects (font (size 1.27 1.27)) hide)
  5214. )
  5215. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 41.91 76.2 0)
  5216. (effects (font (size 1.27 1.27)) hide)
  5217. )
  5218. (property "LCSC" "C428463" (id 4) (at 38.1 76.2 0)
  5219. (effects (font (size 1.27 1.27)) hide)
  5220. )
  5221. (property "Mouser" "640-USB4510031A" (id 5) (at 38.1 76.2 0)
  5222. (effects (font (size 1.27 1.27)) hide)
  5223. )
  5224. (property "Digikey" "USB4510-03-1-A" (id 6) (at 38.1 76.2 0)
  5225. (effects (font (size 1.27 1.27)) hide)
  5226. )
  5227. (pin "A1" (uuid 002f7484-2b7c-4028-a197-c7ee893455cd))
  5228. (pin "A12" (uuid b64072d6-c6a3-480c-b247-ced76a0683e2))
  5229. (pin "A4" (uuid fd650d11-1f43-4a29-b666-0e915ada0015))
  5230. (pin "A5" (uuid 11059d92-63df-44ac-a943-05eabeaf6b3b))
  5231. (pin "A6" (uuid 6ca9a15b-7bed-4718-b87f-cf6cd158c0fb))
  5232. (pin "A7" (uuid 065c4afd-f083-4572-ae73-9f005b8a95bc))
  5233. (pin "A8" (uuid 62bc0e7f-185a-4e68-985e-5d6bf4e3ea4f))
  5234. (pin "A9" (uuid f66ea475-b102-46de-8024-e5ca653f9bf4))
  5235. (pin "B1" (uuid 5baffaf4-808e-4171-9980-10bcb56b2135))
  5236. (pin "B12" (uuid 8781b105-979a-42b2-819f-1b043b4adf27))
  5237. (pin "B4" (uuid fac50c0a-4700-4a91-82d0-1c46b35dca25))
  5238. (pin "B5" (uuid 95895ffd-4330-4c63-aa8a-80105ad94072))
  5239. (pin "B6" (uuid d3c25891-3308-4e1a-81a3-920c152e8483))
  5240. (pin "B7" (uuid ded34583-530c-49a3-9bd1-3387d788ac5f))
  5241. (pin "B8" (uuid bab68279-cb28-4a3f-9bf9-91aaa2b9f18f))
  5242. (pin "B9" (uuid 25af3105-71ee-4af7-8f3c-eb77a7b9280e))
  5243. (pin "S1" (uuid 7214610a-9815-4f4b-85c6-8f2cd1130da1))
  5244. )
  5245. (symbol (lib_id "Device:Q_PNP_BEC") (at 191.77 172.72 180) (unit 1)
  5246. (in_bom yes) (on_board yes)
  5247. (uuid 00000000-0000-0000-0000-000061fe5517)
  5248. (property "Reference" "Q1" (id 0) (at 186.9186 171.5516 0)
  5249. (effects (font (size 1.27 1.27)) (justify left))
  5250. )
  5251. (property "Value" "MMBT4403" (id 1) (at 186.9186 173.863 0)
  5252. (effects (font (size 1.27 1.27)) (justify left))
  5253. )
  5254. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 186.69 175.26 0)
  5255. (effects (font (size 1.27 1.27)) hide)
  5256. )
  5257. (property "Datasheet" "~" (id 3) (at 191.77 172.72 0)
  5258. (effects (font (size 1.27 1.27)) hide)
  5259. )
  5260. (property "LCSC" "C78864" (id 4) (at 191.77 172.72 0)
  5261. (effects (font (size 1.27 1.27)) hide)
  5262. )
  5263. (property "Digikey" "MMBT4403LT1GOSCT-ND" (id 5) (at 191.77 172.72 0)
  5264. (effects (font (size 1.27 1.27)) hide)
  5265. )
  5266. (property "Mouser" "241-MMBT4403R100001" (id 6) (at 191.77 172.72 0)
  5267. (effects (font (size 1.27 1.27)) hide)
  5268. )
  5269. (pin "1" (uuid 161b1717-b29c-4bd9-8a62-3aa7a05da5be))
  5270. (pin "2" (uuid a2db5db7-5865-46a7-aee9-882a62db9f60))
  5271. (pin "3" (uuid 32786941-fff9-4885-b617-e55883187978))
  5272. )
  5273. (symbol (lib_id "power:GND") (at 30.48 104.14 0) (unit 1)
  5274. (in_bom yes) (on_board yes)
  5275. (uuid 00000000-0000-0000-0000-000061fefd56)
  5276. (property "Reference" "#PWR0103" (id 0) (at 30.48 110.49 0)
  5277. (effects (font (size 1.27 1.27)) hide)
  5278. )
  5279. (property "Value" "GND" (id 1) (at 30.607 108.5342 0))
  5280. (property "Footprint" "" (id 2) (at 30.48 104.14 0)
  5281. (effects (font (size 1.27 1.27)) hide)
  5282. )
  5283. (property "Datasheet" "" (id 3) (at 30.48 104.14 0)
  5284. (effects (font (size 1.27 1.27)) hide)
  5285. )
  5286. (pin "1" (uuid 753db779-6d2f-4629-a652-9a47910cf470))
  5287. )
  5288. (symbol (lib_id "Device:R_Small") (at 83.82 68.58 0) (unit 1)
  5289. (in_bom yes) (on_board yes)
  5290. (uuid 00000000-0000-0000-0000-000061ff5247)
  5291. (property "Reference" "R1" (id 0) (at 85.3186 67.4116 0)
  5292. (effects (font (size 1.27 1.27)) (justify left))
  5293. )
  5294. (property "Value" "5.1k" (id 1) (at 85.3186 69.723 0)
  5295. (effects (font (size 1.27 1.27)) (justify left))
  5296. )
  5297. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 83.82 68.58 0)
  5298. (effects (font (size 1.27 1.27)) hide)
  5299. )
  5300. (property "Datasheet" "~" (id 3) (at 83.82 68.58 0)
  5301. (effects (font (size 1.27 1.27)) hide)
  5302. )
  5303. (property "LCSC" "C105580" (id 4) (at 83.82 68.58 0)
  5304. (effects (font (size 1.27 1.27)) hide)
  5305. )
  5306. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 83.82 68.58 0)
  5307. (effects (font (size 1.27 1.27)) hide)
  5308. )
  5309. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 83.82 68.58 0)
  5310. (effects (font (size 1.27 1.27)) hide)
  5311. )
  5312. (pin "1" (uuid 2622f595-7ff0-453e-9b78-19125b1110e8))
  5313. (pin "2" (uuid 7bfd21eb-4ee9-42ce-8900-a93d825953d0))
  5314. )
  5315. (symbol (lib_id "Device:R_Small") (at 77.47 71.12 0) (unit 1)
  5316. (in_bom yes) (on_board yes)
  5317. (uuid 00000000-0000-0000-0000-000061ff59bf)
  5318. (property "Reference" "R2" (id 0) (at 78.9686 69.9516 0)
  5319. (effects (font (size 1.27 1.27)) (justify left))
  5320. )
  5321. (property "Value" "5.1k" (id 1) (at 78.9686 72.263 0)
  5322. (effects (font (size 1.27 1.27)) (justify left))
  5323. )
  5324. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 77.47 71.12 0)
  5325. (effects (font (size 1.27 1.27)) hide)
  5326. )
  5327. (property "Datasheet" "~" (id 3) (at 77.47 71.12 0)
  5328. (effects (font (size 1.27 1.27)) hide)
  5329. )
  5330. (property "LCSC" "C105580" (id 4) (at 77.47 71.12 0)
  5331. (effects (font (size 1.27 1.27)) hide)
  5332. )
  5333. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 77.47 71.12 0)
  5334. (effects (font (size 1.27 1.27)) hide)
  5335. )
  5336. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 77.47 71.12 0)
  5337. (effects (font (size 1.27 1.27)) hide)
  5338. )
  5339. (pin "1" (uuid 03899fc2-7ab8-4d54-82c2-1488f5d9b0d9))
  5340. (pin "2" (uuid acc4d69b-68c3-4d63-9943-16f6eacb0ebc))
  5341. )
  5342. (symbol (lib_id "power:GND") (at 81.28 77.47 0) (unit 1)
  5343. (in_bom yes) (on_board yes)
  5344. (uuid 00000000-0000-0000-0000-000061ff8431)
  5345. (property "Reference" "#PWR0104" (id 0) (at 81.28 83.82 0)
  5346. (effects (font (size 1.27 1.27)) hide)
  5347. )
  5348. (property "Value" "GND" (id 1) (at 81.407 81.8642 0))
  5349. (property "Footprint" "" (id 2) (at 81.28 77.47 0)
  5350. (effects (font (size 1.27 1.27)) hide)
  5351. )
  5352. (property "Datasheet" "" (id 3) (at 81.28 77.47 0)
  5353. (effects (font (size 1.27 1.27)) hide)
  5354. )
  5355. (pin "1" (uuid eb8a3560-5898-4134-bac6-7bb251ee79be))
  5356. )
  5357. (symbol (lib_id "Device:R_Small") (at 184.15 184.15 0) (unit 1)
  5358. (in_bom yes) (on_board yes)
  5359. (uuid 00000000-0000-0000-0000-000061ff8747)
  5360. (property "Reference" "R3" (id 0) (at 185.6486 182.9816 0)
  5361. (effects (font (size 1.27 1.27)) (justify left))
  5362. )
  5363. (property "Value" "10k" (id 1) (at 185.6486 185.293 0)
  5364. (effects (font (size 1.27 1.27)) (justify left))
  5365. )
  5366. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 184.15 0)
  5367. (effects (font (size 1.27 1.27)) hide)
  5368. )
  5369. (property "Datasheet" "~" (id 3) (at 184.15 184.15 0)
  5370. (effects (font (size 1.27 1.27)) hide)
  5371. )
  5372. (property "LCSC" "C98220" (id 4) (at 184.15 184.15 0)
  5373. (effects (font (size 1.27 1.27)) hide)
  5374. )
  5375. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 184.15 184.15 0)
  5376. (effects (font (size 1.27 1.27)) hide)
  5377. )
  5378. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 184.15 184.15 0)
  5379. (effects (font (size 1.27 1.27)) hide)
  5380. )
  5381. (pin "1" (uuid 4d0cb151-be02-460e-84ff-e89488e5e234))
  5382. (pin "2" (uuid 5a7e1875-0a35-41e4-b34e-52ef60ffafd7))
  5383. )
  5384. (symbol (lib_id "Device:R_Small") (at 184.15 191.77 0) (unit 1)
  5385. (in_bom yes) (on_board yes)
  5386. (uuid 00000000-0000-0000-0000-000061fff7fc)
  5387. (property "Reference" "R4" (id 0) (at 185.6486 190.6016 0)
  5388. (effects (font (size 1.27 1.27)) (justify left))
  5389. )
  5390. (property "Value" "8.2k" (id 1) (at 185.6486 192.913 0)
  5391. (effects (font (size 1.27 1.27)) (justify left))
  5392. )
  5393. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 191.77 0)
  5394. (effects (font (size 1.27 1.27)) hide)
  5395. )
  5396. (property "Datasheet" "~" (id 3) (at 184.15 191.77 0)
  5397. (effects (font (size 1.27 1.27)) hide)
  5398. )
  5399. (property "LCSC" "C114637" (id 4) (at 184.15 191.77 0)
  5400. (effects (font (size 1.27 1.27)) hide)
  5401. )
  5402. (property "Digikey" "RMCF0603FT8K20CT-ND" (id 5) (at 184.15 191.77 0)
  5403. (effects (font (size 1.27 1.27)) hide)
  5404. )
  5405. (property "Mouser" "652-CR0603FX-8201ELF" (id 6) (at 184.15 191.77 0)
  5406. (effects (font (size 1.27 1.27)) hide)
  5407. )
  5408. (pin "1" (uuid 4677f77b-9c70-421e-9de7-f775b3529feb))
  5409. (pin "2" (uuid 97568c37-72cd-4f98-87e8-6c89ce613585))
  5410. )
  5411. (symbol (lib_id "lilygo_micro32:T-Micro32_Plus") (at 359.41 50.8 0) (unit 1)
  5412. (in_bom yes) (on_board yes)
  5413. (uuid 00000000-0000-0000-0000-00006200e46e)
  5414. (property "Reference" "U2" (id 0) (at 359.41 26.289 0))
  5415. (property "Value" "T-Micro32_Plus" (id 1) (at 359.41 28.6004 0))
  5416. (property "Footprint" "lilygo_micro32:T-Micro32" (id 2) (at 359.41 50.8 0)
  5417. (effects (font (size 1.27 1.27)) hide)
  5418. )
  5419. (property "Datasheet" "" (id 3) (at 359.41 50.8 0)
  5420. (effects (font (size 1.27 1.27)) hide)
  5421. )
  5422. (property "AliExpress" "https://www.aliexpress.com/item/1005002308952882.html" (id 4) (at 359.41 50.8 0)
  5423. (effects (font (size 1.27 1.27)) hide)
  5424. )
  5425. (property "Digikey" "N/A" (id 5) (at 359.41 50.8 0)
  5426. (effects (font (size 1.27 1.27)) hide)
  5427. )
  5428. (property "LCSC" "N/A" (id 6) (at 359.41 50.8 0)
  5429. (effects (font (size 1.27 1.27)) hide)
  5430. )
  5431. (property "Mouser" "N/A" (id 7) (at 359.41 50.8 0)
  5432. (effects (font (size 1.27 1.27)) hide)
  5433. )
  5434. (pin "1" (uuid 6b3002dd-62c9-4f2a-8c51-d319894ff4a7))
  5435. (pin "10" (uuid 34029f0e-f900-4d7a-9828-197bbcb8268d))
  5436. (pin "11" (uuid cbe5ee8f-62c2-4029-9056-b2f9e38d44f7))
  5437. (pin "12" (uuid 1b39aee1-14bb-4f57-949c-af5946eea388))
  5438. (pin "13" (uuid 0471630c-6e2d-4993-a721-ad6b31523ea6))
  5439. (pin "14" (uuid c28a02b8-543d-4b71-94f5-b4f7fb82f2a4))
  5440. (pin "15" (uuid bfdd06e2-88b3-46c3-90e9-61feb9373e52))
  5441. (pin "16" (uuid e55179bd-83e9-4012-8409-5f9273ff012b))
  5442. (pin "17" (uuid e5d566b5-604a-4348-bb23-43d85bcaf394))
  5443. (pin "18" (uuid 3f337261-bd0b-4a3c-af5d-41e4f20b8d2b))
  5444. (pin "19" (uuid 89b4a707-c1ed-4546-9194-77a5268f4f37))
  5445. (pin "2" (uuid 6eb210e6-2a55-4bbe-b437-8097f6ba8718))
  5446. (pin "20" (uuid 70335fd6-e8f4-4775-9886-57d960327617))
  5447. (pin "21" (uuid 89a0ce78-20ea-4c37-a2a1-821844b77b5d))
  5448. (pin "22" (uuid 5c99a6ab-e247-47b9-aa50-cb98a25ea96f))
  5449. (pin "23" (uuid a6891bb5-a357-4c05-8e0e-ce8ff96bc5b7))
  5450. (pin "24" (uuid 89c5080f-2ff3-46dd-9810-2d1cc5f0678f))
  5451. (pin "25" (uuid a0f7b4f1-b832-4e8c-a8da-e907a365d7c9))
  5452. (pin "26" (uuid d462d3d3-f72d-4da5-ba63-9581787e3cbc))
  5453. (pin "27" (uuid 73a6877f-e142-4c8a-9931-2019ad27bde0))
  5454. (pin "28" (uuid da72a49f-1d98-4ec6-a8da-2d113d494eac))
  5455. (pin "29" (uuid f0f06ae3-1e13-44be-bb4c-cd708e56fb43))
  5456. (pin "3" (uuid 502a5913-ee24-401f-9f1a-9d3a372ca6ac))
  5457. (pin "30" (uuid 9ea0d503-4d4d-4c1c-90df-744a6489c595))
  5458. (pin "31" (uuid 9d64d986-5464-4a8c-99c0-33609c2bcbc0))
  5459. (pin "32" (uuid da16f818-0e37-4603-a547-ed7df9a96452))
  5460. (pin "33" (uuid b7f33759-9c41-4f21-9251-82c96e55b33c))
  5461. (pin "34" (uuid 8078e752-010a-4a6c-9826-0a04781deb71))
  5462. (pin "35" (uuid a908c14e-8db0-43d6-ad9e-7bc7cd7d2260))
  5463. (pin "36" (uuid 7e6bef7f-a70d-4c13-b4df-61d4bdc1257a))
  5464. (pin "37" (uuid 2c427024-ca14-4429-b693-ea483e491065))
  5465. (pin "38" (uuid 1da88dc4-5345-4e0d-a84c-400631092f11))
  5466. (pin "4" (uuid bbc62690-b8fb-438a-8ee0-c77d65956f89))
  5467. (pin "5" (uuid bb690633-a2d8-45d8-8d80-85ce2f66f3a7))
  5468. (pin "6" (uuid aa67310a-259a-4b0d-8870-2ee279e7e79a))
  5469. (pin "7" (uuid 6eaf2310-87a6-4b9a-92e8-35debbcaa5b5))
  5470. (pin "8" (uuid d7b0be32-8a7e-4951-abf9-98542738f8f1))
  5471. (pin "9" (uuid 82fd1409-968b-41c3-be8c-cb2561ea3ffe))
  5472. )
  5473. (symbol (lib_id "Device:L_Small") (at 173.99 181.61 270) (unit 1)
  5474. (in_bom yes) (on_board yes)
  5475. (uuid 00000000-0000-0000-0000-00006200e5de)
  5476. (property "Reference" "L1" (id 0) (at 173.99 177.0126 90))
  5477. (property "Value" "3.3uH" (id 1) (at 173.99 179.324 90))
  5478. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 173.99 181.61 0)
  5479. (effects (font (size 1.27 1.27)) hide)
  5480. )
  5481. (property "Datasheet" "~" (id 3) (at 173.99 181.61 0)
  5482. (effects (font (size 1.27 1.27)) hide)
  5483. )
  5484. (property "LCSC" "C307744" (id 4) (at 173.99 181.61 0)
  5485. (effects (font (size 1.27 1.27)) hide)
  5486. )
  5487. (property "Digikey" "445-6394-1-ND" (id 5) (at 173.99 181.61 0)
  5488. (effects (font (size 1.27 1.27)) hide)
  5489. )
  5490. (property "Mouser" "810-MLZ2012A3R3WT000" (id 6) (at 173.99 181.61 0)
  5491. (effects (font (size 1.27 1.27)) hide)
  5492. )
  5493. (pin "1" (uuid 89283502-e13e-4c58-93fe-0e0a0b4dc0b5))
  5494. (pin "2" (uuid 7eb55f38-c35e-457a-b1e4-b1dae5d70338))
  5495. )
  5496. (symbol (lib_id "Device:C_Small") (at 167.64 184.15 0) (unit 1)
  5497. (in_bom yes) (on_board yes)
  5498. (uuid 00000000-0000-0000-0000-0000620172ce)
  5499. (property "Reference" "C19" (id 0) (at 169.9768 182.9816 0)
  5500. (effects (font (size 1.27 1.27)) (justify left))
  5501. )
  5502. (property "Value" "0.1uF" (id 1) (at 169.9768 185.293 0)
  5503. (effects (font (size 1.27 1.27)) (justify left))
  5504. )
  5505. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 167.64 184.15 0)
  5506. (effects (font (size 1.27 1.27)) hide)
  5507. )
  5508. (property "Datasheet" "~" (id 3) (at 167.64 184.15 0)
  5509. (effects (font (size 1.27 1.27)) hide)
  5510. )
  5511. (property "LCSC" "C1591" (id 4) (at 167.64 184.15 0)
  5512. (effects (font (size 1.27 1.27)) hide)
  5513. )
  5514. (property "Digikey" "1276-1935-1-ND" (id 5) (at 167.64 184.15 0)
  5515. (effects (font (size 1.27 1.27)) hide)
  5516. )
  5517. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 167.64 184.15 0)
  5518. (effects (font (size 1.27 1.27)) hide)
  5519. )
  5520. (pin "1" (uuid 3e488e92-bddd-4d44-95f8-53f1899959b3))
  5521. (pin "2" (uuid e97a138c-907f-4ac2-909d-5420774bbc49))
  5522. )
  5523. (symbol (lib_id "Interface_USB:CH340C") (at 121.92 77.47 0) (unit 1)
  5524. (in_bom yes) (on_board yes)
  5525. (uuid 00000000-0000-0000-0000-0000620180e0)
  5526. (property "Reference" "U3" (id 0) (at 114.3 57.15 0))
  5527. (property "Value" "CH340C" (id 1) (at 118.11 81.28 0))
  5528. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 123.19 91.44 0)
  5529. (effects (font (size 1.27 1.27)) (justify left) hide)
  5530. )
  5531. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/Jiangsu-Qin-Heng-CH340C_C84681.pdf" (id 3) (at 113.03 57.15 0)
  5532. (effects (font (size 1.27 1.27)) hide)
  5533. )
  5534. (property "LCSC" "C84681" (id 4) (at 121.92 77.47 0)
  5535. (effects (font (size 1.27 1.27)) hide)
  5536. )
  5537. (property "Digikey" "N/A" (id 5) (at 121.92 77.47 0)
  5538. (effects (font (size 1.27 1.27)) hide)
  5539. )
  5540. (property "Mouser" "N/A" (id 6) (at 121.92 77.47 0)
  5541. (effects (font (size 1.27 1.27)) hide)
  5542. )
  5543. (pin "1" (uuid ec1f1e1b-be42-4866-9a6b-b89e6e88f2c5))
  5544. (pin "10" (uuid 44d072f9-64e1-459e-80d1-c82fa5b6cb3e))
  5545. (pin "11" (uuid 181a4764-a462-4b4f-82ec-35df94857db0))
  5546. (pin "12" (uuid 05f453e1-e6ac-4725-ac6f-c737cb237871))
  5547. (pin "13" (uuid ec54d593-d947-40d5-9ce4-01090f07d42f))
  5548. (pin "14" (uuid 016969ab-09a8-471c-ace6-1bdaa379b509))
  5549. (pin "15" (uuid f12847bd-98ae-41f9-b585-95021b3ae723))
  5550. (pin "16" (uuid d539fbf6-d474-41de-bda0-19ba022ca66a))
  5551. (pin "2" (uuid df232253-71d7-4d83-a4f3-12da054a77bd))
  5552. (pin "3" (uuid 40950b1d-ca89-4396-b2fc-a613e266e57c))
  5553. (pin "4" (uuid be6525b4-e91c-443a-b608-161699ca5e45))
  5554. (pin "5" (uuid daf121ec-2c00-4e96-96aa-2bc6f7a0fed5))
  5555. (pin "6" (uuid 070365ef-242a-4d41-bc0a-b8ed9b91feca))
  5556. (pin "7" (uuid 76011dd7-642b-438a-bb90-b324383a7851))
  5557. (pin "8" (uuid 5e597a99-b966-40ca-93cf-60af0be59632))
  5558. (pin "9" (uuid 62785fc4-216d-4983-9ac2-0f8d21d68772))
  5559. )
  5560. (symbol (lib_id "Device:C_Small") (at 158.75 184.15 0) (unit 1)
  5561. (in_bom yes) (on_board yes)
  5562. (uuid 00000000-0000-0000-0000-0000620191b6)
  5563. (property "Reference" "C18" (id 0) (at 161.0868 182.9816 0)
  5564. (effects (font (size 1.27 1.27)) (justify left))
  5565. )
  5566. (property "Value" "10uF" (id 1) (at 161.0868 185.293 0)
  5567. (effects (font (size 1.27 1.27)) (justify left))
  5568. )
  5569. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 158.75 184.15 0)
  5570. (effects (font (size 1.27 1.27)) hide)
  5571. )
  5572. (property "Datasheet" "~" (id 3) (at 158.75 184.15 0)
  5573. (effects (font (size 1.27 1.27)) hide)
  5574. )
  5575. (property "LCSC" "C2922480" (id 4) (at 158.75 184.15 0)
  5576. (effects (font (size 1.27 1.27)) hide)
  5577. )
  5578. (property "Digikey" "1276-2891-1-ND" (id 5) (at 158.75 184.15 0)
  5579. (effects (font (size 1.27 1.27)) hide)
  5580. )
  5581. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 158.75 184.15 0)
  5582. (effects (font (size 1.27 1.27)) hide)
  5583. )
  5584. (pin "1" (uuid dbf73e11-83bc-47c4-99f5-3e855a0a071c))
  5585. (pin "2" (uuid 19b5ceaf-8af8-44bc-8898-82006d249547))
  5586. )
  5587. (symbol (lib_id "strain:HX711") (at 219.71 184.15 0) (unit 1)
  5588. (in_bom yes) (on_board yes)
  5589. (uuid 00000000-0000-0000-0000-00006201f11d)
  5590. (property "Reference" "U4" (id 0) (at 219.71 168.529 0))
  5591. (property "Value" "HX711" (id 1) (at 219.71 170.8404 0))
  5592. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 219.71 184.15 0)
  5593. (effects (font (size 1.27 1.27)) hide)
  5594. )
  5595. (property "Datasheet" "" (id 3) (at 219.71 184.15 0)
  5596. (effects (font (size 1.27 1.27)) hide)
  5597. )
  5598. (property "LCSC" "C43656" (id 4) (at 219.71 184.15 0)
  5599. (effects (font (size 1.27 1.27)) hide)
  5600. )
  5601. (property "Digikey" "N/A" (id 5) (at 219.71 184.15 0)
  5602. (effects (font (size 1.27 1.27)) hide)
  5603. )
  5604. (property "Mouser" "N/A" (id 6) (at 219.71 184.15 0)
  5605. (effects (font (size 1.27 1.27)) hide)
  5606. )
  5607. (pin "1" (uuid 4c48b2b5-5c1e-416c-8af1-9cc6f401041e))
  5608. (pin "10" (uuid 96915e8f-9a52-4410-9b54-bd771f6667c3))
  5609. (pin "11" (uuid 5a56abc4-5b25-4c88-97db-344566c9d379))
  5610. (pin "12" (uuid a424f5d1-34b1-460e-a454-2b7a281b3e10))
  5611. (pin "13" (uuid 936dbf09-d873-41f3-8551-53d6b8cd1ca4))
  5612. (pin "14" (uuid 28c18f4a-6fb8-44d9-9ab6-d3b8ee57c978))
  5613. (pin "15" (uuid 8f9eeb33-e286-45d9-8587-d74e21ad9770))
  5614. (pin "16" (uuid 66308b32-b4c1-4428-8c3f-a86bbc2c13ef))
  5615. (pin "2" (uuid f6c4fb2e-1560-4c98-a4da-d3f3f074bd57))
  5616. (pin "3" (uuid 7f4b0aee-a094-47eb-84a1-4d76eed7332a))
  5617. (pin "4" (uuid 8dbb934a-5586-4bd6-9d1a-9db3e71dd096))
  5618. (pin "5" (uuid 50f92996-a571-4b51-bd1a-6d9c37fd2a8b))
  5619. (pin "6" (uuid 590fc34e-a1ee-43b2-8622-3dfce47b0067))
  5620. (pin "7" (uuid c6d1a5ed-a9f5-400d-9242-15501f9eaaf7))
  5621. (pin "8" (uuid e108e200-0dd3-49db-8f09-dd357f2187a6))
  5622. (pin "9" (uuid 660feb2f-ed14-424b-9bf2-c6c2c987a377))
  5623. )
  5624. (symbol (lib_id "Trinamic:TMC6300") (at 364.49 189.23 0) (unit 1)
  5625. (in_bom yes) (on_board yes)
  5626. (uuid 00000000-0000-0000-0000-0000620241db)
  5627. (property "Reference" "U5" (id 0) (at 364.49 162.179 0))
  5628. (property "Value" "TMC6300" (id 1) (at 364.49 164.4904 0))
  5629. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 364.49 189.23 0)
  5630. (effects (font (size 1.27 1.27)) hide)
  5631. )
  5632. (property "Datasheet" "" (id 3) (at 364.49 189.23 0)
  5633. (effects (font (size 1.27 1.27)) hide)
  5634. )
  5635. (property "Digikey" "TMC6300-LA-T" (id 4) (at 364.49 189.23 0)
  5636. (effects (font (size 1.27 1.27)) hide)
  5637. )
  5638. (property "Mouser" "700-TMC6300-LA" (id 5) (at 364.49 189.23 0)
  5639. (effects (font (size 1.27 1.27)) hide)
  5640. )
  5641. (property "LCSC" "N/A" (id 6) (at 364.49 189.23 0)
  5642. (effects (font (size 1.27 1.27)) hide)
  5643. )
  5644. (pin "1" (uuid 79073c57-46e7-4396-b557-04a02bba0109))
  5645. (pin "10" (uuid ebccd30a-0414-47c3-9936-1d7844f4f6af))
  5646. (pin "11" (uuid ed1b0183-04a2-4cb7-a1a1-20d3a3e82dac))
  5647. (pin "12" (uuid c95b1c20-2052-4a82-9eda-ca9913f1f1b1))
  5648. (pin "13" (uuid 0d0bad9e-9a17-4232-95e2-1777d4b18542))
  5649. (pin "14" (uuid 51bb1c8d-78ec-4290-a93e-a43f4c748f96))
  5650. (pin "15" (uuid c924c1fa-6f69-4c8e-9fab-25fcfa9314ce))
  5651. (pin "16" (uuid dfe691f4-6238-4df2-b80f-62dd5c318974))
  5652. (pin "17" (uuid 135e0385-0438-4b6b-a16a-b2a87c07c49c))
  5653. (pin "18" (uuid 322f22ee-7049-4600-ba35-723eb2cb910d))
  5654. (pin "19" (uuid ebf551f3-3279-4b51-a4ff-85b30e1da558))
  5655. (pin "2" (uuid e41afad5-564e-4b4b-8792-e404cb358545))
  5656. (pin "20" (uuid b9ef4c66-f0a7-428d-ab36-6d0f1a1d0ce2))
  5657. (pin "3" (uuid 5640b998-b28c-4be1-808e-1d6b0cc9509e))
  5658. (pin "4" (uuid aafb4786-bfee-4885-b52c-c4e0221e8073))
  5659. (pin "5" (uuid f1d3d319-55eb-465b-a886-dd1a7bf3a652))
  5660. (pin "6" (uuid 74866e02-9bb1-44c6-9ec8-5e2d99aac1e7))
  5661. (pin "7" (uuid 4991f4b1-e65c-440a-b6db-5dfc5cb33d4f))
  5662. (pin "8" (uuid 10d6bece-2fe2-4e9c-951c-ce0f71bb10fc))
  5663. (pin "9" (uuid 34e599a4-b6fd-4f18-ad63-44c4b0648740))
  5664. (pin "PAD" (uuid b90e91c0-3cef-4715-81b4-93ed637f5b12))
  5665. )
  5666. (symbol (lib_id "no_pin:no_pin") (at 181.61 33.02 0) (unit 1)
  5667. (in_bom yes) (on_board yes)
  5668. (uuid 00000000-0000-0000-0000-000062038103)
  5669. (property "Reference" "Z5" (id 0) (at 181.61 25.7302 0)
  5670. (effects (font (size 1.524 1.524)))
  5671. )
  5672. (property "Value" "dummy_keepouts" (id 1) (at 181.61 28.4226 0)
  5673. (effects (font (size 1.524 1.524)))
  5674. )
  5675. (property "Footprint" "view_custom:ViewKeepouts3d" (id 2) (at 181.61 33.02 0)
  5676. (effects (font (size 1.524 1.524)) hide)
  5677. )
  5678. (property "Datasheet" "" (id 3) (at 181.61 33.02 0)
  5679. (effects (font (size 1.524 1.524)) hide)
  5680. )
  5681. )
  5682. (symbol (lib_id "Regulator_Linear:AP7361C-33E") (at 91.44 19.05 0) (unit 1)
  5683. (in_bom yes) (on_board yes)
  5684. (uuid 00000000-0000-0000-0000-00006203d4f8)
  5685. (property "Reference" "U6" (id 0) (at 100.33 24.13 0))
  5686. (property "Value" "AP2114HA-3.3" (id 1) (at 101.6 26.67 0))
  5687. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 91.44 13.97 0)
  5688. (effects (font (size 1.27 1.27)) hide)
  5689. )
  5690. (property "Datasheet" "" (id 3) (at 93.98 25.4 0)
  5691. (effects (font (size 1.27 1.27)) hide)
  5692. )
  5693. (property "LCSC" "C460314" (id 4) (at 91.44 19.05 0)
  5694. (effects (font (size 1.27 1.27)) hide)
  5695. )
  5696. (property "Digikey" "AP2114HA-3.3TRG1DICT-ND, or MIC39100-3.3WS-CT-ND" (id 5) (at 91.44 19.05 0)
  5697. (effects (font (size 1.27 1.27)) hide)
  5698. )
  5699. (property "Mouser" "621-AP2114HA-3.3TRG1" (id 6) (at 91.44 19.05 0)
  5700. (effects (font (size 1.27 1.27)) hide)
  5701. )
  5702. (property "Note" "Populate either U6 or U9 - depending on pinout - but not both!" (id 7) (at 91.44 19.05 0)
  5703. (effects (font (size 1.27 1.27)) hide)
  5704. )
  5705. (pin "1" (uuid 4f09cb32-5a0c-4f44-89e2-81335d9dbf63))
  5706. (pin "2" (uuid fa8be394-74cd-4d9b-8e36-cbc87a934488))
  5707. (pin "3" (uuid 2b471bad-edbf-44fe-a5a3-8940bcf5d975))
  5708. )
  5709. (symbol (lib_id "power:GND") (at 29.21 40.64 0) (unit 1)
  5710. (in_bom yes) (on_board yes)
  5711. (uuid 00000000-0000-0000-0000-00006204bf3e)
  5712. (property "Reference" "#PWR0105" (id 0) (at 29.21 46.99 0)
  5713. (effects (font (size 1.27 1.27)) hide)
  5714. )
  5715. (property "Value" "GND" (id 1) (at 29.337 45.0342 0))
  5716. (property "Footprint" "" (id 2) (at 29.21 40.64 0)
  5717. (effects (font (size 1.27 1.27)) hide)
  5718. )
  5719. (property "Datasheet" "" (id 3) (at 29.21 40.64 0)
  5720. (effects (font (size 1.27 1.27)) hide)
  5721. )
  5722. (pin "1" (uuid d508eea5-eaef-4fbc-840e-49d8a9aeab5b))
  5723. )
  5724. (symbol (lib_id "Device:C_Small") (at 22.86 33.02 0) (unit 1)
  5725. (in_bom yes) (on_board yes)
  5726. (uuid 00000000-0000-0000-0000-0000620545dc)
  5727. (property "Reference" "C9" (id 0) (at 16.51 31.75 0)
  5728. (effects (font (size 1.27 1.27)) (justify left))
  5729. )
  5730. (property "Value" "10uF" (id 1) (at 16.51 34.29 0)
  5731. (effects (font (size 1.27 1.27)) (justify left))
  5732. )
  5733. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 22.86 33.02 0)
  5734. (effects (font (size 1.27 1.27)) hide)
  5735. )
  5736. (property "Datasheet" "~" (id 3) (at 22.86 33.02 0)
  5737. (effects (font (size 1.27 1.27)) hide)
  5738. )
  5739. (property "LCSC" "C2922480" (id 4) (at 22.86 33.02 0)
  5740. (effects (font (size 1.27 1.27)) hide)
  5741. )
  5742. (property "Digikey" "1276-2891-1-ND" (id 5) (at 22.86 33.02 0)
  5743. (effects (font (size 1.27 1.27)) hide)
  5744. )
  5745. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 22.86 33.02 0)
  5746. (effects (font (size 1.27 1.27)) hide)
  5747. )
  5748. (pin "1" (uuid d98776c4-2262-4384-80a2-9ef8792f7c0b))
  5749. (pin "2" (uuid 149d67ae-cae8-40d5-9531-44ab97286a5f))
  5750. )
  5751. (symbol (lib_id "Device:C_Small") (at 36.83 33.02 0) (unit 1)
  5752. (in_bom yes) (on_board yes)
  5753. (uuid 00000000-0000-0000-0000-0000620581b5)
  5754. (property "Reference" "C10" (id 0) (at 39.1668 31.8516 0)
  5755. (effects (font (size 1.27 1.27)) (justify left))
  5756. )
  5757. (property "Value" "10uF" (id 1) (at 39.1668 34.163 0)
  5758. (effects (font (size 1.27 1.27)) (justify left))
  5759. )
  5760. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 36.83 33.02 0)
  5761. (effects (font (size 1.27 1.27)) hide)
  5762. )
  5763. (property "Datasheet" "~" (id 3) (at 36.83 33.02 0)
  5764. (effects (font (size 1.27 1.27)) hide)
  5765. )
  5766. (property "LCSC" "C2922480" (id 4) (at 36.83 33.02 0)
  5767. (effects (font (size 1.27 1.27)) hide)
  5768. )
  5769. (property "Digikey" "1276-2891-1-ND" (id 5) (at 36.83 33.02 0)
  5770. (effects (font (size 1.27 1.27)) hide)
  5771. )
  5772. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 36.83 33.02 0)
  5773. (effects (font (size 1.27 1.27)) hide)
  5774. )
  5775. (pin "1" (uuid 9fdc8848-47b8-4f5a-a420-f4c378d4d673))
  5776. (pin "2" (uuid 2592fd2e-0efe-462f-93ce-ac796f2c2a71))
  5777. )
  5778. (symbol (lib_id "power:+3.3V") (at 36.83 25.4 0) (unit 1)
  5779. (in_bom yes) (on_board yes)
  5780. (uuid 00000000-0000-0000-0000-00006205ee7e)
  5781. (property "Reference" "#PWR0106" (id 0) (at 36.83 29.21 0)
  5782. (effects (font (size 1.27 1.27)) hide)
  5783. )
  5784. (property "Value" "+3.3V" (id 1) (at 37.211 21.0058 0))
  5785. (property "Footprint" "" (id 2) (at 36.83 25.4 0)
  5786. (effects (font (size 1.27 1.27)) hide)
  5787. )
  5788. (property "Datasheet" "" (id 3) (at 36.83 25.4 0)
  5789. (effects (font (size 1.27 1.27)) hide)
  5790. )
  5791. (pin "1" (uuid 7a5b9e09-1bda-4ff7-851e-759e442c212e))
  5792. )
  5793. (symbol (lib_id "power:+3.3V") (at 189.23 160.02 0) (unit 1)
  5794. (in_bom yes) (on_board yes)
  5795. (uuid 00000000-0000-0000-0000-0000620606f7)
  5796. (property "Reference" "#PWR0116" (id 0) (at 189.23 163.83 0)
  5797. (effects (font (size 1.27 1.27)) hide)
  5798. )
  5799. (property "Value" "+3.3V" (id 1) (at 189.611 155.6258 0))
  5800. (property "Footprint" "" (id 2) (at 189.23 160.02 0)
  5801. (effects (font (size 1.27 1.27)) hide)
  5802. )
  5803. (property "Datasheet" "" (id 3) (at 189.23 160.02 0)
  5804. (effects (font (size 1.27 1.27)) hide)
  5805. )
  5806. (pin "1" (uuid 52f95826-77fa-45a0-90f2-08a39c194e57))
  5807. )
  5808. (symbol (lib_id "Device:C_Small") (at 172.72 165.1 0) (unit 1)
  5809. (in_bom yes) (on_board yes)
  5810. (uuid 00000000-0000-0000-0000-000062060ff5)
  5811. (property "Reference" "C16" (id 0) (at 175.0568 163.9316 0)
  5812. (effects (font (size 1.27 1.27)) (justify left))
  5813. )
  5814. (property "Value" "10uF" (id 1) (at 175.0568 166.243 0)
  5815. (effects (font (size 1.27 1.27)) (justify left))
  5816. )
  5817. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 172.72 165.1 0)
  5818. (effects (font (size 1.27 1.27)) hide)
  5819. )
  5820. (property "Datasheet" "~" (id 3) (at 172.72 165.1 0)
  5821. (effects (font (size 1.27 1.27)) hide)
  5822. )
  5823. (property "LCSC" "C2922480" (id 4) (at 172.72 165.1 0)
  5824. (effects (font (size 1.27 1.27)) hide)
  5825. )
  5826. (property "Digikey" "1276-2891-1-ND" (id 5) (at 172.72 165.1 0)
  5827. (effects (font (size 1.27 1.27)) hide)
  5828. )
  5829. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 172.72 165.1 0)
  5830. (effects (font (size 1.27 1.27)) hide)
  5831. )
  5832. (pin "1" (uuid d553cc01-d5e4-42f9-acdb-7c87d03d3ab9))
  5833. (pin "2" (uuid dbdb625a-6ae2-4268-896f-11debd628c4f))
  5834. )
  5835. (symbol (lib_id "Device:C_Small") (at 27.94 194.31 0) (unit 1)
  5836. (in_bom yes) (on_board yes)
  5837. (uuid 00000000-0000-0000-0000-000062066b6d)
  5838. (property "Reference" "C20" (id 0) (at 30.2768 193.1416 0)
  5839. (effects (font (size 1.27 1.27)) (justify left))
  5840. )
  5841. (property "Value" "0.1uF" (id 1) (at 30.2768 195.453 0)
  5842. (effects (font (size 1.27 1.27)) (justify left))
  5843. )
  5844. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 27.94 194.31 0)
  5845. (effects (font (size 1.27 1.27)) hide)
  5846. )
  5847. (property "Datasheet" "~" (id 3) (at 27.94 194.31 0)
  5848. (effects (font (size 1.27 1.27)) hide)
  5849. )
  5850. (property "LCSC" "C1591" (id 4) (at 27.94 194.31 0)
  5851. (effects (font (size 1.27 1.27)) hide)
  5852. )
  5853. (property "Digikey" "1276-1935-1-ND" (id 5) (at 27.94 194.31 0)
  5854. (effects (font (size 1.27 1.27)) hide)
  5855. )
  5856. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 27.94 194.31 0)
  5857. (effects (font (size 1.27 1.27)) hide)
  5858. )
  5859. (pin "1" (uuid a81f00c9-55ed-4851-af0e-6377a9975736))
  5860. (pin "2" (uuid 4de8b7be-07f1-404c-8a88-482f6237258c))
  5861. )
  5862. (symbol (lib_id "Logic_LevelTranslator:SN74LV1T34DBV") (at 43.18 242.57 0) (unit 1)
  5863. (in_bom yes) (on_board yes)
  5864. (uuid 00000000-0000-0000-0000-0000620700a0)
  5865. (property "Reference" "U7" (id 0) (at 41.91 229.87 0)
  5866. (effects (font (size 1.27 1.27)) (justify left))
  5867. )
  5868. (property "Value" "SN74LV1T34DBV" (id 1) (at 35.56 232.41 0)
  5869. (effects (font (size 1.27 1.27)) (justify left))
  5870. )
  5871. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 59.69 248.92 0)
  5872. (effects (font (size 1.27 1.27)) hide)
  5873. )
  5874. (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at 33.02 247.65 0)
  5875. (effects (font (size 1.27 1.27)) hide)
  5876. )
  5877. (property "LCSC" "C100024" (id 4) (at 43.18 242.57 0)
  5878. (effects (font (size 1.27 1.27)) hide)
  5879. )
  5880. (property "Digikey" "296-37176-1-ND" (id 5) (at 43.18 242.57 0)
  5881. (effects (font (size 1.27 1.27)) hide)
  5882. )
  5883. (property "Mouser" "595-SN74LV1T34DBVR" (id 6) (at 43.18 242.57 0)
  5884. (effects (font (size 1.27 1.27)) hide)
  5885. )
  5886. (pin "1" (uuid bd52c8b7-35b1-46ab-bbd9-f9255e8ba474))
  5887. (pin "2" (uuid b0290cba-1c3c-48c0-a9bc-215e7d25968b))
  5888. (pin "3" (uuid 3fd557e1-bf68-4805-b4ea-17079bc0f2ca))
  5889. (pin "4" (uuid 71d384ef-6541-4d3f-8e57-b50845e9c714))
  5890. (pin "5" (uuid 6f9ff052-6887-4fbe-a989-d0b4f028936c))
  5891. )
  5892. (symbol (lib_id "Connector:TestPoint_Small") (at 19.05 26.67 180) (unit 1)
  5893. (in_bom yes) (on_board yes)
  5894. (uuid 00000000-0000-0000-0000-0000620734a8)
  5895. (property "Reference" "TP1" (id 0) (at 17.8308 27.8384 0)
  5896. (effects (font (size 1.27 1.27)) (justify left))
  5897. )
  5898. (property "Value" "5V" (id 1) (at 17.78 25.4 0)
  5899. (effects (font (size 1.27 1.27)) (justify left))
  5900. )
  5901. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 13.97 26.67 0)
  5902. (effects (font (size 1.27 1.27)) hide)
  5903. )
  5904. (property "Datasheet" "~" (id 3) (at 13.97 26.67 0)
  5905. (effects (font (size 1.27 1.27)) hide)
  5906. )
  5907. (pin "1" (uuid 13663e45-ff00-48c9-a1f3-53ce577f0583))
  5908. )
  5909. (symbol (lib_id "Device:C_Small") (at 30.48 237.49 0) (unit 1)
  5910. (in_bom yes) (on_board yes)
  5911. (uuid 00000000-0000-0000-0000-000062078a75)
  5912. (property "Reference" "C29" (id 0) (at 32.8168 236.3216 0)
  5913. (effects (font (size 1.27 1.27)) (justify left))
  5914. )
  5915. (property "Value" "0.1uF" (id 1) (at 32.8168 238.633 0)
  5916. (effects (font (size 1.27 1.27)) (justify left))
  5917. )
  5918. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 30.48 237.49 0)
  5919. (effects (font (size 1.27 1.27)) hide)
  5920. )
  5921. (property "Datasheet" "~" (id 3) (at 30.48 237.49 0)
  5922. (effects (font (size 1.27 1.27)) hide)
  5923. )
  5924. (property "LCSC" "C1591" (id 4) (at 30.48 237.49 0)
  5925. (effects (font (size 1.27 1.27)) hide)
  5926. )
  5927. (property "Digikey" "1276-1935-1-ND" (id 5) (at 30.48 237.49 0)
  5928. (effects (font (size 1.27 1.27)) hide)
  5929. )
  5930. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 30.48 237.49 0)
  5931. (effects (font (size 1.27 1.27)) hide)
  5932. )
  5933. (pin "1" (uuid 3c273b2a-2c92-4c14-a97a-48cecf1c34d7))
  5934. (pin "2" (uuid 6eea4de7-227d-40d6-acc1-1620ef137fa5))
  5935. )
  5936. (symbol (lib_id "power:+5V") (at 30.48 229.87 0) (unit 1)
  5937. (in_bom yes) (on_board yes)
  5938. (uuid 00000000-0000-0000-0000-000062078a82)
  5939. (property "Reference" "#PWR0133" (id 0) (at 30.48 233.68 0)
  5940. (effects (font (size 1.27 1.27)) hide)
  5941. )
  5942. (property "Value" "+5V" (id 1) (at 30.861 225.4758 0))
  5943. (property "Footprint" "" (id 2) (at 30.48 229.87 0)
  5944. (effects (font (size 1.27 1.27)) hide)
  5945. )
  5946. (property "Datasheet" "" (id 3) (at 30.48 229.87 0)
  5947. (effects (font (size 1.27 1.27)) hide)
  5948. )
  5949. (pin "1" (uuid 93980984-2fb8-43a1-85bb-eca986ca7ba2))
  5950. )
  5951. (symbol (lib_id "power:GND") (at 30.48 256.54 0) (unit 1)
  5952. (in_bom yes) (on_board yes)
  5953. (uuid 00000000-0000-0000-0000-000062078a89)
  5954. (property "Reference" "#PWR0134" (id 0) (at 30.48 262.89 0)
  5955. (effects (font (size 1.27 1.27)) hide)
  5956. )
  5957. (property "Value" "GND" (id 1) (at 30.607 260.9342 0))
  5958. (property "Footprint" "" (id 2) (at 30.48 256.54 0)
  5959. (effects (font (size 1.27 1.27)) hide)
  5960. )
  5961. (property "Datasheet" "" (id 3) (at 30.48 256.54 0)
  5962. (effects (font (size 1.27 1.27)) hide)
  5963. )
  5964. (pin "1" (uuid b9d4e899-1575-4eac-bf26-ac64f406deec))
  5965. )
  5966. (symbol (lib_id "Device:C_Small") (at 342.9 170.18 0) (unit 1)
  5967. (in_bom yes) (on_board yes)
  5968. (uuid 00000000-0000-0000-0000-000062084712)
  5969. (property "Reference" "C15" (id 0) (at 345.2368 169.0116 0)
  5970. (effects (font (size 1.27 1.27)) (justify left))
  5971. )
  5972. (property "Value" "0.1uF" (id 1) (at 345.2368 171.323 0)
  5973. (effects (font (size 1.27 1.27)) (justify left))
  5974. )
  5975. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 342.9 170.18 0)
  5976. (effects (font (size 1.27 1.27)) hide)
  5977. )
  5978. (property "Datasheet" "~" (id 3) (at 342.9 170.18 0)
  5979. (effects (font (size 1.27 1.27)) hide)
  5980. )
  5981. (property "LCSC" "C1591" (id 4) (at 342.9 170.18 0)
  5982. (effects (font (size 1.27 1.27)) hide)
  5983. )
  5984. (property "Digikey" "1276-1935-1-ND" (id 5) (at 342.9 170.18 0)
  5985. (effects (font (size 1.27 1.27)) hide)
  5986. )
  5987. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 342.9 170.18 0)
  5988. (effects (font (size 1.27 1.27)) hide)
  5989. )
  5990. (pin "1" (uuid c304d748-e511-46ac-b8d3-d74b06071a27))
  5991. (pin "2" (uuid edf178cc-a73e-459c-82af-45a152fa31ca))
  5992. )
  5993. (symbol (lib_id "Device:C_Small") (at 332.74 170.18 0) (unit 1)
  5994. (in_bom yes) (on_board yes)
  5995. (uuid 00000000-0000-0000-0000-000062086349)
  5996. (property "Reference" "C14" (id 0) (at 335.0768 169.0116 0)
  5997. (effects (font (size 1.27 1.27)) (justify left))
  5998. )
  5999. (property "Value" "0.1uF" (id 1) (at 335.0768 171.323 0)
  6000. (effects (font (size 1.27 1.27)) (justify left))
  6001. )
  6002. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 332.74 170.18 0)
  6003. (effects (font (size 1.27 1.27)) hide)
  6004. )
  6005. (property "Datasheet" "~" (id 3) (at 332.74 170.18 0)
  6006. (effects (font (size 1.27 1.27)) hide)
  6007. )
  6008. (property "LCSC" "C1591" (id 4) (at 332.74 170.18 0)
  6009. (effects (font (size 1.27 1.27)) hide)
  6010. )
  6011. (property "Digikey" "1276-1935-1-ND" (id 5) (at 332.74 170.18 0)
  6012. (effects (font (size 1.27 1.27)) hide)
  6013. )
  6014. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 332.74 170.18 0)
  6015. (effects (font (size 1.27 1.27)) hide)
  6016. )
  6017. (pin "1" (uuid 0633adfa-914b-4f9d-80ba-161103ceec79))
  6018. (pin "2" (uuid e26458db-ffb9-4a18-886d-cfa3a8d4f544))
  6019. )
  6020. (symbol (lib_id "Device:C_Small") (at 323.85 170.18 0) (unit 1)
  6021. (in_bom yes) (on_board yes)
  6022. (uuid 00000000-0000-0000-0000-00006208a205)
  6023. (property "Reference" "C13" (id 0) (at 326.1868 169.0116 0)
  6024. (effects (font (size 1.27 1.27)) (justify left))
  6025. )
  6026. (property "Value" "22uF" (id 1) (at 326.1868 171.323 0)
  6027. (effects (font (size 1.27 1.27)) (justify left))
  6028. )
  6029. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 323.85 170.18 0)
  6030. (effects (font (size 1.27 1.27)) hide)
  6031. )
  6032. (property "Datasheet" "~" (id 3) (at 323.85 170.18 0)
  6033. (effects (font (size 1.27 1.27)) hide)
  6034. )
  6035. (property "LCSC" "C98190" (id 4) (at 323.85 170.18 0)
  6036. (effects (font (size 1.27 1.27)) hide)
  6037. )
  6038. (property "Digikey" "1276-CL21A226MAYNNNECT-ND" (id 5) (at 323.85 170.18 0)
  6039. (effects (font (size 1.27 1.27)) hide)
  6040. )
  6041. (property "Mouser" "187-CL21A226MAYNNNE" (id 6) (at 323.85 170.18 0)
  6042. (effects (font (size 1.27 1.27)) hide)
  6043. )
  6044. (pin "1" (uuid bb0ba8a2-8b47-4ad8-8cad-d915e088c687))
  6045. (pin "2" (uuid 5956c9c4-93f5-4341-b42d-e62e27b5e9d6))
  6046. )
  6047. (symbol (lib_id "Device:C_Small") (at 381 212.09 0) (unit 1)
  6048. (in_bom yes) (on_board yes)
  6049. (uuid 00000000-0000-0000-0000-00006209158d)
  6050. (property "Reference" "C21" (id 0) (at 383.3368 210.9216 0)
  6051. (effects (font (size 1.27 1.27)) (justify left))
  6052. )
  6053. (property "Value" "0.1uF" (id 1) (at 383.3368 213.233 0)
  6054. (effects (font (size 1.27 1.27)) (justify left))
  6055. )
  6056. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 381 212.09 0)
  6057. (effects (font (size 1.27 1.27)) hide)
  6058. )
  6059. (property "Datasheet" "~" (id 3) (at 381 212.09 0)
  6060. (effects (font (size 1.27 1.27)) hide)
  6061. )
  6062. (property "LCSC" "C1591" (id 4) (at 381 212.09 0)
  6063. (effects (font (size 1.27 1.27)) hide)
  6064. )
  6065. (property "Digikey" "1276-1935-1-ND" (id 5) (at 381 212.09 0)
  6066. (effects (font (size 1.27 1.27)) hide)
  6067. )
  6068. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 381 212.09 0)
  6069. (effects (font (size 1.27 1.27)) hide)
  6070. )
  6071. (pin "1" (uuid 7a2ca59d-820f-4fa1-abab-bd90f7425325))
  6072. (pin "2" (uuid 5b291660-876b-4f49-bc42-f0ce83419c18))
  6073. )
  6074. (symbol (lib_id "Device:C_Small") (at 336.55 203.2 0) (unit 1)
  6075. (in_bom yes) (on_board yes)
  6076. (uuid 00000000-0000-0000-0000-000062091f81)
  6077. (property "Reference" "C17" (id 0) (at 338.8868 202.0316 0)
  6078. (effects (font (size 1.27 1.27)) (justify left))
  6079. )
  6080. (property "Value" "0.1uF" (id 1) (at 338.8868 204.343 0)
  6081. (effects (font (size 1.27 1.27)) (justify left))
  6082. )
  6083. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 336.55 203.2 0)
  6084. (effects (font (size 1.27 1.27)) hide)
  6085. )
  6086. (property "Datasheet" "~" (id 3) (at 336.55 203.2 0)
  6087. (effects (font (size 1.27 1.27)) hide)
  6088. )
  6089. (property "LCSC" "C1591" (id 4) (at 336.55 203.2 0)
  6090. (effects (font (size 1.27 1.27)) hide)
  6091. )
  6092. (property "Digikey" "1276-1935-1-ND" (id 5) (at 336.55 203.2 0)
  6093. (effects (font (size 1.27 1.27)) hide)
  6094. )
  6095. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 336.55 203.2 0)
  6096. (effects (font (size 1.27 1.27)) hide)
  6097. )
  6098. (pin "1" (uuid 0a914979-ff8a-4d1e-ac72-2c67810487be))
  6099. (pin "2" (uuid a3bb59ab-2bb5-4644-8375-027f0cc1abc0))
  6100. )
  6101. (symbol (lib_id "power:GND") (at 381 217.17 0) (unit 1)
  6102. (in_bom yes) (on_board yes)
  6103. (uuid 00000000-0000-0000-0000-000062092c18)
  6104. (property "Reference" "#PWR0107" (id 0) (at 381 223.52 0)
  6105. (effects (font (size 1.27 1.27)) hide)
  6106. )
  6107. (property "Value" "GND" (id 1) (at 381.127 221.5642 0))
  6108. (property "Footprint" "" (id 2) (at 381 217.17 0)
  6109. (effects (font (size 1.27 1.27)) hide)
  6110. )
  6111. (property "Datasheet" "" (id 3) (at 381 217.17 0)
  6112. (effects (font (size 1.27 1.27)) hide)
  6113. )
  6114. (pin "1" (uuid b932d339-7888-4506-92dc-7b9f4a021ec5))
  6115. )
  6116. (symbol (lib_id "Connector:TestPoint_Small") (at 40.64 26.67 0) (unit 1)
  6117. (in_bom yes) (on_board yes)
  6118. (uuid 00000000-0000-0000-0000-0000620939bb)
  6119. (property "Reference" "TP2" (id 0) (at 41.8592 25.5016 0)
  6120. (effects (font (size 1.27 1.27)) (justify left))
  6121. )
  6122. (property "Value" "3.3v" (id 1) (at 41.8592 27.813 0)
  6123. (effects (font (size 1.27 1.27)) (justify left))
  6124. )
  6125. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 45.72 26.67 0)
  6126. (effects (font (size 1.27 1.27)) hide)
  6127. )
  6128. (property "Datasheet" "~" (id 3) (at 45.72 26.67 0)
  6129. (effects (font (size 1.27 1.27)) hide)
  6130. )
  6131. (pin "1" (uuid c5f60ad2-3c12-4476-8404-2c06cc32df66))
  6132. )
  6133. (symbol (lib_id "power:GND") (at 347.98 217.17 0) (unit 1)
  6134. (in_bom yes) (on_board yes)
  6135. (uuid 00000000-0000-0000-0000-000062096fa5)
  6136. (property "Reference" "#PWR0108" (id 0) (at 347.98 223.52 0)
  6137. (effects (font (size 1.27 1.27)) hide)
  6138. )
  6139. (property "Value" "GND" (id 1) (at 348.107 221.5642 0))
  6140. (property "Footprint" "" (id 2) (at 347.98 217.17 0)
  6141. (effects (font (size 1.27 1.27)) hide)
  6142. )
  6143. (property "Datasheet" "" (id 3) (at 347.98 217.17 0)
  6144. (effects (font (size 1.27 1.27)) hide)
  6145. )
  6146. (pin "1" (uuid 513e44b9-1e1a-4ee2-8d06-ac0de5e52179))
  6147. )
  6148. (symbol (lib_id "Device:C_Small") (at 203.2 190.5 180) (unit 1)
  6149. (in_bom yes) (on_board yes)
  6150. (uuid 00000000-0000-0000-0000-00006209787a)
  6151. (property "Reference" "C22" (id 0) (at 200.8632 191.6684 0)
  6152. (effects (font (size 1.27 1.27)) (justify left))
  6153. )
  6154. (property "Value" "0.1uF" (id 1) (at 200.8632 189.357 0)
  6155. (effects (font (size 1.27 1.27)) (justify left))
  6156. )
  6157. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 190.5 0)
  6158. (effects (font (size 1.27 1.27)) hide)
  6159. )
  6160. (property "Datasheet" "~" (id 3) (at 203.2 190.5 0)
  6161. (effects (font (size 1.27 1.27)) hide)
  6162. )
  6163. (property "LCSC" "C1591" (id 4) (at 203.2 190.5 0)
  6164. (effects (font (size 1.27 1.27)) hide)
  6165. )
  6166. (property "Digikey" "1276-1935-1-ND" (id 5) (at 203.2 190.5 0)
  6167. (effects (font (size 1.27 1.27)) hide)
  6168. )
  6169. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 203.2 190.5 0)
  6170. (effects (font (size 1.27 1.27)) hide)
  6171. )
  6172. (pin "1" (uuid fde97225-e327-4f0d-a0d0-ae491822da36))
  6173. (pin "2" (uuid cf99f970-43e4-4767-a02a-b896d20db8c0))
  6174. )
  6175. (symbol (lib_id "power:+3.3V") (at 330.2 200.66 0) (unit 1)
  6176. (in_bom yes) (on_board yes)
  6177. (uuid 00000000-0000-0000-0000-0000620a6032)
  6178. (property "Reference" "#PWR0109" (id 0) (at 330.2 204.47 0)
  6179. (effects (font (size 1.27 1.27)) hide)
  6180. )
  6181. (property "Value" "+3.3V" (id 1) (at 330.581 196.2658 0))
  6182. (property "Footprint" "" (id 2) (at 330.2 200.66 0)
  6183. (effects (font (size 1.27 1.27)) hide)
  6184. )
  6185. (property "Datasheet" "" (id 3) (at 330.2 200.66 0)
  6186. (effects (font (size 1.27 1.27)) hide)
  6187. )
  6188. (pin "1" (uuid 7c6968c0-fe3f-4461-bd16-269e440f9e68))
  6189. )
  6190. (symbol (lib_id "power:GNDA") (at 195.58 196.85 0) (unit 1)
  6191. (in_bom yes) (on_board yes)
  6192. (uuid 00000000-0000-0000-0000-0000620d3feb)
  6193. (property "Reference" "#PWR0117" (id 0) (at 195.58 203.2 0)
  6194. (effects (font (size 1.27 1.27)) hide)
  6195. )
  6196. (property "Value" "GNDA" (id 1) (at 195.707 201.2442 0))
  6197. (property "Footprint" "" (id 2) (at 195.58 196.85 0)
  6198. (effects (font (size 1.27 1.27)) hide)
  6199. )
  6200. (property "Datasheet" "" (id 3) (at 195.58 196.85 0)
  6201. (effects (font (size 1.27 1.27)) hide)
  6202. )
  6203. (pin "1" (uuid 6d96171e-7384-48a3-b7b6-f3f35d176d40))
  6204. )
  6205. (symbol (lib_id "power:GND") (at 383.54 190.5 0) (unit 1)
  6206. (in_bom yes) (on_board yes)
  6207. (uuid 00000000-0000-0000-0000-0000620d59fa)
  6208. (property "Reference" "#PWR0110" (id 0) (at 383.54 196.85 0)
  6209. (effects (font (size 1.27 1.27)) hide)
  6210. )
  6211. (property "Value" "GND" (id 1) (at 383.667 194.8942 0))
  6212. (property "Footprint" "" (id 2) (at 383.54 190.5 0)
  6213. (effects (font (size 1.27 1.27)) hide)
  6214. )
  6215. (property "Datasheet" "" (id 3) (at 383.54 190.5 0)
  6216. (effects (font (size 1.27 1.27)) hide)
  6217. )
  6218. (pin "1" (uuid 73b41eb2-3ccf-4143-92fe-caaab34649bf))
  6219. )
  6220. (symbol (lib_id "Connector:TestPoint_Small") (at 35.56 39.37 0) (unit 1)
  6221. (in_bom yes) (on_board yes)
  6222. (uuid 00000000-0000-0000-0000-0000620f043a)
  6223. (property "Reference" "TP3" (id 0) (at 36.83 39.37 0)
  6224. (effects (font (size 1.27 1.27)) (justify left))
  6225. )
  6226. (property "Value" "GND" (id 1) (at 38.1 41.91 0)
  6227. (effects (font (size 1.27 1.27)) (justify left))
  6228. )
  6229. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 40.64 39.37 0)
  6230. (effects (font (size 1.27 1.27)) hide)
  6231. )
  6232. (property "Datasheet" "~" (id 3) (at 40.64 39.37 0)
  6233. (effects (font (size 1.27 1.27)) hide)
  6234. )
  6235. (pin "1" (uuid 38cdeb79-38b0-4b02-a77a-a4cc178e7598))
  6236. )
  6237. (symbol (lib_id "power:GND") (at 121.92 96.52 0) (unit 1)
  6238. (in_bom yes) (on_board yes)
  6239. (uuid 00000000-0000-0000-0000-00006210086e)
  6240. (property "Reference" "#PWR0111" (id 0) (at 121.92 102.87 0)
  6241. (effects (font (size 1.27 1.27)) hide)
  6242. )
  6243. (property "Value" "GND" (id 1) (at 122.047 100.9142 0))
  6244. (property "Footprint" "" (id 2) (at 121.92 96.52 0)
  6245. (effects (font (size 1.27 1.27)) hide)
  6246. )
  6247. (property "Datasheet" "" (id 3) (at 121.92 96.52 0)
  6248. (effects (font (size 1.27 1.27)) hide)
  6249. )
  6250. (pin "1" (uuid 5ceb0e80-7d98-4e66-aa31-ce51c35f043e))
  6251. )
  6252. (symbol (lib_id "power:+3.3V") (at 101.6 57.15 0) (unit 1)
  6253. (in_bom yes) (on_board yes)
  6254. (uuid 00000000-0000-0000-0000-000062105589)
  6255. (property "Reference" "#PWR0112" (id 0) (at 101.6 60.96 0)
  6256. (effects (font (size 1.27 1.27)) hide)
  6257. )
  6258. (property "Value" "+3.3V" (id 1) (at 101.981 52.7558 0))
  6259. (property "Footprint" "" (id 2) (at 101.6 57.15 0)
  6260. (effects (font (size 1.27 1.27)) hide)
  6261. )
  6262. (property "Datasheet" "" (id 3) (at 101.6 57.15 0)
  6263. (effects (font (size 1.27 1.27)) hide)
  6264. )
  6265. (pin "1" (uuid be7b6fc0-680b-422c-9cd2-a6357a97bdaa))
  6266. )
  6267. (symbol (lib_id "power:GNDA") (at 163.83 196.85 0) (unit 1)
  6268. (in_bom yes) (on_board yes)
  6269. (uuid 00000000-0000-0000-0000-000062110345)
  6270. (property "Reference" "#PWR0118" (id 0) (at 163.83 203.2 0)
  6271. (effects (font (size 1.27 1.27)) hide)
  6272. )
  6273. (property "Value" "GNDA" (id 1) (at 163.957 201.2442 0))
  6274. (property "Footprint" "" (id 2) (at 163.83 196.85 0)
  6275. (effects (font (size 1.27 1.27)) hide)
  6276. )
  6277. (property "Datasheet" "" (id 3) (at 163.83 196.85 0)
  6278. (effects (font (size 1.27 1.27)) hide)
  6279. )
  6280. (pin "1" (uuid 132f87af-fee0-4378-a134-77a68eb21f40))
  6281. )
  6282. (symbol (lib_id "Device:C_Small") (at 105.41 59.69 0) (unit 1)
  6283. (in_bom yes) (on_board yes)
  6284. (uuid 00000000-0000-0000-0000-0000621156c4)
  6285. (property "Reference" "C11" (id 0) (at 107.7468 58.5216 0)
  6286. (effects (font (size 1.27 1.27)) (justify left))
  6287. )
  6288. (property "Value" "0.1uF" (id 1) (at 107.7468 60.833 0)
  6289. (effects (font (size 1.27 1.27)) (justify left))
  6290. )
  6291. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 105.41 59.69 0)
  6292. (effects (font (size 1.27 1.27)) hide)
  6293. )
  6294. (property "Datasheet" "~" (id 3) (at 105.41 59.69 0)
  6295. (effects (font (size 1.27 1.27)) hide)
  6296. )
  6297. (property "LCSC" "C1591" (id 4) (at 105.41 59.69 0)
  6298. (effects (font (size 1.27 1.27)) hide)
  6299. )
  6300. (property "Digikey" "1276-1935-1-ND" (id 5) (at 105.41 59.69 0)
  6301. (effects (font (size 1.27 1.27)) hide)
  6302. )
  6303. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 105.41 59.69 0)
  6304. (effects (font (size 1.27 1.27)) hide)
  6305. )
  6306. (pin "1" (uuid 38b4d1b0-a915-4c3c-be73-8ed9dd8948f2))
  6307. (pin "2" (uuid d9fe496c-d570-49d6-8e55-cc837c24c797))
  6308. )
  6309. (symbol (lib_id "power:GND") (at 105.41 66.04 0) (unit 1)
  6310. (in_bom yes) (on_board yes)
  6311. (uuid 00000000-0000-0000-0000-0000621184b4)
  6312. (property "Reference" "#PWR0113" (id 0) (at 105.41 72.39 0)
  6313. (effects (font (size 1.27 1.27)) hide)
  6314. )
  6315. (property "Value" "GND" (id 1) (at 105.537 70.4342 0))
  6316. (property "Footprint" "" (id 2) (at 105.41 66.04 0)
  6317. (effects (font (size 1.27 1.27)) hide)
  6318. )
  6319. (property "Datasheet" "" (id 3) (at 105.41 66.04 0)
  6320. (effects (font (size 1.27 1.27)) hide)
  6321. )
  6322. (pin "1" (uuid 56101d6e-ac4a-44da-9c84-8faacaf7937d))
  6323. )
  6324. (symbol (lib_id "power:GNDA") (at 184.15 196.85 0) (unit 1)
  6325. (in_bom yes) (on_board yes)
  6326. (uuid 00000000-0000-0000-0000-00006211ae93)
  6327. (property "Reference" "#PWR0119" (id 0) (at 184.15 203.2 0)
  6328. (effects (font (size 1.27 1.27)) hide)
  6329. )
  6330. (property "Value" "GNDA" (id 1) (at 184.277 201.2442 0))
  6331. (property "Footprint" "" (id 2) (at 184.15 196.85 0)
  6332. (effects (font (size 1.27 1.27)) hide)
  6333. )
  6334. (property "Datasheet" "" (id 3) (at 184.15 196.85 0)
  6335. (effects (font (size 1.27 1.27)) hide)
  6336. )
  6337. (pin "1" (uuid f184639c-12d7-4661-a8c4-139986dfaf3a))
  6338. )
  6339. (symbol (lib_id "Device:C_Small") (at 241.3 137.16 0) (unit 1)
  6340. (in_bom yes) (on_board yes)
  6341. (uuid 00000000-0000-0000-0000-00006211bef1)
  6342. (property "Reference" "C28" (id 0) (at 243.6368 135.9916 0)
  6343. (effects (font (size 1.27 1.27)) (justify left))
  6344. )
  6345. (property "Value" "1uF" (id 1) (at 243.6368 138.303 0)
  6346. (effects (font (size 1.27 1.27)) (justify left))
  6347. )
  6348. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 241.3 137.16 0)
  6349. (effects (font (size 1.27 1.27)) hide)
  6350. )
  6351. (property "Datasheet" "~" (id 3) (at 241.3 137.16 0)
  6352. (effects (font (size 1.27 1.27)) hide)
  6353. )
  6354. (property "Mouser" "187-CL10A105KA8NNNC" (id 4) (at 241.3 137.16 0)
  6355. (effects (font (size 1.27 1.27)) hide)
  6356. )
  6357. (property "LCSC" "C5673" (id 5) (at 241.3 137.16 0)
  6358. (effects (font (size 1.27 1.27)) hide)
  6359. )
  6360. (property "Digikey" "1276-1102-1-ND" (id 6) (at 241.3 137.16 0)
  6361. (effects (font (size 1.27 1.27)) hide)
  6362. )
  6363. (pin "1" (uuid acd276fb-d20b-4553-b073-bd7db980812a))
  6364. (pin "2" (uuid 13621f30-38eb-438c-99e2-f2bda3f08c97))
  6365. )
  6366. (symbol (lib_id "power:GNDA") (at 172.72 168.91 0) (unit 1)
  6367. (in_bom yes) (on_board yes)
  6368. (uuid 00000000-0000-0000-0000-000062131aaa)
  6369. (property "Reference" "#PWR0120" (id 0) (at 172.72 175.26 0)
  6370. (effects (font (size 1.27 1.27)) hide)
  6371. )
  6372. (property "Value" "GNDA" (id 1) (at 172.847 173.3042 0))
  6373. (property "Footprint" "" (id 2) (at 172.72 168.91 0)
  6374. (effects (font (size 1.27 1.27)) hide)
  6375. )
  6376. (property "Datasheet" "" (id 3) (at 172.72 168.91 0)
  6377. (effects (font (size 1.27 1.27)) hide)
  6378. )
  6379. (pin "1" (uuid c495cda9-772c-419d-8204-ec560c974d4b))
  6380. )
  6381. (symbol (lib_id "Device:R_Small") (at 130.81 133.35 0) (unit 1)
  6382. (in_bom yes) (on_board yes)
  6383. (uuid 00000000-0000-0000-0000-000062132ffe)
  6384. (property "Reference" "R15" (id 0) (at 125.8316 133.35 90))
  6385. (property "Value" "2.2k" (id 1) (at 128.143 133.35 90))
  6386. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 130.81 133.35 0)
  6387. (effects (font (size 1.27 1.27)) hide)
  6388. )
  6389. (property "Datasheet" "~" (id 3) (at 130.81 133.35 0)
  6390. (effects (font (size 1.27 1.27)) hide)
  6391. )
  6392. (property "LCSC" "C4190" (id 4) (at 130.81 133.35 0)
  6393. (effects (font (size 1.27 1.27)) hide)
  6394. )
  6395. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 130.81 133.35 0)
  6396. (effects (font (size 1.27 1.27)) hide)
  6397. )
  6398. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 130.81 133.35 0)
  6399. (effects (font (size 1.27 1.27)) hide)
  6400. )
  6401. (pin "1" (uuid eb3de0ad-58fd-4c79-81f7-33a544f94145))
  6402. (pin "2" (uuid 6a7410ac-6f2d-41b6-9ae5-119b71f0d7e5))
  6403. )
  6404. (symbol (lib_id "Device:R_Small") (at 133.35 133.35 180) (unit 1)
  6405. (in_bom yes) (on_board yes)
  6406. (uuid 00000000-0000-0000-0000-000062133004)
  6407. (property "Reference" "R16" (id 0) (at 138.3284 133.35 90))
  6408. (property "Value" "2.2k" (id 1) (at 136.017 133.35 90))
  6409. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 133.35 133.35 0)
  6410. (effects (font (size 1.27 1.27)) hide)
  6411. )
  6412. (property "Datasheet" "~" (id 3) (at 133.35 133.35 0)
  6413. (effects (font (size 1.27 1.27)) hide)
  6414. )
  6415. (property "LCSC" "C4190" (id 4) (at 133.35 133.35 0)
  6416. (effects (font (size 1.27 1.27)) hide)
  6417. )
  6418. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 133.35 133.35 0)
  6419. (effects (font (size 1.27 1.27)) hide)
  6420. )
  6421. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 133.35 133.35 0)
  6422. (effects (font (size 1.27 1.27)) hide)
  6423. )
  6424. (pin "1" (uuid 16301ee3-311c-4d9e-9a87-7c01dfd42108))
  6425. (pin "2" (uuid d78f26bb-d771-4fb4-adb7-2b335440ff09))
  6426. )
  6427. (symbol (lib_id "power:+3.3V") (at 132.08 128.27 0) (unit 1)
  6428. (in_bom yes) (on_board yes)
  6429. (uuid 00000000-0000-0000-0000-00006213300a)
  6430. (property "Reference" "#PWR0142" (id 0) (at 132.08 132.08 0)
  6431. (effects (font (size 1.27 1.27)) hide)
  6432. )
  6433. (property "Value" "+3.3V" (id 1) (at 132.461 123.8758 0))
  6434. (property "Footprint" "" (id 2) (at 132.08 128.27 0)
  6435. (effects (font (size 1.27 1.27)) hide)
  6436. )
  6437. (property "Datasheet" "" (id 3) (at 132.08 128.27 0)
  6438. (effects (font (size 1.27 1.27)) hide)
  6439. )
  6440. (pin "1" (uuid be8857bc-d4e7-4da2-b159-61059f2b533c))
  6441. )
  6442. (symbol (lib_id "Connector:TestPoint_Small") (at 57.15 234.95 0) (unit 1)
  6443. (in_bom yes) (on_board yes)
  6444. (uuid 00000000-0000-0000-0000-00006213725a)
  6445. (property "Reference" "TP12" (id 0) (at 58.3692 233.7816 0)
  6446. (effects (font (size 1.27 1.27)) (justify left))
  6447. )
  6448. (property "Value" "LED" (id 1) (at 58.3692 236.093 0)
  6449. (effects (font (size 1.27 1.27)) (justify left))
  6450. )
  6451. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 62.23 234.95 0)
  6452. (effects (font (size 1.27 1.27)) hide)
  6453. )
  6454. (property "Datasheet" "~" (id 3) (at 62.23 234.95 0)
  6455. (effects (font (size 1.27 1.27)) hide)
  6456. )
  6457. (pin "1" (uuid 5f10d7a0-4d70-4b91-97f5-8b7b5b68ee9e))
  6458. )
  6459. (symbol (lib_id "Device:C_Small") (at 181.61 165.1 0) (unit 1)
  6460. (in_bom yes) (on_board yes)
  6461. (uuid 00000000-0000-0000-0000-000062138f96)
  6462. (property "Reference" "C12" (id 0) (at 183.9468 163.9316 0)
  6463. (effects (font (size 1.27 1.27)) (justify left))
  6464. )
  6465. (property "Value" "0.1uF" (id 1) (at 183.9468 166.243 0)
  6466. (effects (font (size 1.27 1.27)) (justify left))
  6467. )
  6468. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 181.61 165.1 0)
  6469. (effects (font (size 1.27 1.27)) hide)
  6470. )
  6471. (property "Datasheet" "~" (id 3) (at 181.61 165.1 0)
  6472. (effects (font (size 1.27 1.27)) hide)
  6473. )
  6474. (property "LCSC" "C1591" (id 4) (at 181.61 165.1 0)
  6475. (effects (font (size 1.27 1.27)) hide)
  6476. )
  6477. (property "Digikey" "1276-1935-1-ND" (id 5) (at 181.61 165.1 0)
  6478. (effects (font (size 1.27 1.27)) hide)
  6479. )
  6480. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 181.61 165.1 0)
  6481. (effects (font (size 1.27 1.27)) hide)
  6482. )
  6483. (pin "1" (uuid 453fc808-4126-453d-85ae-1cdb419088b5))
  6484. (pin "2" (uuid eeebd06e-2360-41d5-bcbf-6a991cfb4216))
  6485. )
  6486. (symbol (lib_id "power:GNDA") (at 203.2 196.85 0) (unit 1)
  6487. (in_bom yes) (on_board yes)
  6488. (uuid 00000000-0000-0000-0000-00006213fbbb)
  6489. (property "Reference" "#PWR0121" (id 0) (at 203.2 203.2 0)
  6490. (effects (font (size 1.27 1.27)) hide)
  6491. )
  6492. (property "Value" "GNDA" (id 1) (at 203.327 201.2442 0))
  6493. (property "Footprint" "" (id 2) (at 203.2 196.85 0)
  6494. (effects (font (size 1.27 1.27)) hide)
  6495. )
  6496. (property "Datasheet" "" (id 3) (at 203.2 196.85 0)
  6497. (effects (font (size 1.27 1.27)) hide)
  6498. )
  6499. (pin "1" (uuid f5a63825-b5d0-4689-95d7-73382f27bff9))
  6500. )
  6501. (symbol (lib_id "Device:C_Small") (at 195.58 207.01 180) (unit 1)
  6502. (in_bom yes) (on_board yes)
  6503. (uuid 00000000-0000-0000-0000-00006213ff11)
  6504. (property "Reference" "C23" (id 0) (at 193.2432 208.1784 0)
  6505. (effects (font (size 1.27 1.27)) (justify left))
  6506. )
  6507. (property "Value" "0.1uF" (id 1) (at 193.2432 205.867 0)
  6508. (effects (font (size 1.27 1.27)) (justify left))
  6509. )
  6510. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 195.58 207.01 0)
  6511. (effects (font (size 1.27 1.27)) hide)
  6512. )
  6513. (property "Datasheet" "~" (id 3) (at 195.58 207.01 0)
  6514. (effects (font (size 1.27 1.27)) hide)
  6515. )
  6516. (property "LCSC" "C1591" (id 4) (at 195.58 207.01 0)
  6517. (effects (font (size 1.27 1.27)) hide)
  6518. )
  6519. (property "Digikey" "1276-1935-1-ND" (id 5) (at 195.58 207.01 0)
  6520. (effects (font (size 1.27 1.27)) hide)
  6521. )
  6522. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 195.58 207.01 0)
  6523. (effects (font (size 1.27 1.27)) hide)
  6524. )
  6525. (pin "1" (uuid 5c15ae8b-cb8e-4d01-9663-994d42e6e174))
  6526. (pin "2" (uuid 077de74b-17bd-4819-ab12-a3d892cfac38))
  6527. )
  6528. (symbol (lib_id "power:+3.3V") (at 21.59 187.96 0) (unit 1)
  6529. (in_bom yes) (on_board yes)
  6530. (uuid 00000000-0000-0000-0000-000062153ea9)
  6531. (property "Reference" "#PWR0114" (id 0) (at 21.59 191.77 0)
  6532. (effects (font (size 1.27 1.27)) hide)
  6533. )
  6534. (property "Value" "+3.3V" (id 1) (at 21.971 183.5658 0))
  6535. (property "Footprint" "" (id 2) (at 21.59 187.96 0)
  6536. (effects (font (size 1.27 1.27)) hide)
  6537. )
  6538. (property "Datasheet" "" (id 3) (at 21.59 187.96 0)
  6539. (effects (font (size 1.27 1.27)) hide)
  6540. )
  6541. (pin "1" (uuid 7cd55ac0-3e83-42d0-a2b4-7a85c4b8c98f))
  6542. )
  6543. (symbol (lib_id "power:GND") (at 27.94 201.93 0) (unit 1)
  6544. (in_bom yes) (on_board yes)
  6545. (uuid 00000000-0000-0000-0000-000062154495)
  6546. (property "Reference" "#PWR0115" (id 0) (at 27.94 208.28 0)
  6547. (effects (font (size 1.27 1.27)) hide)
  6548. )
  6549. (property "Value" "GND" (id 1) (at 28.067 206.3242 0))
  6550. (property "Footprint" "" (id 2) (at 27.94 201.93 0)
  6551. (effects (font (size 1.27 1.27)) hide)
  6552. )
  6553. (property "Datasheet" "" (id 3) (at 27.94 201.93 0)
  6554. (effects (font (size 1.27 1.27)) hide)
  6555. )
  6556. (pin "1" (uuid 1f62f3d5-1557-4819-ae45-dbb47075c859))
  6557. )
  6558. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 193.04 0) (unit 1)
  6559. (in_bom yes) (on_board yes)
  6560. (uuid 00000000-0000-0000-0000-000062179005)
  6561. (property "Reference" "TP9" (id 0) (at 82.4992 191.8716 0)
  6562. (effects (font (size 1.27 1.27)) (justify left))
  6563. )
  6564. (property "Value" "CSN" (id 1) (at 82.55 193.04 0)
  6565. (effects (font (size 1.27 1.27)) (justify left))
  6566. )
  6567. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 193.04 0)
  6568. (effects (font (size 1.27 1.27)) hide)
  6569. )
  6570. (property "Datasheet" "~" (id 3) (at 86.36 193.04 0)
  6571. (effects (font (size 1.27 1.27)) hide)
  6572. )
  6573. (pin "1" (uuid 96a4c85e-b3a9-4ac1-9741-4dab5e7ca8e1))
  6574. )
  6575. (symbol (lib_id "Device:R_Small") (at 199.39 124.46 90) (unit 1)
  6576. (in_bom yes) (on_board yes)
  6577. (uuid 00000000-0000-0000-0000-00006217c4cc)
  6578. (property "Reference" "R7" (id 0) (at 198.12 123.19 90)
  6579. (effects (font (size 1.27 1.27)) (justify left))
  6580. )
  6581. (property "Value" "10k" (id 1) (at 199.39 124.46 90)
  6582. (effects (font (size 0.7874 0.7874)))
  6583. )
  6584. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 124.46 0)
  6585. (effects (font (size 1.27 1.27)) hide)
  6586. )
  6587. (property "Datasheet" "~" (id 3) (at 199.39 124.46 0)
  6588. (effects (font (size 1.27 1.27)) hide)
  6589. )
  6590. (property "LCSC" "C98220" (id 4) (at 199.39 124.46 0)
  6591. (effects (font (size 1.27 1.27)) hide)
  6592. )
  6593. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 124.46 0)
  6594. (effects (font (size 1.27 1.27)) hide)
  6595. )
  6596. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 124.46 0)
  6597. (effects (font (size 1.27 1.27)) hide)
  6598. )
  6599. (pin "1" (uuid 1d127886-5828-493c-86e2-80fa6a7d352c))
  6600. (pin "2" (uuid ae6c9e6d-aafa-464f-a2bc-107cbe65ce24))
  6601. )
  6602. (symbol (lib_id "Device:R_Small") (at 173.99 204.47 270) (unit 1)
  6603. (in_bom yes) (on_board yes)
  6604. (uuid 00000000-0000-0000-0000-00006217ebc1)
  6605. (property "Reference" "R5" (id 0) (at 173.99 199.4916 90))
  6606. (property "Value" "100" (id 1) (at 173.99 201.803 90))
  6607. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 204.47 0)
  6608. (effects (font (size 1.27 1.27)) hide)
  6609. )
  6610. (property "Datasheet" "~" (id 3) (at 173.99 204.47 0)
  6611. (effects (font (size 1.27 1.27)) hide)
  6612. )
  6613. (property "LCSC" "C319953" (id 4) (at 173.99 204.47 0)
  6614. (effects (font (size 1.27 1.27)) hide)
  6615. )
  6616. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 204.47 0)
  6617. (effects (font (size 1.27 1.27)) hide)
  6618. )
  6619. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 204.47 0)
  6620. (effects (font (size 1.27 1.27)) hide)
  6621. )
  6622. (pin "1" (uuid 3fe9d150-a60b-45b7-ac68-9f7b4f02ad5a))
  6623. (pin "2" (uuid b194a5f3-2ea8-4b52-992c-b4253723fa8f))
  6624. )
  6625. (symbol (lib_id "Device:R_Small") (at 173.99 209.55 90) (unit 1)
  6626. (in_bom yes) (on_board yes)
  6627. (uuid 00000000-0000-0000-0000-00006217f6bc)
  6628. (property "Reference" "R6" (id 0) (at 173.99 214.63 90))
  6629. (property "Value" "100" (id 1) (at 173.99 212.09 90))
  6630. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 209.55 0)
  6631. (effects (font (size 1.27 1.27)) hide)
  6632. )
  6633. (property "Datasheet" "~" (id 3) (at 173.99 209.55 0)
  6634. (effects (font (size 1.27 1.27)) hide)
  6635. )
  6636. (property "LCSC" "C319953" (id 4) (at 173.99 209.55 0)
  6637. (effects (font (size 1.27 1.27)) hide)
  6638. )
  6639. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 209.55 0)
  6640. (effects (font (size 1.27 1.27)) hide)
  6641. )
  6642. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 209.55 0)
  6643. (effects (font (size 1.27 1.27)) hide)
  6644. )
  6645. (pin "1" (uuid 8cab69cb-5e51-457c-a7d0-f2fd58e50eb1))
  6646. (pin "2" (uuid c7be23ee-d023-4c4a-b6e8-adaba11d9f62))
  6647. )
  6648. (symbol (lib_id "Device:R_Small") (at 199.39 127 90) (unit 1)
  6649. (in_bom yes) (on_board yes)
  6650. (uuid 00000000-0000-0000-0000-000062180f46)
  6651. (property "Reference" "R8" (id 0) (at 198.12 125.73 90)
  6652. (effects (font (size 1.27 1.27)) (justify left))
  6653. )
  6654. (property "Value" "10k" (id 1) (at 199.39 127 90)
  6655. (effects (font (size 0.7874 0.7874)))
  6656. )
  6657. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 127 0)
  6658. (effects (font (size 1.27 1.27)) hide)
  6659. )
  6660. (property "Datasheet" "~" (id 3) (at 199.39 127 0)
  6661. (effects (font (size 1.27 1.27)) hide)
  6662. )
  6663. (property "LCSC" "C98220" (id 4) (at 199.39 127 0)
  6664. (effects (font (size 1.27 1.27)) hide)
  6665. )
  6666. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 127 0)
  6667. (effects (font (size 1.27 1.27)) hide)
  6668. )
  6669. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 127 0)
  6670. (effects (font (size 1.27 1.27)) hide)
  6671. )
  6672. (pin "1" (uuid 689eb1a4-2d7a-4d99-96ef-c4384e731194))
  6673. (pin "2" (uuid 0d5c8553-0a1e-48c9-8ac0-a164fada8c9a))
  6674. )
  6675. (symbol (lib_id "Device:R_Small") (at 199.39 129.54 90) (unit 1)
  6676. (in_bom yes) (on_board yes)
  6677. (uuid 00000000-0000-0000-0000-0000621810c8)
  6678. (property "Reference" "R9" (id 0) (at 198.12 128.27 90)
  6679. (effects (font (size 1.27 1.27)) (justify left))
  6680. )
  6681. (property "Value" "10k" (id 1) (at 199.39 129.54 90)
  6682. (effects (font (size 0.7874 0.7874)))
  6683. )
  6684. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 129.54 0)
  6685. (effects (font (size 1.27 1.27)) hide)
  6686. )
  6687. (property "Datasheet" "~" (id 3) (at 199.39 129.54 0)
  6688. (effects (font (size 1.27 1.27)) hide)
  6689. )
  6690. (property "LCSC" "C98220" (id 4) (at 199.39 129.54 0)
  6691. (effects (font (size 1.27 1.27)) hide)
  6692. )
  6693. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 129.54 0)
  6694. (effects (font (size 1.27 1.27)) hide)
  6695. )
  6696. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 129.54 0)
  6697. (effects (font (size 1.27 1.27)) hide)
  6698. )
  6699. (pin "1" (uuid 6bef994a-775b-4d4f-bf69-479cd86544c8))
  6700. (pin "2" (uuid 53be0f6b-4e65-4ee5-8c8e-608ec0e40613))
  6701. )
  6702. (symbol (lib_id "Device:R_Small") (at 199.39 132.08 90) (unit 1)
  6703. (in_bom yes) (on_board yes)
  6704. (uuid 00000000-0000-0000-0000-000062181360)
  6705. (property "Reference" "R10" (id 0) (at 198.12 130.81 90)
  6706. (effects (font (size 1.27 1.27)) (justify left))
  6707. )
  6708. (property "Value" "10k" (id 1) (at 199.39 132.08 90)
  6709. (effects (font (size 0.7874 0.7874)))
  6710. )
  6711. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 132.08 0)
  6712. (effects (font (size 1.27 1.27)) hide)
  6713. )
  6714. (property "Datasheet" "~" (id 3) (at 199.39 132.08 0)
  6715. (effects (font (size 1.27 1.27)) hide)
  6716. )
  6717. (property "LCSC" "C98220" (id 4) (at 199.39 132.08 0)
  6718. (effects (font (size 1.27 1.27)) hide)
  6719. )
  6720. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 132.08 0)
  6721. (effects (font (size 1.27 1.27)) hide)
  6722. )
  6723. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 132.08 0)
  6724. (effects (font (size 1.27 1.27)) hide)
  6725. )
  6726. (pin "1" (uuid 241e061c-fed4-4dff-959b-98da9e878eee))
  6727. (pin "2" (uuid 2e877dbb-6832-4630-bc2c-069ff902df6b))
  6728. )
  6729. (symbol (lib_id "Device:R_Small") (at 199.39 134.62 90) (unit 1)
  6730. (in_bom yes) (on_board yes)
  6731. (uuid 00000000-0000-0000-0000-0000621814c1)
  6732. (property "Reference" "R11" (id 0) (at 198.12 133.35 90)
  6733. (effects (font (size 1.27 1.27)) (justify left))
  6734. )
  6735. (property "Value" "10k" (id 1) (at 199.39 134.62 90)
  6736. (effects (font (size 0.7874 0.7874)))
  6737. )
  6738. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 134.62 0)
  6739. (effects (font (size 1.27 1.27)) hide)
  6740. )
  6741. (property "Datasheet" "~" (id 3) (at 199.39 134.62 0)
  6742. (effects (font (size 1.27 1.27)) hide)
  6743. )
  6744. (property "LCSC" "C98220" (id 4) (at 199.39 134.62 0)
  6745. (effects (font (size 1.27 1.27)) hide)
  6746. )
  6747. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 134.62 0)
  6748. (effects (font (size 1.27 1.27)) hide)
  6749. )
  6750. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 134.62 0)
  6751. (effects (font (size 1.27 1.27)) hide)
  6752. )
  6753. (pin "1" (uuid 2974720c-4a0b-45fd-835c-880391f2f884))
  6754. (pin "2" (uuid 58acf8ca-51b2-4de5-ae93-e733a49e6fe1))
  6755. )
  6756. (symbol (lib_id "Device:R_Small") (at 199.39 137.16 90) (unit 1)
  6757. (in_bom yes) (on_board yes)
  6758. (uuid 00000000-0000-0000-0000-00006218171e)
  6759. (property "Reference" "R12" (id 0) (at 198.12 135.89 90)
  6760. (effects (font (size 1.27 1.27)) (justify left))
  6761. )
  6762. (property "Value" "10k" (id 1) (at 199.39 137.16 90)
  6763. (effects (font (size 0.7874 0.7874)))
  6764. )
  6765. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 137.16 0)
  6766. (effects (font (size 1.27 1.27)) hide)
  6767. )
  6768. (property "Datasheet" "~" (id 3) (at 199.39 137.16 0)
  6769. (effects (font (size 1.27 1.27)) hide)
  6770. )
  6771. (property "LCSC" "C98220" (id 4) (at 199.39 137.16 0)
  6772. (effects (font (size 1.27 1.27)) hide)
  6773. )
  6774. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 137.16 0)
  6775. (effects (font (size 1.27 1.27)) hide)
  6776. )
  6777. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 137.16 0)
  6778. (effects (font (size 1.27 1.27)) hide)
  6779. )
  6780. (pin "1" (uuid 0d42402b-f0df-4e33-a8b7-c0e62c06aa04))
  6781. (pin "2" (uuid a3e3c332-5caa-4e5e-b7d6-3a89be67903f))
  6782. )
  6783. (symbol (lib_id "power:GND") (at 207.01 142.24 0) (unit 1)
  6784. (in_bom yes) (on_board yes)
  6785. (uuid 00000000-0000-0000-0000-000062182795)
  6786. (property "Reference" "#PWR0135" (id 0) (at 207.01 148.59 0)
  6787. (effects (font (size 1.27 1.27)) hide)
  6788. )
  6789. (property "Value" "GND" (id 1) (at 207.137 146.6342 0))
  6790. (property "Footprint" "" (id 2) (at 207.01 142.24 0)
  6791. (effects (font (size 1.27 1.27)) hide)
  6792. )
  6793. (property "Datasheet" "" (id 3) (at 207.01 142.24 0)
  6794. (effects (font (size 1.27 1.27)) hide)
  6795. )
  6796. (pin "1" (uuid 26bc4cd1-fdf8-403d-b694-724b6695b14c))
  6797. )
  6798. (symbol (lib_id "power:GNDA") (at 233.68 196.85 0) (unit 1)
  6799. (in_bom yes) (on_board yes)
  6800. (uuid 00000000-0000-0000-0000-0000621b25e8)
  6801. (property "Reference" "#PWR0122" (id 0) (at 233.68 203.2 0)
  6802. (effects (font (size 1.27 1.27)) hide)
  6803. )
  6804. (property "Value" "GNDA" (id 1) (at 233.807 201.2442 0))
  6805. (property "Footprint" "" (id 2) (at 233.68 196.85 0)
  6806. (effects (font (size 1.27 1.27)) hide)
  6807. )
  6808. (property "Datasheet" "" (id 3) (at 233.68 196.85 0)
  6809. (effects (font (size 1.27 1.27)) hide)
  6810. )
  6811. (pin "1" (uuid d018d709-67d3-4ad7-be8b-17913be602e2))
  6812. )
  6813. (symbol (lib_id "Device:R_Small") (at 241.3 128.27 0) (unit 1)
  6814. (in_bom yes) (on_board yes)
  6815. (uuid 00000000-0000-0000-0000-0000621b8442)
  6816. (property "Reference" "R17" (id 0) (at 236.3216 128.27 90))
  6817. (property "Value" "10k" (id 1) (at 238.633 128.27 90))
  6818. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 241.3 128.27 0)
  6819. (effects (font (size 1.27 1.27)) hide)
  6820. )
  6821. (property "Datasheet" "~" (id 3) (at 241.3 128.27 0)
  6822. (effects (font (size 1.27 1.27)) hide)
  6823. )
  6824. (property "LCSC" "C98220" (id 4) (at 241.3 128.27 0)
  6825. (effects (font (size 1.27 1.27)) hide)
  6826. )
  6827. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 241.3 128.27 0)
  6828. (effects (font (size 1.27 1.27)) hide)
  6829. )
  6830. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 241.3 128.27 0)
  6831. (effects (font (size 1.27 1.27)) hide)
  6832. )
  6833. (pin "1" (uuid 4d0ad09d-f9da-4c89-82bd-6ce3882f7602))
  6834. (pin "2" (uuid 095cce66-fe1f-4d0d-8d34-b30a0d2d3fc1))
  6835. )
  6836. (symbol (lib_id "power:+3.3V") (at 241.3 123.19 0) (unit 1)
  6837. (in_bom yes) (on_board yes)
  6838. (uuid 00000000-0000-0000-0000-0000621b8449)
  6839. (property "Reference" "#PWR01" (id 0) (at 241.3 127 0)
  6840. (effects (font (size 1.27 1.27)) hide)
  6841. )
  6842. (property "Value" "+3.3V" (id 1) (at 241.681 118.7958 0))
  6843. (property "Footprint" "" (id 2) (at 241.3 123.19 0)
  6844. (effects (font (size 1.27 1.27)) hide)
  6845. )
  6846. (property "Datasheet" "" (id 3) (at 241.3 123.19 0)
  6847. (effects (font (size 1.27 1.27)) hide)
  6848. )
  6849. (pin "1" (uuid b8351dea-9937-4b77-b800-d92809167b1c))
  6850. )
  6851. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 60.96 0) (unit 1)
  6852. (in_bom yes) (on_board yes)
  6853. (uuid 00000000-0000-0000-0000-0000621b8454)
  6854. (property "Reference" "TP13" (id 0) (at 173.9392 59.7916 0)
  6855. (effects (font (size 1.27 1.27)) (justify left))
  6856. )
  6857. (property "Value" "EN" (id 1) (at 173.99 60.96 0)
  6858. (effects (font (size 1.27 1.27)) (justify left))
  6859. )
  6860. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 60.96 0)
  6861. (effects (font (size 1.27 1.27)) hide)
  6862. )
  6863. (property "Datasheet" "~" (id 3) (at 177.8 60.96 0)
  6864. (effects (font (size 1.27 1.27)) hide)
  6865. )
  6866. (pin "1" (uuid 07e2d2d9-cc28-4fde-9a47-6afb5023973f))
  6867. )
  6868. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 195.58 0) (unit 1)
  6869. (in_bom yes) (on_board yes)
  6870. (uuid 00000000-0000-0000-0000-0000621b8956)
  6871. (property "Reference" "TP10" (id 0) (at 82.4992 194.4116 0)
  6872. (effects (font (size 1.27 1.27)) (justify left))
  6873. )
  6874. (property "Value" "CLK" (id 1) (at 82.55 195.58 0)
  6875. (effects (font (size 1.27 1.27)) (justify left))
  6876. )
  6877. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 195.58 0)
  6878. (effects (font (size 1.27 1.27)) hide)
  6879. )
  6880. (property "Datasheet" "~" (id 3) (at 86.36 195.58 0)
  6881. (effects (font (size 1.27 1.27)) hide)
  6882. )
  6883. (pin "1" (uuid e0450c32-6c7d-418d-bc0f-aa7cbff84d35))
  6884. )
  6885. (symbol (lib_id "power:GNDA") (at 214.63 209.55 0) (unit 1)
  6886. (in_bom yes) (on_board yes)
  6887. (uuid 00000000-0000-0000-0000-0000621d4025)
  6888. (property "Reference" "#PWR0123" (id 0) (at 214.63 215.9 0)
  6889. (effects (font (size 1.27 1.27)) hide)
  6890. )
  6891. (property "Value" "GNDA" (id 1) (at 214.757 213.9442 0))
  6892. (property "Footprint" "" (id 2) (at 214.63 209.55 0)
  6893. (effects (font (size 1.27 1.27)) hide)
  6894. )
  6895. (property "Datasheet" "" (id 3) (at 214.63 209.55 0)
  6896. (effects (font (size 1.27 1.27)) hide)
  6897. )
  6898. (pin "1" (uuid 3e803eba-8186-424f-b068-34ca56535b22))
  6899. )
  6900. (symbol (lib_id "power:GND") (at 229.87 209.55 0) (unit 1)
  6901. (in_bom yes) (on_board yes)
  6902. (uuid 00000000-0000-0000-0000-0000621d490e)
  6903. (property "Reference" "#PWR0124" (id 0) (at 229.87 215.9 0)
  6904. (effects (font (size 1.27 1.27)) hide)
  6905. )
  6906. (property "Value" "GND" (id 1) (at 229.997 213.9442 0))
  6907. (property "Footprint" "" (id 2) (at 229.87 209.55 0)
  6908. (effects (font (size 1.27 1.27)) hide)
  6909. )
  6910. (property "Datasheet" "" (id 3) (at 229.87 209.55 0)
  6911. (effects (font (size 1.27 1.27)) hide)
  6912. )
  6913. (pin "1" (uuid af13bbe6-4b76-49e2-b43c-d33a21379d7a))
  6914. )
  6915. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 198.12 0) (unit 1)
  6916. (in_bom yes) (on_board yes)
  6917. (uuid 00000000-0000-0000-0000-0000621d8fb7)
  6918. (property "Reference" "TP11" (id 0) (at 82.4992 196.9516 0)
  6919. (effects (font (size 1.27 1.27)) (justify left))
  6920. )
  6921. (property "Value" "DO" (id 1) (at 82.55 198.12 0)
  6922. (effects (font (size 1.27 1.27)) (justify left))
  6923. )
  6924. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 198.12 0)
  6925. (effects (font (size 1.27 1.27)) hide)
  6926. )
  6927. (property "Datasheet" "~" (id 3) (at 86.36 198.12 0)
  6928. (effects (font (size 1.27 1.27)) hide)
  6929. )
  6930. (pin "1" (uuid bcf55e80-256f-4b8f-baf1-67feda44bef2))
  6931. )
  6932. (symbol (lib_id "power:GNDA") (at 240.03 180.34 0) (unit 1)
  6933. (in_bom yes) (on_board yes)
  6934. (uuid 00000000-0000-0000-0000-0000621f9c4b)
  6935. (property "Reference" "#PWR0125" (id 0) (at 240.03 186.69 0)
  6936. (effects (font (size 1.27 1.27)) hide)
  6937. )
  6938. (property "Value" "GNDA" (id 1) (at 240.157 184.7342 0))
  6939. (property "Footprint" "" (id 2) (at 240.03 180.34 0)
  6940. (effects (font (size 1.27 1.27)) hide)
  6941. )
  6942. (property "Datasheet" "" (id 3) (at 240.03 180.34 0)
  6943. (effects (font (size 1.27 1.27)) hide)
  6944. )
  6945. (pin "1" (uuid 358b5a19-1161-43b1-8fe8-76dfffdf809b))
  6946. )
  6947. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 167.64 0) (unit 1)
  6948. (in_bom yes) (on_board yes)
  6949. (uuid 00000000-0000-0000-0000-000062263aa7)
  6950. (property "Reference" "TP6" (id 0) (at 380.9492 166.4716 0)
  6951. (effects (font (size 1.27 1.27)) (justify left))
  6952. )
  6953. (property "Value" "U" (id 1) (at 381 167.64 0)
  6954. (effects (font (size 1.27 1.27)) (justify left))
  6955. )
  6956. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 167.64 0)
  6957. (effects (font (size 1.27 1.27)) hide)
  6958. )
  6959. (property "Datasheet" "~" (id 3) (at 384.81 167.64 0)
  6960. (effects (font (size 1.27 1.27)) hide)
  6961. )
  6962. (pin "1" (uuid 7221f931-dfac-4f0d-bd11-296f4aa12b10))
  6963. )
  6964. (symbol (lib_id "power:GND") (at 241.3 140.97 0) (unit 1)
  6965. (in_bom yes) (on_board yes)
  6966. (uuid 00000000-0000-0000-0000-000062269e5e)
  6967. (property "Reference" "#PWR02" (id 0) (at 241.3 147.32 0)
  6968. (effects (font (size 1.27 1.27)) hide)
  6969. )
  6970. (property "Value" "GND" (id 1) (at 241.427 145.3642 0))
  6971. (property "Footprint" "" (id 2) (at 241.3 140.97 0)
  6972. (effects (font (size 1.27 1.27)) hide)
  6973. )
  6974. (property "Datasheet" "" (id 3) (at 241.3 140.97 0)
  6975. (effects (font (size 1.27 1.27)) hide)
  6976. )
  6977. (pin "1" (uuid 198dd92f-055f-4b28-85e1-2a45cc19fbc5))
  6978. )
  6979. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 170.18 0) (unit 1)
  6980. (in_bom yes) (on_board yes)
  6981. (uuid 00000000-0000-0000-0000-0000622a8e6d)
  6982. (property "Reference" "TP7" (id 0) (at 380.9492 169.0116 0)
  6983. (effects (font (size 1.27 1.27)) (justify left))
  6984. )
  6985. (property "Value" "V" (id 1) (at 381 170.18 0)
  6986. (effects (font (size 1.27 1.27)) (justify left))
  6987. )
  6988. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 170.18 0)
  6989. (effects (font (size 1.27 1.27)) hide)
  6990. )
  6991. (property "Datasheet" "~" (id 3) (at 384.81 170.18 0)
  6992. (effects (font (size 1.27 1.27)) hide)
  6993. )
  6994. (pin "1" (uuid a15af6c7-e3a9-47d1-99d9-d37c012c0b96))
  6995. )
  6996. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 172.72 0) (unit 1)
  6997. (in_bom yes) (on_board yes)
  6998. (uuid 00000000-0000-0000-0000-0000622cad46)
  6999. (property "Reference" "TP8" (id 0) (at 380.9492 171.5516 0)
  7000. (effects (font (size 1.27 1.27)) (justify left))
  7001. )
  7002. (property "Value" "W" (id 1) (at 381 172.72 0)
  7003. (effects (font (size 1.27 1.27)) (justify left))
  7004. )
  7005. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 172.72 0)
  7006. (effects (font (size 1.27 1.27)) hide)
  7007. )
  7008. (property "Datasheet" "~" (id 3) (at 384.81 172.72 0)
  7009. (effects (font (size 1.27 1.27)) hide)
  7010. )
  7011. (pin "1" (uuid ed030602-ad33-43c6-8797-055c5097d7b0))
  7012. )
  7013. (symbol (lib_id "Connector_Generic:Conn_01x08") (at 251.46 81.28 0) (unit 1)
  7014. (in_bom yes) (on_board yes)
  7015. (uuid 00000000-0000-0000-0000-0000622dfef9)
  7016. (property "Reference" "J3" (id 0) (at 253.492 81.4832 0)
  7017. (effects (font (size 1.27 1.27)) (justify left))
  7018. )
  7019. (property "Value" "LCD" (id 1) (at 253.492 83.7946 0)
  7020. (effects (font (size 1.27 1.27)) (justify left))
  7021. )
  7022. (property "Footprint" "SolderPads:SolderPads_2mm_8" (id 2) (at 251.46 81.28 0)
  7023. (effects (font (size 1.27 1.27)) hide)
  7024. )
  7025. (property "Datasheet" "~" (id 3) (at 251.46 81.28 0)
  7026. (effects (font (size 1.27 1.27)) hide)
  7027. )
  7028. (pin "1" (uuid 521b2398-56fa-4338-8610-870ca4d61557))
  7029. (pin "2" (uuid a201db9e-baf7-4871-be5a-ff795414340c))
  7030. (pin "3" (uuid 17e880b1-271c-4cec-8d9b-beeeb30a1b89))
  7031. (pin "4" (uuid 1a87a7f3-d023-4106-84ee-f187c706415f))
  7032. (pin "5" (uuid caa42d03-8d73-4d57-b233-e69949da956a))
  7033. (pin "6" (uuid e72203a7-4fd3-4622-bb9c-8600bfabdd8f))
  7034. (pin "7" (uuid 35f3c689-1acd-4f9d-8a20-40aa0367785d))
  7035. (pin "8" (uuid 077d5522-c76b-482a-bb37-34c61cd35bac))
  7036. )
  7037. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 69.85 0) (mirror y) (unit 1)
  7038. (in_bom yes) (on_board yes)
  7039. (uuid 00000000-0000-0000-0000-0000622e5052)
  7040. (property "Reference" "Q2" (id 0) (at 172.9486 68.6816 0)
  7041. (effects (font (size 1.27 1.27)) (justify left))
  7042. )
  7043. (property "Value" "UMH3N" (id 1) (at 172.9486 70.993 0)
  7044. (effects (font (size 1.27 1.27)) (justify left))
  7045. )
  7046. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 81.026 0)
  7047. (effects (font (size 1.27 1.27)) hide)
  7048. )
  7049. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 69.85 0)
  7050. (effects (font (size 1.27 1.27)) hide)
  7051. )
  7052. (property "LCSC" "C62892" (id 4) (at 180.34 69.85 0)
  7053. (effects (font (size 1.27 1.27)) hide)
  7054. )
  7055. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 69.85 0)
  7056. (effects (font (size 1.27 1.27)) hide)
  7057. )
  7058. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 69.85 0)
  7059. (effects (font (size 1.27 1.27)) hide)
  7060. )
  7061. (pin "1" (uuid 6691ca19-6715-4a80-847e-ca117309ce61))
  7062. (pin "2" (uuid 76cae1b5-a024-4bde-989b-5ff609e0e526))
  7063. (pin "6" (uuid 0b81ceb9-a3fb-4c04-8c6e-575ef33f6392))
  7064. (pin "3" (uuid d6fc91b9-3675-4ade-9918-6116602d2cdf))
  7065. (pin "4" (uuid ffb75972-f30a-4fb1-8f00-ff2653dbf2db))
  7066. (pin "5" (uuid b02f9511-2061-45c8-8bd6-ba849d7a0eeb))
  7067. )
  7068. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 85.09 180) (unit 2)
  7069. (in_bom yes) (on_board yes)
  7070. (uuid 00000000-0000-0000-0000-0000622e5b70)
  7071. (property "Reference" "Q2" (id 0) (at 172.9486 83.9216 0)
  7072. (effects (font (size 1.27 1.27)) (justify left))
  7073. )
  7074. (property "Value" "UMH3N" (id 1) (at 172.9486 86.233 0)
  7075. (effects (font (size 1.27 1.27)) (justify left))
  7076. )
  7077. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 73.914 0)
  7078. (effects (font (size 1.27 1.27)) hide)
  7079. )
  7080. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 85.09 0)
  7081. (effects (font (size 1.27 1.27)) hide)
  7082. )
  7083. (property "LCSC" "C62892" (id 4) (at 180.34 85.09 0)
  7084. (effects (font (size 1.27 1.27)) hide)
  7085. )
  7086. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 85.09 0)
  7087. (effects (font (size 1.27 1.27)) hide)
  7088. )
  7089. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 85.09 0)
  7090. (effects (font (size 1.27 1.27)) hide)
  7091. )
  7092. (pin "1" (uuid c1bec82d-bcfc-4ffd-9b29-aad0bc15267a))
  7093. (pin "2" (uuid b80cc904-f790-42df-b2f6-ef82a594cbe4))
  7094. (pin "6" (uuid 109cb803-fb15-43a3-a52f-3a5ae2a5aa7b))
  7095. (pin "3" (uuid 8760d1f3-4419-461e-b7ab-5248c2bbbb92))
  7096. (pin "4" (uuid d1bfa2a4-7f52-4f58-86f4-99ff41468384))
  7097. (pin "5" (uuid 33b75fa6-e454-4222-af75-e36476064ee7))
  7098. )
  7099. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 133.35 0) (unit 1)
  7100. (in_bom yes) (on_board yes)
  7101. (uuid 00000000-0000-0000-0000-0000622f4012)
  7102. (property "Reference" "TP4" (id 0) (at 157.4292 132.1816 0)
  7103. (effects (font (size 1.27 1.27)) (justify left))
  7104. )
  7105. (property "Value" "SDA" (id 1) (at 157.48 133.35 0)
  7106. (effects (font (size 1.27 1.27)) (justify left))
  7107. )
  7108. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 133.35 0)
  7109. (effects (font (size 1.27 1.27)) hide)
  7110. )
  7111. (property "Datasheet" "~" (id 3) (at 161.29 133.35 0)
  7112. (effects (font (size 1.27 1.27)) hide)
  7113. )
  7114. (pin "1" (uuid a314d631-cc6f-4d86-afb5-c4e22d9ee906))
  7115. )
  7116. (symbol (lib_id "no_pin:no_pin") (at 218.44 33.02 0) (unit 1)
  7117. (in_bom yes) (on_board yes)
  7118. (uuid 00000000-0000-0000-0000-000062311cef)
  7119. (property "Reference" "Z6" (id 0) (at 218.44 25.7302 0)
  7120. (effects (font (size 1.524 1.524)))
  7121. )
  7122. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 218.44 28.4226 0)
  7123. (effects (font (size 1.524 1.524)))
  7124. )
  7125. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 218.44 33.02 0)
  7126. (effects (font (size 1.524 1.524)) hide)
  7127. )
  7128. (property "Datasheet" "" (id 3) (at 218.44 33.02 0)
  7129. (effects (font (size 1.524 1.524)) hide)
  7130. )
  7131. (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)
  7132. (effects (font (size 1.27 1.27)) hide)
  7133. )
  7134. )
  7135. (symbol (lib_id "no_pin:no_pin") (at 240.03 33.02 0) (unit 1)
  7136. (in_bom yes) (on_board yes)
  7137. (uuid 00000000-0000-0000-0000-000062314e0d)
  7138. (property "Reference" "Z7" (id 0) (at 240.03 25.7302 0)
  7139. (effects (font (size 1.524 1.524)))
  7140. )
  7141. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 240.03 28.4226 0)
  7142. (effects (font (size 1.524 1.524)))
  7143. )
  7144. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 240.03 33.02 0)
  7145. (effects (font (size 1.524 1.524)) hide)
  7146. )
  7147. (property "Datasheet" "" (id 3) (at 240.03 33.02 0)
  7148. (effects (font (size 1.524 1.524)) hide)
  7149. )
  7150. (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)
  7151. (effects (font (size 1.27 1.27)) hide)
  7152. )
  7153. )
  7154. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 139.7 0) (unit 1)
  7155. (in_bom yes) (on_board yes)
  7156. (uuid 00000000-0000-0000-0000-0000623162cf)
  7157. (property "Reference" "TP5" (id 0) (at 157.4292 138.5316 0)
  7158. (effects (font (size 1.27 1.27)) (justify left))
  7159. )
  7160. (property "Value" "SCL" (id 1) (at 157.48 139.7 0)
  7161. (effects (font (size 1.27 1.27)) (justify left))
  7162. )
  7163. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 139.7 0)
  7164. (effects (font (size 1.27 1.27)) hide)
  7165. )
  7166. (property "Datasheet" "~" (id 3) (at 161.29 139.7 0)
  7167. (effects (font (size 1.27 1.27)) hide)
  7168. )
  7169. (pin "1" (uuid 8b08f3ad-d9c5-4621-9d11-9579e8e0a6d2))
  7170. )
  7171. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 95.25 0) (unit 1)
  7172. (in_bom yes) (on_board yes)
  7173. (uuid 00000000-0000-0000-0000-000062317868)
  7174. (property "Reference" "TP14" (id 0) (at 173.9392 94.0816 0)
  7175. (effects (font (size 1.27 1.27)) (justify left))
  7176. )
  7177. (property "Value" "BOOT" (id 1) (at 173.99 95.25 0)
  7178. (effects (font (size 1.27 1.27)) (justify left))
  7179. )
  7180. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 95.25 0)
  7181. (effects (font (size 1.27 1.27)) hide)
  7182. )
  7183. (property "Datasheet" "~" (id 3) (at 177.8 95.25 0)
  7184. (effects (font (size 1.27 1.27)) hide)
  7185. )
  7186. (pin "1" (uuid ba51139c-0c14-4520-b3c5-4cd60fc7a73f))
  7187. )
  7188. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 171.45 44.45 0) (unit 1)
  7189. (in_bom yes) (on_board yes)
  7190. (uuid 00000000-0000-0000-0000-0000623284d1)
  7191. (property "Reference" "H8" (id 0) (at 170.18 38.1 0)
  7192. (effects (font (size 1.27 1.27)) (justify left))
  7193. )
  7194. (property "Value" "AlignmentHole" (id 1) (at 170.18 39.37 0)
  7195. (effects (font (size 1.27 1.27)) (justify left))
  7196. )
  7197. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 171.45 44.45 0)
  7198. (effects (font (size 1.27 1.27)) hide)
  7199. )
  7200. (property "Datasheet" "~" (id 3) (at 171.45 44.45 0)
  7201. (effects (font (size 1.27 1.27)) hide)
  7202. )
  7203. (property "Note" "" (id 4) (at 171.45 44.45 0)
  7204. (effects (font (size 1.27 1.27)) hide)
  7205. )
  7206. (pin "1" (uuid d8058f93-8b91-4e0b-826a-2f09b4026bee))
  7207. )
  7208. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 182.88 44.45 0) (unit 1)
  7209. (in_bom yes) (on_board yes)
  7210. (uuid 00000000-0000-0000-0000-0000623284d9)
  7211. (property "Reference" "H9" (id 0) (at 181.61 38.1 0)
  7212. (effects (font (size 1.27 1.27)) (justify left))
  7213. )
  7214. (property "Value" "AlignmentHole" (id 1) (at 181.61 39.37 0)
  7215. (effects (font (size 1.27 1.27)) (justify left))
  7216. )
  7217. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 182.88 44.45 0)
  7218. (effects (font (size 1.27 1.27)) hide)
  7219. )
  7220. (property "Datasheet" "~" (id 3) (at 182.88 44.45 0)
  7221. (effects (font (size 1.27 1.27)) hide)
  7222. )
  7223. (property "Note" "" (id 4) (at 182.88 44.45 0)
  7224. (effects (font (size 1.27 1.27)) hide)
  7225. )
  7226. (pin "1" (uuid da4b4b3b-963a-4206-8440-61248fca61a5))
  7227. )
  7228. (symbol (lib_id "no_pin:no_pin") (at 261.62 33.02 0) (unit 1)
  7229. (in_bom yes) (on_board yes)
  7230. (uuid 00000000-0000-0000-0000-00006233c06f)
  7231. (property "Reference" "Z8" (id 0) (at 261.62 25.7302 0)
  7232. (effects (font (size 1.524 1.524)))
  7233. )
  7234. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 261.62 28.4226 0)
  7235. (effects (font (size 1.524 1.524)))
  7236. )
  7237. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 261.62 33.02 0)
  7238. (effects (font (size 1.524 1.524)) hide)
  7239. )
  7240. (property "Datasheet" "" (id 3) (at 261.62 33.02 0)
  7241. (effects (font (size 1.524 1.524)) hide)
  7242. )
  7243. (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)
  7244. (effects (font (size 1.27 1.27)) hide)
  7245. )
  7246. )
  7247. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 40.64 0) (unit 1)
  7248. (in_bom yes) (on_board yes)
  7249. (uuid 00000000-0000-0000-0000-000062379e81)
  7250. (property "Reference" "TP15" (id 0) (at 402.5392 39.4716 0)
  7251. (effects (font (size 1.27 1.27)) (justify left))
  7252. )
  7253. (property "Value" "TX" (id 1) (at 402.59 40.64 0)
  7254. (effects (font (size 1.27 1.27)) (justify left))
  7255. )
  7256. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 40.64 0)
  7257. (effects (font (size 1.27 1.27)) hide)
  7258. )
  7259. (property "Datasheet" "~" (id 3) (at 406.4 40.64 0)
  7260. (effects (font (size 1.27 1.27)) hide)
  7261. )
  7262. (pin "1" (uuid d88397a1-27ae-408d-87ab-cc3630533b80))
  7263. )
  7264. (symbol (lib_id "Device:C_Small") (at 326.39 30.48 0) (unit 1)
  7265. (in_bom yes) (on_board yes)
  7266. (uuid 00000000-0000-0000-0000-000062390737)
  7267. (property "Reference" "C25" (id 0) (at 328.7268 29.3116 0)
  7268. (effects (font (size 1.27 1.27)) (justify left))
  7269. )
  7270. (property "Value" "0.1uF" (id 1) (at 328.7268 31.623 0)
  7271. (effects (font (size 1.27 1.27)) (justify left))
  7272. )
  7273. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 326.39 30.48 0)
  7274. (effects (font (size 1.27 1.27)) hide)
  7275. )
  7276. (property "Datasheet" "~" (id 3) (at 326.39 30.48 0)
  7277. (effects (font (size 1.27 1.27)) hide)
  7278. )
  7279. (property "LCSC" "C1591" (id 4) (at 326.39 30.48 0)
  7280. (effects (font (size 1.27 1.27)) hide)
  7281. )
  7282. (property "Digikey" "1276-1935-1-ND" (id 5) (at 326.39 30.48 0)
  7283. (effects (font (size 1.27 1.27)) hide)
  7284. )
  7285. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 326.39 30.48 0)
  7286. (effects (font (size 1.27 1.27)) hide)
  7287. )
  7288. (pin "1" (uuid 10c554fd-22dd-46cf-acfe-70c8dfb45b11))
  7289. (pin "2" (uuid 85094a5b-8cf5-4fd4-95c7-e6160dca3246))
  7290. )
  7291. (symbol (lib_id "Device:C_Small") (at 317.5 30.48 0) (unit 1)
  7292. (in_bom yes) (on_board yes)
  7293. (uuid 00000000-0000-0000-0000-0000623909d3)
  7294. (property "Reference" "C24" (id 0) (at 319.8368 29.3116 0)
  7295. (effects (font (size 1.27 1.27)) (justify left))
  7296. )
  7297. (property "Value" "10uF" (id 1) (at 319.8368 31.623 0)
  7298. (effects (font (size 1.27 1.27)) (justify left))
  7299. )
  7300. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 317.5 30.48 0)
  7301. (effects (font (size 1.27 1.27)) hide)
  7302. )
  7303. (property "Datasheet" "~" (id 3) (at 317.5 30.48 0)
  7304. (effects (font (size 1.27 1.27)) hide)
  7305. )
  7306. (property "LCSC" "C2922480" (id 4) (at 317.5 30.48 0)
  7307. (effects (font (size 1.27 1.27)) hide)
  7308. )
  7309. (property "Digikey" "1276-2891-1-ND" (id 5) (at 317.5 30.48 0)
  7310. (effects (font (size 1.27 1.27)) hide)
  7311. )
  7312. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 317.5 30.48 0)
  7313. (effects (font (size 1.27 1.27)) hide)
  7314. )
  7315. (pin "1" (uuid 7efbb406-d445-4109-b6da-573057ce7536))
  7316. (pin "2" (uuid 372c03b7-f3ce-4285-8a79-a23ebebdc0f1))
  7317. )
  7318. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 43.18 0) (unit 1)
  7319. (in_bom yes) (on_board yes)
  7320. (uuid 00000000-0000-0000-0000-0000623a126c)
  7321. (property "Reference" "TP16" (id 0) (at 402.5392 42.0116 0)
  7322. (effects (font (size 1.27 1.27)) (justify left))
  7323. )
  7324. (property "Value" "RX" (id 1) (at 402.59 43.18 0)
  7325. (effects (font (size 1.27 1.27)) (justify left))
  7326. )
  7327. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 43.18 0)
  7328. (effects (font (size 1.27 1.27)) hide)
  7329. )
  7330. (property "Datasheet" "~" (id 3) (at 406.4 43.18 0)
  7331. (effects (font (size 1.27 1.27)) hide)
  7332. )
  7333. (pin "1" (uuid 3aec649b-7bfb-45b0-aab7-a7fd1c3cd2bb))
  7334. )
  7335. (symbol (lib_id "power:+3.3V") (at 312.42 25.4 0) (unit 1)
  7336. (in_bom yes) (on_board yes)
  7337. (uuid 00000000-0000-0000-0000-0000623d2efc)
  7338. (property "Reference" "#PWR0126" (id 0) (at 312.42 29.21 0)
  7339. (effects (font (size 1.27 1.27)) hide)
  7340. )
  7341. (property "Value" "+3.3V" (id 1) (at 312.801 21.0058 0))
  7342. (property "Footprint" "" (id 2) (at 312.42 25.4 0)
  7343. (effects (font (size 1.27 1.27)) hide)
  7344. )
  7345. (property "Datasheet" "" (id 3) (at 312.42 25.4 0)
  7346. (effects (font (size 1.27 1.27)) hide)
  7347. )
  7348. (pin "1" (uuid e4fcdd73-1b73-41d5-86e8-fa708452c6d3))
  7349. )
  7350. (symbol (lib_id "power:GND") (at 312.42 45.72 0) (unit 1)
  7351. (in_bom yes) (on_board yes)
  7352. (uuid 00000000-0000-0000-0000-0000623d364a)
  7353. (property "Reference" "#PWR0127" (id 0) (at 312.42 52.07 0)
  7354. (effects (font (size 1.27 1.27)) hide)
  7355. )
  7356. (property "Value" "GND" (id 1) (at 312.547 50.1142 0))
  7357. (property "Footprint" "" (id 2) (at 312.42 45.72 0)
  7358. (effects (font (size 1.27 1.27)) hide)
  7359. )
  7360. (property "Datasheet" "" (id 3) (at 312.42 45.72 0)
  7361. (effects (font (size 1.27 1.27)) hide)
  7362. )
  7363. (pin "1" (uuid c18e9869-03c4-4f9f-af59-b974de518cf0))
  7364. )
  7365. (symbol (lib_id "no_pin:no_pin") (at 218.44 45.72 0) (unit 1)
  7366. (in_bom yes) (on_board yes)
  7367. (uuid 00000000-0000-0000-0000-0000623f109c)
  7368. (property "Reference" "Z9" (id 0) (at 218.44 38.4302 0)
  7369. (effects (font (size 1.524 1.524)))
  7370. )
  7371. (property "Value" "WatchGlass39.5mm" (id 1) (at 218.44 41.1226 0)
  7372. (effects (font (size 1.524 1.524)))
  7373. )
  7374. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 218.44 45.72 0)
  7375. (effects (font (size 1.524 1.524)) hide)
  7376. )
  7377. (property "Datasheet" "" (id 3) (at 218.44 45.72 0)
  7378. (effects (font (size 1.524 1.524)) hide)
  7379. )
  7380. (property "Note" "Watch glass: 1mm thick, 39.5mm diameter" (id 4) (at 218.44 45.72 0)
  7381. (effects (font (size 1.27 1.27)) hide)
  7382. )
  7383. (property "AliExpress" "https://www.aliexpress.com/item/33055356489.html" (id 5) (at 218.44 45.72 0)
  7384. (effects (font (size 1.27 1.27)) hide)
  7385. )
  7386. )
  7387. (symbol (lib_id "power:GND") (at 402.59 33.02 0) (unit 1)
  7388. (in_bom yes) (on_board yes)
  7389. (uuid 00000000-0000-0000-0000-0000623f1786)
  7390. (property "Reference" "#PWR0128" (id 0) (at 402.59 39.37 0)
  7391. (effects (font (size 1.27 1.27)) hide)
  7392. )
  7393. (property "Value" "GND" (id 1) (at 402.717 37.4142 0))
  7394. (property "Footprint" "" (id 2) (at 402.59 33.02 0)
  7395. (effects (font (size 1.27 1.27)) hide)
  7396. )
  7397. (property "Datasheet" "" (id 3) (at 402.59 33.02 0)
  7398. (effects (font (size 1.27 1.27)) hide)
  7399. )
  7400. (pin "1" (uuid 638f25d2-c0f3-4b26-98c2-56361c19f1f1))
  7401. )
  7402. (symbol (lib_id "power:GND") (at 334.01 71.12 0) (unit 1)
  7403. (in_bom yes) (on_board yes)
  7404. (uuid 00000000-0000-0000-0000-0000623f1d8e)
  7405. (property "Reference" "#PWR0129" (id 0) (at 334.01 77.47 0)
  7406. (effects (font (size 1.27 1.27)) hide)
  7407. )
  7408. (property "Value" "GND" (id 1) (at 334.137 75.5142 0))
  7409. (property "Footprint" "" (id 2) (at 334.01 71.12 0)
  7410. (effects (font (size 1.27 1.27)) hide)
  7411. )
  7412. (property "Datasheet" "" (id 3) (at 334.01 71.12 0)
  7413. (effects (font (size 1.27 1.27)) hide)
  7414. )
  7415. (pin "1" (uuid 91a3fbaf-aacd-4755-b3f8-d13cadbd6007))
  7416. )
  7417. (symbol (lib_id "power:+3.3V") (at 223.52 69.85 0) (unit 1)
  7418. (in_bom yes) (on_board yes)
  7419. (uuid 00000000-0000-0000-0000-00006245e5c2)
  7420. (property "Reference" "#PWR0130" (id 0) (at 223.52 73.66 0)
  7421. (effects (font (size 1.27 1.27)) hide)
  7422. )
  7423. (property "Value" "+3.3V" (id 1) (at 223.901 65.4558 0))
  7424. (property "Footprint" "" (id 2) (at 223.52 69.85 0)
  7425. (effects (font (size 1.27 1.27)) hide)
  7426. )
  7427. (property "Datasheet" "" (id 3) (at 223.52 69.85 0)
  7428. (effects (font (size 1.27 1.27)) hide)
  7429. )
  7430. (pin "1" (uuid cd758a1e-1d24-42e5-94f9-c79dc5fb0413))
  7431. )
  7432. (symbol (lib_id "power:GND") (at 223.52 77.47 0) (unit 1)
  7433. (in_bom yes) (on_board yes)
  7434. (uuid 00000000-0000-0000-0000-00006245ef1e)
  7435. (property "Reference" "#PWR0131" (id 0) (at 223.52 83.82 0)
  7436. (effects (font (size 1.27 1.27)) hide)
  7437. )
  7438. (property "Value" "GND" (id 1) (at 223.647 81.8642 0))
  7439. (property "Footprint" "" (id 2) (at 223.52 77.47 0)
  7440. (effects (font (size 1.27 1.27)) hide)
  7441. )
  7442. (property "Datasheet" "" (id 3) (at 223.52 77.47 0)
  7443. (effects (font (size 1.27 1.27)) hide)
  7444. )
  7445. (pin "1" (uuid 43f7b188-3c38-4aec-8f91-8fbccbdd3dcd))
  7446. )
  7447. (symbol (lib_id "no_pin:no_pin") (at 240.03 45.72 0) (unit 1)
  7448. (in_bom yes) (on_board yes)
  7449. (uuid 00000000-0000-0000-0000-00006246aa1a)
  7450. (property "Reference" "Z10" (id 0) (at 240.03 38.4302 0)
  7451. (effects (font (size 1.524 1.524)))
  7452. )
  7453. (property "Value" "BLDCMotor" (id 1) (at 240.03 41.1226 0)
  7454. (effects (font (size 1.524 1.524)))
  7455. )
  7456. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 240.03 45.72 0)
  7457. (effects (font (size 1.524 1.524)) hide)
  7458. )
  7459. (property "Datasheet" "" (id 3) (at 240.03 45.72 0)
  7460. (effects (font (size 1.524 1.524)) hide)
  7461. )
  7462. (property "Note" "SparkFun: https://www.sparkfun.com/products/20441" (id 4) (at 240.03 45.72 0)
  7463. (effects (font (size 1.27 1.27)) hide)
  7464. )
  7465. (property "AliExpress" "" (id 5) (at 240.03 45.72 0)
  7466. (effects (font (size 1.27 1.27)) hide)
  7467. )
  7468. )
  7469. (symbol (lib_id "Device:C_Small") (at 224.79 73.66 0) (unit 1)
  7470. (in_bom yes) (on_board yes)
  7471. (uuid 00000000-0000-0000-0000-00006246f069)
  7472. (property "Reference" "C26" (id 0) (at 227.1268 72.4916 0)
  7473. (effects (font (size 1.27 1.27)) (justify left))
  7474. )
  7475. (property "Value" "10uF" (id 1) (at 227.1268 74.803 0)
  7476. (effects (font (size 1.27 1.27)) (justify left))
  7477. )
  7478. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 224.79 73.66 0)
  7479. (effects (font (size 1.27 1.27)) hide)
  7480. )
  7481. (property "Datasheet" "~" (id 3) (at 224.79 73.66 0)
  7482. (effects (font (size 1.27 1.27)) hide)
  7483. )
  7484. (property "LCSC" "C2922480" (id 4) (at 224.79 73.66 0)
  7485. (effects (font (size 1.27 1.27)) hide)
  7486. )
  7487. (property "Digikey" "1276-2891-1-ND" (id 5) (at 224.79 73.66 0)
  7488. (effects (font (size 1.27 1.27)) hide)
  7489. )
  7490. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 224.79 73.66 0)
  7491. (effects (font (size 1.27 1.27)) hide)
  7492. )
  7493. (pin "1" (uuid fcbbeefe-3039-4d5e-b86c-9c72c7ae9bfc))
  7494. (pin "2" (uuid 294a1a09-794d-4457-8db5-2717b007b81c))
  7495. )
  7496. (symbol (lib_id "power:PWR_FLAG") (at 57.15 58.42 0) (unit 1)
  7497. (in_bom yes) (on_board yes)
  7498. (uuid 00000000-0000-0000-0000-0000625e1008)
  7499. (property "Reference" "#FLG0101" (id 0) (at 57.15 56.515 0)
  7500. (effects (font (size 1.27 1.27)) hide)
  7501. )
  7502. (property "Value" "PWR_FLAG" (id 1) (at 57.15 54.0258 0))
  7503. (property "Footprint" "" (id 2) (at 57.15 58.42 0)
  7504. (effects (font (size 1.27 1.27)) hide)
  7505. )
  7506. (property "Datasheet" "~" (id 3) (at 57.15 58.42 0)
  7507. (effects (font (size 1.27 1.27)) hide)
  7508. )
  7509. (pin "1" (uuid d3d27eed-0d1a-4443-9ecf-3382e9e5792c))
  7510. )
  7511. (symbol (lib_id "power:PWR_FLAG") (at 45.72 100.33 0) (unit 1)
  7512. (in_bom yes) (on_board yes)
  7513. (uuid 00000000-0000-0000-0000-0000625fa47a)
  7514. (property "Reference" "#FLG0102" (id 0) (at 45.72 98.425 0)
  7515. (effects (font (size 1.27 1.27)) hide)
  7516. )
  7517. (property "Value" "PWR_FLAG" (id 1) (at 45.72 95.9358 0))
  7518. (property "Footprint" "" (id 2) (at 45.72 100.33 0)
  7519. (effects (font (size 1.27 1.27)) hide)
  7520. )
  7521. (property "Datasheet" "~" (id 3) (at 45.72 100.33 0)
  7522. (effects (font (size 1.27 1.27)) hide)
  7523. )
  7524. (pin "1" (uuid 3596e4f6-a62f-45f3-a36d-75a44a506f70))
  7525. )
  7526. (symbol (lib_id "power:+5V") (at 67.31 58.42 0) (unit 1)
  7527. (in_bom yes) (on_board yes)
  7528. (uuid 00000000-0000-0000-0000-000062644c87)
  7529. (property "Reference" "#PWR0136" (id 0) (at 67.31 62.23 0)
  7530. (effects (font (size 1.27 1.27)) hide)
  7531. )
  7532. (property "Value" "+5V" (id 1) (at 67.691 54.0258 0))
  7533. (property "Footprint" "" (id 2) (at 67.31 58.42 0)
  7534. (effects (font (size 1.27 1.27)) hide)
  7535. )
  7536. (property "Datasheet" "" (id 3) (at 67.31 58.42 0)
  7537. (effects (font (size 1.27 1.27)) hide)
  7538. )
  7539. (pin "1" (uuid a65f4b08-ed17-4666-991e-102dbdbbb7ae))
  7540. )
  7541. (symbol (lib_id "power:+5V") (at 321.31 165.1 0) (unit 1)
  7542. (in_bom yes) (on_board yes)
  7543. (uuid 00000000-0000-0000-0000-000062663a0f)
  7544. (property "Reference" "#PWR0137" (id 0) (at 321.31 168.91 0)
  7545. (effects (font (size 1.27 1.27)) hide)
  7546. )
  7547. (property "Value" "+5V" (id 1) (at 321.691 160.7058 0))
  7548. (property "Footprint" "" (id 2) (at 321.31 165.1 0)
  7549. (effects (font (size 1.27 1.27)) hide)
  7550. )
  7551. (property "Datasheet" "" (id 3) (at 321.31 165.1 0)
  7552. (effects (font (size 1.27 1.27)) hide)
  7553. )
  7554. (pin "1" (uuid e127aca6-2244-4ab0-a5ba-d39a64f63be0))
  7555. )
  7556. (symbol (lib_id "power:+5V") (at 22.86 25.4 0) (unit 1)
  7557. (in_bom yes) (on_board yes)
  7558. (uuid 00000000-0000-0000-0000-00006269a626)
  7559. (property "Reference" "#PWR0138" (id 0) (at 22.86 29.21 0)
  7560. (effects (font (size 1.27 1.27)) hide)
  7561. )
  7562. (property "Value" "+5V" (id 1) (at 22.86 21.59 0))
  7563. (property "Footprint" "" (id 2) (at 22.86 25.4 0)
  7564. (effects (font (size 1.27 1.27)) hide)
  7565. )
  7566. (property "Datasheet" "" (id 3) (at 22.86 25.4 0)
  7567. (effects (font (size 1.27 1.27)) hide)
  7568. )
  7569. (pin "1" (uuid 2e063fff-a2c7-45f0-96f6-e7831414a280))
  7570. )
  7571. (symbol (lib_id "power:GND") (at 321.31 175.26 0) (unit 1)
  7572. (in_bom yes) (on_board yes)
  7573. (uuid 00000000-0000-0000-0000-0000626b6cf1)
  7574. (property "Reference" "#PWR0132" (id 0) (at 321.31 181.61 0)
  7575. (effects (font (size 1.27 1.27)) hide)
  7576. )
  7577. (property "Value" "GND" (id 1) (at 321.437 179.6542 0))
  7578. (property "Footprint" "" (id 2) (at 321.31 175.26 0)
  7579. (effects (font (size 1.27 1.27)) hide)
  7580. )
  7581. (property "Datasheet" "" (id 3) (at 321.31 175.26 0)
  7582. (effects (font (size 1.27 1.27)) hide)
  7583. )
  7584. (pin "1" (uuid bc72b5b2-7af7-488d-b91b-58a1a8d3b9ab))
  7585. )
  7586. (symbol (lib_id "VEML7700:VEML7700") (at 62.23 147.32 0) (unit 1)
  7587. (in_bom yes) (on_board yes)
  7588. (uuid 00000000-0000-0000-0000-00006271597a)
  7589. (property "Reference" "U8" (id 0) (at 55.1688 146.7866 0)
  7590. (effects (font (size 1.27 1.27)) (justify right))
  7591. )
  7592. (property "Value" "VEML7700" (id 1) (at 55.1688 149.098 0)
  7593. (effects (font (size 1.27 1.27)) (justify right))
  7594. )
  7595. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 62.23 147.32 0)
  7596. (effects (font (size 1.27 1.27)) hide)
  7597. )
  7598. (property "Datasheet" "" (id 3) (at 62.23 147.32 0)
  7599. (effects (font (size 1.27 1.27)) hide)
  7600. )
  7601. (property "Digikey" "VEML7700-TT" (id 4) (at 62.23 147.32 0)
  7602. (effects (font (size 1.27 1.27)) hide)
  7603. )
  7604. (property "Mouser" "78-VEML7700-TT" (id 5) (at 62.23 147.32 0)
  7605. (effects (font (size 1.27 1.27)) hide)
  7606. )
  7607. (property "LCSC" "C1850416" (id 6) (at 62.23 147.32 0)
  7608. (effects (font (size 1.27 1.27)) hide)
  7609. )
  7610. (pin "1" (uuid 4e639396-fd0d-48f3-ae01-491cad4cd2ae))
  7611. (pin "2" (uuid cf7662f5-8d7d-406e-833a-14d8e8de7e9e))
  7612. (pin "3" (uuid b64ab217-2d8d-49d7-adba-67ecfdf386a3))
  7613. (pin "4" (uuid a91d6319-4f81-4284-8582-de6896fbd8c1))
  7614. )
  7615. (symbol (lib_id "Device:C_Small") (at 45.72 139.7 0) (unit 1)
  7616. (in_bom yes) (on_board yes)
  7617. (uuid 00000000-0000-0000-0000-00006271863d)
  7618. (property "Reference" "C27" (id 0) (at 48.0568 138.5316 0)
  7619. (effects (font (size 1.27 1.27)) (justify left))
  7620. )
  7621. (property "Value" "0.1uF" (id 1) (at 48.0568 140.843 0)
  7622. (effects (font (size 1.27 1.27)) (justify left))
  7623. )
  7624. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 45.72 139.7 0)
  7625. (effects (font (size 1.27 1.27)) hide)
  7626. )
  7627. (property "Datasheet" "~" (id 3) (at 45.72 139.7 0)
  7628. (effects (font (size 1.27 1.27)) hide)
  7629. )
  7630. (property "LCSC" "C1591" (id 4) (at 45.72 139.7 0)
  7631. (effects (font (size 1.27 1.27)) hide)
  7632. )
  7633. (property "Digikey" "1276-1935-1-ND" (id 5) (at 45.72 139.7 0)
  7634. (effects (font (size 1.27 1.27)) hide)
  7635. )
  7636. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 45.72 139.7 0)
  7637. (effects (font (size 1.27 1.27)) hide)
  7638. )
  7639. (pin "1" (uuid 661ecab7-71a0-40fb-9b45-35d1b476f11d))
  7640. (pin "2" (uuid d5ba6e76-eefc-42d3-a8c9-fcf1e81d29a6))
  7641. )
  7642. (symbol (lib_id "power:+3.3V") (at 45.72 129.54 0) (unit 1)
  7643. (in_bom yes) (on_board yes)
  7644. (uuid 00000000-0000-0000-0000-000062719d79)
  7645. (property "Reference" "#PWR0139" (id 0) (at 45.72 133.35 0)
  7646. (effects (font (size 1.27 1.27)) hide)
  7647. )
  7648. (property "Value" "+3.3V" (id 1) (at 46.101 125.1458 0))
  7649. (property "Footprint" "" (id 2) (at 45.72 129.54 0)
  7650. (effects (font (size 1.27 1.27)) hide)
  7651. )
  7652. (property "Datasheet" "" (id 3) (at 45.72 129.54 0)
  7653. (effects (font (size 1.27 1.27)) hide)
  7654. )
  7655. (pin "1" (uuid 7174babe-609e-414a-875a-5d616c24c193))
  7656. )
  7657. (symbol (lib_id "power:GND") (at 45.72 165.1 0) (unit 1)
  7658. (in_bom yes) (on_board yes)
  7659. (uuid 00000000-0000-0000-0000-00006271a63e)
  7660. (property "Reference" "#PWR0140" (id 0) (at 45.72 171.45 0)
  7661. (effects (font (size 1.27 1.27)) hide)
  7662. )
  7663. (property "Value" "GND" (id 1) (at 45.847 169.4942 0))
  7664. (property "Footprint" "" (id 2) (at 45.72 165.1 0)
  7665. (effects (font (size 1.27 1.27)) hide)
  7666. )
  7667. (property "Datasheet" "" (id 3) (at 45.72 165.1 0)
  7668. (effects (font (size 1.27 1.27)) hide)
  7669. )
  7670. (pin "1" (uuid 2a2a4016-7e4c-44fd-931a-e34a173acb81))
  7671. )
  7672. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 189.23 0) (unit 1)
  7673. (in_bom yes) (on_board yes)
  7674. (uuid 00000000-0000-0000-0000-000062748b8a)
  7675. (property "Reference" "J4" (id 0) (at 140.462 188.1632 0)
  7676. (effects (font (size 1.27 1.27)) (justify left))
  7677. )
  7678. (property "Value" "A" (id 1) (at 140.462 190.4746 0)
  7679. (effects (font (size 1.27 1.27)) (justify left))
  7680. )
  7681. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 189.23 0)
  7682. (effects (font (size 1.27 1.27)) hide)
  7683. )
  7684. (property "Datasheet" "~" (id 3) (at 138.43 189.23 0)
  7685. (effects (font (size 1.27 1.27)) hide)
  7686. )
  7687. (pin "1" (uuid 46a17313-3b78-4a84-8f45-a37ea5833dad))
  7688. (pin "2" (uuid 8b9119fb-4888-4674-b5b7-19ba6fe17e82))
  7689. (pin "3" (uuid 8c1feb9f-d0b8-42a7-8406-aa936270dc75))
  7690. )
  7691. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 200.66 0) (unit 1)
  7692. (in_bom yes) (on_board yes)
  7693. (uuid 00000000-0000-0000-0000-00006274a9bb)
  7694. (property "Reference" "J5" (id 0) (at 140.462 199.5932 0)
  7695. (effects (font (size 1.27 1.27)) (justify left))
  7696. )
  7697. (property "Value" "B" (id 1) (at 140.462 201.9046 0)
  7698. (effects (font (size 1.27 1.27)) (justify left))
  7699. )
  7700. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 200.66 0)
  7701. (effects (font (size 1.27 1.27)) hide)
  7702. )
  7703. (property "Datasheet" "~" (id 3) (at 138.43 200.66 0)
  7704. (effects (font (size 1.27 1.27)) hide)
  7705. )
  7706. (pin "1" (uuid e14baf8b-f165-42d0-ab67-48db2ef1f110))
  7707. (pin "2" (uuid 674dc7df-a1ab-4b4f-990f-590eb08c2ce2))
  7708. (pin "3" (uuid ff42b5b9-653e-46b0-81ab-36da556cf5d0))
  7709. )
  7710. (symbol (lib_id "Device:R_Small") (at 166.37 132.08 0) (unit 1)
  7711. (in_bom yes) (on_board yes)
  7712. (uuid 00000000-0000-0000-0000-0000627e020e)
  7713. (property "Reference" "R13" (id 0) (at 161.3916 132.08 90))
  7714. (property "Value" "2.2k" (id 1) (at 163.703 132.08 90))
  7715. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 166.37 132.08 0)
  7716. (effects (font (size 1.27 1.27)) hide)
  7717. )
  7718. (property "Datasheet" "~" (id 3) (at 166.37 132.08 0)
  7719. (effects (font (size 1.27 1.27)) hide)
  7720. )
  7721. (property "LCSC" "C4190" (id 4) (at 166.37 132.08 0)
  7722. (effects (font (size 1.27 1.27)) hide)
  7723. )
  7724. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 166.37 132.08 0)
  7725. (effects (font (size 1.27 1.27)) hide)
  7726. )
  7727. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 166.37 132.08 0)
  7728. (effects (font (size 1.27 1.27)) hide)
  7729. )
  7730. (pin "1" (uuid 0e3e8dbc-ddc7-40fc-a10a-28e14606eb80))
  7731. (pin "2" (uuid efc8f1b1-e26b-4dcb-9909-745df981a878))
  7732. )
  7733. (symbol (lib_id "Device:R_Small") (at 172.72 138.43 0) (unit 1)
  7734. (in_bom yes) (on_board yes)
  7735. (uuid 00000000-0000-0000-0000-0000627eadb9)
  7736. (property "Reference" "R14" (id 0) (at 167.7416 138.43 90))
  7737. (property "Value" "2.2k" (id 1) (at 170.053 138.43 90))
  7738. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 172.72 138.43 0)
  7739. (effects (font (size 1.27 1.27)) hide)
  7740. )
  7741. (property "Datasheet" "~" (id 3) (at 172.72 138.43 0)
  7742. (effects (font (size 1.27 1.27)) hide)
  7743. )
  7744. (property "LCSC" "C4190" (id 4) (at 172.72 138.43 0)
  7745. (effects (font (size 1.27 1.27)) hide)
  7746. )
  7747. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 172.72 138.43 0)
  7748. (effects (font (size 1.27 1.27)) hide)
  7749. )
  7750. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 172.72 138.43 0)
  7751. (effects (font (size 1.27 1.27)) hide)
  7752. )
  7753. (pin "1" (uuid 5c368fdc-8657-4d4e-bac9-9fad9b825df9))
  7754. (pin "2" (uuid 2ba6ef0c-0901-4570-8a77-6e40184846a7))
  7755. )
  7756. (symbol (lib_id "power:+3.3V") (at 170.18 127 0) (unit 1)
  7757. (in_bom yes) (on_board yes)
  7758. (uuid 00000000-0000-0000-0000-000062826cad)
  7759. (property "Reference" "#PWR0141" (id 0) (at 170.18 130.81 0)
  7760. (effects (font (size 1.27 1.27)) hide)
  7761. )
  7762. (property "Value" "+3.3V" (id 1) (at 170.561 122.6058 0))
  7763. (property "Footprint" "" (id 2) (at 170.18 127 0)
  7764. (effects (font (size 1.27 1.27)) hide)
  7765. )
  7766. (property "Datasheet" "" (id 3) (at 170.18 127 0)
  7767. (effects (font (size 1.27 1.27)) hide)
  7768. )
  7769. (pin "1" (uuid fd271d37-3ee8-4620-82ff-72683338471b))
  7770. )
  7771. (symbol (lib_id "power:+5V") (at 80.01 19.05 0) (unit 1)
  7772. (in_bom yes) (on_board yes)
  7773. (uuid 093ff7b3-d0be-4d5f-8dd6-2db6a01d471d)
  7774. (property "Reference" "#PWR0150" (id 0) (at 80.01 22.86 0)
  7775. (effects (font (size 1.27 1.27)) hide)
  7776. )
  7777. (property "Value" "+5V" (id 1) (at 80.01 15.24 0))
  7778. (property "Footprint" "" (id 2) (at 80.01 19.05 0)
  7779. (effects (font (size 1.27 1.27)) hide)
  7780. )
  7781. (property "Datasheet" "" (id 3) (at 80.01 19.05 0)
  7782. (effects (font (size 1.27 1.27)) hide)
  7783. )
  7784. (pin "1" (uuid 813c6a5d-dc7f-4d8b-8cc6-6f054f0f92cc))
  7785. )
  7786. (symbol (lib_id "power:+3.3V") (at 102.87 19.05 0) (unit 1)
  7787. (in_bom yes) (on_board yes)
  7788. (uuid 2f95654e-b711-4440-bf72-ec5c79a93a6e)
  7789. (property "Reference" "#PWR0147" (id 0) (at 102.87 22.86 0)
  7790. (effects (font (size 1.27 1.27)) hide)
  7791. )
  7792. (property "Value" "+3.3V" (id 1) (at 103.251 14.6558 0))
  7793. (property "Footprint" "" (id 2) (at 102.87 19.05 0)
  7794. (effects (font (size 1.27 1.27)) hide)
  7795. )
  7796. (property "Datasheet" "" (id 3) (at 102.87 19.05 0)
  7797. (effects (font (size 1.27 1.27)) hide)
  7798. )
  7799. (pin "1" (uuid dea93584-1893-4f9e-b562-3d5b2d32508c))
  7800. )
  7801. (symbol (lib_id "power:PWR_FLAG") (at 214.63 207.01 0) (unit 1)
  7802. (in_bom yes) (on_board yes) (fields_autoplaced)
  7803. (uuid 6ae86d03-847c-45a5-8903-ce32ee0509d6)
  7804. (property "Reference" "#FLG0103" (id 0) (at 214.63 205.105 0)
  7805. (effects (font (size 1.27 1.27)) hide)
  7806. )
  7807. (property "Value" "PWR_FLAG" (id 1) (at 214.63 201.93 0))
  7808. (property "Footprint" "" (id 2) (at 214.63 207.01 0)
  7809. (effects (font (size 1.27 1.27)) hide)
  7810. )
  7811. (property "Datasheet" "~" (id 3) (at 214.63 207.01 0)
  7812. (effects (font (size 1.27 1.27)) hide)
  7813. )
  7814. (pin "1" (uuid a5cdc951-a651-4b84-af46-2da1a268b065))
  7815. )
  7816. (symbol (lib_id "Device:NetTie_2") (at 222.25 207.01 0) (unit 1)
  7817. (in_bom no) (on_board yes)
  7818. (uuid 6c2ba31f-e69e-499b-a871-fef898c318d8)
  7819. (property "Reference" "NT1" (id 0) (at 222.25 208.28 0))
  7820. (property "Value" "NetTie_2" (id 1) (at 222.25 210.82 0)
  7821. (effects (font (size 1.27 1.27)) hide)
  7822. )
  7823. (property "Footprint" "NetTie:NetTie-2_SMD_Pad0.5mm" (id 2) (at 222.25 207.01 0)
  7824. (effects (font (size 1.27 1.27)) hide)
  7825. )
  7826. (property "Datasheet" "~" (id 3) (at 222.25 207.01 0)
  7827. (effects (font (size 1.27 1.27)) hide)
  7828. )
  7829. (pin "1" (uuid 64a816d7-8779-40eb-abd0-dcef6915077a))
  7830. (pin "2" (uuid f190f63b-6701-467a-ae0a-1f70e305fc5d))
  7831. )
  7832. (symbol (lib_id "Regulator_Linear:TS1117BCW33_RPG") (at 91.44 38.1 0) (unit 1)
  7833. (in_bom yes) (on_board yes)
  7834. (uuid 805c7193-24d6-419b-a5cd-d127eb5a1a11)
  7835. (property "Reference" "U9" (id 0) (at 100.33 41.91 0))
  7836. (property "Value" "TS1117BCW33_RPG" (id 1) (at 101.6 44.45 0))
  7837. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 91.44 26.67 0)
  7838. (effects (font (size 1.27 1.27)) hide)
  7839. )
  7840. (property "Datasheet" "https://www.mouser.com/datasheet/2/395/TS1117B_H1607-1918589.pdf" (id 3) (at 90.17 24.13 0)
  7841. (effects (font (size 1.27 1.27)) hide)
  7842. )
  7843. (property "Note" "Populate either U6 or U9 - depending on pinout - but not both!" (id 4) (at 91.44 38.1 0)
  7844. (effects (font (size 1.27 1.27)) hide)
  7845. )
  7846. (property "LCSC" "C6186, C35879, or others" (id 5) (at 91.44 38.1 0)
  7847. (effects (font (size 1.27 1.27)) hide)
  7848. )
  7849. (property "Digikey" "296-35976-1-ND" (id 6) (at 91.44 38.1 0)
  7850. (effects (font (size 1.27 1.27)) hide)
  7851. )
  7852. (property "Mouser" "821-TS1117BCW33RPG" (id 7) (at 91.44 38.1 0)
  7853. (effects (font (size 1.27 1.27)) hide)
  7854. )
  7855. (pin "1" (uuid e129339a-ebd9-4e8e-a2ca-746c5ff8e2c9))
  7856. (pin "2" (uuid 941b231a-410a-42be-82e3-bcf100220d44))
  7857. (pin "3" (uuid 89f89a97-a177-4d69-9ac2-5b850e1dab3c))
  7858. )
  7859. (symbol (lib_id "power:GND") (at 91.44 44.45 0) (unit 1)
  7860. (in_bom yes) (on_board yes)
  7861. (uuid 85bc403f-16fe-415f-b7a8-bafec0496ea2)
  7862. (property "Reference" "#PWR0146" (id 0) (at 91.44 50.8 0)
  7863. (effects (font (size 1.27 1.27)) hide)
  7864. )
  7865. (property "Value" "GND" (id 1) (at 91.44 48.26 0))
  7866. (property "Footprint" "" (id 2) (at 91.44 44.45 0)
  7867. (effects (font (size 1.27 1.27)) hide)
  7868. )
  7869. (property "Datasheet" "" (id 3) (at 91.44 44.45 0)
  7870. (effects (font (size 1.27 1.27)) hide)
  7871. )
  7872. (pin "1" (uuid 81cef10f-a981-49be-a2df-80c1afa3a888))
  7873. )
  7874. (symbol (lib_id "power:GND") (at 91.44 26.67 0) (unit 1)
  7875. (in_bom yes) (on_board yes)
  7876. (uuid 8f361398-ca89-4cfc-aab0-c57487ab886f)
  7877. (property "Reference" "#PWR0148" (id 0) (at 91.44 33.02 0)
  7878. (effects (font (size 1.27 1.27)) hide)
  7879. )
  7880. (property "Value" "GND" (id 1) (at 91.44 30.48 0))
  7881. (property "Footprint" "" (id 2) (at 91.44 26.67 0)
  7882. (effects (font (size 1.27 1.27)) hide)
  7883. )
  7884. (property "Datasheet" "" (id 3) (at 91.44 26.67 0)
  7885. (effects (font (size 1.27 1.27)) hide)
  7886. )
  7887. (pin "1" (uuid 240b9b36-db65-4afd-b902-bcd6d1c05ca2))
  7888. )
  7889. (symbol (lib_id "power:+5V") (at 80.01 38.1 0) (unit 1)
  7890. (in_bom yes) (on_board yes)
  7891. (uuid da20535e-de5b-4dbb-9928-a1153b041fcc)
  7892. (property "Reference" "#PWR0144" (id 0) (at 80.01 41.91 0)
  7893. (effects (font (size 1.27 1.27)) hide)
  7894. )
  7895. (property "Value" "+5V" (id 1) (at 80.01 34.29 0))
  7896. (property "Footprint" "" (id 2) (at 80.01 38.1 0)
  7897. (effects (font (size 1.27 1.27)) hide)
  7898. )
  7899. (property "Datasheet" "" (id 3) (at 80.01 38.1 0)
  7900. (effects (font (size 1.27 1.27)) hide)
  7901. )
  7902. (pin "1" (uuid 2af433dc-5119-491d-ac92-77a75a4771f2))
  7903. )
  7904. (symbol (lib_id "power:+3.3V") (at 102.87 38.1 0) (unit 1)
  7905. (in_bom yes) (on_board yes)
  7906. (uuid f30f2b63-8d91-4c88-980a-7e701d94e79c)
  7907. (property "Reference" "#PWR0145" (id 0) (at 102.87 41.91 0)
  7908. (effects (font (size 1.27 1.27)) hide)
  7909. )
  7910. (property "Value" "+3.3V" (id 1) (at 103.251 33.7058 0))
  7911. (property "Footprint" "" (id 2) (at 102.87 38.1 0)
  7912. (effects (font (size 1.27 1.27)) hide)
  7913. )
  7914. (property "Datasheet" "" (id 3) (at 102.87 38.1 0)
  7915. (effects (font (size 1.27 1.27)) hide)
  7916. )
  7917. (pin "1" (uuid 7280275e-f980-4453-849c-406076e3e7e5))
  7918. )
  7919. (sheet_instances
  7920. (path "/" (page "1"))
  7921. )
  7922. (symbol_instances
  7923. (path "/00000000-0000-0000-0000-0000625e1008"
  7924. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7925. )
  7926. (path "/00000000-0000-0000-0000-0000625fa47a"
  7927. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7928. )
  7929. (path "/6ae86d03-847c-45a5-8903-ce32ee0509d6"
  7930. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7931. )
  7932. (path "/00000000-0000-0000-0000-0000621b8449"
  7933. (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "")
  7934. )
  7935. (path "/00000000-0000-0000-0000-000062269e5e"
  7936. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  7937. )
  7938. (path "/00000000-0000-0000-0000-000061f5e471"
  7939. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  7940. )
  7941. (path "/00000000-0000-0000-0000-000061f5f724"
  7942. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7943. )
  7944. (path "/00000000-0000-0000-0000-000061fefd56"
  7945. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  7946. )
  7947. (path "/00000000-0000-0000-0000-000061ff8431"
  7948. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  7949. )
  7950. (path "/00000000-0000-0000-0000-00006204bf3e"
  7951. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  7952. )
  7953. (path "/00000000-0000-0000-0000-00006205ee7e"
  7954. (reference "#PWR0106") (unit 1) (value "+3.3V") (footprint "")
  7955. )
  7956. (path "/00000000-0000-0000-0000-000062092c18"
  7957. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  7958. )
  7959. (path "/00000000-0000-0000-0000-000062096fa5"
  7960. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  7961. )
  7962. (path "/00000000-0000-0000-0000-0000620a6032"
  7963. (reference "#PWR0109") (unit 1) (value "+3.3V") (footprint "")
  7964. )
  7965. (path "/00000000-0000-0000-0000-0000620d59fa"
  7966. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  7967. )
  7968. (path "/00000000-0000-0000-0000-00006210086e"
  7969. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  7970. )
  7971. (path "/00000000-0000-0000-0000-000062105589"
  7972. (reference "#PWR0112") (unit 1) (value "+3.3V") (footprint "")
  7973. )
  7974. (path "/00000000-0000-0000-0000-0000621184b4"
  7975. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  7976. )
  7977. (path "/00000000-0000-0000-0000-000062153ea9"
  7978. (reference "#PWR0114") (unit 1) (value "+3.3V") (footprint "")
  7979. )
  7980. (path "/00000000-0000-0000-0000-000062154495"
  7981. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  7982. )
  7983. (path "/00000000-0000-0000-0000-0000620606f7"
  7984. (reference "#PWR0116") (unit 1) (value "+3.3V") (footprint "")
  7985. )
  7986. (path "/00000000-0000-0000-0000-0000620d3feb"
  7987. (reference "#PWR0117") (unit 1) (value "GNDA") (footprint "")
  7988. )
  7989. (path "/00000000-0000-0000-0000-000062110345"
  7990. (reference "#PWR0118") (unit 1) (value "GNDA") (footprint "")
  7991. )
  7992. (path "/00000000-0000-0000-0000-00006211ae93"
  7993. (reference "#PWR0119") (unit 1) (value "GNDA") (footprint "")
  7994. )
  7995. (path "/00000000-0000-0000-0000-000062131aaa"
  7996. (reference "#PWR0120") (unit 1) (value "GNDA") (footprint "")
  7997. )
  7998. (path "/00000000-0000-0000-0000-00006213fbbb"
  7999. (reference "#PWR0121") (unit 1) (value "GNDA") (footprint "")
  8000. )
  8001. (path "/00000000-0000-0000-0000-0000621b25e8"
  8002. (reference "#PWR0122") (unit 1) (value "GNDA") (footprint "")
  8003. )
  8004. (path "/00000000-0000-0000-0000-0000621d4025"
  8005. (reference "#PWR0123") (unit 1) (value "GNDA") (footprint "")
  8006. )
  8007. (path "/00000000-0000-0000-0000-0000621d490e"
  8008. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  8009. )
  8010. (path "/00000000-0000-0000-0000-0000621f9c4b"
  8011. (reference "#PWR0125") (unit 1) (value "GNDA") (footprint "")
  8012. )
  8013. (path "/00000000-0000-0000-0000-0000623d2efc"
  8014. (reference "#PWR0126") (unit 1) (value "+3.3V") (footprint "")
  8015. )
  8016. (path "/00000000-0000-0000-0000-0000623d364a"
  8017. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  8018. )
  8019. (path "/00000000-0000-0000-0000-0000623f1786"
  8020. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  8021. )
  8022. (path "/00000000-0000-0000-0000-0000623f1d8e"
  8023. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  8024. )
  8025. (path "/00000000-0000-0000-0000-00006245e5c2"
  8026. (reference "#PWR0130") (unit 1) (value "+3.3V") (footprint "")
  8027. )
  8028. (path "/00000000-0000-0000-0000-00006245ef1e"
  8029. (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
  8030. )
  8031. (path "/00000000-0000-0000-0000-0000626b6cf1"
  8032. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  8033. )
  8034. (path "/00000000-0000-0000-0000-000062078a82"
  8035. (reference "#PWR0133") (unit 1) (value "+5V") (footprint "")
  8036. )
  8037. (path "/00000000-0000-0000-0000-000062078a89"
  8038. (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
  8039. )
  8040. (path "/00000000-0000-0000-0000-000062182795"
  8041. (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
  8042. )
  8043. (path "/00000000-0000-0000-0000-000062644c87"
  8044. (reference "#PWR0136") (unit 1) (value "+5V") (footprint "")
  8045. )
  8046. (path "/00000000-0000-0000-0000-000062663a0f"
  8047. (reference "#PWR0137") (unit 1) (value "+5V") (footprint "")
  8048. )
  8049. (path "/00000000-0000-0000-0000-00006269a626"
  8050. (reference "#PWR0138") (unit 1) (value "+5V") (footprint "")
  8051. )
  8052. (path "/00000000-0000-0000-0000-000062719d79"
  8053. (reference "#PWR0139") (unit 1) (value "+3.3V") (footprint "")
  8054. )
  8055. (path "/00000000-0000-0000-0000-00006271a63e"
  8056. (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
  8057. )
  8058. (path "/00000000-0000-0000-0000-000062826cad"
  8059. (reference "#PWR0141") (unit 1) (value "+3.3V") (footprint "")
  8060. )
  8061. (path "/00000000-0000-0000-0000-00006213300a"
  8062. (reference "#PWR0142") (unit 1) (value "+3.3V") (footprint "")
  8063. )
  8064. (path "/da20535e-de5b-4dbb-9928-a1153b041fcc"
  8065. (reference "#PWR0144") (unit 1) (value "+5V") (footprint "")
  8066. )
  8067. (path "/f30f2b63-8d91-4c88-980a-7e701d94e79c"
  8068. (reference "#PWR0145") (unit 1) (value "+3.3V") (footprint "")
  8069. )
  8070. (path "/85bc403f-16fe-415f-b7a8-bafec0496ea2"
  8071. (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
  8072. )
  8073. (path "/2f95654e-b711-4440-bf72-ec5c79a93a6e"
  8074. (reference "#PWR0147") (unit 1) (value "+3.3V") (footprint "")
  8075. )
  8076. (path "/8f361398-ca89-4cfc-aab0-c57487ab886f"
  8077. (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
  8078. )
  8079. (path "/093ff7b3-d0be-4d5f-8dd6-2db6a01d471d"
  8080. (reference "#PWR0150") (unit 1) (value "+5V") (footprint "")
  8081. )
  8082. (path "/00000000-0000-0000-0000-000061f52a71"
  8083. (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8084. )
  8085. (path "/00000000-0000-0000-0000-000061f573a1"
  8086. (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8087. )
  8088. (path "/00000000-0000-0000-0000-000061f57785"
  8089. (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8090. )
  8091. (path "/00000000-0000-0000-0000-000061f58363"
  8092. (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8093. )
  8094. (path "/00000000-0000-0000-0000-000061f5903d"
  8095. (reference "C5") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8096. )
  8097. (path "/00000000-0000-0000-0000-000061f59cab"
  8098. (reference "C6") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8099. )
  8100. (path "/00000000-0000-0000-0000-000061f5a94f"
  8101. (reference "C7") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8102. )
  8103. (path "/00000000-0000-0000-0000-000061f5bfc9"
  8104. (reference "C8") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8105. )
  8106. (path "/00000000-0000-0000-0000-0000620545dc"
  8107. (reference "C9") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8108. )
  8109. (path "/00000000-0000-0000-0000-0000620581b5"
  8110. (reference "C10") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8111. )
  8112. (path "/00000000-0000-0000-0000-0000621156c4"
  8113. (reference "C11") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8114. )
  8115. (path "/00000000-0000-0000-0000-000062138f96"
  8116. (reference "C12") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8117. )
  8118. (path "/00000000-0000-0000-0000-00006208a205"
  8119. (reference "C13") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8120. )
  8121. (path "/00000000-0000-0000-0000-000062086349"
  8122. (reference "C14") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8123. )
  8124. (path "/00000000-0000-0000-0000-000062084712"
  8125. (reference "C15") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8126. )
  8127. (path "/00000000-0000-0000-0000-000062060ff5"
  8128. (reference "C16") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8129. )
  8130. (path "/00000000-0000-0000-0000-000062091f81"
  8131. (reference "C17") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8132. )
  8133. (path "/00000000-0000-0000-0000-0000620191b6"
  8134. (reference "C18") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8135. )
  8136. (path "/00000000-0000-0000-0000-0000620172ce"
  8137. (reference "C19") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8138. )
  8139. (path "/00000000-0000-0000-0000-000062066b6d"
  8140. (reference "C20") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8141. )
  8142. (path "/00000000-0000-0000-0000-00006209158d"
  8143. (reference "C21") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8144. )
  8145. (path "/00000000-0000-0000-0000-00006209787a"
  8146. (reference "C22") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8147. )
  8148. (path "/00000000-0000-0000-0000-00006213ff11"
  8149. (reference "C23") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8150. )
  8151. (path "/00000000-0000-0000-0000-0000623909d3"
  8152. (reference "C24") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8153. )
  8154. (path "/00000000-0000-0000-0000-000062390737"
  8155. (reference "C25") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8156. )
  8157. (path "/00000000-0000-0000-0000-00006246f069"
  8158. (reference "C26") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  8159. )
  8160. (path "/00000000-0000-0000-0000-00006271863d"
  8161. (reference "C27") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8162. )
  8163. (path "/00000000-0000-0000-0000-00006211bef1"
  8164. (reference "C28") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8165. )
  8166. (path "/00000000-0000-0000-0000-000062078a75"
  8167. (reference "C29") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8168. )
  8169. (path "/00000000-0000-0000-0000-000061f5027f"
  8170. (reference "D1") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8171. )
  8172. (path "/00000000-0000-0000-0000-000061f5739b"
  8173. (reference "D2") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8174. )
  8175. (path "/00000000-0000-0000-0000-000061f5777f"
  8176. (reference "D3") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8177. )
  8178. (path "/00000000-0000-0000-0000-000061f5835d"
  8179. (reference "D4") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8180. )
  8181. (path "/00000000-0000-0000-0000-000061f59037"
  8182. (reference "D5") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8183. )
  8184. (path "/00000000-0000-0000-0000-000061f59ca5"
  8185. (reference "D6") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8186. )
  8187. (path "/00000000-0000-0000-0000-000061f5a949"
  8188. (reference "D7") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8189. )
  8190. (path "/00000000-0000-0000-0000-000061f5bfc3"
  8191. (reference "D8") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8192. )
  8193. (path "/00000000-0000-0000-0000-000061f74a74"
  8194. (reference "H1") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8195. )
  8196. (path "/00000000-0000-0000-0000-000061f75e86"
  8197. (reference "H2") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8198. )
  8199. (path "/00000000-0000-0000-0000-000061f76bf7"
  8200. (reference "H3") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8201. )
  8202. (path "/00000000-0000-0000-0000-000061f779d1"
  8203. (reference "H4") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8204. )
  8205. (path "/00000000-0000-0000-0000-000061f788c4"
  8206. (reference "H5") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8207. )
  8208. (path "/00000000-0000-0000-0000-000061f79385"
  8209. (reference "H6") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8210. )
  8211. (path "/00000000-0000-0000-0000-000061f79f4a"
  8212. (reference "H7") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8213. )
  8214. (path "/00000000-0000-0000-0000-0000623284d1"
  8215. (reference "H8") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8216. )
  8217. (path "/00000000-0000-0000-0000-0000623284d9"
  8218. (reference "H9") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8219. )
  8220. (path "/00000000-0000-0000-0000-000061f6e8c0"
  8221. (reference "J1") (unit 1) (value "BLDC") (footprint "Molex:532610371")
  8222. )
  8223. (path "/00000000-0000-0000-0000-000061fcaa5b"
  8224. (reference "J2") (unit 1) (value "USB_C_Receptacle_USB2.0") (footprint "GCT_USB:USB4510_NoPaste")
  8225. )
  8226. (path "/00000000-0000-0000-0000-0000622dfef9"
  8227. (reference "J3") (unit 1) (value "LCD") (footprint "SolderPads:SolderPads_2mm_8")
  8228. )
  8229. (path "/00000000-0000-0000-0000-000062748b8a"
  8230. (reference "J4") (unit 1) (value "A") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8231. )
  8232. (path "/00000000-0000-0000-0000-00006274a9bb"
  8233. (reference "J5") (unit 1) (value "B") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8234. )
  8235. (path "/00000000-0000-0000-0000-00006200e5de"
  8236. (reference "L1") (unit 1) (value "3.3uH") (footprint "Inductor_SMD:L_0805_2012Metric")
  8237. )
  8238. (path "/6c2ba31f-e69e-499b-a871-fef898c318d8"
  8239. (reference "NT1") (unit 1) (value "NetTie_2") (footprint "NetTie:NetTie-2_SMD_Pad0.5mm")
  8240. )
  8241. (path "/00000000-0000-0000-0000-000061fe5517"
  8242. (reference "Q1") (unit 1) (value "MMBT4403") (footprint "Package_TO_SOT_SMD:SOT-23")
  8243. )
  8244. (path "/00000000-0000-0000-0000-0000622e5052"
  8245. (reference "Q2") (unit 1) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8246. )
  8247. (path "/00000000-0000-0000-0000-0000622e5b70"
  8248. (reference "Q2") (unit 2) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8249. )
  8250. (path "/00000000-0000-0000-0000-000061ff5247"
  8251. (reference "R1") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8252. )
  8253. (path "/00000000-0000-0000-0000-000061ff59bf"
  8254. (reference "R2") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8255. )
  8256. (path "/00000000-0000-0000-0000-000061ff8747"
  8257. (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8258. )
  8259. (path "/00000000-0000-0000-0000-000061fff7fc"
  8260. (reference "R4") (unit 1) (value "8.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8261. )
  8262. (path "/00000000-0000-0000-0000-00006217ebc1"
  8263. (reference "R5") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8264. )
  8265. (path "/00000000-0000-0000-0000-00006217f6bc"
  8266. (reference "R6") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8267. )
  8268. (path "/00000000-0000-0000-0000-00006217c4cc"
  8269. (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8270. )
  8271. (path "/00000000-0000-0000-0000-000062180f46"
  8272. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8273. )
  8274. (path "/00000000-0000-0000-0000-0000621810c8"
  8275. (reference "R9") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8276. )
  8277. (path "/00000000-0000-0000-0000-000062181360"
  8278. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8279. )
  8280. (path "/00000000-0000-0000-0000-0000621814c1"
  8281. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8282. )
  8283. (path "/00000000-0000-0000-0000-00006218171e"
  8284. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8285. )
  8286. (path "/00000000-0000-0000-0000-0000627e020e"
  8287. (reference "R13") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8288. )
  8289. (path "/00000000-0000-0000-0000-0000627eadb9"
  8290. (reference "R14") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8291. )
  8292. (path "/00000000-0000-0000-0000-000062132ffe"
  8293. (reference "R15") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8294. )
  8295. (path "/00000000-0000-0000-0000-000062133004"
  8296. (reference "R16") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8297. )
  8298. (path "/00000000-0000-0000-0000-0000621b8442"
  8299. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8300. )
  8301. (path "/00000000-0000-0000-0000-0000620734a8"
  8302. (reference "TP1") (unit 1) (value "5V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8303. )
  8304. (path "/00000000-0000-0000-0000-0000620939bb"
  8305. (reference "TP2") (unit 1) (value "3.3v") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8306. )
  8307. (path "/00000000-0000-0000-0000-0000620f043a"
  8308. (reference "TP3") (unit 1) (value "GND") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8309. )
  8310. (path "/00000000-0000-0000-0000-0000622f4012"
  8311. (reference "TP4") (unit 1) (value "SDA") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8312. )
  8313. (path "/00000000-0000-0000-0000-0000623162cf"
  8314. (reference "TP5") (unit 1) (value "SCL") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8315. )
  8316. (path "/00000000-0000-0000-0000-000062263aa7"
  8317. (reference "TP6") (unit 1) (value "U") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8318. )
  8319. (path "/00000000-0000-0000-0000-0000622a8e6d"
  8320. (reference "TP7") (unit 1) (value "V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8321. )
  8322. (path "/00000000-0000-0000-0000-0000622cad46"
  8323. (reference "TP8") (unit 1) (value "W") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8324. )
  8325. (path "/00000000-0000-0000-0000-000062179005"
  8326. (reference "TP9") (unit 1) (value "CSN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8327. )
  8328. (path "/00000000-0000-0000-0000-0000621b8956"
  8329. (reference "TP10") (unit 1) (value "CLK") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8330. )
  8331. (path "/00000000-0000-0000-0000-0000621d8fb7"
  8332. (reference "TP11") (unit 1) (value "DO") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8333. )
  8334. (path "/00000000-0000-0000-0000-00006213725a"
  8335. (reference "TP12") (unit 1) (value "LED") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8336. )
  8337. (path "/00000000-0000-0000-0000-0000621b8454"
  8338. (reference "TP13") (unit 1) (value "EN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8339. )
  8340. (path "/00000000-0000-0000-0000-000062317868"
  8341. (reference "TP14") (unit 1) (value "BOOT") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8342. )
  8343. (path "/00000000-0000-0000-0000-000062379e81"
  8344. (reference "TP15") (unit 1) (value "TX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8345. )
  8346. (path "/00000000-0000-0000-0000-0000623a126c"
  8347. (reference "TP16") (unit 1) (value "RX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8348. )
  8349. (path "/00000000-0000-0000-0000-000061f4f0c2"
  8350. (reference "U1") (unit 1) (value "MT6701-CT") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8351. )
  8352. (path "/00000000-0000-0000-0000-00006200e46e"
  8353. (reference "U2") (unit 1) (value "T-Micro32_Plus") (footprint "lilygo_micro32:T-Micro32")
  8354. )
  8355. (path "/00000000-0000-0000-0000-0000620180e0"
  8356. (reference "U3") (unit 1) (value "CH340C") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8357. )
  8358. (path "/00000000-0000-0000-0000-00006201f11d"
  8359. (reference "U4") (unit 1) (value "HX711") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8360. )
  8361. (path "/00000000-0000-0000-0000-0000620241db"
  8362. (reference "U5") (unit 1) (value "TMC6300") (footprint "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles")
  8363. )
  8364. (path "/00000000-0000-0000-0000-00006203d4f8"
  8365. (reference "U6") (unit 1) (value "AP2114HA-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8366. )
  8367. (path "/00000000-0000-0000-0000-0000620700a0"
  8368. (reference "U7") (unit 1) (value "SN74LV1T34DBV") (footprint "Package_TO_SOT_SMD:SOT-23-5")
  8369. )
  8370. (path "/00000000-0000-0000-0000-00006271597a"
  8371. (reference "U8") (unit 1) (value "VEML7700") (footprint "VEML7700:VEML7700-TOP")
  8372. )
  8373. (path "/805c7193-24d6-419b-a5cd-d127eb5a1a11"
  8374. (reference "U9") (unit 1) (value "TS1117BCW33_RPG") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8375. )
  8376. (path "/00000000-0000-0000-0000-000061fa38cf"
  8377. (reference "Z1") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8378. )
  8379. (path "/00000000-0000-0000-0000-000061fa43dc"
  8380. (reference "Z2") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8381. )
  8382. (path "/00000000-0000-0000-0000-000061fa4fb7"
  8383. (reference "Z3") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8384. )
  8385. (path "/00000000-0000-0000-0000-000061fa5b5e"
  8386. (reference "Z4") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8387. )
  8388. (path "/00000000-0000-0000-0000-000062038103"
  8389. (reference "Z5") (unit 1) (value "dummy_keepouts") (footprint "view_custom:ViewKeepouts3d")
  8390. )
  8391. (path "/00000000-0000-0000-0000-000062311cef"
  8392. (reference "Z6") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8393. )
  8394. (path "/00000000-0000-0000-0000-000062314e0d"
  8395. (reference "Z7") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8396. )
  8397. (path "/00000000-0000-0000-0000-00006233c06f"
  8398. (reference "Z8") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8399. )
  8400. (path "/00000000-0000-0000-0000-0000623f109c"
  8401. (reference "Z9") (unit 1) (value "WatchGlass39.5mm") (footprint "BOM_Only:bom_only_no_pin")
  8402. )
  8403. (path "/00000000-0000-0000-0000-00006246aa1a"
  8404. (reference "Z10") (unit 1) (value "BLDCMotor") (footprint "BOM_Only:bom_only_no_pin")
  8405. )
  8406. )
  8407. )