view_base.kicad_sch 326 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
  3. (paper "B")
  4. (title_block
  5. (title "SmartKnob View")
  6. (rev "${RELEASE_VERSION}")
  7. (company "Scott Bezek")
  8. (comment 2 "${COMMIT_DATE_LONG}")
  9. (comment 3 "${COMMIT_HASH}")
  10. )
  11. (lib_symbols
  12. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  13. (property "Reference" "J" (id 0) (at 0 5.08 0)
  14. (effects (font (size 1.27 1.27)))
  15. )
  16. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  17. (effects (font (size 1.27 1.27)))
  18. )
  19. (property "Footprint" "" (id 2) (at 0 0 0)
  20. (effects (font (size 1.27 1.27)) hide)
  21. )
  22. (property "Datasheet" "~" (id 3) (at 0 0 0)
  23. (effects (font (size 1.27 1.27)) hide)
  24. )
  25. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  26. (effects (font (size 1.27 1.27)) hide)
  27. )
  28. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  29. (effects (font (size 1.27 1.27)) hide)
  30. )
  31. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  32. (effects (font (size 1.27 1.27)) hide)
  33. )
  34. (symbol "Conn_01x03_Male_1_1"
  35. (polyline
  36. (pts
  37. (xy 1.27 -2.54)
  38. (xy 0.8636 -2.54)
  39. )
  40. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  41. (fill (type none))
  42. )
  43. (polyline
  44. (pts
  45. (xy 1.27 0)
  46. (xy 0.8636 0)
  47. )
  48. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  49. (fill (type none))
  50. )
  51. (polyline
  52. (pts
  53. (xy 1.27 2.54)
  54. (xy 0.8636 2.54)
  55. )
  56. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  57. (fill (type none))
  58. )
  59. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  60. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  61. (fill (type outline))
  62. )
  63. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  64. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  65. (fill (type outline))
  66. )
  67. (rectangle (start 0.8636 2.667) (end 0 2.413)
  68. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  69. (fill (type outline))
  70. )
  71. (pin passive line (at 5.08 2.54 180) (length 3.81)
  72. (name "Pin_1" (effects (font (size 1.27 1.27))))
  73. (number "1" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin passive line (at 5.08 0 180) (length 3.81)
  76. (name "Pin_2" (effects (font (size 1.27 1.27))))
  77. (number "2" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  80. (name "Pin_3" (effects (font (size 1.27 1.27))))
  81. (number "3" (effects (font (size 1.27 1.27))))
  82. )
  83. )
  84. )
  85. (symbol "Connector:TestPoint_Small" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
  86. (property "Reference" "TP" (id 0) (at 0 3.81 0)
  87. (effects (font (size 1.27 1.27)))
  88. )
  89. (property "Value" "TestPoint_Small" (id 1) (at 0 2.032 0)
  90. (effects (font (size 1.27 1.27)))
  91. )
  92. (property "Footprint" "" (id 2) (at 5.08 0 0)
  93. (effects (font (size 1.27 1.27)) hide)
  94. )
  95. (property "Datasheet" "~" (id 3) (at 5.08 0 0)
  96. (effects (font (size 1.27 1.27)) hide)
  97. )
  98. (property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
  99. (effects (font (size 1.27 1.27)) hide)
  100. )
  101. (property "ki_description" "test point" (id 5) (at 0 0 0)
  102. (effects (font (size 1.27 1.27)) hide)
  103. )
  104. (property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
  105. (effects (font (size 1.27 1.27)) hide)
  106. )
  107. (symbol "TestPoint_Small_0_1"
  108. (circle (center 0 0) (radius 0.508)
  109. (stroke (width 0) (type default) (color 0 0 0 0))
  110. (fill (type none))
  111. )
  112. )
  113. (symbol "TestPoint_Small_1_1"
  114. (pin passive line (at 0 0 90) (length 0)
  115. (name "1" (effects (font (size 1.27 1.27))))
  116. (number "1" (effects (font (size 1.27 1.27))))
  117. )
  118. )
  119. )
  120. (symbol "Connector:USB_C_Receptacle_USB2.0" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  121. (property "Reference" "J" (id 0) (at -10.16 19.05 0)
  122. (effects (font (size 1.27 1.27)) (justify left))
  123. )
  124. (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 19.05 19.05 0)
  125. (effects (font (size 1.27 1.27)) (justify right))
  126. )
  127. (property "Footprint" "" (id 2) (at 3.81 0 0)
  128. (effects (font (size 1.27 1.27)) hide)
  129. )
  130. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 3.81 0 0)
  131. (effects (font (size 1.27 1.27)) hide)
  132. )
  133. (property "ki_keywords" "usb universal serial bus type-C USB2.0" (id 4) (at 0 0 0)
  134. (effects (font (size 1.27 1.27)) hide)
  135. )
  136. (property "ki_description" "USB 2.0-only Type-C Receptacle connector" (id 5) (at 0 0 0)
  137. (effects (font (size 1.27 1.27)) hide)
  138. )
  139. (property "ki_fp_filters" "USB*C*Receptacle*" (id 6) (at 0 0 0)
  140. (effects (font (size 1.27 1.27)) hide)
  141. )
  142. (symbol "USB_C_Receptacle_USB2.0_0_0"
  143. (rectangle (start -0.254 -17.78) (end 0.254 -16.764)
  144. (stroke (width 0) (type default) (color 0 0 0 0))
  145. (fill (type none))
  146. )
  147. (rectangle (start 10.16 -14.986) (end 9.144 -15.494)
  148. (stroke (width 0) (type default) (color 0 0 0 0))
  149. (fill (type none))
  150. )
  151. (rectangle (start 10.16 -12.446) (end 9.144 -12.954)
  152. (stroke (width 0) (type default) (color 0 0 0 0))
  153. (fill (type none))
  154. )
  155. (rectangle (start 10.16 -4.826) (end 9.144 -5.334)
  156. (stroke (width 0) (type default) (color 0 0 0 0))
  157. (fill (type none))
  158. )
  159. (rectangle (start 10.16 -2.286) (end 9.144 -2.794)
  160. (stroke (width 0) (type default) (color 0 0 0 0))
  161. (fill (type none))
  162. )
  163. (rectangle (start 10.16 0.254) (end 9.144 -0.254)
  164. (stroke (width 0) (type default) (color 0 0 0 0))
  165. (fill (type none))
  166. )
  167. (rectangle (start 10.16 2.794) (end 9.144 2.286)
  168. (stroke (width 0) (type default) (color 0 0 0 0))
  169. (fill (type none))
  170. )
  171. (rectangle (start 10.16 7.874) (end 9.144 7.366)
  172. (stroke (width 0) (type default) (color 0 0 0 0))
  173. (fill (type none))
  174. )
  175. (rectangle (start 10.16 10.414) (end 9.144 9.906)
  176. (stroke (width 0) (type default) (color 0 0 0 0))
  177. (fill (type none))
  178. )
  179. (rectangle (start 10.16 15.494) (end 9.144 14.986)
  180. (stroke (width 0) (type default) (color 0 0 0 0))
  181. (fill (type none))
  182. )
  183. )
  184. (symbol "USB_C_Receptacle_USB2.0_0_1"
  185. (rectangle (start -10.16 17.78) (end 10.16 -17.78)
  186. (stroke (width 0.254) (type default) (color 0 0 0 0))
  187. (fill (type background))
  188. )
  189. (arc (start -8.89 -3.81) (mid -6.985 -5.715) (end -5.08 -3.81)
  190. (stroke (width 0.508) (type default) (color 0 0 0 0))
  191. (fill (type none))
  192. )
  193. (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81)
  194. (stroke (width 0.254) (type default) (color 0 0 0 0))
  195. (fill (type none))
  196. )
  197. (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81)
  198. (stroke (width 0.254) (type default) (color 0 0 0 0))
  199. (fill (type outline))
  200. )
  201. (rectangle (start -7.62 -3.81) (end -6.35 3.81)
  202. (stroke (width 0.254) (type default) (color 0 0 0 0))
  203. (fill (type outline))
  204. )
  205. (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81)
  206. (stroke (width 0.254) (type default) (color 0 0 0 0))
  207. (fill (type none))
  208. )
  209. (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81)
  210. (stroke (width 0.254) (type default) (color 0 0 0 0))
  211. (fill (type outline))
  212. )
  213. (arc (start -5.08 3.81) (mid -6.985 5.715) (end -8.89 3.81)
  214. (stroke (width 0.508) (type default) (color 0 0 0 0))
  215. (fill (type none))
  216. )
  217. (circle (center -2.54 1.143) (radius 0.635)
  218. (stroke (width 0.254) (type default) (color 0 0 0 0))
  219. (fill (type outline))
  220. )
  221. (circle (center 0 -5.842) (radius 1.27)
  222. (stroke (width 0) (type default) (color 0 0 0 0))
  223. (fill (type outline))
  224. )
  225. (polyline
  226. (pts
  227. (xy -8.89 -3.81)
  228. (xy -8.89 3.81)
  229. )
  230. (stroke (width 0.508) (type default) (color 0 0 0 0))
  231. (fill (type none))
  232. )
  233. (polyline
  234. (pts
  235. (xy -5.08 3.81)
  236. (xy -5.08 -3.81)
  237. )
  238. (stroke (width 0.508) (type default) (color 0 0 0 0))
  239. (fill (type none))
  240. )
  241. (polyline
  242. (pts
  243. (xy 0 -5.842)
  244. (xy 0 4.318)
  245. )
  246. (stroke (width 0.508) (type default) (color 0 0 0 0))
  247. (fill (type none))
  248. )
  249. (polyline
  250. (pts
  251. (xy 0 -3.302)
  252. (xy -2.54 -0.762)
  253. (xy -2.54 0.508)
  254. )
  255. (stroke (width 0.508) (type default) (color 0 0 0 0))
  256. (fill (type none))
  257. )
  258. (polyline
  259. (pts
  260. (xy 0 -2.032)
  261. (xy 2.54 0.508)
  262. (xy 2.54 1.778)
  263. )
  264. (stroke (width 0.508) (type default) (color 0 0 0 0))
  265. (fill (type none))
  266. )
  267. (polyline
  268. (pts
  269. (xy -1.27 4.318)
  270. (xy 0 6.858)
  271. (xy 1.27 4.318)
  272. (xy -1.27 4.318)
  273. )
  274. (stroke (width 0.254) (type default) (color 0 0 0 0))
  275. (fill (type outline))
  276. )
  277. (rectangle (start 1.905 1.778) (end 3.175 3.048)
  278. (stroke (width 0.254) (type default) (color 0 0 0 0))
  279. (fill (type outline))
  280. )
  281. )
  282. (symbol "USB_C_Receptacle_USB2.0_1_1"
  283. (pin passive line (at 0 -22.86 90) (length 5.08)
  284. (name "GND" (effects (font (size 1.27 1.27))))
  285. (number "A1" (effects (font (size 1.27 1.27))))
  286. )
  287. (pin passive line (at 0 -22.86 90) (length 5.08) hide
  288. (name "GND" (effects (font (size 1.27 1.27))))
  289. (number "A12" (effects (font (size 1.27 1.27))))
  290. )
  291. (pin passive line (at 15.24 15.24 180) (length 5.08)
  292. (name "VBUS" (effects (font (size 1.27 1.27))))
  293. (number "A4" (effects (font (size 1.27 1.27))))
  294. )
  295. (pin bidirectional line (at 15.24 10.16 180) (length 5.08)
  296. (name "CC1" (effects (font (size 1.27 1.27))))
  297. (number "A5" (effects (font (size 1.27 1.27))))
  298. )
  299. (pin bidirectional line (at 15.24 -2.54 180) (length 5.08)
  300. (name "D+" (effects (font (size 1.27 1.27))))
  301. (number "A6" (effects (font (size 1.27 1.27))))
  302. )
  303. (pin bidirectional line (at 15.24 2.54 180) (length 5.08)
  304. (name "D-" (effects (font (size 1.27 1.27))))
  305. (number "A7" (effects (font (size 1.27 1.27))))
  306. )
  307. (pin bidirectional line (at 15.24 -12.7 180) (length 5.08)
  308. (name "SBU1" (effects (font (size 1.27 1.27))))
  309. (number "A8" (effects (font (size 1.27 1.27))))
  310. )
  311. (pin passive line (at 15.24 15.24 180) (length 5.08) hide
  312. (name "VBUS" (effects (font (size 1.27 1.27))))
  313. (number "A9" (effects (font (size 1.27 1.27))))
  314. )
  315. (pin passive line (at 0 -22.86 90) (length 5.08) hide
  316. (name "GND" (effects (font (size 1.27 1.27))))
  317. (number "B1" (effects (font (size 1.27 1.27))))
  318. )
  319. (pin passive line (at 0 -22.86 90) (length 5.08) hide
  320. (name "GND" (effects (font (size 1.27 1.27))))
  321. (number "B12" (effects (font (size 1.27 1.27))))
  322. )
  323. (pin passive line (at 15.24 15.24 180) (length 5.08) hide
  324. (name "VBUS" (effects (font (size 1.27 1.27))))
  325. (number "B4" (effects (font (size 1.27 1.27))))
  326. )
  327. (pin bidirectional line (at 15.24 7.62 180) (length 5.08)
  328. (name "CC2" (effects (font (size 1.27 1.27))))
  329. (number "B5" (effects (font (size 1.27 1.27))))
  330. )
  331. (pin bidirectional line (at 15.24 -5.08 180) (length 5.08)
  332. (name "D+" (effects (font (size 1.27 1.27))))
  333. (number "B6" (effects (font (size 1.27 1.27))))
  334. )
  335. (pin bidirectional line (at 15.24 0 180) (length 5.08)
  336. (name "D-" (effects (font (size 1.27 1.27))))
  337. (number "B7" (effects (font (size 1.27 1.27))))
  338. )
  339. (pin bidirectional line (at 15.24 -15.24 180) (length 5.08)
  340. (name "SBU2" (effects (font (size 1.27 1.27))))
  341. (number "B8" (effects (font (size 1.27 1.27))))
  342. )
  343. (pin passive line (at 15.24 15.24 180) (length 5.08) hide
  344. (name "VBUS" (effects (font (size 1.27 1.27))))
  345. (number "B9" (effects (font (size 1.27 1.27))))
  346. )
  347. (pin passive line (at -7.62 -22.86 90) (length 5.08)
  348. (name "SHIELD" (effects (font (size 1.27 1.27))))
  349. (number "S1" (effects (font (size 1.27 1.27))))
  350. )
  351. )
  352. )
  353. (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  354. (property "Reference" "J" (id 0) (at 0 5.08 0)
  355. (effects (font (size 1.27 1.27)))
  356. )
  357. (property "Value" "Conn_01x03" (id 1) (at 0 -5.08 0)
  358. (effects (font (size 1.27 1.27)))
  359. )
  360. (property "Footprint" "" (id 2) (at 0 0 0)
  361. (effects (font (size 1.27 1.27)) hide)
  362. )
  363. (property "Datasheet" "~" (id 3) (at 0 0 0)
  364. (effects (font (size 1.27 1.27)) hide)
  365. )
  366. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  367. (effects (font (size 1.27 1.27)) hide)
  368. )
  369. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  370. (effects (font (size 1.27 1.27)) hide)
  371. )
  372. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  373. (effects (font (size 1.27 1.27)) hide)
  374. )
  375. (symbol "Conn_01x03_1_1"
  376. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  377. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  378. (fill (type none))
  379. )
  380. (rectangle (start -1.27 0.127) (end 0 -0.127)
  381. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  382. (fill (type none))
  383. )
  384. (rectangle (start -1.27 2.667) (end 0 2.413)
  385. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  386. (fill (type none))
  387. )
  388. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  389. (stroke (width 0.254) (type default) (color 0 0 0 0))
  390. (fill (type background))
  391. )
  392. (pin passive line (at -5.08 2.54 0) (length 3.81)
  393. (name "Pin_1" (effects (font (size 1.27 1.27))))
  394. (number "1" (effects (font (size 1.27 1.27))))
  395. )
  396. (pin passive line (at -5.08 0 0) (length 3.81)
  397. (name "Pin_2" (effects (font (size 1.27 1.27))))
  398. (number "2" (effects (font (size 1.27 1.27))))
  399. )
  400. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  401. (name "Pin_3" (effects (font (size 1.27 1.27))))
  402. (number "3" (effects (font (size 1.27 1.27))))
  403. )
  404. )
  405. )
  406. (symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  407. (property "Reference" "J" (id 0) (at 0 10.16 0)
  408. (effects (font (size 1.27 1.27)))
  409. )
  410. (property "Value" "Conn_01x08" (id 1) (at 0 -12.7 0)
  411. (effects (font (size 1.27 1.27)))
  412. )
  413. (property "Footprint" "" (id 2) (at 0 0 0)
  414. (effects (font (size 1.27 1.27)) hide)
  415. )
  416. (property "Datasheet" "~" (id 3) (at 0 0 0)
  417. (effects (font (size 1.27 1.27)) hide)
  418. )
  419. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  420. (effects (font (size 1.27 1.27)) hide)
  421. )
  422. (property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  423. (effects (font (size 1.27 1.27)) hide)
  424. )
  425. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  426. (effects (font (size 1.27 1.27)) hide)
  427. )
  428. (symbol "Conn_01x08_1_1"
  429. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  430. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  431. (fill (type none))
  432. )
  433. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  434. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  435. (fill (type none))
  436. )
  437. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  438. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  439. (fill (type none))
  440. )
  441. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  442. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  443. (fill (type none))
  444. )
  445. (rectangle (start -1.27 0.127) (end 0 -0.127)
  446. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  447. (fill (type none))
  448. )
  449. (rectangle (start -1.27 2.667) (end 0 2.413)
  450. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  451. (fill (type none))
  452. )
  453. (rectangle (start -1.27 5.207) (end 0 4.953)
  454. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  455. (fill (type none))
  456. )
  457. (rectangle (start -1.27 7.747) (end 0 7.493)
  458. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  459. (fill (type none))
  460. )
  461. (rectangle (start -1.27 8.89) (end 1.27 -11.43)
  462. (stroke (width 0.254) (type default) (color 0 0 0 0))
  463. (fill (type background))
  464. )
  465. (pin passive line (at -5.08 7.62 0) (length 3.81)
  466. (name "Pin_1" (effects (font (size 1.27 1.27))))
  467. (number "1" (effects (font (size 1.27 1.27))))
  468. )
  469. (pin passive line (at -5.08 5.08 0) (length 3.81)
  470. (name "Pin_2" (effects (font (size 1.27 1.27))))
  471. (number "2" (effects (font (size 1.27 1.27))))
  472. )
  473. (pin passive line (at -5.08 2.54 0) (length 3.81)
  474. (name "Pin_3" (effects (font (size 1.27 1.27))))
  475. (number "3" (effects (font (size 1.27 1.27))))
  476. )
  477. (pin passive line (at -5.08 0 0) (length 3.81)
  478. (name "Pin_4" (effects (font (size 1.27 1.27))))
  479. (number "4" (effects (font (size 1.27 1.27))))
  480. )
  481. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  482. (name "Pin_5" (effects (font (size 1.27 1.27))))
  483. (number "5" (effects (font (size 1.27 1.27))))
  484. )
  485. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  486. (name "Pin_6" (effects (font (size 1.27 1.27))))
  487. (number "6" (effects (font (size 1.27 1.27))))
  488. )
  489. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  490. (name "Pin_7" (effects (font (size 1.27 1.27))))
  491. (number "7" (effects (font (size 1.27 1.27))))
  492. )
  493. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  494. (name "Pin_8" (effects (font (size 1.27 1.27))))
  495. (number "8" (effects (font (size 1.27 1.27))))
  496. )
  497. )
  498. )
  499. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  500. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  501. (effects (font (size 1.27 1.27)) (justify left))
  502. )
  503. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  504. (effects (font (size 1.27 1.27)) (justify left))
  505. )
  506. (property "Footprint" "" (id 2) (at 0 0 0)
  507. (effects (font (size 1.27 1.27)) hide)
  508. )
  509. (property "Datasheet" "~" (id 3) (at 0 0 0)
  510. (effects (font (size 1.27 1.27)) hide)
  511. )
  512. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  513. (effects (font (size 1.27 1.27)) hide)
  514. )
  515. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  516. (effects (font (size 1.27 1.27)) hide)
  517. )
  518. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  519. (effects (font (size 1.27 1.27)) hide)
  520. )
  521. (symbol "C_Small_0_1"
  522. (polyline
  523. (pts
  524. (xy -1.524 -0.508)
  525. (xy 1.524 -0.508)
  526. )
  527. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  528. (fill (type none))
  529. )
  530. (polyline
  531. (pts
  532. (xy -1.524 0.508)
  533. (xy 1.524 0.508)
  534. )
  535. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  536. (fill (type none))
  537. )
  538. )
  539. (symbol "C_Small_1_1"
  540. (pin passive line (at 0 2.54 270) (length 2.032)
  541. (name "~" (effects (font (size 1.27 1.27))))
  542. (number "1" (effects (font (size 1.27 1.27))))
  543. )
  544. (pin passive line (at 0 -2.54 90) (length 2.032)
  545. (name "~" (effects (font (size 1.27 1.27))))
  546. (number "2" (effects (font (size 1.27 1.27))))
  547. )
  548. )
  549. )
  550. (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  551. (property "Reference" "L" (id 0) (at 0.762 1.016 0)
  552. (effects (font (size 1.27 1.27)) (justify left))
  553. )
  554. (property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
  555. (effects (font (size 1.27 1.27)) (justify left))
  556. )
  557. (property "Footprint" "" (id 2) (at 0 0 0)
  558. (effects (font (size 1.27 1.27)) hide)
  559. )
  560. (property "Datasheet" "~" (id 3) (at 0 0 0)
  561. (effects (font (size 1.27 1.27)) hide)
  562. )
  563. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  564. (effects (font (size 1.27 1.27)) hide)
  565. )
  566. (property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
  567. (effects (font (size 1.27 1.27)) hide)
  568. )
  569. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  570. (effects (font (size 1.27 1.27)) hide)
  571. )
  572. (symbol "L_Small_0_1"
  573. (arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
  574. (stroke (width 0) (type default) (color 0 0 0 0))
  575. (fill (type none))
  576. )
  577. (arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
  578. (stroke (width 0) (type default) (color 0 0 0 0))
  579. (fill (type none))
  580. )
  581. (arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
  582. (stroke (width 0) (type default) (color 0 0 0 0))
  583. (fill (type none))
  584. )
  585. (arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
  586. (stroke (width 0) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. )
  590. (symbol "L_Small_1_1"
  591. (pin passive line (at 0 2.54 270) (length 0.508)
  592. (name "~" (effects (font (size 1.27 1.27))))
  593. (number "1" (effects (font (size 1.27 1.27))))
  594. )
  595. (pin passive line (at 0 -2.54 90) (length 0.508)
  596. (name "~" (effects (font (size 1.27 1.27))))
  597. (number "2" (effects (font (size 1.27 1.27))))
  598. )
  599. )
  600. )
  601. (symbol "Device:NetTie_2" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  602. (property "Reference" "NT" (id 0) (at 0 1.27 0)
  603. (effects (font (size 1.27 1.27)))
  604. )
  605. (property "Value" "NetTie_2" (id 1) (at 0 -1.27 0)
  606. (effects (font (size 1.27 1.27)))
  607. )
  608. (property "Footprint" "" (id 2) (at 0 0 0)
  609. (effects (font (size 1.27 1.27)) hide)
  610. )
  611. (property "Datasheet" "~" (id 3) (at 0 0 0)
  612. (effects (font (size 1.27 1.27)) hide)
  613. )
  614. (property "ki_keywords" "net tie short" (id 4) (at 0 0 0)
  615. (effects (font (size 1.27 1.27)) hide)
  616. )
  617. (property "ki_description" "Net tie, 2 pins" (id 5) (at 0 0 0)
  618. (effects (font (size 1.27 1.27)) hide)
  619. )
  620. (property "ki_fp_filters" "Net*Tie*" (id 6) (at 0 0 0)
  621. (effects (font (size 1.27 1.27)) hide)
  622. )
  623. (symbol "NetTie_2_0_1"
  624. (polyline
  625. (pts
  626. (xy -1.27 0)
  627. (xy 1.27 0)
  628. )
  629. (stroke (width 0.254) (type default) (color 0 0 0 0))
  630. (fill (type none))
  631. )
  632. )
  633. (symbol "NetTie_2_1_1"
  634. (pin passive line (at -2.54 0 0) (length 2.54)
  635. (name "1" (effects (font (size 1.27 1.27))))
  636. (number "1" (effects (font (size 1.27 1.27))))
  637. )
  638. (pin passive line (at 2.54 0 180) (length 2.54)
  639. (name "2" (effects (font (size 1.27 1.27))))
  640. (number "2" (effects (font (size 1.27 1.27))))
  641. )
  642. )
  643. )
  644. (symbol "Device:Q_PNP_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  645. (property "Reference" "Q" (id 0) (at 5.08 1.27 0)
  646. (effects (font (size 1.27 1.27)) (justify left))
  647. )
  648. (property "Value" "Q_PNP_BEC" (id 1) (at 5.08 -1.27 0)
  649. (effects (font (size 1.27 1.27)) (justify left))
  650. )
  651. (property "Footprint" "" (id 2) (at 5.08 2.54 0)
  652. (effects (font (size 1.27 1.27)) hide)
  653. )
  654. (property "Datasheet" "~" (id 3) (at 0 0 0)
  655. (effects (font (size 1.27 1.27)) hide)
  656. )
  657. (property "ki_keywords" "transistor PNP" (id 4) (at 0 0 0)
  658. (effects (font (size 1.27 1.27)) hide)
  659. )
  660. (property "ki_description" "PNP transistor, base/emitter/collector" (id 5) (at 0 0 0)
  661. (effects (font (size 1.27 1.27)) hide)
  662. )
  663. (symbol "Q_PNP_BEC_0_1"
  664. (polyline
  665. (pts
  666. (xy 0.635 0.635)
  667. (xy 2.54 2.54)
  668. )
  669. (stroke (width 0) (type default) (color 0 0 0 0))
  670. (fill (type none))
  671. )
  672. (polyline
  673. (pts
  674. (xy 0.635 -0.635)
  675. (xy 2.54 -2.54)
  676. (xy 2.54 -2.54)
  677. )
  678. (stroke (width 0) (type default) (color 0 0 0 0))
  679. (fill (type none))
  680. )
  681. (polyline
  682. (pts
  683. (xy 0.635 1.905)
  684. (xy 0.635 -1.905)
  685. (xy 0.635 -1.905)
  686. )
  687. (stroke (width 0.508) (type default) (color 0 0 0 0))
  688. (fill (type none))
  689. )
  690. (polyline
  691. (pts
  692. (xy 2.286 -1.778)
  693. (xy 1.778 -2.286)
  694. (xy 1.27 -1.27)
  695. (xy 2.286 -1.778)
  696. (xy 2.286 -1.778)
  697. )
  698. (stroke (width 0) (type default) (color 0 0 0 0))
  699. (fill (type outline))
  700. )
  701. (circle (center 1.27 0) (radius 2.8194)
  702. (stroke (width 0.254) (type default) (color 0 0 0 0))
  703. (fill (type none))
  704. )
  705. )
  706. (symbol "Q_PNP_BEC_1_1"
  707. (pin input line (at -5.08 0 0) (length 5.715)
  708. (name "B" (effects (font (size 1.27 1.27))))
  709. (number "1" (effects (font (size 1.27 1.27))))
  710. )
  711. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  712. (name "E" (effects (font (size 1.27 1.27))))
  713. (number "2" (effects (font (size 1.27 1.27))))
  714. )
  715. (pin passive line (at 2.54 5.08 270) (length 2.54)
  716. (name "C" (effects (font (size 1.27 1.27))))
  717. (number "3" (effects (font (size 1.27 1.27))))
  718. )
  719. )
  720. )
  721. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  722. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  723. (effects (font (size 1.27 1.27)) (justify left))
  724. )
  725. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  726. (effects (font (size 1.27 1.27)) (justify left))
  727. )
  728. (property "Footprint" "" (id 2) (at 0 0 0)
  729. (effects (font (size 1.27 1.27)) hide)
  730. )
  731. (property "Datasheet" "~" (id 3) (at 0 0 0)
  732. (effects (font (size 1.27 1.27)) hide)
  733. )
  734. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  735. (effects (font (size 1.27 1.27)) hide)
  736. )
  737. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  738. (effects (font (size 1.27 1.27)) hide)
  739. )
  740. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  741. (effects (font (size 1.27 1.27)) hide)
  742. )
  743. (symbol "R_Small_0_1"
  744. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  745. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  746. (fill (type none))
  747. )
  748. )
  749. (symbol "R_Small_1_1"
  750. (pin passive line (at 0 2.54 270) (length 0.762)
  751. (name "~" (effects (font (size 1.27 1.27))))
  752. (number "1" (effects (font (size 1.27 1.27))))
  753. )
  754. (pin passive line (at 0 -2.54 90) (length 0.762)
  755. (name "~" (effects (font (size 1.27 1.27))))
  756. (number "2" (effects (font (size 1.27 1.27))))
  757. )
  758. )
  759. )
  760. (symbol "Interface_USB:CH340C" (in_bom yes) (on_board yes)
  761. (property "Reference" "U" (id 0) (at -5.08 13.97 0)
  762. (effects (font (size 1.27 1.27)) (justify right))
  763. )
  764. (property "Value" "CH340C" (id 1) (at 1.27 13.97 0)
  765. (effects (font (size 1.27 1.27)) (justify left))
  766. )
  767. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 1.27 -13.97 0)
  768. (effects (font (size 1.27 1.27)) (justify left) hide)
  769. )
  770. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/Jiangsu-Qin-Heng-CH340C_C84681.pdf" (id 3) (at -8.89 20.32 0)
  771. (effects (font (size 1.27 1.27)) hide)
  772. )
  773. (property "ki_keywords" "USB UART Serial Converter Interface" (id 4) (at 0 0 0)
  774. (effects (font (size 1.27 1.27)) hide)
  775. )
  776. (property "ki_description" "USB serial converter, UART, SOIC-16" (id 5) (at 0 0 0)
  777. (effects (font (size 1.27 1.27)) hide)
  778. )
  779. (property "ki_fp_filters" "SOIC*3.9x9.9mm*P1.27mm*" (id 6) (at 0 0 0)
  780. (effects (font (size 1.27 1.27)) hide)
  781. )
  782. (symbol "CH340C_0_1"
  783. (rectangle (start -7.62 12.7) (end 7.62 -12.7)
  784. (stroke (width 0.254) (type default) (color 0 0 0 0))
  785. (fill (type background))
  786. )
  787. )
  788. (symbol "CH340C_1_1"
  789. (pin power_in line (at 0 -15.24 90) (length 2.54)
  790. (name "GND" (effects (font (size 1.27 1.27))))
  791. (number "1" (effects (font (size 1.27 1.27))))
  792. )
  793. (pin input line (at 10.16 0 180) (length 2.54)
  794. (name "~{DSR}" (effects (font (size 1.27 1.27))))
  795. (number "10" (effects (font (size 1.27 1.27))))
  796. )
  797. (pin input line (at 10.16 -2.54 180) (length 2.54)
  798. (name "~{RI}" (effects (font (size 1.27 1.27))))
  799. (number "11" (effects (font (size 1.27 1.27))))
  800. )
  801. (pin input line (at 10.16 -5.08 180) (length 2.54)
  802. (name "~{DCD}" (effects (font (size 1.27 1.27))))
  803. (number "12" (effects (font (size 1.27 1.27))))
  804. )
  805. (pin output line (at 10.16 -7.62 180) (length 2.54)
  806. (name "~{DTR}" (effects (font (size 1.27 1.27))))
  807. (number "13" (effects (font (size 1.27 1.27))))
  808. )
  809. (pin output line (at 10.16 -10.16 180) (length 2.54)
  810. (name "~{RTS}" (effects (font (size 1.27 1.27))))
  811. (number "14" (effects (font (size 1.27 1.27))))
  812. )
  813. (pin input line (at -10.16 7.62 0) (length 2.54)
  814. (name "R232" (effects (font (size 1.27 1.27))))
  815. (number "15" (effects (font (size 1.27 1.27))))
  816. )
  817. (pin power_in line (at 0 15.24 270) (length 2.54)
  818. (name "VCC" (effects (font (size 1.27 1.27))))
  819. (number "16" (effects (font (size 1.27 1.27))))
  820. )
  821. (pin output line (at 10.16 10.16 180) (length 2.54)
  822. (name "TXD" (effects (font (size 1.27 1.27))))
  823. (number "2" (effects (font (size 1.27 1.27))))
  824. )
  825. (pin input line (at 10.16 7.62 180) (length 2.54)
  826. (name "RXD" (effects (font (size 1.27 1.27))))
  827. (number "3" (effects (font (size 1.27 1.27))))
  828. )
  829. (pin passive line (at -2.54 15.24 270) (length 2.54)
  830. (name "V3" (effects (font (size 1.27 1.27))))
  831. (number "4" (effects (font (size 1.27 1.27))))
  832. )
  833. (pin bidirectional line (at -10.16 2.54 0) (length 2.54)
  834. (name "UD+" (effects (font (size 1.27 1.27))))
  835. (number "5" (effects (font (size 1.27 1.27))))
  836. )
  837. (pin bidirectional line (at -10.16 0 0) (length 2.54)
  838. (name "UD-" (effects (font (size 1.27 1.27))))
  839. (number "6" (effects (font (size 1.27 1.27))))
  840. )
  841. (pin no_connect line (at -7.62 -7.62 0) (length 2.54) hide
  842. (name "NC" (effects (font (size 1.27 1.27))))
  843. (number "7" (effects (font (size 1.27 1.27))))
  844. )
  845. (pin no_connect line (at -7.62 -10.16 0) (length 2.54) hide
  846. (name "NC" (effects (font (size 1.27 1.27))))
  847. (number "8" (effects (font (size 1.27 1.27))))
  848. )
  849. (pin input line (at 10.16 2.54 180) (length 2.54)
  850. (name "~{CTS}" (effects (font (size 1.27 1.27))))
  851. (number "9" (effects (font (size 1.27 1.27))))
  852. )
  853. )
  854. )
  855. (symbol "Logic_LevelTranslator:SN74LV1T34DBV" (in_bom yes) (on_board yes)
  856. (property "Reference" "U" (id 0) (at 5.08 6.35 0)
  857. (effects (font (size 1.27 1.27)) (justify left))
  858. )
  859. (property "Value" "SN74LV1T34DBV" (id 1) (at 5.08 3.81 0)
  860. (effects (font (size 1.27 1.27)) (justify left))
  861. )
  862. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 16.51 -6.35 0)
  863. (effects (font (size 1.27 1.27)) hide)
  864. )
  865. (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at -10.16 -5.08 0)
  866. (effects (font (size 1.27 1.27)) hide)
  867. )
  868. (property "ki_keywords" "single buffer level shift" (id 4) (at 0 0 0)
  869. (effects (font (size 1.27 1.27)) hide)
  870. )
  871. (property "ki_description" "Single Power Supply, Single Buffer GATE, CMOS Logic, Level Shifter, SOT-23-5" (id 5) (at 0 0 0)
  872. (effects (font (size 1.27 1.27)) hide)
  873. )
  874. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  875. (effects (font (size 1.27 1.27)) hide)
  876. )
  877. (symbol "SN74LV1T34DBV_0_1"
  878. (rectangle (start -5.08 5.08) (end 5.08 -5.08)
  879. (stroke (width 0.254) (type default) (color 0 0 0 0))
  880. (fill (type background))
  881. )
  882. (polyline
  883. (pts
  884. (xy -0.762 0)
  885. (xy -2.54 0)
  886. )
  887. (stroke (width 0) (type default) (color 0 0 0 0))
  888. (fill (type none))
  889. )
  890. (polyline
  891. (pts
  892. (xy 1.016 0)
  893. (xy 2.54 0)
  894. )
  895. (stroke (width 0) (type default) (color 0 0 0 0))
  896. (fill (type none))
  897. )
  898. )
  899. (symbol "SN74LV1T34DBV_1_1"
  900. (polyline
  901. (pts
  902. (xy -0.762 -0.762)
  903. (xy -0.762 0.762)
  904. (xy 1.016 0)
  905. (xy -0.762 -0.762)
  906. )
  907. (stroke (width 0) (type default) (color 0 0 0 0))
  908. (fill (type none))
  909. )
  910. (pin no_connect line (at -5.08 2.54 0) (length 2.54) hide
  911. (name "NC" (effects (font (size 1.27 1.27))))
  912. (number "1" (effects (font (size 1.27 1.27))))
  913. )
  914. (pin input line (at -7.62 0 0) (length 2.54)
  915. (name "A" (effects (font (size 1.27 1.27))))
  916. (number "2" (effects (font (size 1.27 1.27))))
  917. )
  918. (pin power_in line (at 0 -7.62 90) (length 2.54)
  919. (name "GND" (effects (font (size 1.27 1.27))))
  920. (number "3" (effects (font (size 1.27 1.27))))
  921. )
  922. (pin output line (at 7.62 0 180) (length 2.54)
  923. (name "Y" (effects (font (size 1.27 1.27))))
  924. (number "4" (effects (font (size 1.27 1.27))))
  925. )
  926. (pin power_in line (at 0 7.62 270) (length 2.54)
  927. (name "VCC" (effects (font (size 1.27 1.27))))
  928. (number "5" (effects (font (size 1.27 1.27))))
  929. )
  930. )
  931. )
  932. (symbol "MagnTek:MT6701-CT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  933. (property "Reference" "U" (id 0) (at -12.7 6.35 0)
  934. (effects (font (size 1.27 1.27)))
  935. )
  936. (property "Value" "MT6701-CT" (id 1) (at 0 6.35 0)
  937. (effects (font (size 1.27 1.27)))
  938. )
  939. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 0 0)
  940. (effects (font (size 1.27 1.27)) hide)
  941. )
  942. (property "Datasheet" "" (id 3) (at 0 0 0)
  943. (effects (font (size 1.27 1.27)) hide)
  944. )
  945. (symbol "MT6701-CT_0_1"
  946. (rectangle (start -13.97 5.08) (end 16.51 -5.08)
  947. (stroke (width 0) (type default) (color 0 0 0 0))
  948. (fill (type background))
  949. )
  950. )
  951. (symbol "MT6701-CT_1_1"
  952. (pin power_in line (at -16.51 3.81 0) (length 2.54)
  953. (name "VDD" (effects (font (size 1.27 1.27))))
  954. (number "1" (effects (font (size 1.27 1.27))))
  955. )
  956. (pin input line (at -16.51 1.27 0) (length 2.54)
  957. (name "MODE" (effects (font (size 1.27 1.27))))
  958. (number "2" (effects (font (size 1.27 1.27))))
  959. )
  960. (pin output line (at -16.51 -1.27 0) (length 2.54)
  961. (name "ANALOG/PWM" (effects (font (size 1.27 1.27))))
  962. (number "3" (effects (font (size 1.27 1.27))))
  963. )
  964. (pin power_in line (at -16.51 -3.81 0) (length 2.54)
  965. (name "GND" (effects (font (size 1.27 1.27))))
  966. (number "4" (effects (font (size 1.27 1.27))))
  967. )
  968. (pin output line (at 19.05 -3.81 180) (length 2.54)
  969. (name "PUSH" (effects (font (size 1.27 1.27))))
  970. (number "5" (effects (font (size 1.27 1.27))))
  971. )
  972. (pin bidirectional line (at 19.05 -1.27 180) (length 2.54)
  973. (name "A/U/SDA/DO" (effects (font (size 1.27 1.27))))
  974. (number "6" (effects (font (size 1.27 1.27))))
  975. )
  976. (pin bidirectional line (at 19.05 1.27 180) (length 2.54)
  977. (name "B/V/SCL/CLK" (effects (font (size 1.27 1.27))))
  978. (number "7" (effects (font (size 1.27 1.27))))
  979. )
  980. (pin bidirectional line (at 19.05 3.81 180) (length 2.54)
  981. (name "Z/W/CSN" (effects (font (size 1.27 1.27))))
  982. (number "8" (effects (font (size 1.27 1.27))))
  983. )
  984. )
  985. )
  986. (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  987. (property "Reference" "H" (id 0) (at 0 6.35 0)
  988. (effects (font (size 1.27 1.27)))
  989. )
  990. (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
  991. (effects (font (size 1.27 1.27)))
  992. )
  993. (property "Footprint" "" (id 2) (at 0 0 0)
  994. (effects (font (size 1.27 1.27)) hide)
  995. )
  996. (property "Datasheet" "~" (id 3) (at 0 0 0)
  997. (effects (font (size 1.27 1.27)) hide)
  998. )
  999. (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
  1000. (effects (font (size 1.27 1.27)) hide)
  1001. )
  1002. (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
  1003. (effects (font (size 1.27 1.27)) hide)
  1004. )
  1005. (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
  1006. (effects (font (size 1.27 1.27)) hide)
  1007. )
  1008. (symbol "MountingHole_Pad_0_1"
  1009. (circle (center 0 1.27) (radius 1.27)
  1010. (stroke (width 1.27) (type default) (color 0 0 0 0))
  1011. (fill (type none))
  1012. )
  1013. )
  1014. (symbol "MountingHole_Pad_1_1"
  1015. (pin input line (at 0 -2.54 90) (length 2.54)
  1016. (name "1" (effects (font (size 1.27 1.27))))
  1017. (number "1" (effects (font (size 1.27 1.27))))
  1018. )
  1019. )
  1020. )
  1021. (symbol "Regulator_Linear:AP7361C-33E" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1022. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  1023. (effects (font (size 1.27 1.27)))
  1024. )
  1025. (property "Value" "AP7361C-33E" (id 1) (at 0 3.175 0)
  1026. (effects (font (size 1.27 1.27)) (justify left))
  1027. )
  1028. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.715 0)
  1029. (effects (font (size 1.27 1.27) italic) hide)
  1030. )
  1031. (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP7361C.pdf" (id 3) (at 0 -1.27 0)
  1032. (effects (font (size 1.27 1.27)) hide)
  1033. )
  1034. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  1035. (effects (font (size 1.27 1.27)) hide)
  1036. )
  1037. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  1038. (effects (font (size 1.27 1.27)) hide)
  1039. )
  1040. (property "ki_fp_filters" "SOT?223*" (id 6) (at 0 0 0)
  1041. (effects (font (size 1.27 1.27)) hide)
  1042. )
  1043. (symbol "AP7361C-33E_0_1"
  1044. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  1045. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1046. (fill (type background))
  1047. )
  1048. )
  1049. (symbol "AP7361C-33E_1_1"
  1050. (pin power_in line (at -7.62 0 0) (length 2.54)
  1051. (name "VI" (effects (font (size 1.27 1.27))))
  1052. (number "1" (effects (font (size 1.27 1.27))))
  1053. )
  1054. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1055. (name "GND" (effects (font (size 1.27 1.27))))
  1056. (number "2" (effects (font (size 1.27 1.27))))
  1057. )
  1058. (pin power_out line (at 7.62 0 180) (length 2.54)
  1059. (name "VO" (effects (font (size 1.27 1.27))))
  1060. (number "3" (effects (font (size 1.27 1.27))))
  1061. )
  1062. )
  1063. )
  1064. (symbol "SK6812:SK6812SIDE-A" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1065. (property "Reference" "D" (id 0) (at 5.08 5.715 0)
  1066. (effects (font (size 1.27 1.27)) (justify right bottom))
  1067. )
  1068. (property "Value" "SK6812SIDE-A" (id 1) (at 1.27 -5.715 0)
  1069. (effects (font (size 1.27 1.27)) (justify left top))
  1070. )
  1071. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 1.27 -7.62 0)
  1072. (effects (font (size 1.27 1.27)) (justify left top) hide)
  1073. )
  1074. (property "Datasheet" "" (id 3) (at 2.54 -9.525 0)
  1075. (effects (font (size 1.27 1.27)) (justify left top) hide)
  1076. )
  1077. (property "ki_description" "RGB LED with integrated controller" (id 4) (at 0 0 0)
  1078. (effects (font (size 1.27 1.27)) hide)
  1079. )
  1080. (property "ki_fp_filters" "LED*WS2812*PLCC*5.0x5.0mm*P3.2mm*" (id 5) (at 0 0 0)
  1081. (effects (font (size 1.27 1.27)) hide)
  1082. )
  1083. (symbol "SK6812SIDE-A_0_0"
  1084. (text "RGB" (at 2.286 -4.191 0)
  1085. (effects (font (size 0.762 0.762)))
  1086. )
  1087. )
  1088. (symbol "SK6812SIDE-A_0_1"
  1089. (polyline
  1090. (pts
  1091. (xy 1.27 -3.556)
  1092. (xy 1.778 -3.556)
  1093. )
  1094. (stroke (width 0) (type default) (color 0 0 0 0))
  1095. (fill (type none))
  1096. )
  1097. (polyline
  1098. (pts
  1099. (xy 1.27 -2.54)
  1100. (xy 1.778 -2.54)
  1101. )
  1102. (stroke (width 0) (type default) (color 0 0 0 0))
  1103. (fill (type none))
  1104. )
  1105. (polyline
  1106. (pts
  1107. (xy 4.699 -3.556)
  1108. (xy 2.667 -3.556)
  1109. )
  1110. (stroke (width 0) (type default) (color 0 0 0 0))
  1111. (fill (type none))
  1112. )
  1113. (polyline
  1114. (pts
  1115. (xy 2.286 -2.54)
  1116. (xy 1.27 -3.556)
  1117. (xy 1.27 -3.048)
  1118. )
  1119. (stroke (width 0) (type default) (color 0 0 0 0))
  1120. (fill (type none))
  1121. )
  1122. (polyline
  1123. (pts
  1124. (xy 2.286 -1.524)
  1125. (xy 1.27 -2.54)
  1126. (xy 1.27 -2.032)
  1127. )
  1128. (stroke (width 0) (type default) (color 0 0 0 0))
  1129. (fill (type none))
  1130. )
  1131. (polyline
  1132. (pts
  1133. (xy 3.683 -1.016)
  1134. (xy 3.683 -3.556)
  1135. (xy 3.683 -4.064)
  1136. )
  1137. (stroke (width 0) (type default) (color 0 0 0 0))
  1138. (fill (type none))
  1139. )
  1140. (polyline
  1141. (pts
  1142. (xy 4.699 -1.524)
  1143. (xy 2.667 -1.524)
  1144. (xy 3.683 -3.556)
  1145. (xy 4.699 -1.524)
  1146. )
  1147. (stroke (width 0) (type default) (color 0 0 0 0))
  1148. (fill (type none))
  1149. )
  1150. (rectangle (start 5.08 5.08) (end -5.08 -5.08)
  1151. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1152. (fill (type background))
  1153. )
  1154. )
  1155. (symbol "SK6812SIDE-A_1_1"
  1156. (pin input line (at -7.62 0 0) (length 2.54)
  1157. (name "DIN" (effects (font (size 1.27 1.27))))
  1158. (number "1" (effects (font (size 1.27 1.27))))
  1159. )
  1160. (pin power_in line (at 0 7.62 270) (length 2.54)
  1161. (name "VDD" (effects (font (size 1.27 1.27))))
  1162. (number "2" (effects (font (size 1.27 1.27))))
  1163. )
  1164. (pin output line (at 7.62 0 180) (length 2.54)
  1165. (name "DOUT" (effects (font (size 1.27 1.27))))
  1166. (number "3" (effects (font (size 1.27 1.27))))
  1167. )
  1168. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1169. (name "VSS" (effects (font (size 1.27 1.27))))
  1170. (number "4" (effects (font (size 1.27 1.27))))
  1171. )
  1172. )
  1173. )
  1174. (symbol "Transistor_BJT:UMH3N" (pin_names hide) (in_bom yes) (on_board yes)
  1175. (property "Reference" "Q" (id 0) (at 7.62 1.27 0)
  1176. (effects (font (size 1.27 1.27)) (justify left))
  1177. )
  1178. (property "Value" "UMH3N" (id 1) (at 7.62 -1.27 0)
  1179. (effects (font (size 1.27 1.27)) (justify left))
  1180. )
  1181. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 0.127 -11.176 0)
  1182. (effects (font (size 1.27 1.27)) hide)
  1183. )
  1184. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 3.81 0 0)
  1185. (effects (font (size 1.27 1.27)) hide)
  1186. )
  1187. (property "ki_keywords" "Dual NPN Transistor" (id 4) (at 0 0 0)
  1188. (effects (font (size 1.27 1.27)) hide)
  1189. )
  1190. (property "ki_description" "0.1A Ic, 50V Vce, Dual NPN Input Resistor Transistors, SOT-363" (id 5) (at 0 0 0)
  1191. (effects (font (size 1.27 1.27)) hide)
  1192. )
  1193. (property "ki_fp_filters" "SOT?363*" (id 6) (at 0 0 0)
  1194. (effects (font (size 1.27 1.27)) hide)
  1195. )
  1196. (symbol "UMH3N_0_1"
  1197. (polyline
  1198. (pts
  1199. (xy 3.175 0)
  1200. (xy 0.254 0)
  1201. )
  1202. (stroke (width 0) (type default) (color 0 0 0 0))
  1203. (fill (type none))
  1204. )
  1205. (polyline
  1206. (pts
  1207. (xy 3.175 0.635)
  1208. (xy 5.08 2.54)
  1209. )
  1210. (stroke (width 0) (type default) (color 0 0 0 0))
  1211. (fill (type none))
  1212. )
  1213. (polyline
  1214. (pts
  1215. (xy 3.175 1.524)
  1216. (xy 3.175 -1.524)
  1217. )
  1218. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1219. (fill (type none))
  1220. )
  1221. (polyline
  1222. (pts
  1223. (xy 3.175 -0.635)
  1224. (xy 5.08 -2.54)
  1225. (xy 5.08 -2.54)
  1226. )
  1227. (stroke (width 0) (type default) (color 0 0 0 0))
  1228. (fill (type none))
  1229. )
  1230. (polyline
  1231. (pts
  1232. (xy 3.81 -1.778)
  1233. (xy 4.318 -1.27)
  1234. (xy 4.826 -2.286)
  1235. (xy 3.81 -1.778)
  1236. (xy 3.81 -1.778)
  1237. )
  1238. (stroke (width 0) (type default) (color 0 0 0 0))
  1239. (fill (type outline))
  1240. )
  1241. (rectangle (start 0.254 0.508) (end -2.54 -0.508)
  1242. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1243. (fill (type none))
  1244. )
  1245. (circle (center 3.81 0) (radius 2.8194)
  1246. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1247. (fill (type none))
  1248. )
  1249. )
  1250. (symbol "UMH3N_1_1"
  1251. (pin passive line (at 5.08 -5.08 90) (length 2.54)
  1252. (name "E1" (effects (font (size 1.27 1.27))))
  1253. (number "1" (effects (font (size 1.27 1.27))))
  1254. )
  1255. (pin input line (at -5.08 0 0) (length 2.54)
  1256. (name "B1" (effects (font (size 1.27 1.27))))
  1257. (number "2" (effects (font (size 1.27 1.27))))
  1258. )
  1259. (pin passive line (at 5.08 5.08 270) (length 2.54)
  1260. (name "C1" (effects (font (size 1.27 1.27))))
  1261. (number "6" (effects (font (size 1.27 1.27))))
  1262. )
  1263. )
  1264. (symbol "UMH3N_2_1"
  1265. (pin passive line (at 5.08 5.08 270) (length 2.54)
  1266. (name "C2" (effects (font (size 1.27 1.27))))
  1267. (number "3" (effects (font (size 1.27 1.27))))
  1268. )
  1269. (pin passive line (at 5.08 -5.08 90) (length 2.54)
  1270. (name "E2" (effects (font (size 1.27 1.27))))
  1271. (number "4" (effects (font (size 1.27 1.27))))
  1272. )
  1273. (pin input line (at -5.08 0 0) (length 2.54)
  1274. (name "B2" (effects (font (size 1.27 1.27))))
  1275. (number "5" (effects (font (size 1.27 1.27))))
  1276. )
  1277. )
  1278. )
  1279. (symbol "Trinamic:TMC6300" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1280. (property "Reference" "U" (id 0) (at 0 2.54 0)
  1281. (effects (font (size 1.27 1.27)))
  1282. )
  1283. (property "Value" "TMC6300" (id 1) (at 0 0 0)
  1284. (effects (font (size 1.27 1.27)))
  1285. )
  1286. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 0 0 0)
  1287. (effects (font (size 1.27 1.27)) hide)
  1288. )
  1289. (property "Datasheet" "" (id 3) (at 0 0 0)
  1290. (effects (font (size 1.27 1.27)) hide)
  1291. )
  1292. (symbol "TMC6300_0_1"
  1293. (rectangle (start -10.16 22.86) (end 10.16 -22.86)
  1294. (stroke (width 0) (type default) (color 0 0 0 0))
  1295. (fill (type background))
  1296. )
  1297. )
  1298. (symbol "TMC6300_1_1"
  1299. (pin output line (at 12.7 15.24 180) (length 2.54)
  1300. (name "W" (effects (font (size 1.27 1.27))))
  1301. (number "1" (effects (font (size 1.27 1.27))))
  1302. )
  1303. (pin input line (at -12.7 5.08 0) (length 2.54)
  1304. (name "VL" (effects (font (size 1.27 1.27))))
  1305. (number "10" (effects (font (size 1.27 1.27))))
  1306. )
  1307. (pin power_in line (at -12.7 -7.62 0) (length 2.54)
  1308. (name "VIO/~{STDBY}" (effects (font (size 1.27 1.27))))
  1309. (number "11" (effects (font (size 1.27 1.27))))
  1310. )
  1311. (pin output line (at -12.7 -5.08 0) (length 2.54)
  1312. (name "DIAG" (effects (font (size 1.27 1.27))))
  1313. (number "12" (effects (font (size 1.27 1.27))))
  1314. )
  1315. (pin power_out line (at 12.7 -20.32 180) (length 2.54)
  1316. (name "1V8OUT" (effects (font (size 1.27 1.27))))
  1317. (number "13" (effects (font (size 1.27 1.27))))
  1318. )
  1319. (pin power_in line (at -12.7 -17.78 0) (length 2.54)
  1320. (name "GND" (effects (font (size 1.27 1.27))))
  1321. (number "14" (effects (font (size 1.27 1.27))))
  1322. )
  1323. (pin output line (at 12.7 20.32 180) (length 2.54)
  1324. (name "U" (effects (font (size 1.27 1.27))))
  1325. (number "15" (effects (font (size 1.27 1.27))))
  1326. )
  1327. (pin passive line (at 12.7 10.16 180) (length 2.54)
  1328. (name "BRUV" (effects (font (size 1.27 1.27))))
  1329. (number "16" (effects (font (size 1.27 1.27))))
  1330. )
  1331. (pin output line (at 12.7 17.78 180) (length 2.54)
  1332. (name "V" (effects (font (size 1.27 1.27))))
  1333. (number "17" (effects (font (size 1.27 1.27))))
  1334. )
  1335. (pin power_in line (at -12.7 20.32 0) (length 2.54)
  1336. (name "VS" (effects (font (size 1.27 1.27))))
  1337. (number "18" (effects (font (size 1.27 1.27))))
  1338. )
  1339. (pin no_connect line (at 12.7 -17.78 180) (length 2.54) hide
  1340. (name "NC" (effects (font (size 1.27 1.27))))
  1341. (number "19" (effects (font (size 1.27 1.27))))
  1342. )
  1343. (pin bidirectional line (at -12.7 17.78 0) (length 2.54)
  1344. (name "VCP" (effects (font (size 1.27 1.27))))
  1345. (number "2" (effects (font (size 1.27 1.27))))
  1346. )
  1347. (pin passive line (at 12.7 7.62 180) (length 2.54)
  1348. (name "BRW" (effects (font (size 1.27 1.27))))
  1349. (number "20" (effects (font (size 1.27 1.27))))
  1350. )
  1351. (pin input line (at -12.7 12.7 0) (length 2.54)
  1352. (name "UH" (effects (font (size 1.27 1.27))))
  1353. (number "3" (effects (font (size 1.27 1.27))))
  1354. )
  1355. (pin input line (at -12.7 7.62 0) (length 2.54)
  1356. (name "VH" (effects (font (size 1.27 1.27))))
  1357. (number "4" (effects (font (size 1.27 1.27))))
  1358. )
  1359. (pin input line (at -12.7 2.54 0) (length 2.54)
  1360. (name "WH" (effects (font (size 1.27 1.27))))
  1361. (number "5" (effects (font (size 1.27 1.27))))
  1362. )
  1363. (pin input line (at -12.7 10.16 0) (length 2.54)
  1364. (name "UL" (effects (font (size 1.27 1.27))))
  1365. (number "6" (effects (font (size 1.27 1.27))))
  1366. )
  1367. (pin input line (at -12.7 0 0) (length 2.54)
  1368. (name "WL" (effects (font (size 1.27 1.27))))
  1369. (number "7" (effects (font (size 1.27 1.27))))
  1370. )
  1371. (pin power_in line (at -12.7 -12.7 0) (length 2.54)
  1372. (name "GND" (effects (font (size 1.27 1.27))))
  1373. (number "8" (effects (font (size 1.27 1.27))))
  1374. )
  1375. (pin power_in line (at -12.7 -15.24 0) (length 2.54)
  1376. (name "GND" (effects (font (size 1.27 1.27))))
  1377. (number "9" (effects (font (size 1.27 1.27))))
  1378. )
  1379. (pin power_in line (at -12.7 -20.32 0) (length 2.54)
  1380. (name "PAD" (effects (font (size 1.27 1.27))))
  1381. (number "PAD" (effects (font (size 1.27 1.27))))
  1382. )
  1383. )
  1384. )
  1385. (symbol "VEML7700:VEML7700" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1386. (property "Reference" "U" (id 0) (at -6.35 11.43 0)
  1387. (effects (font (size 1.27 1.27)))
  1388. )
  1389. (property "Value" "VEML7700" (id 1) (at 0 0 0)
  1390. (effects (font (size 1.27 1.27)))
  1391. )
  1392. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 0 0 0)
  1393. (effects (font (size 1.27 1.27)) hide)
  1394. )
  1395. (property "Datasheet" "" (id 3) (at 0 0 0)
  1396. (effects (font (size 1.27 1.27)) hide)
  1397. )
  1398. (symbol "VEML7700_0_1"
  1399. (rectangle (start 6.35 -11.43) (end -6.35 10.16)
  1400. (stroke (width 0) (type default) (color 0 0 0 0))
  1401. (fill (type background))
  1402. )
  1403. )
  1404. (symbol "VEML7700_1_1"
  1405. (pin open_collector line (at 8.89 -3.81 180) (length 2.54)
  1406. (name "SCL" (effects (font (size 1.27 1.27))))
  1407. (number "1" (effects (font (size 1.27 1.27))))
  1408. )
  1409. (pin power_in line (at 0 12.7 270) (length 2.54)
  1410. (name "VDD" (effects (font (size 1.27 1.27))))
  1411. (number "2" (effects (font (size 1.27 1.27))))
  1412. )
  1413. (pin power_in line (at 0 -13.97 90) (length 2.54)
  1414. (name "GND" (effects (font (size 1.27 1.27))))
  1415. (number "3" (effects (font (size 1.27 1.27))))
  1416. )
  1417. (pin open_collector line (at 8.89 3.81 180) (length 2.54)
  1418. (name "SDA" (effects (font (size 1.27 1.27))))
  1419. (number "4" (effects (font (size 1.27 1.27))))
  1420. )
  1421. )
  1422. )
  1423. (symbol "lilygo_micro32:T-Micro32_Plus" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1424. (property "Reference" "U" (id 0) (at -15.24 21.59 0)
  1425. (effects (font (size 1.27 1.27)))
  1426. )
  1427. (property "Value" "T-Micro32_Plus" (id 1) (at 0 17.78 0)
  1428. (effects (font (size 1.27 1.27)))
  1429. )
  1430. (property "Footprint" "" (id 2) (at 0 -2.54 0)
  1431. (effects (font (size 1.27 1.27)) hide)
  1432. )
  1433. (property "Datasheet" "" (id 3) (at 0 -2.54 0)
  1434. (effects (font (size 1.27 1.27)) hide)
  1435. )
  1436. (symbol "T-Micro32_Plus_0_0"
  1437. (text "IO0: def=PU, 1=run, 0=download" (at -8.89 -1.27 0)
  1438. (effects (font (size 0.6604 0.6604)) (justify left))
  1439. )
  1440. (text "IO12: def=PD, must be 0 on boot" (at -8.89 -5.08 0)
  1441. (effects (font (size 0.6604 0.6604)) (justify left))
  1442. )
  1443. (text "IO14: outputs signal on boot" (at -8.89 -6.35 0)
  1444. (effects (font (size 0.6604 0.6604)) (justify left))
  1445. )
  1446. (text "IO15: def=PU, 1=debug log, 0=silent" (at -8.89 -7.62 0)
  1447. (effects (font (size 0.6604 0.6604)) (justify left))
  1448. )
  1449. (text "IO2: def=PD, must be 0 to download" (at -8.89 -2.54 0)
  1450. (effects (font (size 0.6604 0.6604)) (justify left))
  1451. )
  1452. (text "IO5: outputs signal on boot?" (at -8.89 -3.81 0)
  1453. (effects (font (size 0.6604 0.6604)) (justify left))
  1454. )
  1455. (text "outputs signal at boot" (at -6.35 -8.89 0)
  1456. (effects (font (size 0.6604 0.6604)) (justify left))
  1457. )
  1458. )
  1459. (symbol "T-Micro32_Plus_0_1"
  1460. (rectangle (start 16.51 -20.32) (end -16.51 20.32)
  1461. (stroke (width 0) (type default) (color 0 0 0 0))
  1462. (fill (type background))
  1463. )
  1464. )
  1465. (symbol "T-Micro32_Plus_1_1"
  1466. (circle (center -10.414 -15.494) (radius 0.0001)
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (fill (type none))
  1469. )
  1470. (circle (center -10.414 -12.954) (radius 0.0001)
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (fill (type none))
  1473. )
  1474. (polyline
  1475. (pts
  1476. (xy -10.414 -14.986)
  1477. (xy -10.414 -15.24)
  1478. )
  1479. (stroke (width 0) (type default) (color 0 0 0 0))
  1480. (fill (type none))
  1481. )
  1482. (polyline
  1483. (pts
  1484. (xy -10.414 -12.446)
  1485. (xy -10.414 -12.7)
  1486. )
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (fill (type none))
  1489. )
  1490. (polyline
  1491. (pts
  1492. (xy 8.636 -13.716)
  1493. (xy 8.636 -13.97)
  1494. )
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (fill (type none))
  1497. )
  1498. (polyline
  1499. (pts
  1500. (xy 11.176 -17.526)
  1501. (xy 11.176 -17.78)
  1502. )
  1503. (stroke (width 0) (type default) (color 0 0 0 0))
  1504. (fill (type none))
  1505. )
  1506. (polyline
  1507. (pts
  1508. (xy 11.176 -14.986)
  1509. (xy 11.176 -15.24)
  1510. )
  1511. (stroke (width 0) (type default) (color 0 0 0 0))
  1512. (fill (type none))
  1513. )
  1514. (polyline
  1515. (pts
  1516. (xy 11.176 -4.826)
  1517. (xy 11.176 -5.08)
  1518. )
  1519. (stroke (width 0) (type default) (color 0 0 0 0))
  1520. (fill (type none))
  1521. )
  1522. (polyline
  1523. (pts
  1524. (xy -10.414 -14.478)
  1525. (xy -11.176 -15.748)
  1526. (xy -9.652 -15.748)
  1527. (xy -10.414 -14.478)
  1528. )
  1529. (stroke (width 0) (type default) (color 0 0 0 0))
  1530. (fill (type none))
  1531. )
  1532. (polyline
  1533. (pts
  1534. (xy -10.414 -11.938)
  1535. (xy -11.176 -13.208)
  1536. (xy -9.652 -13.208)
  1537. (xy -10.414 -11.938)
  1538. )
  1539. (stroke (width 0) (type default) (color 0 0 0 0))
  1540. (fill (type none))
  1541. )
  1542. (polyline
  1543. (pts
  1544. (xy 8.636 -13.208)
  1545. (xy 7.874 -14.478)
  1546. (xy 9.398 -14.478)
  1547. (xy 8.636 -13.208)
  1548. )
  1549. (stroke (width 0) (type default) (color 0 0 0 0))
  1550. (fill (type none))
  1551. )
  1552. (polyline
  1553. (pts
  1554. (xy 11.176 -17.018)
  1555. (xy 10.414 -18.288)
  1556. (xy 11.938 -18.288)
  1557. (xy 11.176 -17.018)
  1558. )
  1559. (stroke (width 0) (type default) (color 0 0 0 0))
  1560. (fill (type none))
  1561. )
  1562. (polyline
  1563. (pts
  1564. (xy 11.176 -14.478)
  1565. (xy 10.414 -15.748)
  1566. (xy 11.938 -15.748)
  1567. (xy 11.176 -14.478)
  1568. )
  1569. (stroke (width 0) (type default) (color 0 0 0 0))
  1570. (fill (type none))
  1571. )
  1572. (polyline
  1573. (pts
  1574. (xy 11.176 -4.318)
  1575. (xy 10.414 -5.588)
  1576. (xy 11.938 -5.588)
  1577. (xy 11.176 -4.318)
  1578. )
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (fill (type none))
  1581. )
  1582. (circle (center 8.636 -14.224) (radius 0.0001)
  1583. (stroke (width 0) (type default) (color 0 0 0 0))
  1584. (fill (type none))
  1585. )
  1586. (circle (center 11.176 -18.034) (radius 0.0001)
  1587. (stroke (width 0) (type default) (color 0 0 0 0))
  1588. (fill (type none))
  1589. )
  1590. (circle (center 11.176 -15.494) (radius 0.0001)
  1591. (stroke (width 0) (type default) (color 0 0 0 0))
  1592. (fill (type none))
  1593. )
  1594. (circle (center 11.176 -5.334) (radius 0.0001)
  1595. (stroke (width 0) (type default) (color 0 0 0 0))
  1596. (fill (type none))
  1597. )
  1598. (pin power_in line (at -19.05 17.78 0) (length 2.54)
  1599. (name "GND" (effects (font (size 1.27 1.27))))
  1600. (number "1" (effects (font (size 1.27 1.27))))
  1601. )
  1602. (pin bidirectional line (at -19.05 -5.08 0) (length 2.54)
  1603. (name "IO25" (effects (font (size 1.27 1.27))))
  1604. (number "10" (effects (font (size 1.27 1.27))))
  1605. )
  1606. (pin bidirectional line (at -19.05 -7.62 0) (length 2.54)
  1607. (name "IO26" (effects (font (size 1.27 1.27))))
  1608. (number "11" (effects (font (size 1.27 1.27))))
  1609. )
  1610. (pin bidirectional line (at -19.05 -10.16 0) (length 2.54)
  1611. (name "IO27" (effects (font (size 1.27 1.27))))
  1612. (number "12" (effects (font (size 1.27 1.27))))
  1613. )
  1614. (pin bidirectional line (at -19.05 -12.7 0) (length 2.54)
  1615. (name "IO14" (effects (font (size 1.27 1.27))))
  1616. (number "13" (effects (font (size 1.27 1.27))))
  1617. )
  1618. (pin bidirectional line (at -19.05 -15.24 0) (length 2.54)
  1619. (name "IO12" (effects (font (size 1.27 1.27))))
  1620. (number "14" (effects (font (size 1.27 1.27))))
  1621. )
  1622. (pin power_in line (at -19.05 -17.78 0) (length 2.54)
  1623. (name "GND" (effects (font (size 1.27 1.27))))
  1624. (number "15" (effects (font (size 1.27 1.27))))
  1625. )
  1626. (pin bidirectional line (at -8.89 -22.86 90) (length 2.54)
  1627. (name "IO13" (effects (font (size 1.27 1.27))))
  1628. (number "16" (effects (font (size 1.27 1.27))))
  1629. )
  1630. (pin input line (at -6.35 -22.86 90) (length 2.54)
  1631. (name "IO37" (effects (font (size 1.27 1.27))))
  1632. (number "17" (effects (font (size 1.27 1.27))))
  1633. )
  1634. (pin input line (at -3.81 -22.86 90) (length 2.54)
  1635. (name "IO38" (effects (font (size 1.27 1.27))))
  1636. (number "18" (effects (font (size 1.27 1.27))))
  1637. )
  1638. (pin no_connect line (at -1.27 -22.86 90) (length 2.54)
  1639. (name "NC" (effects (font (size 1.27 1.27))))
  1640. (number "19" (effects (font (size 1.27 1.27))))
  1641. )
  1642. (pin power_in line (at -19.05 15.24 0) (length 2.54)
  1643. (name "3V3" (effects (font (size 1.27 1.27))))
  1644. (number "2" (effects (font (size 1.27 1.27))))
  1645. )
  1646. (pin no_connect line (at 1.27 -22.86 90) (length 2.54)
  1647. (name "NC" (effects (font (size 1.27 1.27))))
  1648. (number "20" (effects (font (size 1.27 1.27))))
  1649. )
  1650. (pin bidirectional line (at 3.81 -22.86 90) (length 2.54)
  1651. (name "IO7" (effects (font (size 1.27 1.27))))
  1652. (number "21" (effects (font (size 1.27 1.27))))
  1653. )
  1654. (pin bidirectional line (at 6.35 -22.86 90) (length 2.54)
  1655. (name "IO8" (effects (font (size 1.27 1.27))))
  1656. (number "22" (effects (font (size 1.27 1.27))))
  1657. )
  1658. (pin bidirectional line (at 8.89 -22.86 90) (length 2.54)
  1659. (name "IO15" (effects (font (size 1.27 1.27))))
  1660. (number "23" (effects (font (size 1.27 1.27))))
  1661. )
  1662. (pin bidirectional line (at 19.05 -17.78 180) (length 2.54)
  1663. (name "IO2" (effects (font (size 1.27 1.27))))
  1664. (number "24" (effects (font (size 1.27 1.27))))
  1665. )
  1666. (pin bidirectional line (at 19.05 -15.24 180) (length 2.54)
  1667. (name "IO0" (effects (font (size 1.27 1.27))))
  1668. (number "25" (effects (font (size 1.27 1.27))))
  1669. )
  1670. (pin bidirectional line (at 19.05 -12.7 180) (length 2.54)
  1671. (name "IO4" (effects (font (size 1.27 1.27))))
  1672. (number "26" (effects (font (size 1.27 1.27))))
  1673. )
  1674. (pin no_connect line (at 19.05 -10.16 180) (length 2.54)
  1675. (name "NC" (effects (font (size 1.27 1.27))))
  1676. (number "27" (effects (font (size 1.27 1.27))))
  1677. )
  1678. (pin bidirectional line (at 19.05 -7.62 180) (length 2.54)
  1679. (name "IO20" (effects (font (size 1.27 1.27))))
  1680. (number "28" (effects (font (size 1.27 1.27))))
  1681. )
  1682. (pin bidirectional line (at 19.05 -5.08 180) (length 2.54)
  1683. (name "IO5" (effects (font (size 1.27 1.27))))
  1684. (number "29" (effects (font (size 1.27 1.27))))
  1685. )
  1686. (pin input line (at -19.05 12.7 0) (length 2.54)
  1687. (name "EN" (effects (font (size 1.27 1.27))))
  1688. (number "3" (effects (font (size 1.27 1.27))))
  1689. )
  1690. (pin no_connect line (at 19.05 -2.54 180) (length 2.54)
  1691. (name "NC" (effects (font (size 1.27 1.27))))
  1692. (number "30" (effects (font (size 1.27 1.27))))
  1693. )
  1694. (pin bidirectional line (at 19.05 0 180) (length 2.54)
  1695. (name "IO19" (effects (font (size 1.27 1.27))))
  1696. (number "31" (effects (font (size 1.27 1.27))))
  1697. )
  1698. (pin passive line (at 19.05 2.54 180) (length 2.54)
  1699. (name "VDD_SDIO" (effects (font (size 1.27 1.27))))
  1700. (number "32" (effects (font (size 1.27 1.27))))
  1701. )
  1702. (pin bidirectional line (at 19.05 5.08 180) (length 2.54)
  1703. (name "IO21" (effects (font (size 1.27 1.27))))
  1704. (number "33" (effects (font (size 1.27 1.27))))
  1705. )
  1706. (pin input line (at 19.05 7.62 180) (length 2.54)
  1707. (name "RXD" (effects (font (size 1.27 1.27))))
  1708. (number "34" (effects (font (size 1.27 1.27))))
  1709. )
  1710. (pin output line (at 19.05 10.16 180) (length 2.54)
  1711. (name "TXD" (effects (font (size 1.27 1.27))))
  1712. (number "35" (effects (font (size 1.27 1.27))))
  1713. )
  1714. (pin bidirectional line (at 19.05 12.7 180) (length 2.54)
  1715. (name "IO22" (effects (font (size 1.27 1.27))))
  1716. (number "36" (effects (font (size 1.27 1.27))))
  1717. )
  1718. (pin no_connect line (at 19.05 15.24 180) (length 2.54)
  1719. (name "NC" (effects (font (size 1.27 1.27))))
  1720. (number "37" (effects (font (size 1.27 1.27))))
  1721. )
  1722. (pin power_in line (at 19.05 17.78 180) (length 2.54)
  1723. (name "GND" (effects (font (size 1.27 1.27))))
  1724. (number "38" (effects (font (size 1.27 1.27))))
  1725. )
  1726. (pin input line (at -19.05 10.16 0) (length 2.54)
  1727. (name "IO36/SVP" (effects (font (size 1.27 1.27))))
  1728. (number "4" (effects (font (size 1.27 1.27))))
  1729. )
  1730. (pin input line (at -19.05 7.62 0) (length 2.54)
  1731. (name "IO39/SVN" (effects (font (size 1.27 1.27))))
  1732. (number "5" (effects (font (size 1.27 1.27))))
  1733. )
  1734. (pin input line (at -19.05 5.08 0) (length 2.54)
  1735. (name "IO34" (effects (font (size 1.27 1.27))))
  1736. (number "6" (effects (font (size 1.27 1.27))))
  1737. )
  1738. (pin input line (at -19.05 2.54 0) (length 2.54)
  1739. (name "IO35" (effects (font (size 1.27 1.27))))
  1740. (number "7" (effects (font (size 1.27 1.27))))
  1741. )
  1742. (pin bidirectional line (at -19.05 0 0) (length 2.54)
  1743. (name "IO32" (effects (font (size 1.27 1.27))))
  1744. (number "8" (effects (font (size 1.27 1.27))))
  1745. )
  1746. (pin bidirectional line (at -19.05 -2.54 0) (length 2.54)
  1747. (name "IO33" (effects (font (size 1.27 1.27))))
  1748. (number "9" (effects (font (size 1.27 1.27))))
  1749. )
  1750. )
  1751. )
  1752. (symbol "no_pin:no_pin" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1753. (property "Reference" "Z" (id 0) (at -8.89 3.81 0)
  1754. (effects (font (size 1.524 1.524)))
  1755. )
  1756. (property "Value" "no_pin" (id 1) (at 0 0 0)
  1757. (effects (font (size 1.524 1.524)))
  1758. )
  1759. (property "Footprint" "" (id 2) (at 0 0 0)
  1760. (effects (font (size 1.524 1.524)) hide)
  1761. )
  1762. (property "Datasheet" "" (id 3) (at 0 0 0)
  1763. (effects (font (size 1.524 1.524)) hide)
  1764. )
  1765. (symbol "no_pin_0_1"
  1766. (rectangle (start -10.16 2.54) (end 10.16 -2.54)
  1767. (stroke (width 0) (type default) (color 0 0 0 0))
  1768. (fill (type none))
  1769. )
  1770. )
  1771. )
  1772. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1773. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1774. (effects (font (size 1.27 1.27)) hide)
  1775. )
  1776. (property "Value" "+3.3V" (id 1) (at 0 3.556 0)
  1777. (effects (font (size 1.27 1.27)))
  1778. )
  1779. (property "Footprint" "" (id 2) (at 0 0 0)
  1780. (effects (font (size 1.27 1.27)) hide)
  1781. )
  1782. (property "Datasheet" "" (id 3) (at 0 0 0)
  1783. (effects (font (size 1.27 1.27)) hide)
  1784. )
  1785. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1786. (effects (font (size 1.27 1.27)) hide)
  1787. )
  1788. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
  1789. (effects (font (size 1.27 1.27)) hide)
  1790. )
  1791. (symbol "+3.3V_0_1"
  1792. (polyline
  1793. (pts
  1794. (xy -0.762 1.27)
  1795. (xy 0 2.54)
  1796. )
  1797. (stroke (width 0) (type default) (color 0 0 0 0))
  1798. (fill (type none))
  1799. )
  1800. (polyline
  1801. (pts
  1802. (xy 0 0)
  1803. (xy 0 2.54)
  1804. )
  1805. (stroke (width 0) (type default) (color 0 0 0 0))
  1806. (fill (type none))
  1807. )
  1808. (polyline
  1809. (pts
  1810. (xy 0 2.54)
  1811. (xy 0.762 1.27)
  1812. )
  1813. (stroke (width 0) (type default) (color 0 0 0 0))
  1814. (fill (type none))
  1815. )
  1816. )
  1817. (symbol "+3.3V_1_1"
  1818. (pin power_in line (at 0 0 90) (length 0) hide
  1819. (name "+3V3" (effects (font (size 1.27 1.27))))
  1820. (number "1" (effects (font (size 1.27 1.27))))
  1821. )
  1822. )
  1823. )
  1824. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1825. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1826. (effects (font (size 1.27 1.27)) hide)
  1827. )
  1828. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1829. (effects (font (size 1.27 1.27)))
  1830. )
  1831. (property "Footprint" "" (id 2) (at 0 0 0)
  1832. (effects (font (size 1.27 1.27)) hide)
  1833. )
  1834. (property "Datasheet" "" (id 3) (at 0 0 0)
  1835. (effects (font (size 1.27 1.27)) hide)
  1836. )
  1837. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1838. (effects (font (size 1.27 1.27)) hide)
  1839. )
  1840. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1841. (effects (font (size 1.27 1.27)) hide)
  1842. )
  1843. (symbol "+5V_0_1"
  1844. (polyline
  1845. (pts
  1846. (xy -0.762 1.27)
  1847. (xy 0 2.54)
  1848. )
  1849. (stroke (width 0) (type default) (color 0 0 0 0))
  1850. (fill (type none))
  1851. )
  1852. (polyline
  1853. (pts
  1854. (xy 0 0)
  1855. (xy 0 2.54)
  1856. )
  1857. (stroke (width 0) (type default) (color 0 0 0 0))
  1858. (fill (type none))
  1859. )
  1860. (polyline
  1861. (pts
  1862. (xy 0 2.54)
  1863. (xy 0.762 1.27)
  1864. )
  1865. (stroke (width 0) (type default) (color 0 0 0 0))
  1866. (fill (type none))
  1867. )
  1868. )
  1869. (symbol "+5V_1_1"
  1870. (pin power_in line (at 0 0 90) (length 0) hide
  1871. (name "+5V" (effects (font (size 1.27 1.27))))
  1872. (number "1" (effects (font (size 1.27 1.27))))
  1873. )
  1874. )
  1875. )
  1876. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1877. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1878. (effects (font (size 1.27 1.27)) hide)
  1879. )
  1880. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1881. (effects (font (size 1.27 1.27)))
  1882. )
  1883. (property "Footprint" "" (id 2) (at 0 0 0)
  1884. (effects (font (size 1.27 1.27)) hide)
  1885. )
  1886. (property "Datasheet" "" (id 3) (at 0 0 0)
  1887. (effects (font (size 1.27 1.27)) hide)
  1888. )
  1889. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1890. (effects (font (size 1.27 1.27)) hide)
  1891. )
  1892. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1893. (effects (font (size 1.27 1.27)) hide)
  1894. )
  1895. (symbol "GND_0_1"
  1896. (polyline
  1897. (pts
  1898. (xy 0 0)
  1899. (xy 0 -1.27)
  1900. (xy 1.27 -1.27)
  1901. (xy 0 -2.54)
  1902. (xy -1.27 -1.27)
  1903. (xy 0 -1.27)
  1904. )
  1905. (stroke (width 0) (type default) (color 0 0 0 0))
  1906. (fill (type none))
  1907. )
  1908. )
  1909. (symbol "GND_1_1"
  1910. (pin power_in line (at 0 0 270) (length 0) hide
  1911. (name "GND" (effects (font (size 1.27 1.27))))
  1912. (number "1" (effects (font (size 1.27 1.27))))
  1913. )
  1914. )
  1915. )
  1916. (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1917. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1918. (effects (font (size 1.27 1.27)) hide)
  1919. )
  1920. (property "Value" "GNDA" (id 1) (at 0 -3.81 0)
  1921. (effects (font (size 1.27 1.27)))
  1922. )
  1923. (property "Footprint" "" (id 2) (at 0 0 0)
  1924. (effects (font (size 1.27 1.27)) hide)
  1925. )
  1926. (property "Datasheet" "" (id 3) (at 0 0 0)
  1927. (effects (font (size 1.27 1.27)) hide)
  1928. )
  1929. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1930. (effects (font (size 1.27 1.27)) hide)
  1931. )
  1932. (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
  1933. (effects (font (size 1.27 1.27)) hide)
  1934. )
  1935. (symbol "GNDA_0_1"
  1936. (polyline
  1937. (pts
  1938. (xy 0 0)
  1939. (xy 0 -1.27)
  1940. (xy 1.27 -1.27)
  1941. (xy 0 -2.54)
  1942. (xy -1.27 -1.27)
  1943. (xy 0 -1.27)
  1944. )
  1945. (stroke (width 0) (type default) (color 0 0 0 0))
  1946. (fill (type none))
  1947. )
  1948. )
  1949. (symbol "GNDA_1_1"
  1950. (pin power_in line (at 0 0 270) (length 0) hide
  1951. (name "GNDA" (effects (font (size 1.27 1.27))))
  1952. (number "1" (effects (font (size 1.27 1.27))))
  1953. )
  1954. )
  1955. )
  1956. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1957. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1958. (effects (font (size 1.27 1.27)) hide)
  1959. )
  1960. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1961. (effects (font (size 1.27 1.27)))
  1962. )
  1963. (property "Footprint" "" (id 2) (at 0 0 0)
  1964. (effects (font (size 1.27 1.27)) hide)
  1965. )
  1966. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1967. (effects (font (size 1.27 1.27)) hide)
  1968. )
  1969. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1970. (effects (font (size 1.27 1.27)) hide)
  1971. )
  1972. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  1973. (effects (font (size 1.27 1.27)) hide)
  1974. )
  1975. (symbol "PWR_FLAG_0_0"
  1976. (pin power_out line (at 0 0 90) (length 0)
  1977. (name "pwr" (effects (font (size 1.27 1.27))))
  1978. (number "1" (effects (font (size 1.27 1.27))))
  1979. )
  1980. )
  1981. (symbol "PWR_FLAG_0_1"
  1982. (polyline
  1983. (pts
  1984. (xy 0 0)
  1985. (xy 0 1.27)
  1986. (xy -1.016 1.905)
  1987. (xy 0 2.54)
  1988. (xy 1.016 1.905)
  1989. (xy 0 1.27)
  1990. )
  1991. (stroke (width 0) (type default) (color 0 0 0 0))
  1992. (fill (type none))
  1993. )
  1994. )
  1995. )
  1996. (symbol "strain:HX711" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1997. (property "Reference" "U" (id 0) (at 5.08 12.7 0)
  1998. (effects (font (size 1.27 1.27)))
  1999. )
  2000. (property "Value" "HX711" (id 1) (at -5.08 12.7 0)
  2001. (effects (font (size 1.27 1.27)))
  2002. )
  2003. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 0 0 0)
  2004. (effects (font (size 1.27 1.27)) hide)
  2005. )
  2006. (property "Datasheet" "" (id 3) (at 0 0 0)
  2007. (effects (font (size 1.27 1.27)) hide)
  2008. )
  2009. (symbol "HX711_0_1"
  2010. (rectangle (start -8.89 11.43) (end 8.89 -11.43)
  2011. (stroke (width 0) (type default) (color 0 0 0 0))
  2012. (fill (type background))
  2013. )
  2014. )
  2015. (symbol "HX711_1_1"
  2016. (pin power_in line (at -11.43 8.89 0) (length 2.54)
  2017. (name "VSUP" (effects (font (size 1.27 1.27))))
  2018. (number "1" (effects (font (size 1.27 1.27))))
  2019. )
  2020. (pin input line (at 11.43 -6.35 180) (length 2.54)
  2021. (name "INB+" (effects (font (size 1.27 1.27))))
  2022. (number "10" (effects (font (size 1.27 1.27))))
  2023. )
  2024. (pin input line (at 11.43 -3.81 180) (length 2.54)
  2025. (name "PD_SCK" (effects (font (size 1.27 1.27))))
  2026. (number "11" (effects (font (size 1.27 1.27))))
  2027. )
  2028. (pin output line (at 11.43 -1.27 180) (length 2.54)
  2029. (name "DOUT" (effects (font (size 1.27 1.27))))
  2030. (number "12" (effects (font (size 1.27 1.27))))
  2031. )
  2032. (pin output line (at 11.43 1.27 180) (length 2.54)
  2033. (name "XO" (effects (font (size 1.27 1.27))))
  2034. (number "13" (effects (font (size 1.27 1.27))))
  2035. )
  2036. (pin input line (at 11.43 3.81 180) (length 2.54)
  2037. (name "XI" (effects (font (size 1.27 1.27))))
  2038. (number "14" (effects (font (size 1.27 1.27))))
  2039. )
  2040. (pin input line (at 11.43 6.35 180) (length 2.54)
  2041. (name "RATE" (effects (font (size 1.27 1.27))))
  2042. (number "15" (effects (font (size 1.27 1.27))))
  2043. )
  2044. (pin power_in line (at 11.43 8.89 180) (length 2.54)
  2045. (name "DVDD" (effects (font (size 1.27 1.27))))
  2046. (number "16" (effects (font (size 1.27 1.27))))
  2047. )
  2048. (pin output line (at -11.43 6.35 0) (length 2.54)
  2049. (name "BASE" (effects (font (size 1.27 1.27))))
  2050. (number "2" (effects (font (size 1.27 1.27))))
  2051. )
  2052. (pin bidirectional line (at -11.43 3.81 0) (length 2.54)
  2053. (name "AVDD" (effects (font (size 1.27 1.27))))
  2054. (number "3" (effects (font (size 1.27 1.27))))
  2055. )
  2056. (pin input line (at -11.43 1.27 0) (length 2.54)
  2057. (name "VFB" (effects (font (size 1.27 1.27))))
  2058. (number "4" (effects (font (size 1.27 1.27))))
  2059. )
  2060. (pin power_in line (at -11.43 -1.27 0) (length 2.54)
  2061. (name "AGND" (effects (font (size 1.27 1.27))))
  2062. (number "5" (effects (font (size 1.27 1.27))))
  2063. )
  2064. (pin output line (at -11.43 -3.81 0) (length 2.54)
  2065. (name "VBG" (effects (font (size 1.27 1.27))))
  2066. (number "6" (effects (font (size 1.27 1.27))))
  2067. )
  2068. (pin input line (at -11.43 -6.35 0) (length 2.54)
  2069. (name "INA-" (effects (font (size 1.27 1.27))))
  2070. (number "7" (effects (font (size 1.27 1.27))))
  2071. )
  2072. (pin input line (at -11.43 -8.89 0) (length 2.54)
  2073. (name "INA+" (effects (font (size 1.27 1.27))))
  2074. (number "8" (effects (font (size 1.27 1.27))))
  2075. )
  2076. (pin input line (at 11.43 -8.89 180) (length 2.54)
  2077. (name "INB-" (effects (font (size 1.27 1.27))))
  2078. (number "9" (effects (font (size 1.27 1.27))))
  2079. )
  2080. )
  2081. )
  2082. )
  2083. (junction (at 200.66 250.19) (diameter 0) (color 0 0 0 0)
  2084. (uuid 00e38d63-5436-49db-81f5-697421f168fc)
  2085. )
  2086. (junction (at 228.6 234.95) (diameter 0) (color 0 0 0 0)
  2087. (uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
  2088. )
  2089. (junction (at 58.42 29.21) (diameter 0) (color 0 0 0 0)
  2090. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  2091. )
  2092. (junction (at 36.83 191.77) (diameter 0) (color 0 0 0 0)
  2093. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  2094. )
  2095. (junction (at 81.28 77.47) (diameter 0) (color 0 0 0 0)
  2096. (uuid 05f2859d-2820-4e84-b395-696011feb13b)
  2097. )
  2098. (junction (at 323.85 167.64) (diameter 0) (color 0 0 0 0)
  2099. (uuid 09c6ca89-863f-42d4-867e-9a769c316610)
  2100. )
  2101. (junction (at 144.78 250.19) (diameter 0) (color 0 0 0 0)
  2102. (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
  2103. )
  2104. (junction (at 172.72 250.19) (diameter 0) (color 0 0 0 0)
  2105. (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
  2106. )
  2107. (junction (at 269.24 250.19) (diameter 0) (color 0 0 0 0)
  2108. (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
  2109. )
  2110. (junction (at 184.15 187.96) (diameter 0) (color 0 0 0 0)
  2111. (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
  2112. )
  2113. (junction (at 204.47 162.56) (diameter 0) (color 0 0 0 0)
  2114. (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
  2115. )
  2116. (junction (at 332.74 167.64) (diameter 0) (color 0 0 0 0)
  2117. (uuid 1427bb3f-0689-4b41-a816-cd79a5202fd0)
  2118. )
  2119. (junction (at 207.01 137.16) (diameter 0) (color 0 0 0 0)
  2120. (uuid 1b98de85-f9de-4825-baf2-c96991615275)
  2121. )
  2122. (junction (at 105.41 57.15) (diameter 0) (color 0 0 0 0)
  2123. (uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
  2124. )
  2125. (junction (at 195.58 209.55) (diameter 0) (color 0 0 0 0)
  2126. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  2127. )
  2128. (junction (at 284.48 234.95) (diameter 0) (color 0 0 0 0)
  2129. (uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
  2130. )
  2131. (junction (at 228.6 250.19) (diameter 0) (color 0 0 0 0)
  2132. (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
  2133. )
  2134. (junction (at 347.98 209.55) (diameter 0) (color 0 0 0 0)
  2135. (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
  2136. )
  2137. (junction (at 379.73 171.45) (diameter 0) (color 0 0 0 0)
  2138. (uuid 24a492d9-25a9-4fba-b51b-3effb576b351)
  2139. )
  2140. (junction (at 78.74 194.31) (diameter 0) (color 0 0 0 0)
  2141. (uuid 24fd922c-d488-4d61-b6dc-9d3e359ccc82)
  2142. )
  2143. (junction (at 88.9 234.95) (diameter 0) (color 0 0 0 0)
  2144. (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
  2145. )
  2146. (junction (at 189.23 162.56) (diameter 0) (color 0 0 0 0)
  2147. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  2148. )
  2149. (junction (at 129.54 234.95) (diameter 0) (color 0 0 0 0)
  2150. (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
  2151. )
  2152. (junction (at 45.72 162.56) (diameter 0) (color 0 0 0 0)
  2153. (uuid 341dde39-440e-4d05-8def-6a5cecefd88c)
  2154. )
  2155. (junction (at 207.01 132.08) (diameter 0) (color 0 0 0 0)
  2156. (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37)
  2157. )
  2158. (junction (at 317.5 27.94) (diameter 0) (color 0 0 0 0)
  2159. (uuid 386faf3f-2adf-472a-84bf-bd511edf2429)
  2160. )
  2161. (junction (at 200.66 234.95) (diameter 0) (color 0 0 0 0)
  2162. (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
  2163. )
  2164. (junction (at 33.02 29.21) (diameter 0) (color 0 0 0 0)
  2165. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  2166. )
  2167. (junction (at 241.3 133.35) (diameter 0) (color 0 0 0 0)
  2168. (uuid 3d70e675-48ae-4edd-b95d-3ca51e634018)
  2169. )
  2170. (junction (at 317.5 33.02) (diameter 0) (color 0 0 0 0)
  2171. (uuid 3e87b259-dfc1-4885-8dcf-7e7ae39674ed)
  2172. )
  2173. (junction (at 144.78 234.95) (diameter 0) (color 0 0 0 0)
  2174. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  2175. )
  2176. (junction (at 184.15 181.61) (diameter 0) (color 0 0 0 0)
  2177. (uuid 41485de5-6ed3-4c83-b69e-ef83ae18093c)
  2178. )
  2179. (junction (at 241.3 250.19) (diameter 0) (color 0 0 0 0)
  2180. (uuid 4185c36c-c66e-4dbd-be5d-841e551f4885)
  2181. )
  2182. (junction (at 323.85 172.72) (diameter 0) (color 0 0 0 0)
  2183. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  2184. )
  2185. (junction (at 195.58 204.47) (diameter 0) (color 0 0 0 0)
  2186. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  2187. )
  2188. (junction (at 129.54 250.19) (diameter 0) (color 0 0 0 0)
  2189. (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
  2190. )
  2191. (junction (at 256.54 250.19) (diameter 0) (color 0 0 0 0)
  2192. (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
  2193. )
  2194. (junction (at 101.6 250.19) (diameter 0) (color 0 0 0 0)
  2195. (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
  2196. )
  2197. (junction (at 342.9 167.64) (diameter 0) (color 0 0 0 0)
  2198. (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
  2199. )
  2200. (junction (at 78.74 196.85) (diameter 0) (color 0 0 0 0)
  2201. (uuid 59ee13a4-660e-47e2-a73a-01cfe11439e9)
  2202. )
  2203. (junction (at 167.64 181.61) (diameter 0) (color 0 0 0 0)
  2204. (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)
  2205. )
  2206. (junction (at 27.94 191.77) (diameter 0) (color 0 0 0 0)
  2207. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  2208. )
  2209. (junction (at 213.36 234.95) (diameter 0) (color 0 0 0 0)
  2210. (uuid 71c6e723-673c-45a9-a0e4-9742220c52a3)
  2211. )
  2212. (junction (at 326.39 27.94) (diameter 0) (color 0 0 0 0)
  2213. (uuid 72366acb-6c86-4134-89df-01ed6e4dc8e0)
  2214. )
  2215. (junction (at 189.23 85.09) (diameter 0) (color 0 0 0 0)
  2216. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  2217. )
  2218. (junction (at 38.1 99.06) (diameter 0) (color 0 0 0 0)
  2219. (uuid 7806469b-c133-4e19-b2d5-f2b690b4b2f3)
  2220. )
  2221. (junction (at 78.74 191.77) (diameter 0) (color 0 0 0 0)
  2222. (uuid 7ce4aab5-8271-4432-a4b1-bff168293b45)
  2223. )
  2224. (junction (at 53.34 78.74) (diameter 0) (color 0 0 0 0)
  2225. (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
  2226. )
  2227. (junction (at 157.48 234.95) (diameter 0) (color 0 0 0 0)
  2228. (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
  2229. )
  2230. (junction (at 383.54 181.61) (diameter 0) (color 0 0 0 0)
  2231. (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a)
  2232. )
  2233. (junction (at 172.72 234.95) (diameter 0) (color 0 0 0 0)
  2234. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  2235. )
  2236. (junction (at 347.98 212.09) (diameter 0) (color 0 0 0 0)
  2237. (uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
  2238. )
  2239. (junction (at 172.72 167.64) (diameter 0) (color 0 0 0 0)
  2240. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  2241. )
  2242. (junction (at 156.21 140.97) (diameter 0) (color 0 0 0 0)
  2243. (uuid 8afe1dbf-1187-4362-8af8-a90ca839a6b3)
  2244. )
  2245. (junction (at 157.48 250.19) (diameter 0) (color 0 0 0 0)
  2246. (uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
  2247. )
  2248. (junction (at 132.08 128.27) (diameter 0) (color 0 0 0 0)
  2249. (uuid 8efe6411-1919-4082-b5b8-393585e068c8)
  2250. )
  2251. (junction (at 101.6 234.95) (diameter 0) (color 0 0 0 0)
  2252. (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
  2253. )
  2254. (junction (at 185.42 234.95) (diameter 0) (color 0 0 0 0)
  2255. (uuid 935057d5-6882-4c15-9a35-54677912ba12)
  2256. )
  2257. (junction (at 207.01 127) (diameter 0) (color 0 0 0 0)
  2258. (uuid 971d1932-4a99-4265-9c76-26e554bde4fe)
  2259. )
  2260. (junction (at 347.98 207.01) (diameter 0) (color 0 0 0 0)
  2261. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  2262. )
  2263. (junction (at 116.84 234.95) (diameter 0) (color 0 0 0 0)
  2264. (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
  2265. )
  2266. (junction (at 284.48 250.19) (diameter 0) (color 0 0 0 0)
  2267. (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
  2268. )
  2269. (junction (at 30.48 250.19) (diameter 0) (color 0 0 0 0)
  2270. (uuid 9a595c4c-9ac1-4ae3-8ff3-1b7f2281a894)
  2271. )
  2272. (junction (at 45.72 134.62) (diameter 0) (color 0 0 0 0)
  2273. (uuid 9c0314b1-f82f-432d-95a0-65e191202552)
  2274. )
  2275. (junction (at 54.61 242.57) (diameter 0) (color 0 0 0 0)
  2276. (uuid 9e18f8b3-9e1a-4022-9224-10c12ca8a28d)
  2277. )
  2278. (junction (at 48.26 40.64) (diameter 0) (color 0 0 0 0)
  2279. (uuid a12b751e-ae7a-468c-af3d-31ed4d501b01)
  2280. )
  2281. (junction (at 30.48 234.95) (diameter 0) (color 0 0 0 0)
  2282. (uuid a26bdee6-0e16-4ea6-87f7-fb32c714896e)
  2283. )
  2284. (junction (at 233.68 193.04) (diameter 0) (color 0 0 0 0)
  2285. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  2286. )
  2287. (junction (at 269.24 234.95) (diameter 0) (color 0 0 0 0)
  2288. (uuid a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
  2289. )
  2290. (junction (at 213.36 250.19) (diameter 0) (color 0 0 0 0)
  2291. (uuid b4833916-7a3e-4498-86fb-ec6d13262ffe)
  2292. )
  2293. (junction (at 53.34 73.66) (diameter 0) (color 0 0 0 0)
  2294. (uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
  2295. )
  2296. (junction (at 170.18 127) (diameter 0) (color 0 0 0 0)
  2297. (uuid b606e532-e4c7-444d-b9ff-879f52cfde92)
  2298. )
  2299. (junction (at 326.39 33.02) (diameter 0) (color 0 0 0 0)
  2300. (uuid ba116096-3ccc-4cc8-a185-5325439e4e24)
  2301. )
  2302. (junction (at 189.23 181.61) (diameter 0) (color 0 0 0 0)
  2303. (uuid bd29b6d3-a58c-4b1f-9c20-de4efb708ab2)
  2304. )
  2305. (junction (at 158.75 181.61) (diameter 0) (color 0 0 0 0)
  2306. (uuid c2dd13db-24b6-40f1-b75b-b9ab893d92ea)
  2307. )
  2308. (junction (at 224.79 71.12) (diameter 0) (color 0 0 0 0)
  2309. (uuid c37d3f0c-41ec-4928-8869-febc821c6326)
  2310. )
  2311. (junction (at 163.83 191.77) (diameter 0) (color 0 0 0 0)
  2312. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  2313. )
  2314. (junction (at 163.83 186.69) (diameter 0) (color 0 0 0 0)
  2315. (uuid c401e9c6-1deb-4979-99be-7c801c952098)
  2316. )
  2317. (junction (at 156.21 134.62) (diameter 0) (color 0 0 0 0)
  2318. (uuid c482f4f0-b441-4301-a9f1-c7f9e511d699)
  2319. )
  2320. (junction (at 233.68 175.26) (diameter 0) (color 0 0 0 0)
  2321. (uuid c512fed3-9770-476b-b048-e781b4f3cd72)
  2322. )
  2323. (junction (at 181.61 162.56) (diameter 0) (color 0 0 0 0)
  2324. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  2325. )
  2326. (junction (at 241.3 234.95) (diameter 0) (color 0 0 0 0)
  2327. (uuid cc48dd41-7768-48d3-b096-2c4cc2126c9d)
  2328. )
  2329. (junction (at 336.55 200.66) (diameter 0) (color 0 0 0 0)
  2330. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  2331. )
  2332. (junction (at 224.79 76.2) (diameter 0) (color 0 0 0 0)
  2333. (uuid d1441985-7b63-4bf8-a06d-c70da2e3b78b)
  2334. )
  2335. (junction (at 195.58 69.85) (diameter 0) (color 0 0 0 0)
  2336. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  2337. )
  2338. (junction (at 379.73 173.99) (diameter 0) (color 0 0 0 0)
  2339. (uuid d7df1f01-3f56-437b-a452-e88ad90a9805)
  2340. )
  2341. (junction (at 207.01 129.54) (diameter 0) (color 0 0 0 0)
  2342. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  2343. )
  2344. (junction (at 24.13 26.67) (diameter 0) (color 0 0 0 0)
  2345. (uuid db532ed2-914c-41b4-b389-de2bf235d0a7)
  2346. )
  2347. (junction (at 27.94 199.39) (diameter 0) (color 0 0 0 0)
  2348. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  2349. )
  2350. (junction (at 172.72 92.71) (diameter 0) (color 0 0 0 0)
  2351. (uuid dbbbcbf5-ed09-4c20-902c-70f108158aba)
  2352. )
  2353. (junction (at 379.73 168.91) (diameter 0) (color 0 0 0 0)
  2354. (uuid dd3da890-32ef-4a5a-aea4-e5d2141f1ff1)
  2355. )
  2356. (junction (at 185.42 250.19) (diameter 0) (color 0 0 0 0)
  2357. (uuid e091e263-c616-48ef-a460-465c70218987)
  2358. )
  2359. (junction (at 119.38 57.15) (diameter 0) (color 0 0 0 0)
  2360. (uuid e2b24e25-1a0d-434a-876b-c595b47d80d2)
  2361. )
  2362. (junction (at 116.84 250.19) (diameter 0) (color 0 0 0 0)
  2363. (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
  2364. )
  2365. (junction (at 67.31 26.67) (diameter 0) (color 0 0 0 0)
  2366. (uuid e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6)
  2367. )
  2368. (junction (at 214.63 207.01) (diameter 0) (color 0 0 0 0)
  2369. (uuid ea6e56c6-8250-47d0-a0e8-238d8f05bf5b)
  2370. )
  2371. (junction (at 88.9 250.19) (diameter 0) (color 0 0 0 0)
  2372. (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
  2373. )
  2374. (junction (at 57.15 60.96) (diameter 0) (color 0 0 0 0)
  2375. (uuid ef3dded2-639c-45d4-8076-84cfb5189592)
  2376. )
  2377. (junction (at 172.72 62.23) (diameter 0) (color 0 0 0 0)
  2378. (uuid f321809c-ab7a-4356-9b11-4c0d46c421ba)
  2379. )
  2380. (junction (at 48.26 38.1) (diameter 0) (color 0 0 0 0)
  2381. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  2382. )
  2383. (junction (at 347.98 204.47) (diameter 0) (color 0 0 0 0)
  2384. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  2385. )
  2386. (junction (at 256.54 234.95) (diameter 0) (color 0 0 0 0)
  2387. (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
  2388. )
  2389. (junction (at 207.01 134.62) (diameter 0) (color 0 0 0 0)
  2390. (uuid fdc57161-f7f8-4584-b0ec-8c1aa24339c6)
  2391. )
  2392. (junction (at 30.48 99.06) (diameter 0) (color 0 0 0 0)
  2393. (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
  2394. )
  2395. (no_connect (at 96.52 43.18) (uuid 011ee658-718d-416a-85fd-961729cd1ee5))
  2396. (no_connect (at 231.14 182.88) (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
  2397. (no_connect (at 132.08 77.47) (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17))
  2398. (no_connect (at 132.08 74.93) (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
  2399. (no_connect (at 304.8 242.57) (uuid 1a813eeb-ee58-4579-81e1-3f9a7227213c))
  2400. (no_connect (at 96.52 27.94) (uuid 29bb7297-26fb-4776-9266-2355d022bab0))
  2401. (no_connect (at 340.36 45.72) (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f))
  2402. (no_connect (at 132.08 80.01) (uuid 4344bc11-e822-474b-8d61-d12211e719b1))
  2403. (no_connect (at 340.36 48.26) (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48))
  2404. (no_connect (at 85.09 27.94) (uuid 5c30b9b4-3014-4f50-9329-27a539b67e01))
  2405. (no_connect (at 111.76 69.85) (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
  2406. (no_connect (at 53.34 91.44) (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b))
  2407. (no_connect (at 77.47 199.39) (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa))
  2408. (no_connect (at 85.09 43.18) (uuid 96de0051-7945-413a-9219-1ab367546962))
  2409. (no_connect (at 378.46 48.26) (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e))
  2410. (no_connect (at 135.89 46.99) (uuid b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
  2411. (no_connect (at 119.38 43.18) (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
  2412. (no_connect (at 107.95 43.18) (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054))
  2413. (no_connect (at 53.34 88.9) (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21))
  2414. (no_connect (at 147.32 46.99) (uuid ce3f834f-337d-4957-8d02-e900d7024614))
  2415. (no_connect (at 340.36 43.18) (uuid d554632b-6dd0-47f8-b59b-3ce25177ca3e))
  2416. (no_connect (at 132.08 82.55) (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa))
  2417. (no_connect (at 107.95 27.94) (uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b))
  2418. (no_connect (at 41.91 196.85) (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63))
  2419. (wire (pts (xy 88.9 240.03) (xy 88.9 250.19))
  2420. (stroke (width 0) (type default) (color 0 0 0 0))
  2421. (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
  2422. )
  2423. (wire (pts (xy 220.98 242.57) (xy 233.68 242.57))
  2424. (stroke (width 0) (type default) (color 0 0 0 0))
  2425. (uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
  2426. )
  2427. (wire (pts (xy 231.14 180.34) (xy 240.03 180.34))
  2428. (stroke (width 0) (type default) (color 0 0 0 0))
  2429. (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76)
  2430. )
  2431. (wire (pts (xy 157.48 234.95) (xy 172.72 234.95))
  2432. (stroke (width 0) (type default) (color 0 0 0 0))
  2433. (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
  2434. )
  2435. (wire (pts (xy 144.78 234.95) (xy 157.48 234.95))
  2436. (stroke (width 0) (type default) (color 0 0 0 0))
  2437. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  2438. )
  2439. (wire (pts (xy 353.06 73.66) (xy 353.06 90.17))
  2440. (stroke (width 0) (type default) (color 0 0 0 0))
  2441. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  2442. )
  2443. (wire (pts (xy 229.87 207.01) (xy 229.87 209.55))
  2444. (stroke (width 0) (type default) (color 0 0 0 0))
  2445. (uuid 0476c30e-6498-4edb-86a5-14460aba01fe)
  2446. )
  2447. (wire (pts (xy 321.31 167.64) (xy 323.85 167.64))
  2448. (stroke (width 0) (type default) (color 0 0 0 0))
  2449. (uuid 04d60995-4f82-4f17-8f82-2f27a0a779cc)
  2450. )
  2451. (wire (pts (xy 121.92 62.23) (xy 121.92 57.15))
  2452. (stroke (width 0) (type default) (color 0 0 0 0))
  2453. (uuid 051b8cb0-ae77-4e09-98a7-bf2103319e66)
  2454. )
  2455. (wire (pts (xy 228.6 234.95) (xy 241.3 234.95))
  2456. (stroke (width 0) (type default) (color 0 0 0 0))
  2457. (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
  2458. )
  2459. (wire (pts (xy 53.34 68.58) (xy 77.47 68.58))
  2460. (stroke (width 0) (type default) (color 0 0 0 0))
  2461. (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
  2462. )
  2463. (wire (pts (xy 207.01 124.46) (xy 207.01 127))
  2464. (stroke (width 0) (type default) (color 0 0 0 0))
  2465. (uuid 08da8f18-02c3-4a28-a400-670f01755980)
  2466. )
  2467. (wire (pts (xy 207.01 137.16) (xy 207.01 142.24))
  2468. (stroke (width 0) (type default) (color 0 0 0 0))
  2469. (uuid 0938c137-668b-4d2f-b92b-cadb1df72bdb)
  2470. )
  2471. (wire (pts (xy 241.3 125.73) (xy 241.3 123.19))
  2472. (stroke (width 0) (type default) (color 0 0 0 0))
  2473. (uuid 094dc71e-7ea9-4e30-8ba7-749216ec2a8b)
  2474. )
  2475. (wire (pts (xy 196.85 172.72) (xy 201.93 172.72))
  2476. (stroke (width 0) (type default) (color 0 0 0 0))
  2477. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  2478. )
  2479. (wire (pts (xy 81.28 198.12) (xy 78.74 198.12))
  2480. (stroke (width 0) (type default) (color 0 0 0 0))
  2481. (uuid 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2)
  2482. )
  2483. (wire (pts (xy 36.83 194.31) (xy 36.83 191.77))
  2484. (stroke (width 0) (type default) (color 0 0 0 0))
  2485. (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
  2486. )
  2487. (wire (pts (xy 377.19 181.61) (xy 383.54 181.61))
  2488. (stroke (width 0) (type default) (color 0 0 0 0))
  2489. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  2490. )
  2491. (wire (pts (xy 223.52 69.85) (xy 223.52 71.12))
  2492. (stroke (width 0) (type default) (color 0 0 0 0))
  2493. (uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef)
  2494. )
  2495. (wire (pts (xy 151.13 134.62) (xy 156.21 134.62))
  2496. (stroke (width 0) (type default) (color 0 0 0 0))
  2497. (uuid 0c9bbc06-f1c0-4359-8448-9c515b32a886)
  2498. )
  2499. (wire (pts (xy 45.72 134.62) (xy 62.23 134.62))
  2500. (stroke (width 0) (type default) (color 0 0 0 0))
  2501. (uuid 0cc094e7-c1c0-457d-bd94-3db91c23be55)
  2502. )
  2503. (wire (pts (xy 351.79 209.55) (xy 347.98 209.55))
  2504. (stroke (width 0) (type default) (color 0 0 0 0))
  2505. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  2506. )
  2507. (wire (pts (xy 40.64 29.21) (xy 33.02 29.21))
  2508. (stroke (width 0) (type default) (color 0 0 0 0))
  2509. (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
  2510. )
  2511. (wire (pts (xy 116.84 250.19) (xy 129.54 250.19))
  2512. (stroke (width 0) (type default) (color 0 0 0 0))
  2513. (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
  2514. )
  2515. (wire (pts (xy 105.41 62.23) (xy 105.41 66.04))
  2516. (stroke (width 0) (type default) (color 0 0 0 0))
  2517. (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
  2518. )
  2519. (wire (pts (xy 137.16 242.57) (xy 149.86 242.57))
  2520. (stroke (width 0) (type default) (color 0 0 0 0))
  2521. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  2522. )
  2523. (polyline (pts (xy 208.28 49.53) (xy 208.28 115.57))
  2524. (stroke (width 0) (type default) (color 0 0 0 0))
  2525. (uuid 1053b01a-057e-4e79-a21c-42780a737ea9)
  2526. )
  2527. (polyline (pts (xy 12.7 218.44) (xy 307.34 218.44))
  2528. (stroke (width 0) (type default) (color 0 0 0 0))
  2529. (uuid 105d44ff-63b9-4299-9078-473af583971a)
  2530. )
  2531. (wire (pts (xy 378.46 66.04) (xy 398.78 66.04))
  2532. (stroke (width 0) (type default) (color 0 0 0 0))
  2533. (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa)
  2534. )
  2535. (wire (pts (xy 54.61 242.57) (xy 71.12 242.57))
  2536. (stroke (width 0) (type default) (color 0 0 0 0))
  2537. (uuid 10fa1a8c-62cb-4b8f-b916-b18d737ff71b)
  2538. )
  2539. (wire (pts (xy 48.26 38.1) (xy 58.42 38.1))
  2540. (stroke (width 0) (type default) (color 0 0 0 0))
  2541. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  2542. )
  2543. (wire (pts (xy 200.66 250.19) (xy 213.36 250.19))
  2544. (stroke (width 0) (type default) (color 0 0 0 0))
  2545. (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
  2546. )
  2547. (wire (pts (xy 156.21 134.62) (xy 166.37 134.62))
  2548. (stroke (width 0) (type default) (color 0 0 0 0))
  2549. (uuid 15a5a11b-0ea1-4f6e-b356-cc2d530615ed)
  2550. )
  2551. (wire (pts (xy 378.46 68.58) (xy 403.86 68.58))
  2552. (stroke (width 0) (type default) (color 0 0 0 0))
  2553. (uuid 15ea3484-2685-47cb-9e01-ec01c6d477b8)
  2554. )
  2555. (wire (pts (xy 241.3 250.19) (xy 256.54 250.19))
  2556. (stroke (width 0) (type default) (color 0 0 0 0))
  2557. (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
  2558. )
  2559. (wire (pts (xy 175.26 62.23) (xy 175.26 64.77))
  2560. (stroke (width 0) (type default) (color 0 0 0 0))
  2561. (uuid 165f4d8d-26a9-4cf2-a8d6-9936cd983be4)
  2562. )
  2563. (wire (pts (xy 38.1 99.06) (xy 38.1 100.33))
  2564. (stroke (width 0) (type default) (color 0 0 0 0))
  2565. (uuid 16d5bf81-590a-4149-97e0-64f3b3ad6f52)
  2566. )
  2567. (wire (pts (xy 269.24 250.19) (xy 284.48 250.19))
  2568. (stroke (width 0) (type default) (color 0 0 0 0))
  2569. (uuid 180245d9-4a3f-4d1b-adcc-b4eafac722e0)
  2570. )
  2571. (wire (pts (xy 116.84 240.03) (xy 116.84 250.19))
  2572. (stroke (width 0) (type default) (color 0 0 0 0))
  2573. (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
  2574. )
  2575. (wire (pts (xy 26.67 26.67) (xy 24.13 26.67))
  2576. (stroke (width 0) (type default) (color 0 0 0 0))
  2577. (uuid 18dee026-9999-4f10-8c36-736131349406)
  2578. )
  2579. (wire (pts (xy 351.79 189.23) (xy 336.55 189.23))
  2580. (stroke (width 0) (type default) (color 0 0 0 0))
  2581. (uuid 1b023dd4-5185-4576-b544-68a05b9c360b)
  2582. )
  2583. (wire (pts (xy 176.53 204.47) (xy 195.58 204.47))
  2584. (stroke (width 0) (type default) (color 0 0 0 0))
  2585. (uuid 1cacb878-9da4-41fc-aa80-018bc841e19a)
  2586. )
  2587. (wire (pts (xy 241.3 133.35) (xy 241.3 130.81))
  2588. (stroke (width 0) (type default) (color 0 0 0 0))
  2589. (uuid 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b)
  2590. )
  2591. (polyline (pts (xy 313.69 234.95) (xy 313.69 148.59))
  2592. (stroke (width 0) (type default) (color 0 0 0 0))
  2593. (uuid 1d9dc91c-3457-4ca5-8e42-43be60ae0831)
  2594. )
  2595. (wire (pts (xy 53.34 66.04) (xy 83.82 66.04))
  2596. (stroke (width 0) (type default) (color 0 0 0 0))
  2597. (uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
  2598. )
  2599. (wire (pts (xy 200.66 240.03) (xy 200.66 250.19))
  2600. (stroke (width 0) (type default) (color 0 0 0 0))
  2601. (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
  2602. )
  2603. (wire (pts (xy 246.38 83.82) (xy 229.87 83.82))
  2604. (stroke (width 0) (type default) (color 0 0 0 0))
  2605. (uuid 2028d85e-9e27-4758-8c0b-559fad072813)
  2606. )
  2607. (wire (pts (xy 33.02 35.56) (xy 33.02 38.1))
  2608. (stroke (width 0) (type default) (color 0 0 0 0))
  2609. (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
  2610. )
  2611. (wire (pts (xy 231.14 190.5) (xy 233.68 190.5))
  2612. (stroke (width 0) (type default) (color 0 0 0 0))
  2613. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  2614. )
  2615. (wire (pts (xy 330.2 200.66) (xy 336.55 200.66))
  2616. (stroke (width 0) (type default) (color 0 0 0 0))
  2617. (uuid 212bf70c-2324-47d9-8700-59771063baeb)
  2618. )
  2619. (wire (pts (xy 377.19 209.55) (xy 381 209.55))
  2620. (stroke (width 0) (type default) (color 0 0 0 0))
  2621. (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
  2622. )
  2623. (wire (pts (xy 166.37 127) (xy 170.18 127))
  2624. (stroke (width 0) (type default) (color 0 0 0 0))
  2625. (uuid 22ab392d-1989-4185-9178-8083812ea067)
  2626. )
  2627. (wire (pts (xy 27.94 199.39) (xy 27.94 201.93))
  2628. (stroke (width 0) (type default) (color 0 0 0 0))
  2629. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  2630. )
  2631. (wire (pts (xy 195.58 209.55) (xy 208.28 209.55))
  2632. (stroke (width 0) (type default) (color 0 0 0 0))
  2633. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  2634. )
  2635. (wire (pts (xy 195.58 185.42) (xy 195.58 196.85))
  2636. (stroke (width 0) (type default) (color 0 0 0 0))
  2637. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  2638. )
  2639. (wire (pts (xy 176.53 181.61) (xy 184.15 181.61))
  2640. (stroke (width 0) (type default) (color 0 0 0 0))
  2641. (uuid 26bc8641-9bca-4204-9709-deedbe202a36)
  2642. )
  2643. (wire (pts (xy 231.14 193.04) (xy 233.68 193.04))
  2644. (stroke (width 0) (type default) (color 0 0 0 0))
  2645. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  2646. )
  2647. (wire (pts (xy 233.68 175.26) (xy 231.14 175.26))
  2648. (stroke (width 0) (type default) (color 0 0 0 0))
  2649. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  2650. )
  2651. (wire (pts (xy 323.85 167.64) (xy 332.74 167.64))
  2652. (stroke (width 0) (type default) (color 0 0 0 0))
  2653. (uuid 28b01cd2-da3a-46ec-8825-b0f31a0b8987)
  2654. )
  2655. (wire (pts (xy 189.23 162.56) (xy 189.23 160.02))
  2656. (stroke (width 0) (type default) (color 0 0 0 0))
  2657. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  2658. )
  2659. (wire (pts (xy 189.23 85.09) (xy 201.93 85.09))
  2660. (stroke (width 0) (type default) (color 0 0 0 0))
  2661. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  2662. )
  2663. (wire (pts (xy 158.75 186.69) (xy 163.83 186.69))
  2664. (stroke (width 0) (type default) (color 0 0 0 0))
  2665. (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
  2666. )
  2667. (wire (pts (xy 81.28 77.47) (xy 83.82 77.47))
  2668. (stroke (width 0) (type default) (color 0 0 0 0))
  2669. (uuid 2a1de22d-6451-488d-af77-0bf8841bd695)
  2670. )
  2671. (wire (pts (xy 379.73 168.91) (xy 393.7 168.91))
  2672. (stroke (width 0) (type default) (color 0 0 0 0))
  2673. (uuid 2a4f1c24-6486-4fd8-8092-72bb07a81274)
  2674. )
  2675. (wire (pts (xy 111.76 74.93) (xy 99.06 74.93))
  2676. (stroke (width 0) (type default) (color 0 0 0 0))
  2677. (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
  2678. )
  2679. (wire (pts (xy 394.97 50.8) (xy 378.46 50.8))
  2680. (stroke (width 0) (type default) (color 0 0 0 0))
  2681. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  2682. )
  2683. (wire (pts (xy 78.74 194.31) (xy 101.6 194.31))
  2684. (stroke (width 0) (type default) (color 0 0 0 0))
  2685. (uuid 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
  2686. )
  2687. (wire (pts (xy 365.76 78.74) (xy 387.35 78.74))
  2688. (stroke (width 0) (type default) (color 0 0 0 0))
  2689. (uuid 2c488362-c230-4f6d-82f9-a229b1171a23)
  2690. )
  2691. (wire (pts (xy 383.54 181.61) (xy 383.54 190.5))
  2692. (stroke (width 0) (type default) (color 0 0 0 0))
  2693. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  2694. )
  2695. (wire (pts (xy 172.72 127) (xy 172.72 135.89))
  2696. (stroke (width 0) (type default) (color 0 0 0 0))
  2697. (uuid 2dc66f7e-d85d-4081-ae71-fd8851d6aeda)
  2698. )
  2699. (wire (pts (xy 81.28 193.04) (xy 78.74 193.04))
  2700. (stroke (width 0) (type default) (color 0 0 0 0))
  2701. (uuid 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5)
  2702. )
  2703. (wire (pts (xy 33.02 30.48) (xy 33.02 29.21))
  2704. (stroke (width 0) (type default) (color 0 0 0 0))
  2705. (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
  2706. )
  2707. (wire (pts (xy 78.74 195.58) (xy 78.74 194.31))
  2708. (stroke (width 0) (type default) (color 0 0 0 0))
  2709. (uuid 315d2b15-cfe6-4672-b3ad-24773f3df12c)
  2710. )
  2711. (wire (pts (xy 326.39 33.02) (xy 317.5 33.02))
  2712. (stroke (width 0) (type default) (color 0 0 0 0))
  2713. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  2714. )
  2715. (wire (pts (xy 351.79 184.15) (xy 336.55 184.15))
  2716. (stroke (width 0) (type default) (color 0 0 0 0))
  2717. (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8)
  2718. )
  2719. (polyline (pts (xy 307.34 218.44) (xy 307.34 266.7))
  2720. (stroke (width 0) (type default) (color 0 0 0 0))
  2721. (uuid 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a)
  2722. )
  2723. (wire (pts (xy 347.98 201.93) (xy 351.79 201.93))
  2724. (stroke (width 0) (type default) (color 0 0 0 0))
  2725. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  2726. )
  2727. (wire (pts (xy 172.72 234.95) (xy 185.42 234.95))
  2728. (stroke (width 0) (type default) (color 0 0 0 0))
  2729. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  2730. )
  2731. (wire (pts (xy 321.31 172.72) (xy 323.85 172.72))
  2732. (stroke (width 0) (type default) (color 0 0 0 0))
  2733. (uuid 34ddb753-e57c-4ca8-a67b-d7cdf62cae93)
  2734. )
  2735. (wire (pts (xy 83.82 151.13) (xy 71.12 151.13))
  2736. (stroke (width 0) (type default) (color 0 0 0 0))
  2737. (uuid 35343f32-90ff-4059-a108-111fb444c3d2)
  2738. )
  2739. (wire (pts (xy 163.83 186.69) (xy 167.64 186.69))
  2740. (stroke (width 0) (type default) (color 0 0 0 0))
  2741. (uuid 355ced6c-c08a-4586-9a09-7a9c624536f6)
  2742. )
  2743. (wire (pts (xy 121.92 57.15) (xy 119.38 57.15))
  2744. (stroke (width 0) (type default) (color 0 0 0 0))
  2745. (uuid 35c09d1f-2914-4d1e-a002-df30af772f3b)
  2746. )
  2747. (wire (pts (xy 189.23 74.93) (xy 189.23 85.09))
  2748. (stroke (width 0) (type default) (color 0 0 0 0))
  2749. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  2750. )
  2751. (wire (pts (xy 336.55 27.94) (xy 326.39 27.94))
  2752. (stroke (width 0) (type default) (color 0 0 0 0))
  2753. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  2754. )
  2755. (wire (pts (xy 347.98 207.01) (xy 347.98 204.47))
  2756. (stroke (width 0) (type default) (color 0 0 0 0))
  2757. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  2758. )
  2759. (wire (pts (xy 336.55 35.56) (xy 336.55 27.94))
  2760. (stroke (width 0) (type default) (color 0 0 0 0))
  2761. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  2762. )
  2763. (wire (pts (xy 172.72 250.19) (xy 185.42 250.19))
  2764. (stroke (width 0) (type default) (color 0 0 0 0))
  2765. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  2766. )
  2767. (wire (pts (xy 347.98 209.55) (xy 347.98 207.01))
  2768. (stroke (width 0) (type default) (color 0 0 0 0))
  2769. (uuid 386ad9e3-71fa-420f-8722-88548b024fc5)
  2770. )
  2771. (wire (pts (xy 185.42 250.19) (xy 200.66 250.19))
  2772. (stroke (width 0) (type default) (color 0 0 0 0))
  2773. (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
  2774. )
  2775. (wire (pts (xy 171.45 204.47) (xy 147.32 204.47))
  2776. (stroke (width 0) (type default) (color 0 0 0 0))
  2777. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  2778. )
  2779. (wire (pts (xy 48.26 36.83) (xy 48.26 38.1))
  2780. (stroke (width 0) (type default) (color 0 0 0 0))
  2781. (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
  2782. )
  2783. (wire (pts (xy 340.36 53.34) (xy 325.12 53.34))
  2784. (stroke (width 0) (type default) (color 0 0 0 0))
  2785. (uuid 3b9c5ffd-e59b-402d-8c5e-052f7ca643a4)
  2786. )
  2787. (wire (pts (xy 184.15 186.69) (xy 184.15 187.96))
  2788. (stroke (width 0) (type default) (color 0 0 0 0))
  2789. (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)
  2790. )
  2791. (wire (pts (xy 30.48 240.03) (xy 30.48 250.19))
  2792. (stroke (width 0) (type default) (color 0 0 0 0))
  2793. (uuid 3c121a93-b189-409b-a104-2bdd37ff0b51)
  2794. )
  2795. (wire (pts (xy 378.46 40.64) (xy 401.32 40.64))
  2796. (stroke (width 0) (type default) (color 0 0 0 0))
  2797. (uuid 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0)
  2798. )
  2799. (wire (pts (xy 158.75 181.61) (xy 167.64 181.61))
  2800. (stroke (width 0) (type default) (color 0 0 0 0))
  2801. (uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333)
  2802. )
  2803. (wire (pts (xy 351.79 176.53) (xy 336.55 176.53))
  2804. (stroke (width 0) (type default) (color 0 0 0 0))
  2805. (uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
  2806. )
  2807. (wire (pts (xy 30.48 256.54) (xy 30.48 250.19))
  2808. (stroke (width 0) (type default) (color 0 0 0 0))
  2809. (uuid 3f1ab70d-3263-42b5-9c61-0360188ff2b7)
  2810. )
  2811. (wire (pts (xy 233.68 190.5) (xy 233.68 193.04))
  2812. (stroke (width 0) (type default) (color 0 0 0 0))
  2813. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  2814. )
  2815. (wire (pts (xy 172.72 168.91) (xy 172.72 167.64))
  2816. (stroke (width 0) (type default) (color 0 0 0 0))
  2817. (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7)
  2818. )
  2819. (wire (pts (xy 81.28 195.58) (xy 78.74 195.58))
  2820. (stroke (width 0) (type default) (color 0 0 0 0))
  2821. (uuid 41524d81-a7f7-45af-a8c6-15609b68d1fd)
  2822. )
  2823. (wire (pts (xy 118.11 144.78) (xy 133.35 144.78))
  2824. (stroke (width 0) (type default) (color 0 0 0 0))
  2825. (uuid 41ab46ed-40f5-461d-81aa-1f02dc069a49)
  2826. )
  2827. (wire (pts (xy 201.93 172.72) (xy 201.93 177.8))
  2828. (stroke (width 0) (type default) (color 0 0 0 0))
  2829. (uuid 42ecdba3-f348-4384-8d4b-cd21e56f3613)
  2830. )
  2831. (wire (pts (xy 233.68 177.8) (xy 233.68 175.26))
  2832. (stroke (width 0) (type default) (color 0 0 0 0))
  2833. (uuid 4346fe55-f906-453a-b81a-1c013104a598)
  2834. )
  2835. (wire (pts (xy 342.9 200.66) (xy 342.9 196.85))
  2836. (stroke (width 0) (type default) (color 0 0 0 0))
  2837. (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
  2838. )
  2839. (wire (pts (xy 207.01 127) (xy 207.01 129.54))
  2840. (stroke (width 0) (type default) (color 0 0 0 0))
  2841. (uuid 444b2eaf-241d-42e5-8717-27a83d099c5b)
  2842. )
  2843. (wire (pts (xy 204.47 175.26) (xy 208.28 175.26))
  2844. (stroke (width 0) (type default) (color 0 0 0 0))
  2845. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  2846. )
  2847. (wire (pts (xy 147.32 181.61) (xy 158.75 181.61))
  2848. (stroke (width 0) (type default) (color 0 0 0 0))
  2849. (uuid 465137b4-f6f7-4d51-9b40-b161947d5cc1)
  2850. )
  2851. (wire (pts (xy 201.93 129.54) (xy 207.01 129.54))
  2852. (stroke (width 0) (type default) (color 0 0 0 0))
  2853. (uuid 469f89fd-f629-46b7-b106-a0088168c9ec)
  2854. )
  2855. (wire (pts (xy 378.46 43.18) (xy 401.32 43.18))
  2856. (stroke (width 0) (type default) (color 0 0 0 0))
  2857. (uuid 47957453-fce7-4d98-833c-e34bb8a852a5)
  2858. )
  2859. (wire (pts (xy 121.92 186.69) (xy 133.35 186.69))
  2860. (stroke (width 0) (type default) (color 0 0 0 0))
  2861. (uuid 47993d80-a37e-426e-90c9-fd54b49ed166)
  2862. )
  2863. (wire (pts (xy 246.38 73.66) (xy 245.11 73.66))
  2864. (stroke (width 0) (type default) (color 0 0 0 0))
  2865. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  2866. )
  2867. (wire (pts (xy 175.26 80.01) (xy 175.26 77.47))
  2868. (stroke (width 0) (type default) (color 0 0 0 0))
  2869. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  2870. )
  2871. (wire (pts (xy 147.32 209.55) (xy 171.45 209.55))
  2872. (stroke (width 0) (type default) (color 0 0 0 0))
  2873. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  2874. )
  2875. (wire (pts (xy 181.61 167.64) (xy 172.72 167.64))
  2876. (stroke (width 0) (type default) (color 0 0 0 0))
  2877. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  2878. )
  2879. (wire (pts (xy 213.36 250.19) (xy 228.6 250.19))
  2880. (stroke (width 0) (type default) (color 0 0 0 0))
  2881. (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)
  2882. )
  2883. (wire (pts (xy 147.32 191.77) (xy 163.83 191.77))
  2884. (stroke (width 0) (type default) (color 0 0 0 0))
  2885. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  2886. )
  2887. (wire (pts (xy 204.47 162.56) (xy 233.68 162.56))
  2888. (stroke (width 0) (type default) (color 0 0 0 0))
  2889. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  2890. )
  2891. (wire (pts (xy 203.2 187.96) (xy 208.28 187.96))
  2892. (stroke (width 0) (type default) (color 0 0 0 0))
  2893. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  2894. )
  2895. (wire (pts (xy 57.15 234.95) (xy 54.61 234.95))
  2896. (stroke (width 0) (type default) (color 0 0 0 0))
  2897. (uuid 4d51bc15-1f84-46be-8e16-e836b10f854e)
  2898. )
  2899. (wire (pts (xy 175.26 74.93) (xy 189.23 74.93))
  2900. (stroke (width 0) (type default) (color 0 0 0 0))
  2901. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  2902. )
  2903. (wire (pts (xy 340.36 58.42) (xy 325.12 58.42))
  2904. (stroke (width 0) (type default) (color 0 0 0 0))
  2905. (uuid 4ef07d45-f940-4cb6-bb96-2ddec13fd099)
  2906. )
  2907. (wire (pts (xy 200.66 234.95) (xy 213.36 234.95))
  2908. (stroke (width 0) (type default) (color 0 0 0 0))
  2909. (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
  2910. )
  2911. (wire (pts (xy 77.47 194.31) (xy 78.74 194.31))
  2912. (stroke (width 0) (type default) (color 0 0 0 0))
  2913. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  2914. )
  2915. (wire (pts (xy 78.74 196.85) (xy 101.6 196.85))
  2916. (stroke (width 0) (type default) (color 0 0 0 0))
  2917. (uuid 51f5536d-48d2-4807-be44-93f427952b0e)
  2918. )
  2919. (wire (pts (xy 121.92 191.77) (xy 133.35 191.77))
  2920. (stroke (width 0) (type default) (color 0 0 0 0))
  2921. (uuid 54093c93-5e7e-4c8d-8d94-40c077747c12)
  2922. )
  2923. (wire (pts (xy 269.24 234.95) (xy 284.48 234.95))
  2924. (stroke (width 0) (type default) (color 0 0 0 0))
  2925. (uuid 54212c01-b363-47b8-a145-45c40df316f4)
  2926. )
  2927. (wire (pts (xy 172.72 62.23) (xy 175.26 62.23))
  2928. (stroke (width 0) (type default) (color 0 0 0 0))
  2929. (uuid 54d76293-1ce2-46f8-9be7-a3d7f9f28112)
  2930. )
  2931. (wire (pts (xy 214.63 207.01) (xy 219.71 207.01))
  2932. (stroke (width 0) (type default) (color 0 0 0 0))
  2933. (uuid 562b7df8-cdaa-48ed-bd95-bf2fa6dac339)
  2934. )
  2935. (wire (pts (xy 207.01 134.62) (xy 207.01 137.16))
  2936. (stroke (width 0) (type default) (color 0 0 0 0))
  2937. (uuid 5698a460-6e24-4857-84d8-4a43acd2325d)
  2938. )
  2939. (wire (pts (xy 151.13 140.97) (xy 156.21 140.97))
  2940. (stroke (width 0) (type default) (color 0 0 0 0))
  2941. (uuid 58a87288-e2bf-4c88-9871-a753efc69e9d)
  2942. )
  2943. (wire (pts (xy 175.26 90.17) (xy 175.26 92.71))
  2944. (stroke (width 0) (type default) (color 0 0 0 0))
  2945. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  2946. )
  2947. (wire (pts (xy 342.9 167.64) (xy 332.74 167.64))
  2948. (stroke (width 0) (type default) (color 0 0 0 0))
  2949. (uuid 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
  2950. )
  2951. (wire (pts (xy 78.74 198.12) (xy 78.74 196.85))
  2952. (stroke (width 0) (type default) (color 0 0 0 0))
  2953. (uuid 5a319d05-1a85-43fe-a179-ebcee7212a03)
  2954. )
  2955. (wire (pts (xy 394.97 58.42) (xy 378.46 58.42))
  2956. (stroke (width 0) (type default) (color 0 0 0 0))
  2957. (uuid 5a33f5a4-a470-4c04-9e2d-532b5f01a5d6)
  2958. )
  2959. (wire (pts (xy 196.85 137.16) (xy 181.61 137.16))
  2960. (stroke (width 0) (type default) (color 0 0 0 0))
  2961. (uuid 5a397f61-35c4-4c18-9dcd-73a2d44cc9af)
  2962. )
  2963. (wire (pts (xy 133.35 128.27) (xy 133.35 130.81))
  2964. (stroke (width 0) (type default) (color 0 0 0 0))
  2965. (uuid 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
  2966. )
  2967. (wire (pts (xy 347.98 212.09) (xy 347.98 209.55))
  2968. (stroke (width 0) (type default) (color 0 0 0 0))
  2969. (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
  2970. )
  2971. (wire (pts (xy 231.14 177.8) (xy 233.68 177.8))
  2972. (stroke (width 0) (type default) (color 0 0 0 0))
  2973. (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861)
  2974. )
  2975. (wire (pts (xy 334.01 71.12) (xy 334.01 68.58))
  2976. (stroke (width 0) (type default) (color 0 0 0 0))
  2977. (uuid 5eb16f0d-ef1e-4549-97a1-19cd06ad7236)
  2978. )
  2979. (wire (pts (xy 132.08 87.63) (xy 148.59 87.63))
  2980. (stroke (width 0) (type default) (color 0 0 0 0))
  2981. (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
  2982. )
  2983. (wire (pts (xy 208.28 193.04) (xy 208.28 209.55))
  2984. (stroke (width 0) (type default) (color 0 0 0 0))
  2985. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  2986. )
  2987. (wire (pts (xy 116.84 234.95) (xy 129.54 234.95))
  2988. (stroke (width 0) (type default) (color 0 0 0 0))
  2989. (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
  2990. )
  2991. (wire (pts (xy 378.46 63.5) (xy 394.97 63.5))
  2992. (stroke (width 0) (type default) (color 0 0 0 0))
  2993. (uuid 6133fb54-5524-482e-9ae2-adbf29aced9e)
  2994. )
  2995. (polyline (pts (xy 302.26 99.06) (xy 302.26 12.7))
  2996. (stroke (width 0) (type default) (color 0 0 0 0))
  2997. (uuid 61a18b62-4111-4a9d-8fca-04c4c6f90cc3)
  2998. )
  2999. (wire (pts (xy 185.42 69.85) (xy 195.58 69.85))
  3000. (stroke (width 0) (type default) (color 0 0 0 0))
  3001. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3002. )
  3003. (wire (pts (xy 340.36 63.5) (xy 323.85 63.5))
  3004. (stroke (width 0) (type default) (color 0 0 0 0))
  3005. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  3006. )
  3007. (wire (pts (xy 379.73 173.99) (xy 377.19 173.99))
  3008. (stroke (width 0) (type default) (color 0 0 0 0))
  3009. (uuid 665081dc-8354-4d41-8855-bde8901aee4c)
  3010. )
  3011. (wire (pts (xy 231.14 185.42) (xy 256.54 185.42))
  3012. (stroke (width 0) (type default) (color 0 0 0 0))
  3013. (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec)
  3014. )
  3015. (wire (pts (xy 45.72 137.16) (xy 45.72 134.62))
  3016. (stroke (width 0) (type default) (color 0 0 0 0))
  3017. (uuid 680c3e83-f590-4924-85a1-36d51b076683)
  3018. )
  3019. (wire (pts (xy 53.34 78.74) (xy 67.31 78.74))
  3020. (stroke (width 0) (type default) (color 0 0 0 0))
  3021. (uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
  3022. )
  3023. (wire (pts (xy 132.08 128.27) (xy 133.35 128.27))
  3024. (stroke (width 0) (type default) (color 0 0 0 0))
  3025. (uuid 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f)
  3026. )
  3027. (wire (pts (xy 130.81 135.89) (xy 130.81 142.24))
  3028. (stroke (width 0) (type default) (color 0 0 0 0))
  3029. (uuid 6a25c4e1-7129-430c-892b-6eecb6ffdb47)
  3030. )
  3031. (wire (pts (xy 336.55 205.74) (xy 336.55 212.09))
  3032. (stroke (width 0) (type default) (color 0 0 0 0))
  3033. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  3034. )
  3035. (wire (pts (xy 77.47 73.66) (xy 77.47 77.47))
  3036. (stroke (width 0) (type default) (color 0 0 0 0))
  3037. (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e)
  3038. )
  3039. (wire (pts (xy 195.58 77.47) (xy 195.58 69.85))
  3040. (stroke (width 0) (type default) (color 0 0 0 0))
  3041. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3042. )
  3043. (wire (pts (xy 38.1 99.06) (xy 30.48 99.06))
  3044. (stroke (width 0) (type default) (color 0 0 0 0))
  3045. (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
  3046. )
  3047. (wire (pts (xy 340.36 50.8) (xy 325.12 50.8))
  3048. (stroke (width 0) (type default) (color 0 0 0 0))
  3049. (uuid 6b8c153e-62fe-42fb-aa7f-caef740ef6fd)
  3050. )
  3051. (wire (pts (xy 351.79 204.47) (xy 347.98 204.47))
  3052. (stroke (width 0) (type default) (color 0 0 0 0))
  3053. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  3054. )
  3055. (wire (pts (xy 321.31 165.1) (xy 321.31 167.64))
  3056. (stroke (width 0) (type default) (color 0 0 0 0))
  3057. (uuid 6f44a349-1ba9-4965-b217-aa1589a07228)
  3058. )
  3059. (wire (pts (xy 166.37 129.54) (xy 166.37 127))
  3060. (stroke (width 0) (type default) (color 0 0 0 0))
  3061. (uuid 6fd21292-6577-40e1-bbda-18906b5e9f6f)
  3062. )
  3063. (polyline (pts (xy 110.49 176.53) (xy 12.7 176.53))
  3064. (stroke (width 0) (type default) (color 0 0 0 0))
  3065. (uuid 7043f61a-4f1e-4cab-9031-a6449e41a893)
  3066. )
  3067. (wire (pts (xy 196.85 132.08) (xy 181.61 132.08))
  3068. (stroke (width 0) (type default) (color 0 0 0 0))
  3069. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3070. )
  3071. (wire (pts (xy 185.42 234.95) (xy 200.66 234.95))
  3072. (stroke (width 0) (type default) (color 0 0 0 0))
  3073. (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
  3074. )
  3075. (polyline (pts (xy 313.69 148.59) (xy 419.1 148.59))
  3076. (stroke (width 0) (type default) (color 0 0 0 0))
  3077. (uuid 717b25a7-c9c2-4f6f-b744-a96113325c99)
  3078. )
  3079. (wire (pts (xy 77.47 191.77) (xy 78.74 191.77))
  3080. (stroke (width 0) (type default) (color 0 0 0 0))
  3081. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  3082. )
  3083. (wire (pts (xy 58.42 29.21) (xy 55.88 29.21))
  3084. (stroke (width 0) (type default) (color 0 0 0 0))
  3085. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  3086. )
  3087. (wire (pts (xy 340.36 40.64) (xy 325.12 40.64))
  3088. (stroke (width 0) (type default) (color 0 0 0 0))
  3089. (uuid 720ec55a-7c69-4064-b792-ef3dbba4eab9)
  3090. )
  3091. (wire (pts (xy 172.72 60.96) (xy 172.72 62.23))
  3092. (stroke (width 0) (type default) (color 0 0 0 0))
  3093. (uuid 7247fe96-7885-4063-8282-ea2fd2b28b0d)
  3094. )
  3095. (wire (pts (xy 207.01 127) (xy 201.93 127))
  3096. (stroke (width 0) (type default) (color 0 0 0 0))
  3097. (uuid 7255cbd1-8d38-4545-be9a-7fc5488ef942)
  3098. )
  3099. (wire (pts (xy 233.68 193.04) (xy 233.68 196.85))
  3100. (stroke (width 0) (type default) (color 0 0 0 0))
  3101. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3102. )
  3103. (wire (pts (xy 326.39 27.94) (xy 317.5 27.94))
  3104. (stroke (width 0) (type default) (color 0 0 0 0))
  3105. (uuid 7274c82d-0cb9-47de-b093-7d848f491410)
  3106. )
  3107. (wire (pts (xy 219.71 133.35) (xy 241.3 133.35))
  3108. (stroke (width 0) (type default) (color 0 0 0 0))
  3109. (uuid 72f9157b-77da-4a6d-9880-0711b21f6e23)
  3110. )
  3111. (wire (pts (xy 355.6 73.66) (xy 355.6 96.52))
  3112. (stroke (width 0) (type default) (color 0 0 0 0))
  3113. (uuid 74096bdc-b668-408c-af3a-b048c20bd605)
  3114. )
  3115. (wire (pts (xy 48.26 38.1) (xy 48.26 40.64))
  3116. (stroke (width 0) (type default) (color 0 0 0 0))
  3117. (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
  3118. )
  3119. (wire (pts (xy 340.36 55.88) (xy 325.12 55.88))
  3120. (stroke (width 0) (type default) (color 0 0 0 0))
  3121. (uuid 765684c2-53b3-4ef7-bd1b-7a4a73d87b76)
  3122. )
  3123. (wire (pts (xy 340.36 35.56) (xy 336.55 35.56))
  3124. (stroke (width 0) (type default) (color 0 0 0 0))
  3125. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  3126. )
  3127. (wire (pts (xy 377.19 179.07) (xy 383.54 179.07))
  3128. (stroke (width 0) (type default) (color 0 0 0 0))
  3129. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  3130. )
  3131. (wire (pts (xy 336.55 212.09) (xy 347.98 212.09))
  3132. (stroke (width 0) (type default) (color 0 0 0 0))
  3133. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  3134. )
  3135. (wire (pts (xy 121.92 203.2) (xy 133.35 203.2))
  3136. (stroke (width 0) (type default) (color 0 0 0 0))
  3137. (uuid 77ef8901-6325-4427-901a-4acd9074dd7b)
  3138. )
  3139. (wire (pts (xy 351.79 167.64) (xy 342.9 167.64))
  3140. (stroke (width 0) (type default) (color 0 0 0 0))
  3141. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  3142. )
  3143. (wire (pts (xy 121.92 200.66) (xy 133.35 200.66))
  3144. (stroke (width 0) (type default) (color 0 0 0 0))
  3145. (uuid 7943ed8c-e760-4ace-9c5f-baf5589fae39)
  3146. )
  3147. (wire (pts (xy 284.48 240.03) (xy 284.48 250.19))
  3148. (stroke (width 0) (type default) (color 0 0 0 0))
  3149. (uuid 79770cd5-32d7-429a-8248-0d9e6212231a)
  3150. )
  3151. (wire (pts (xy 276.86 242.57) (xy 289.56 242.57))
  3152. (stroke (width 0) (type default) (color 0 0 0 0))
  3153. (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041)
  3154. )
  3155. (wire (pts (xy 58.42 29.21) (xy 67.31 29.21))
  3156. (stroke (width 0) (type default) (color 0 0 0 0))
  3157. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  3158. )
  3159. (wire (pts (xy 101.6 234.95) (xy 116.84 234.95))
  3160. (stroke (width 0) (type default) (color 0 0 0 0))
  3161. (uuid 7c04618d-9115-4179-b234-a8faf854ea92)
  3162. )
  3163. (wire (pts (xy 347.98 204.47) (xy 347.98 201.93))
  3164. (stroke (width 0) (type default) (color 0 0 0 0))
  3165. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  3166. )
  3167. (wire (pts (xy 379.73 167.64) (xy 379.73 168.91))
  3168. (stroke (width 0) (type default) (color 0 0 0 0))
  3169. (uuid 7df9ce6f-7f38-4582-a049-7f92faf1abc9)
  3170. )
  3171. (wire (pts (xy 340.36 33.02) (xy 326.39 33.02))
  3172. (stroke (width 0) (type default) (color 0 0 0 0))
  3173. (uuid 7f064424-06a6-4f5b-87d6-1970ae527766)
  3174. )
  3175. (polyline (pts (xy 12.7 115.57) (xy 262.89 115.57))
  3176. (stroke (width 0) (type default) (color 0 0 0 0))
  3177. (uuid 80b9a57f-3326-43ca-b6ca-5e911992b3c4)
  3178. )
  3179. (wire (pts (xy 129.54 250.19) (xy 144.78 250.19))
  3180. (stroke (width 0) (type default) (color 0 0 0 0))
  3181. (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
  3182. )
  3183. (wire (pts (xy 172.72 95.25) (xy 172.72 92.71))
  3184. (stroke (width 0) (type default) (color 0 0 0 0))
  3185. (uuid 81ab7ed7-7160-4650-b711-4daa2902dc8b)
  3186. )
  3187. (wire (pts (xy 201.93 134.62) (xy 207.01 134.62))
  3188. (stroke (width 0) (type default) (color 0 0 0 0))
  3189. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  3190. )
  3191. (wire (pts (xy 41.91 194.31) (xy 36.83 194.31))
  3192. (stroke (width 0) (type default) (color 0 0 0 0))
  3193. (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
  3194. )
  3195. (wire (pts (xy 207.01 129.54) (xy 207.01 132.08))
  3196. (stroke (width 0) (type default) (color 0 0 0 0))
  3197. (uuid 848c6095-3966-404d-9f2a-51150fd8dc54)
  3198. )
  3199. (wire (pts (xy 30.48 99.06) (xy 30.48 104.14))
  3200. (stroke (width 0) (type default) (color 0 0 0 0))
  3201. (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
  3202. )
  3203. (wire (pts (xy 381 214.63) (xy 381 217.17))
  3204. (stroke (width 0) (type default) (color 0 0 0 0))
  3205. (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5)
  3206. )
  3207. (wire (pts (xy 77.47 196.85) (xy 78.74 196.85))
  3208. (stroke (width 0) (type default) (color 0 0 0 0))
  3209. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  3210. )
  3211. (wire (pts (xy 175.26 77.47) (xy 195.58 77.47))
  3212. (stroke (width 0) (type default) (color 0 0 0 0))
  3213. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  3214. )
  3215. (wire (pts (xy 88.9 229.87) (xy 88.9 234.95))
  3216. (stroke (width 0) (type default) (color 0 0 0 0))
  3217. (uuid 88610282-a92d-4c3d-917a-ea95d59e0759)
  3218. )
  3219. (polyline (pts (xy 12.7 49.53) (xy 262.89 49.53))
  3220. (stroke (width 0) (type default) (color 0 0 0 0))
  3221. (uuid 897277a3-b7ce-4d18-8c5f-1c984a246298)
  3222. )
  3223. (wire (pts (xy 351.79 172.72) (xy 351.79 171.45))
  3224. (stroke (width 0) (type default) (color 0 0 0 0))
  3225. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  3226. )
  3227. (wire (pts (xy 368.3 73.66) (xy 379.73 73.66))
  3228. (stroke (width 0) (type default) (color 0 0 0 0))
  3229. (uuid 89df70f4-3579-42b9-861e-6beb04a3b25e)
  3230. )
  3231. (wire (pts (xy 347.98 207.01) (xy 351.79 207.01))
  3232. (stroke (width 0) (type default) (color 0 0 0 0))
  3233. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  3234. )
  3235. (wire (pts (xy 45.72 165.1) (xy 45.72 162.56))
  3236. (stroke (width 0) (type default) (color 0 0 0 0))
  3237. (uuid 8ade7975-64a0-440a-8545-11958836bf48)
  3238. )
  3239. (wire (pts (xy 350.52 73.66) (xy 350.52 90.17))
  3240. (stroke (width 0) (type default) (color 0 0 0 0))
  3241. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  3242. )
  3243. (wire (pts (xy 201.93 177.8) (xy 208.28 177.8))
  3244. (stroke (width 0) (type default) (color 0 0 0 0))
  3245. (uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
  3246. )
  3247. (wire (pts (xy 351.79 168.91) (xy 351.79 167.64))
  3248. (stroke (width 0) (type default) (color 0 0 0 0))
  3249. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  3250. )
  3251. (wire (pts (xy 351.79 196.85) (xy 342.9 196.85))
  3252. (stroke (width 0) (type default) (color 0 0 0 0))
  3253. (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6)
  3254. )
  3255. (wire (pts (xy 121.92 96.52) (xy 121.92 92.71))
  3256. (stroke (width 0) (type default) (color 0 0 0 0))
  3257. (uuid 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129)
  3258. )
  3259. (wire (pts (xy 67.31 25.4) (xy 67.31 26.67))
  3260. (stroke (width 0) (type default) (color 0 0 0 0))
  3261. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  3262. )
  3263. (wire (pts (xy 256.54 250.19) (xy 269.24 250.19))
  3264. (stroke (width 0) (type default) (color 0 0 0 0))
  3265. (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
  3266. )
  3267. (wire (pts (xy 379.73 170.18) (xy 379.73 171.45))
  3268. (stroke (width 0) (type default) (color 0 0 0 0))
  3269. (uuid 90d503cf-92b2-4120-a4b0-03a2eddde893)
  3270. )
  3271. (wire (pts (xy 38.1 100.33) (xy 45.72 100.33))
  3272. (stroke (width 0) (type default) (color 0 0 0 0))
  3273. (uuid 90fa0465-7fe5-474b-8e7c-9f955c02a0f6)
  3274. )
  3275. (wire (pts (xy 88.9 234.95) (xy 101.6 234.95))
  3276. (stroke (width 0) (type default) (color 0 0 0 0))
  3277. (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
  3278. )
  3279. (wire (pts (xy 205.74 190.5) (xy 205.74 204.47))
  3280. (stroke (width 0) (type default) (color 0 0 0 0))
  3281. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  3282. )
  3283. (wire (pts (xy 160.02 62.23) (xy 172.72 62.23))
  3284. (stroke (width 0) (type default) (color 0 0 0 0))
  3285. (uuid 92a23ed4-a5ea-4cea-bc33-0a83191a0d32)
  3286. )
  3287. (wire (pts (xy 377.19 171.45) (xy 379.73 171.45))
  3288. (stroke (width 0) (type default) (color 0 0 0 0))
  3289. (uuid 946404ba-9297-43ec-9d67-30184041145f)
  3290. )
  3291. (wire (pts (xy 15.24 242.57) (xy 35.56 242.57))
  3292. (stroke (width 0) (type default) (color 0 0 0 0))
  3293. (uuid 94c3d0e3-d7fb-421d-bbb4-5c800d76c809)
  3294. )
  3295. (wire (pts (xy 163.83 191.77) (xy 163.83 196.85))
  3296. (stroke (width 0) (type default) (color 0 0 0 0))
  3297. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  3298. )
  3299. (wire (pts (xy 119.38 57.15) (xy 119.38 62.23))
  3300. (stroke (width 0) (type default) (color 0 0 0 0))
  3301. (uuid 974c48bf-534e-4335-98e1-b0426c783e99)
  3302. )
  3303. (wire (pts (xy 58.42 30.48) (xy 58.42 29.21))
  3304. (stroke (width 0) (type default) (color 0 0 0 0))
  3305. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  3306. )
  3307. (polyline (pts (xy 262.89 12.7) (xy 262.89 152.4))
  3308. (stroke (width 0) (type default) (color 0 0 0 0))
  3309. (uuid 97693043-81ba-44a2-b87b-aca6193e0970)
  3310. )
  3311. (wire (pts (xy 67.31 26.67) (xy 67.31 29.21))
  3312. (stroke (width 0) (type default) (color 0 0 0 0))
  3313. (uuid 97cc05bf-4ed5-449c-b0c8-131e5126a7ac)
  3314. )
  3315. (wire (pts (xy 121.92 189.23) (xy 133.35 189.23))
  3316. (stroke (width 0) (type default) (color 0 0 0 0))
  3317. (uuid 981ff4de-0330-4757-b746-0cb983df5e7c)
  3318. )
  3319. (wire (pts (xy 233.68 162.56) (xy 233.68 175.26))
  3320. (stroke (width 0) (type default) (color 0 0 0 0))
  3321. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3322. )
  3323. (wire (pts (xy 132.08 67.31) (xy 148.59 67.31))
  3324. (stroke (width 0) (type default) (color 0 0 0 0))
  3325. (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
  3326. )
  3327. (wire (pts (xy 99.06 77.47) (xy 111.76 77.47))
  3328. (stroke (width 0) (type default) (color 0 0 0 0))
  3329. (uuid 99186658-0361-40ba-ae93-62f23c5622e6)
  3330. )
  3331. (wire (pts (xy 284.48 250.19) (xy 297.18 250.19))
  3332. (stroke (width 0) (type default) (color 0 0 0 0))
  3333. (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c)
  3334. )
  3335. (wire (pts (xy 27.94 199.39) (xy 41.91 199.39))
  3336. (stroke (width 0) (type default) (color 0 0 0 0))
  3337. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  3338. )
  3339. (wire (pts (xy 248.92 242.57) (xy 261.62 242.57))
  3340. (stroke (width 0) (type default) (color 0 0 0 0))
  3341. (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
  3342. )
  3343. (wire (pts (xy 30.48 250.19) (xy 43.18 250.19))
  3344. (stroke (width 0) (type default) (color 0 0 0 0))
  3345. (uuid 9b07d532-5f76-4469-8dbf-25ac27eef589)
  3346. )
  3347. (wire (pts (xy 377.19 168.91) (xy 379.73 168.91))
  3348. (stroke (width 0) (type default) (color 0 0 0 0))
  3349. (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
  3350. )
  3351. (wire (pts (xy 334.01 68.58) (xy 340.36 68.58))
  3352. (stroke (width 0) (type default) (color 0 0 0 0))
  3353. (uuid 9cacb6ad-6bbf-4ffe-b0a4-2df24045e046)
  3354. )
  3355. (wire (pts (xy 189.23 162.56) (xy 189.23 167.64))
  3356. (stroke (width 0) (type default) (color 0 0 0 0))
  3357. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  3358. )
  3359. (wire (pts (xy 175.26 92.71) (xy 172.72 92.71))
  3360. (stroke (width 0) (type default) (color 0 0 0 0))
  3361. (uuid 9de304ba-fba7-4896-b969-9d87a3522d74)
  3362. )
  3363. (wire (pts (xy 351.79 186.69) (xy 336.55 186.69))
  3364. (stroke (width 0) (type default) (color 0 0 0 0))
  3365. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  3366. )
  3367. (wire (pts (xy 312.42 33.02) (xy 317.5 33.02))
  3368. (stroke (width 0) (type default) (color 0 0 0 0))
  3369. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  3370. )
  3371. (wire (pts (xy 246.38 88.9) (xy 229.87 88.9))
  3372. (stroke (width 0) (type default) (color 0 0 0 0))
  3373. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  3374. )
  3375. (wire (pts (xy 24.13 26.67) (xy 24.13 29.21))
  3376. (stroke (width 0) (type default) (color 0 0 0 0))
  3377. (uuid 9e427954-2486-4c91-89b5-6af73a073442)
  3378. )
  3379. (wire (pts (xy 53.34 78.74) (xy 53.34 81.28))
  3380. (stroke (width 0) (type default) (color 0 0 0 0))
  3381. (uuid 9f782c92-a5e8-49db-bfda-752b35522ce4)
  3382. )
  3383. (wire (pts (xy 69.85 26.67) (xy 67.31 26.67))
  3384. (stroke (width 0) (type default) (color 0 0 0 0))
  3385. (uuid 9f95f1fc-aa31-4ce6-996a-4b385731d8eb)
  3386. )
  3387. (wire (pts (xy 130.81 128.27) (xy 132.08 128.27))
  3388. (stroke (width 0) (type default) (color 0 0 0 0))
  3389. (uuid a08c061a-7f5b-4909-b673-0d0a59a012a3)
  3390. )
  3391. (wire (pts (xy 351.79 194.31) (xy 336.55 194.31))
  3392. (stroke (width 0) (type default) (color 0 0 0 0))
  3393. (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714)
  3394. )
  3395. (polyline (pts (xy 110.49 152.4) (xy 278.13 152.4))
  3396. (stroke (width 0) (type default) (color 0 0 0 0))
  3397. (uuid a1701438-3c8b-4b49-8695-36ec7f9ae4d2)
  3398. )
  3399. (wire (pts (xy 189.23 177.8) (xy 189.23 181.61))
  3400. (stroke (width 0) (type default) (color 0 0 0 0))
  3401. (uuid a22bec73-a69c-4ab7-8d8d-f6a6b09f925f)
  3402. )
  3403. (wire (pts (xy 229.87 86.36) (xy 246.38 86.36))
  3404. (stroke (width 0) (type default) (color 0 0 0 0))
  3405. (uuid a48f5fff-52e4-4ae8-8faa-7084c7ae8a28)
  3406. )
  3407. (wire (pts (xy 196.85 124.46) (xy 181.61 124.46))
  3408. (stroke (width 0) (type default) (color 0 0 0 0))
  3409. (uuid a49e8613-3cd2-48ed-8977-6bb5023f7722)
  3410. )
  3411. (wire (pts (xy 105.41 57.15) (xy 119.38 57.15))
  3412. (stroke (width 0) (type default) (color 0 0 0 0))
  3413. (uuid a6706c54-6a82-42d1-a6c9-48341690e19d)
  3414. )
  3415. (polyline (pts (xy 302.26 99.06) (xy 419.1 99.06))
  3416. (stroke (width 0) (type default) (color 0 0 0 0))
  3417. (uuid a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05)
  3418. )
  3419. (wire (pts (xy 383.54 179.07) (xy 383.54 181.61))
  3420. (stroke (width 0) (type default) (color 0 0 0 0))
  3421. (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39)
  3422. )
  3423. (wire (pts (xy 77.47 77.47) (xy 81.28 77.47))
  3424. (stroke (width 0) (type default) (color 0 0 0 0))
  3425. (uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
  3426. )
  3427. (wire (pts (xy 50.8 242.57) (xy 54.61 242.57))
  3428. (stroke (width 0) (type default) (color 0 0 0 0))
  3429. (uuid aa0466c6-766f-4bb4-abf1-502a6a06f91d)
  3430. )
  3431. (wire (pts (xy 195.58 209.55) (xy 176.53 209.55))
  3432. (stroke (width 0) (type default) (color 0 0 0 0))
  3433. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  3434. )
  3435. (wire (pts (xy 208.28 190.5) (xy 205.74 190.5))
  3436. (stroke (width 0) (type default) (color 0 0 0 0))
  3437. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3438. )
  3439. (wire (pts (xy 321.31 172.72) (xy 321.31 175.26))
  3440. (stroke (width 0) (type default) (color 0 0 0 0))
  3441. (uuid acb0068c-c0e7-44cf-a209-296716acb6a2)
  3442. )
  3443. (wire (pts (xy 378.46 55.88) (xy 394.97 55.88))
  3444. (stroke (width 0) (type default) (color 0 0 0 0))
  3445. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  3446. )
  3447. (wire (pts (xy 121.92 198.12) (xy 133.35 198.12))
  3448. (stroke (width 0) (type default) (color 0 0 0 0))
  3449. (uuid acf5d924-0760-425a-996c-c1d965700be8)
  3450. )
  3451. (wire (pts (xy 181.61 162.56) (xy 189.23 162.56))
  3452. (stroke (width 0) (type default) (color 0 0 0 0))
  3453. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  3454. )
  3455. (wire (pts (xy 189.23 181.61) (xy 201.93 181.61))
  3456. (stroke (width 0) (type default) (color 0 0 0 0))
  3457. (uuid b44c0167-50fe-4c67-94fb-5ce2e6f52544)
  3458. )
  3459. (wire (pts (xy 185.42 85.09) (xy 189.23 85.09))
  3460. (stroke (width 0) (type default) (color 0 0 0 0))
  3461. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  3462. )
  3463. (wire (pts (xy 57.15 60.96) (xy 67.31 60.96))
  3464. (stroke (width 0) (type default) (color 0 0 0 0))
  3465. (uuid b4675fcd-90dd-499b-8feb-46b51a88378c)
  3466. )
  3467. (wire (pts (xy 213.36 234.95) (xy 228.6 234.95))
  3468. (stroke (width 0) (type default) (color 0 0 0 0))
  3469. (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
  3470. )
  3471. (wire (pts (xy 327.66 38.1) (xy 340.36 38.1))
  3472. (stroke (width 0) (type default) (color 0 0 0 0))
  3473. (uuid b5ffe018-0d06-4a1b-95ee-b5763a35798d)
  3474. )
  3475. (wire (pts (xy 71.12 143.51) (xy 83.82 143.51))
  3476. (stroke (width 0) (type default) (color 0 0 0 0))
  3477. (uuid b632afec-1444-4246-8afb-cc14a57567e7)
  3478. )
  3479. (wire (pts (xy 118.11 142.24) (xy 130.81 142.24))
  3480. (stroke (width 0) (type default) (color 0 0 0 0))
  3481. (uuid b6924901-677d-424a-a3f4-52c8dd1fa5f5)
  3482. )
  3483. (wire (pts (xy 191.77 187.96) (xy 191.77 182.88))
  3484. (stroke (width 0) (type default) (color 0 0 0 0))
  3485. (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)
  3486. )
  3487. (wire (pts (xy 378.46 45.72) (xy 394.97 45.72))
  3488. (stroke (width 0) (type default) (color 0 0 0 0))
  3489. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  3490. )
  3491. (wire (pts (xy 53.34 73.66) (xy 67.31 73.66))
  3492. (stroke (width 0) (type default) (color 0 0 0 0))
  3493. (uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
  3494. )
  3495. (wire (pts (xy 172.72 92.71) (xy 160.02 92.71))
  3496. (stroke (width 0) (type default) (color 0 0 0 0))
  3497. (uuid b7dfd91c-6180-48d0-832a-f6a5a032a686)
  3498. )
  3499. (wire (pts (xy 144.78 250.19) (xy 157.48 250.19))
  3500. (stroke (width 0) (type default) (color 0 0 0 0))
  3501. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  3502. )
  3503. (wire (pts (xy 231.14 187.96) (xy 256.54 187.96))
  3504. (stroke (width 0) (type default) (color 0 0 0 0))
  3505. (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6)
  3506. )
  3507. (wire (pts (xy 172.72 240.03) (xy 172.72 250.19))
  3508. (stroke (width 0) (type default) (color 0 0 0 0))
  3509. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  3510. )
  3511. (wire (pts (xy 33.02 29.21) (xy 24.13 29.21))
  3512. (stroke (width 0) (type default) (color 0 0 0 0))
  3513. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  3514. )
  3515. (wire (pts (xy 223.52 71.12) (xy 224.79 71.12))
  3516. (stroke (width 0) (type default) (color 0 0 0 0))
  3517. (uuid bb5d2eae-a96e-45dd-89aa-125fe22cc2fa)
  3518. )
  3519. (wire (pts (xy 228.6 250.19) (xy 241.3 250.19))
  3520. (stroke (width 0) (type default) (color 0 0 0 0))
  3521. (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)
  3522. )
  3523. (wire (pts (xy 45.72 134.62) (xy 45.72 129.54))
  3524. (stroke (width 0) (type default) (color 0 0 0 0))
  3525. (uuid be030c62-e776-405f-97d8-4a4c1aa2e428)
  3526. )
  3527. (wire (pts (xy 378.46 33.02) (xy 402.59 33.02))
  3528. (stroke (width 0) (type default) (color 0 0 0 0))
  3529. (uuid be5a7017-fe9d-43ea-9a6a-8fe8deb78420)
  3530. )
  3531. (wire (pts (xy 184.15 187.96) (xy 191.77 187.96))
  3532. (stroke (width 0) (type default) (color 0 0 0 0))
  3533. (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)
  3534. )
  3535. (wire (pts (xy 27.94 191.77) (xy 21.59 191.77))
  3536. (stroke (width 0) (type default) (color 0 0 0 0))
  3537. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  3538. )
  3539. (wire (pts (xy 196.85 127) (xy 181.61 127))
  3540. (stroke (width 0) (type default) (color 0 0 0 0))
  3541. (uuid bf4036b4-c410-489a-b46c-abee2c31db09)
  3542. )
  3543. (wire (pts (xy 394.97 38.1) (xy 378.46 38.1))
  3544. (stroke (width 0) (type default) (color 0 0 0 0))
  3545. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  3546. )
  3547. (wire (pts (xy 144.78 240.03) (xy 144.78 250.19))
  3548. (stroke (width 0) (type default) (color 0 0 0 0))
  3549. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  3550. )
  3551. (wire (pts (xy 203.2 193.04) (xy 203.2 196.85))
  3552. (stroke (width 0) (type default) (color 0 0 0 0))
  3553. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  3554. )
  3555. (wire (pts (xy 246.38 78.74) (xy 229.87 78.74))
  3556. (stroke (width 0) (type default) (color 0 0 0 0))
  3557. (uuid c20aea50-e9e4-4978-b938-d613d445aab7)
  3558. )
  3559. (wire (pts (xy 196.85 134.62) (xy 181.61 134.62))
  3560. (stroke (width 0) (type default) (color 0 0 0 0))
  3561. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  3562. )
  3563. (wire (pts (xy 132.08 69.85) (xy 148.59 69.85))
  3564. (stroke (width 0) (type default) (color 0 0 0 0))
  3565. (uuid c67ad10d-2f75-4ec6-a139-47058f7f06b2)
  3566. )
  3567. (wire (pts (xy 30.48 234.95) (xy 43.18 234.95))
  3568. (stroke (width 0) (type default) (color 0 0 0 0))
  3569. (uuid c7f7bd58-1ebd-40fd-a39d-a95530a751b6)
  3570. )
  3571. (wire (pts (xy 340.36 60.96) (xy 325.12 60.96))
  3572. (stroke (width 0) (type default) (color 0 0 0 0))
  3573. (uuid c811ed5f-f509-4605-b7d3-da6f79935a1e)
  3574. )
  3575. (wire (pts (xy 336.55 200.66) (xy 342.9 200.66))
  3576. (stroke (width 0) (type default) (color 0 0 0 0))
  3577. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  3578. )
  3579. (wire (pts (xy 88.9 256.54) (xy 88.9 250.19))
  3580. (stroke (width 0) (type default) (color 0 0 0 0))
  3581. (uuid c8b6b273-3d20-4a46-8069-f6d608563604)
  3582. )
  3583. (wire (pts (xy 228.6 240.03) (xy 228.6 250.19))
  3584. (stroke (width 0) (type default) (color 0 0 0 0))
  3585. (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
  3586. )
  3587. (wire (pts (xy 156.21 140.97) (xy 172.72 140.97))
  3588. (stroke (width 0) (type default) (color 0 0 0 0))
  3589. (uuid c8b93f12-bc5c-4ce5-b954-377d903895f1)
  3590. )
  3591. (wire (pts (xy 195.58 204.47) (xy 205.74 204.47))
  3592. (stroke (width 0) (type default) (color 0 0 0 0))
  3593. (uuid ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9)
  3594. )
  3595. (wire (pts (xy 36.83 191.77) (xy 41.91 191.77))
  3596. (stroke (width 0) (type default) (color 0 0 0 0))
  3597. (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
  3598. )
  3599. (wire (pts (xy 351.79 179.07) (xy 336.55 179.07))
  3600. (stroke (width 0) (type default) (color 0 0 0 0))
  3601. (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a)
  3602. )
  3603. (wire (pts (xy 54.61 234.95) (xy 54.61 242.57))
  3604. (stroke (width 0) (type default) (color 0 0 0 0))
  3605. (uuid cd48b13f-c989-4ac1-a7f0-053afcd77527)
  3606. )
  3607. (wire (pts (xy 224.79 76.2) (xy 246.38 76.2))
  3608. (stroke (width 0) (type default) (color 0 0 0 0))
  3609. (uuid cd50b8dc-829d-4a1d-8f2a-6471f378ba87)
  3610. )
  3611. (wire (pts (xy 332.74 172.72) (xy 323.85 172.72))
  3612. (stroke (width 0) (type default) (color 0 0 0 0))
  3613. (uuid cdfb661b-489b-4b76-99f4-62b92bb1ab18)
  3614. )
  3615. (wire (pts (xy 312.42 33.02) (xy 312.42 45.72))
  3616. (stroke (width 0) (type default) (color 0 0 0 0))
  3617. (uuid ce55d4e5-cb2b-4927-9979-4a7fc840f632)
  3618. )
  3619. (wire (pts (xy 88.9 250.19) (xy 101.6 250.19))
  3620. (stroke (width 0) (type default) (color 0 0 0 0))
  3621. (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
  3622. )
  3623. (wire (pts (xy 53.34 60.96) (xy 57.15 60.96))
  3624. (stroke (width 0) (type default) (color 0 0 0 0))
  3625. (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7)
  3626. )
  3627. (wire (pts (xy 340.36 66.04) (xy 325.12 66.04))
  3628. (stroke (width 0) (type default) (color 0 0 0 0))
  3629. (uuid d035bb7a-e806-42f2-ba95-a390d279aef1)
  3630. )
  3631. (wire (pts (xy 224.79 207.01) (xy 229.87 207.01))
  3632. (stroke (width 0) (type default) (color 0 0 0 0))
  3633. (uuid d07e3af5-8e07-4980-b333-4058c2990257)
  3634. )
  3635. (wire (pts (xy 167.64 181.61) (xy 171.45 181.61))
  3636. (stroke (width 0) (type default) (color 0 0 0 0))
  3637. (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
  3638. )
  3639. (wire (pts (xy 208.28 185.42) (xy 195.58 185.42))
  3640. (stroke (width 0) (type default) (color 0 0 0 0))
  3641. (uuid d1cd5391-31d2-459f-8adb-4ae3f304a833)
  3642. )
  3643. (wire (pts (xy 62.23 161.29) (xy 62.23 162.56))
  3644. (stroke (width 0) (type default) (color 0 0 0 0))
  3645. (uuid d396ce56-1974-47b7-a41b-ae2b20ef835c)
  3646. )
  3647. (wire (pts (xy 163.83 186.69) (xy 163.83 191.77))
  3648. (stroke (width 0) (type default) (color 0 0 0 0))
  3649. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  3650. )
  3651. (wire (pts (xy 201.93 132.08) (xy 207.01 132.08))
  3652. (stroke (width 0) (type default) (color 0 0 0 0))
  3653. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  3654. )
  3655. (wire (pts (xy 363.22 93.98) (xy 363.22 73.66))
  3656. (stroke (width 0) (type default) (color 0 0 0 0))
  3657. (uuid d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d)
  3658. )
  3659. (wire (pts (xy 57.15 58.42) (xy 57.15 60.96))
  3660. (stroke (width 0) (type default) (color 0 0 0 0))
  3661. (uuid d53baa32-ba88-4646-9db3-0e9b0f0da4f0)
  3662. )
  3663. (wire (pts (xy 170.18 127) (xy 172.72 127))
  3664. (stroke (width 0) (type default) (color 0 0 0 0))
  3665. (uuid d5a7688c-7438-4b6d-999f-4f2a3cb18fd6)
  3666. )
  3667. (wire (pts (xy 30.48 229.87) (xy 30.48 234.95))
  3668. (stroke (width 0) (type default) (color 0 0 0 0))
  3669. (uuid d6040293-95f0-436a-938c-ad69875a4be8)
  3670. )
  3671. (polyline (pts (xy 78.74 49.53) (xy 78.74 12.7))
  3672. (stroke (width 0) (type default) (color 0 0 0 0))
  3673. (uuid d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1)
  3674. )
  3675. (wire (pts (xy 133.35 135.89) (xy 133.35 144.78))
  3676. (stroke (width 0) (type default) (color 0 0 0 0))
  3677. (uuid d8f24303-7e52-49a9-9e82-8d60c3aaa009)
  3678. )
  3679. (wire (pts (xy 184.15 189.23) (xy 184.15 187.96))
  3680. (stroke (width 0) (type default) (color 0 0 0 0))
  3681. (uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
  3682. )
  3683. (wire (pts (xy 157.48 250.19) (xy 172.72 250.19))
  3684. (stroke (width 0) (type default) (color 0 0 0 0))
  3685. (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
  3686. )
  3687. (wire (pts (xy 204.47 162.56) (xy 204.47 175.26))
  3688. (stroke (width 0) (type default) (color 0 0 0 0))
  3689. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3690. )
  3691. (wire (pts (xy 53.34 73.66) (xy 53.34 76.2))
  3692. (stroke (width 0) (type default) (color 0 0 0 0))
  3693. (uuid da6f4122-0ecc-496f-b0fd-e4abef534976)
  3694. )
  3695. (wire (pts (xy 58.42 35.56) (xy 58.42 38.1))
  3696. (stroke (width 0) (type default) (color 0 0 0 0))
  3697. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  3698. )
  3699. (wire (pts (xy 365.76 78.74) (xy 365.76 73.66))
  3700. (stroke (width 0) (type default) (color 0 0 0 0))
  3701. (uuid dc628a9d-67e8-4a03-b99f-8cc7a42af6ef)
  3702. )
  3703. (wire (pts (xy 191.77 182.88) (xy 208.28 182.88))
  3704. (stroke (width 0) (type default) (color 0 0 0 0))
  3705. (uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)
  3706. )
  3707. (wire (pts (xy 172.72 162.56) (xy 181.61 162.56))
  3708. (stroke (width 0) (type default) (color 0 0 0 0))
  3709. (uuid dd2d59b3-ddef-491f-bb57-eb3d3820bdeb)
  3710. )
  3711. (wire (pts (xy 78.74 193.04) (xy 78.74 191.77))
  3712. (stroke (width 0) (type default) (color 0 0 0 0))
  3713. (uuid dd5f7736-b8aa-44f2-a044-e514d63d48f3)
  3714. )
  3715. (wire (pts (xy 201.93 137.16) (xy 207.01 137.16))
  3716. (stroke (width 0) (type default) (color 0 0 0 0))
  3717. (uuid dde4c43d-f33e-48ba-86f3-779fdfce00c2)
  3718. )
  3719. (wire (pts (xy 27.94 196.85) (xy 27.94 199.39))
  3720. (stroke (width 0) (type default) (color 0 0 0 0))
  3721. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  3722. )
  3723. (polyline (pts (xy 110.49 115.57) (xy 110.49 218.44))
  3724. (stroke (width 0) (type default) (color 0 0 0 0))
  3725. (uuid de438bc3-2eba-4b9f-95e9-35ce5db157f6)
  3726. )
  3727. (wire (pts (xy 317.5 27.94) (xy 312.42 27.94))
  3728. (stroke (width 0) (type default) (color 0 0 0 0))
  3729. (uuid de552ae9-cde6-4643-8cc7-9de2579dadae)
  3730. )
  3731. (wire (pts (xy 45.72 162.56) (xy 45.72 142.24))
  3732. (stroke (width 0) (type default) (color 0 0 0 0))
  3733. (uuid e07e1653-d05d-4bf2-bea3-6515a06de065)
  3734. )
  3735. (wire (pts (xy 347.98 217.17) (xy 347.98 212.09))
  3736. (stroke (width 0) (type default) (color 0 0 0 0))
  3737. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  3738. )
  3739. (wire (pts (xy 223.52 76.2) (xy 224.79 76.2))
  3740. (stroke (width 0) (type default) (color 0 0 0 0))
  3741. (uuid e0b0947e-ec91-4d8a-8663-5a112b0a8541)
  3742. )
  3743. (wire (pts (xy 229.87 81.28) (xy 246.38 81.28))
  3744. (stroke (width 0) (type default) (color 0 0 0 0))
  3745. (uuid e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
  3746. )
  3747. (wire (pts (xy 129.54 234.95) (xy 144.78 234.95))
  3748. (stroke (width 0) (type default) (color 0 0 0 0))
  3749. (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
  3750. )
  3751. (wire (pts (xy 156.21 139.7) (xy 156.21 140.97))
  3752. (stroke (width 0) (type default) (color 0 0 0 0))
  3753. (uuid e1fe6230-75c5-4750-aaea-24a9b80589d8)
  3754. )
  3755. (wire (pts (xy 189.23 162.56) (xy 204.47 162.56))
  3756. (stroke (width 0) (type default) (color 0 0 0 0))
  3757. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  3758. )
  3759. (wire (pts (xy 165.1 242.57) (xy 177.8 242.57))
  3760. (stroke (width 0) (type default) (color 0 0 0 0))
  3761. (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
  3762. )
  3763. (wire (pts (xy 67.31 58.42) (xy 67.31 60.96))
  3764. (stroke (width 0) (type default) (color 0 0 0 0))
  3765. (uuid e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e)
  3766. )
  3767. (wire (pts (xy 184.15 181.61) (xy 189.23 181.61))
  3768. (stroke (width 0) (type default) (color 0 0 0 0))
  3769. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  3770. )
  3771. (wire (pts (xy 109.22 242.57) (xy 121.92 242.57))
  3772. (stroke (width 0) (type default) (color 0 0 0 0))
  3773. (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558)
  3774. )
  3775. (wire (pts (xy 284.48 234.95) (xy 297.18 234.95))
  3776. (stroke (width 0) (type default) (color 0 0 0 0))
  3777. (uuid e4e20505-1208-4100-a4aa-676f50844c06)
  3778. )
  3779. (wire (pts (xy 101.6 250.19) (xy 116.84 250.19))
  3780. (stroke (width 0) (type default) (color 0 0 0 0))
  3781. (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
  3782. )
  3783. (wire (pts (xy 379.73 173.99) (xy 393.7 173.99))
  3784. (stroke (width 0) (type default) (color 0 0 0 0))
  3785. (uuid e6bf257d-5112-423c-b70a-adf8446f29da)
  3786. )
  3787. (wire (pts (xy 62.23 162.56) (xy 45.72 162.56))
  3788. (stroke (width 0) (type default) (color 0 0 0 0))
  3789. (uuid e7893166-2c2c-41b4-bd84-76ebc2e06551)
  3790. )
  3791. (wire (pts (xy 241.3 234.95) (xy 256.54 234.95))
  3792. (stroke (width 0) (type default) (color 0 0 0 0))
  3793. (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
  3794. )
  3795. (wire (pts (xy 36.83 191.77) (xy 27.94 191.77))
  3796. (stroke (width 0) (type default) (color 0 0 0 0))
  3797. (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
  3798. )
  3799. (wire (pts (xy 224.79 71.12) (xy 245.11 71.12))
  3800. (stroke (width 0) (type default) (color 0 0 0 0))
  3801. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  3802. )
  3803. (wire (pts (xy 50.8 40.64) (xy 48.26 40.64))
  3804. (stroke (width 0) (type default) (color 0 0 0 0))
  3805. (uuid ea7c53f9-3aa8-4198-9879-de95a5257915)
  3806. )
  3807. (wire (pts (xy 132.08 85.09) (xy 148.59 85.09))
  3808. (stroke (width 0) (type default) (color 0 0 0 0))
  3809. (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
  3810. )
  3811. (wire (pts (xy 201.93 181.61) (xy 201.93 180.34))
  3812. (stroke (width 0) (type default) (color 0 0 0 0))
  3813. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  3814. )
  3815. (wire (pts (xy 201.93 124.46) (xy 207.01 124.46))
  3816. (stroke (width 0) (type default) (color 0 0 0 0))
  3817. (uuid ec2e3d8a-128c-4be8-b432-9738bca934ae)
  3818. )
  3819. (wire (pts (xy 241.3 134.62) (xy 241.3 133.35))
  3820. (stroke (width 0) (type default) (color 0 0 0 0))
  3821. (uuid ed247857-b2a3-4b23-90ad-758c01ae5e8e)
  3822. )
  3823. (wire (pts (xy 256.54 234.95) (xy 269.24 234.95))
  3824. (stroke (width 0) (type default) (color 0 0 0 0))
  3825. (uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
  3826. )
  3827. (wire (pts (xy 379.73 171.45) (xy 393.7 171.45))
  3828. (stroke (width 0) (type default) (color 0 0 0 0))
  3829. (uuid f1c2e9b0-6f9f-485b-b482-d408df476d0f)
  3830. )
  3831. (wire (pts (xy 214.63 209.55) (xy 214.63 207.01))
  3832. (stroke (width 0) (type default) (color 0 0 0 0))
  3833. (uuid f1f5241b-4870-42ad-abfc-639b0a3a761c)
  3834. )
  3835. (wire (pts (xy 195.58 69.85) (xy 201.93 69.85))
  3836. (stroke (width 0) (type default) (color 0 0 0 0))
  3837. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  3838. )
  3839. (wire (pts (xy 101.6 57.15) (xy 105.41 57.15))
  3840. (stroke (width 0) (type default) (color 0 0 0 0))
  3841. (uuid f28e56e7-283b-4b9a-ae27-95e89770fbf8)
  3842. )
  3843. (wire (pts (xy 83.82 77.47) (xy 83.82 71.12))
  3844. (stroke (width 0) (type default) (color 0 0 0 0))
  3845. (uuid f3044f68-903d-4063-b253-30d8e3a83eae)
  3846. )
  3847. (wire (pts (xy 184.15 196.85) (xy 184.15 194.31))
  3848. (stroke (width 0) (type default) (color 0 0 0 0))
  3849. (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
  3850. )
  3851. (wire (pts (xy 229.87 91.44) (xy 246.38 91.44))
  3852. (stroke (width 0) (type default) (color 0 0 0 0))
  3853. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  3854. )
  3855. (wire (pts (xy 351.79 181.61) (xy 336.55 181.61))
  3856. (stroke (width 0) (type default) (color 0 0 0 0))
  3857. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  3858. )
  3859. (wire (pts (xy 241.3 140.97) (xy 241.3 139.7))
  3860. (stroke (width 0) (type default) (color 0 0 0 0))
  3861. (uuid f5a3f95b-1a53-41b4-b208-bf168c9d9c6d)
  3862. )
  3863. (wire (pts (xy 342.9 172.72) (xy 351.79 172.72))
  3864. (stroke (width 0) (type default) (color 0 0 0 0))
  3865. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  3866. )
  3867. (wire (pts (xy 33.02 38.1) (xy 48.26 38.1))
  3868. (stroke (width 0) (type default) (color 0 0 0 0))
  3869. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  3870. )
  3871. (wire (pts (xy 21.59 191.77) (xy 21.59 187.96))
  3872. (stroke (width 0) (type default) (color 0 0 0 0))
  3873. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  3874. )
  3875. (polyline (pts (xy 278.13 152.4) (xy 278.13 218.44))
  3876. (stroke (width 0) (type default) (color 0 0 0 0))
  3877. (uuid f8a90052-1a8b-4ce5-a1fd-87db944dceac)
  3878. )
  3879. (wire (pts (xy 73.66 242.57) (xy 93.98 242.57))
  3880. (stroke (width 0) (type default) (color 0 0 0 0))
  3881. (uuid f8f3a9fc-1e34-4573-a767-508104e8d242)
  3882. )
  3883. (wire (pts (xy 312.42 27.94) (xy 312.42 25.4))
  3884. (stroke (width 0) (type default) (color 0 0 0 0))
  3885. (uuid f934a442-23d6-4e5b-908f-bb9199ad6f8b)
  3886. )
  3887. (wire (pts (xy 24.13 25.4) (xy 24.13 26.67))
  3888. (stroke (width 0) (type default) (color 0 0 0 0))
  3889. (uuid fab1abc4-c49d-4b88-8c7f-939d7feb7b6c)
  3890. )
  3891. (wire (pts (xy 245.11 71.12) (xy 245.11 73.66))
  3892. (stroke (width 0) (type default) (color 0 0 0 0))
  3893. (uuid facb0614-068b-4c9c-a466-d374df96a94c)
  3894. )
  3895. (wire (pts (xy 196.85 129.54) (xy 181.61 129.54))
  3896. (stroke (width 0) (type default) (color 0 0 0 0))
  3897. (uuid fb1a635e-b207-4b36-b0fb-e877e480e86a)
  3898. )
  3899. (wire (pts (xy 201.93 180.34) (xy 208.28 180.34))
  3900. (stroke (width 0) (type default) (color 0 0 0 0))
  3901. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  3902. )
  3903. (wire (pts (xy 207.01 132.08) (xy 207.01 134.62))
  3904. (stroke (width 0) (type default) (color 0 0 0 0))
  3905. (uuid fbb5e77c-4b41-4796-ad13-1b9e2bbc3c81)
  3906. )
  3907. (wire (pts (xy 193.04 242.57) (xy 205.74 242.57))
  3908. (stroke (width 0) (type default) (color 0 0 0 0))
  3909. (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
  3910. )
  3911. (wire (pts (xy 156.21 133.35) (xy 156.21 134.62))
  3912. (stroke (width 0) (type default) (color 0 0 0 0))
  3913. (uuid fc13962a-a464-4fa2-b9a6-4c26667104ee)
  3914. )
  3915. (wire (pts (xy 130.81 130.81) (xy 130.81 128.27))
  3916. (stroke (width 0) (type default) (color 0 0 0 0))
  3917. (uuid fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942)
  3918. )
  3919. (wire (pts (xy 223.52 76.2) (xy 223.52 77.47))
  3920. (stroke (width 0) (type default) (color 0 0 0 0))
  3921. (uuid fcfb3f77-487d-44de-bd4e-948fbeca3220)
  3922. )
  3923. (wire (pts (xy 379.73 172.72) (xy 379.73 173.99))
  3924. (stroke (width 0) (type default) (color 0 0 0 0))
  3925. (uuid fd34aa56-ded2-4e97-965a-a39457716f0c)
  3926. )
  3927. (wire (pts (xy 78.74 191.77) (xy 101.6 191.77))
  3928. (stroke (width 0) (type default) (color 0 0 0 0))
  3929. (uuid fe1ad3bd-92cc-4e1c-8cc9-a77278095945)
  3930. )
  3931. (wire (pts (xy 256.54 240.03) (xy 256.54 250.19))
  3932. (stroke (width 0) (type default) (color 0 0 0 0))
  3933. (uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
  3934. )
  3935. (text "POWER" (at 12.7 15.24 0)
  3936. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3937. (uuid 08926936-9ea4-4894-afca-caca47f3c238)
  3938. )
  3939. (text "Could put a sense resistor and\nsense amplifier here"
  3940. (at 384.81 185.42 0)
  3941. (effects (font (size 1.27 1.27)) (justify left bottom))
  3942. (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21)
  3943. )
  3944. (text "MCU - ESP32 (T-MICRO32 PLUS)" (at 303.53 15.24 0)
  3945. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3946. (uuid 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
  3947. )
  3948. (text "SENSOR - MAGNETIC ENCODER" (at 12.7 180.34 0)
  3949. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3950. (uuid 21ca1c08-b8a3-4bdc-9356-70a4d86ee444)
  3951. )
  3952. (text "MOTOR DRIVER" (at 314.96 152.4 0)
  3953. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3954. (uuid 2c10387c-3cac-4a7c-bbfb-95d69f41a890)
  3955. )
  3956. (text "MECHANICAL/BOM-ONLY" (at 80.01 15.24 0)
  3957. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3958. (uuid 312474c5-a081-4cd1-b2e6-730f0718514a)
  3959. )
  3960. (text "IO2 must be 0 to enter UART\ndownload mode" (at 392.43 72.39 0)
  3961. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  3962. (uuid 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0)
  3963. )
  3964. (text "GPIO12=MTDI. Should be 0 on boot\nfor 3.3v built-in flash/psram on\nESP32-PICO-v3-02"
  3965. (at 304.8 72.39 0)
  3966. (effects (font (size 0.9906 0.9906)) (justify left bottom))
  3967. (uuid 45484f82-420e-44d0-a58e-382bb939dac5)
  3968. )
  3969. (text "Pull-ups on MT6701 allow for I2C\n(though we'll primarily use SSI)"
  3970. (at 111.76 149.86 0)
  3971. (effects (font (size 1.27 1.27)) (justify left bottom))
  3972. (uuid 4e7a230a-c1a4-4455-81ee-277835acf4a2)
  3973. )
  3974. (text "Rate=1 --> 80 samples per second" (at 234.95 177.8 0)
  3975. (effects (font (size 1.27 1.27)) (justify left bottom))
  3976. (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
  3977. )
  3978. (text "SENSOR - AMBIENT LIGHT" (at 12.7 119.38 0)
  3979. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3980. (uuid 784e3230-2053-4bc9-a786-5ac2bd0df0f5)
  3981. )
  3982. (text "Recommended 1uF-10uF on EN for auto-reset\ncircuitry, per Espressif design notes."
  3983. (at 215.9 151.13 0)
  3984. (effects (font (size 1.27 1.27)) (justify left bottom))
  3985. (uuid 905b154b-e92b-469d-b2e2-340d67daddb7)
  3986. )
  3987. (text "USB" (at 12.7 53.34 0)
  3988. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3989. (uuid a04f8542-6c38-4d5c-bdbb-c8e0311a0936)
  3990. )
  3991. (text "SENSOR - STRAIN" (at 111.76 156.21 0)
  3992. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3993. (uuid a7c83b25-afbd-4974-8870-387db8f81a5c)
  3994. )
  3995. (text "LEDS" (at 12.7 222.25 0)
  3996. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  3997. (uuid b1731e91-7698-42fa-ad60-5c60fdd0e1fc)
  3998. )
  3999. (text "PULLUPS, PULLDOWNS" (at 111.76 119.38 0)
  4000. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4001. (uuid c7db4903-f95a-49f5-bcce-c52f0ca8defc)
  4002. )
  4003. (text "LCD CONNECTOR" (at 209.55 53.34 0)
  4004. (effects (font (size 2.0066 2.0066) (thickness 0.4013) bold italic) (justify left bottom))
  4005. (uuid ed612f6d-67c1-4198-976d-84139f8d99bc)
  4006. )
  4007. (text "Reset/Boot via USB serial" (at 167.64 58.42 0)
  4008. (effects (font (size 1.27 1.27)) (justify left bottom))
  4009. (uuid f6a3288e-9575-42bb-af05-a920d59aded8)
  4010. )
  4011. (label "STRAIN_E+" (at 121.92 198.12 0)
  4012. (effects (font (size 1.27 1.27)) (justify left bottom))
  4013. (uuid 01024d27-e392-4482-9e67-565b0c294fe8)
  4014. )
  4015. (label "MAG_CSN" (at 101.6 191.77 180)
  4016. (effects (font (size 1.27 1.27)) (justify right bottom))
  4017. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4018. )
  4019. (label "ESP32_BOOT" (at 398.78 66.04 180)
  4020. (effects (font (size 1.27 1.27)) (justify right bottom))
  4021. (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7)
  4022. )
  4023. (label "LCD_RST" (at 229.87 78.74 0)
  4024. (effects (font (size 1.27 1.27)) (justify left bottom))
  4025. (uuid 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600)
  4026. )
  4027. (label "TMC_VL" (at 181.61 137.16 0)
  4028. (effects (font (size 1.27 1.27)) (justify left bottom))
  4029. (uuid 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca)
  4030. )
  4031. (label "LCD_BACKLIGHT" (at 229.87 86.36 0)
  4032. (effects (font (size 1.27 1.27)) (justify left bottom))
  4033. (uuid 1cb64bfe-d819-47e3-be11-515b04f2c451)
  4034. )
  4035. (label "STRAIN_S+" (at 121.92 189.23 0)
  4036. (effects (font (size 1.27 1.27)) (justify left bottom))
  4037. (uuid 2026567f-be64-41dd-8011-b0897ba0ff2e)
  4038. )
  4039. (label "LCD_RST" (at 394.97 63.5 180)
  4040. (effects (font (size 1.27 1.27)) (justify right bottom))
  4041. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4042. )
  4043. (label "TMC_VH" (at 325.12 60.96 0)
  4044. (effects (font (size 1.27 1.27)) (justify left bottom))
  4045. (uuid 2681e64d-bedc-4e1f-87d2-754aaa485bbd)
  4046. )
  4047. (label "RTS" (at 148.59 87.63 180)
  4048. (effects (font (size 1.27 1.27)) (justify right bottom))
  4049. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  4050. )
  4051. (label "LED_DATA_5V" (at 73.66 242.57 0)
  4052. (effects (font (size 1.27 1.27)) (justify left bottom))
  4053. (uuid 28e37b45-f843-47c2-85c9-ca19f5430ece)
  4054. )
  4055. (label "USB_SERIAL_TXO" (at 148.59 67.31 180)
  4056. (effects (font (size 1.27 1.27)) (justify right bottom))
  4057. (uuid 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
  4058. )
  4059. (label "SCL" (at 83.82 151.13 180)
  4060. (effects (font (size 1.27 1.27)) (justify right bottom))
  4061. (uuid 2ec9be40-1d5a-4e2d-8a4d-4be2d3c079d5)
  4062. )
  4063. (label "USB_SERIAL_TXO" (at 398.78 43.18 180)
  4064. (effects (font (size 1.27 1.27)) (justify right bottom))
  4065. (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b)
  4066. )
  4067. (label "TMC_UL" (at 336.55 179.07 0)
  4068. (effects (font (size 1.27 1.27)) (justify left bottom))
  4069. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  4070. )
  4071. (label "STRAIN_E+" (at 121.92 186.69 0)
  4072. (effects (font (size 1.27 1.27)) (justify left bottom))
  4073. (uuid 34a11a07-8b7f-45d2-96e3-89fd43e62756)
  4074. )
  4075. (label "STRAIN_DO" (at 355.6 96.52 90)
  4076. (effects (font (size 1.27 1.27)) (justify left bottom))
  4077. (uuid 406d491e-5b01-46dc-a768-fd0992cdb346)
  4078. )
  4079. (label "STRAIN_E-" (at 147.32 191.77 0)
  4080. (effects (font (size 1.27 1.27)) (justify left bottom))
  4081. (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17)
  4082. )
  4083. (label "MAG_CSN" (at 323.85 63.5 0)
  4084. (effects (font (size 1.27 1.27)) (justify left bottom))
  4085. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  4086. )
  4087. (label "LCD_DATA" (at 394.97 55.88 180)
  4088. (effects (font (size 1.27 1.27)) (justify right bottom))
  4089. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  4090. )
  4091. (label "TMC_DIAG" (at 336.55 194.31 0)
  4092. (effects (font (size 1.27 1.27)) (justify left bottom))
  4093. (uuid 430d6d73-9de6-41ca-b788-178d709f4aae)
  4094. )
  4095. (label "ESP32_EN" (at 219.71 133.35 0)
  4096. (effects (font (size 1.27 1.27)) (justify left bottom))
  4097. (uuid 45836d49-cd5f-417d-b0f6-c8b43d196a36)
  4098. )
  4099. (label "TMC_WH" (at 325.12 66.04 0)
  4100. (effects (font (size 1.27 1.27)) (justify left bottom))
  4101. (uuid 4fb2577d-2e1c-480c-9060-124510b35053)
  4102. )
  4103. (label "USB_CC2" (at 67.31 68.58 180)
  4104. (effects (font (size 1.27 1.27)) (justify right bottom))
  4105. (uuid 53e34696-241f-47e5-a477-f469335c8a61)
  4106. )
  4107. (label "RTS" (at 201.93 85.09 180)
  4108. (effects (font (size 1.27 1.27)) (justify right bottom))
  4109. (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631)
  4110. )
  4111. (label "USB_D-" (at 67.31 73.66 180)
  4112. (effects (font (size 1.27 1.27)) (justify right bottom))
  4113. (uuid 5a222fb6-5159-4931-9015-19df65643140)
  4114. )
  4115. (label "TMC_UL" (at 325.12 55.88 0)
  4116. (effects (font (size 1.27 1.27)) (justify left bottom))
  4117. (uuid 5a390647-51ba-4684-b747-9001f749ff71)
  4118. )
  4119. (label "TMC_VH" (at 181.61 127 0)
  4120. (effects (font (size 1.27 1.27)) (justify left bottom))
  4121. (uuid 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9)
  4122. )
  4123. (label "USB_D+" (at 99.06 74.93 0)
  4124. (effects (font (size 1.27 1.27)) (justify left bottom))
  4125. (uuid 5f312b85-6822-40a3-b417-2df49696ca2d)
  4126. )
  4127. (label "LCD_SCK" (at 229.87 81.28 0)
  4128. (effects (font (size 1.27 1.27)) (justify left bottom))
  4129. (uuid 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb)
  4130. )
  4131. (label "TMC_UL" (at 181.61 132.08 0)
  4132. (effects (font (size 1.27 1.27)) (justify left bottom))
  4133. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  4134. )
  4135. (label "LED_DATA_5V" (at 71.12 242.57 180)
  4136. (effects (font (size 1.27 1.27)) (justify right bottom))
  4137. (uuid 692d87e9-6b70-46cc-9c78-b75193a484cc)
  4138. )
  4139. (label "TMC_VL" (at 325.12 50.8 0)
  4140. (effects (font (size 1.27 1.27)) (justify left bottom))
  4141. (uuid 6b6d35dc-fa1d-46c5-87c0-b0652011059d)
  4142. )
  4143. (label "LCD_SCK" (at 394.97 58.42 180)
  4144. (effects (font (size 1.27 1.27)) (justify right bottom))
  4145. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  4146. )
  4147. (label "TMC_UH" (at 336.55 176.53 0)
  4148. (effects (font (size 1.27 1.27)) (justify left bottom))
  4149. (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
  4150. )
  4151. (label "TMC_VL" (at 336.55 184.15 0)
  4152. (effects (font (size 1.27 1.27)) (justify left bottom))
  4153. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  4154. )
  4155. (label "MAG_DO" (at 353.06 90.17 90)
  4156. (effects (font (size 1.27 1.27)) (justify left bottom))
  4157. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  4158. )
  4159. (label "ESP32_BOOT" (at 160.02 92.71 0)
  4160. (effects (font (size 1.27 1.27)) (justify left bottom))
  4161. (uuid 74855e0d-40e4-4940-a544-edae9207b2ea)
  4162. )
  4163. (label "STRAIN_S+" (at 147.32 209.55 0)
  4164. (effects (font (size 1.27 1.27)) (justify left bottom))
  4165. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  4166. )
  4167. (label "MAG_CLK" (at 350.52 90.17 90)
  4168. (effects (font (size 1.27 1.27)) (justify left bottom))
  4169. (uuid 7582a530-a952-46c1-b7eb-75006524ba29)
  4170. )
  4171. (label "SDA" (at 83.82 143.51 180)
  4172. (effects (font (size 1.27 1.27)) (justify right bottom))
  4173. (uuid 7b75907b-b2ae-4362-89fa-d520339aaa5c)
  4174. )
  4175. (label "USB_D+" (at 67.31 78.74 180)
  4176. (effects (font (size 1.27 1.27)) (justify right bottom))
  4177. (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
  4178. )
  4179. (label "STRAIN_E-" (at 121.92 203.2 0)
  4180. (effects (font (size 1.27 1.27)) (justify left bottom))
  4181. (uuid 88a17e56-466a-45e7-9047-7346a507f505)
  4182. )
  4183. (label "SCL" (at 151.13 140.97 0)
  4184. (effects (font (size 1.27 1.27)) (justify left bottom))
  4185. (uuid 89bd1fdd-6a91-474e-8495-7a2ba7eb6260)
  4186. )
  4187. (label "TMC_UH" (at 325.12 58.42 0)
  4188. (effects (font (size 1.27 1.27)) (justify left bottom))
  4189. (uuid 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0)
  4190. )
  4191. (label "STRAIN_S-" (at 147.32 204.47 0)
  4192. (effects (font (size 1.27 1.27)) (justify left bottom))
  4193. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4194. )
  4195. (label "SDA" (at 151.13 134.62 0)
  4196. (effects (font (size 1.27 1.27)) (justify left bottom))
  4197. (uuid 8b022692-69b7-4bd6-bf38-57edecf356fa)
  4198. )
  4199. (label "MAG_DO" (at 101.6 196.85 180)
  4200. (effects (font (size 1.27 1.27)) (justify right bottom))
  4201. (uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
  4202. )
  4203. (label "SCL" (at 387.35 78.74 180)
  4204. (effects (font (size 1.27 1.27)) (justify right bottom))
  4205. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4206. )
  4207. (label "USB_CC1" (at 67.31 66.04 180)
  4208. (effects (font (size 1.27 1.27)) (justify right bottom))
  4209. (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
  4210. )
  4211. (label "ESP32_EN" (at 160.02 62.23 0)
  4212. (effects (font (size 1.27 1.27)) (justify left bottom))
  4213. (uuid 8e697b96-cf4c-43ef-b321-8c2422b088bf)
  4214. )
  4215. (label "USB_SERIAL_RXI" (at 148.59 69.85 180)
  4216. (effects (font (size 1.27 1.27)) (justify right bottom))
  4217. (uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
  4218. )
  4219. (label "TMC_WH" (at 336.55 186.69 0)
  4220. (effects (font (size 1.27 1.27)) (justify left bottom))
  4221. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  4222. )
  4223. (label "MAG_DO" (at 118.11 142.24 0)
  4224. (effects (font (size 1.27 1.27)) (justify left bottom))
  4225. (uuid 92574e8a-729f-48de-afcb-97b4f5e826f8)
  4226. )
  4227. (label "LCD_CS" (at 394.97 45.72 180)
  4228. (effects (font (size 1.27 1.27)) (justify right bottom))
  4229. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4230. )
  4231. (label "LCD_CMD" (at 394.97 38.1 180)
  4232. (effects (font (size 1.27 1.27)) (justify right bottom))
  4233. (uuid 96781640-c07e-4eea-a372-067ded96b703)
  4234. )
  4235. (label "TMC_WL" (at 181.61 134.62 0)
  4236. (effects (font (size 1.27 1.27)) (justify left bottom))
  4237. (uuid 97e5f992-979e-4291-bd9a-a77c3fd4b1b5)
  4238. )
  4239. (label "LCD_CS" (at 229.87 88.9 0)
  4240. (effects (font (size 1.27 1.27)) (justify left bottom))
  4241. (uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540)
  4242. )
  4243. (label "STRAIN_SCK" (at 256.54 187.96 180)
  4244. (effects (font (size 1.27 1.27)) (justify right bottom))
  4245. (uuid 9f969b13-1795-4747-8326-93bdc304ed56)
  4246. )
  4247. (label "TMC_UH" (at 181.61 124.46 0)
  4248. (effects (font (size 1.27 1.27)) (justify left bottom))
  4249. (uuid a323243c-4cab-4689-aa04-1e663cf86177)
  4250. )
  4251. (label "SDA" (at 379.73 73.66 180)
  4252. (effects (font (size 1.27 1.27)) (justify right bottom))
  4253. (uuid a5e6f7cb-0a81-4357-a11f-231d23300342)
  4254. )
  4255. (label "TMC_WL" (at 336.55 189.23 0)
  4256. (effects (font (size 1.27 1.27)) (justify left bottom))
  4257. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  4258. )
  4259. (label "LCD_DATA" (at 229.87 83.82 0)
  4260. (effects (font (size 1.27 1.27)) (justify left bottom))
  4261. (uuid ae158d42-76cc-4911-a621-4cc28931c98b)
  4262. )
  4263. (label "STRAIN_SCK" (at 403.86 68.58 180)
  4264. (effects (font (size 1.27 1.27)) (justify right bottom))
  4265. (uuid c6462399-f2e4-4f1a-b34a-b49a04c8bdb9)
  4266. )
  4267. (label "TMC_WH" (at 181.61 129.54 0)
  4268. (effects (font (size 1.27 1.27)) (justify left bottom))
  4269. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4270. )
  4271. (label "TMC_VH" (at 336.55 181.61 0)
  4272. (effects (font (size 1.27 1.27)) (justify left bottom))
  4273. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  4274. )
  4275. (label "LED_DATA_3V3" (at 363.22 93.98 90)
  4276. (effects (font (size 1.27 1.27)) (justify left bottom))
  4277. (uuid d115a0df-1034-4583-83af-ff1cb8acfa17)
  4278. )
  4279. (label "LCD_CMD" (at 229.87 91.44 0)
  4280. (effects (font (size 1.27 1.27)) (justify left bottom))
  4281. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4282. )
  4283. (label "STRAIN_DO" (at 256.54 185.42 180)
  4284. (effects (font (size 1.27 1.27)) (justify right bottom))
  4285. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4286. )
  4287. (label "DTR" (at 201.93 69.85 180)
  4288. (effects (font (size 1.27 1.27)) (justify right bottom))
  4289. (uuid d68dca9b-48b3-498b-9b5f-3b3838250f82)
  4290. )
  4291. (label "DTR" (at 148.59 85.09 180)
  4292. (effects (font (size 1.27 1.27)) (justify right bottom))
  4293. (uuid d72c89a6-7578-4468-964e-2a845431195f)
  4294. )
  4295. (label "STRAIN_E+" (at 147.32 181.61 0)
  4296. (effects (font (size 1.27 1.27)) (justify left bottom))
  4297. (uuid d8200a86-aa75-47a3-ad2a-7f4c9c999a6f)
  4298. )
  4299. (label "TMC_DIAG" (at 325.12 40.64 0)
  4300. (effects (font (size 1.27 1.27)) (justify left bottom))
  4301. (uuid e000728f-e3c5-4fc4-86af-db9ceb3a6542)
  4302. )
  4303. (label "MAG_CLK" (at 101.6 194.31 180)
  4304. (effects (font (size 1.27 1.27)) (justify right bottom))
  4305. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  4306. )
  4307. (label "LED_DATA_3V3" (at 15.24 242.57 0)
  4308. (effects (font (size 1.27 1.27)) (justify left bottom))
  4309. (uuid ea28e946-b74f-4ba8-ac7b-b1884c5e7296)
  4310. )
  4311. (label "USB_D-" (at 99.06 77.47 0)
  4312. (effects (font (size 1.27 1.27)) (justify left bottom))
  4313. (uuid ee29d712-3378-4507-a00b-003526b29bb1)
  4314. )
  4315. (label "ESP32_EN" (at 327.66 38.1 0)
  4316. (effects (font (size 1.27 1.27)) (justify left bottom))
  4317. (uuid ef94502b-f22d-4da7-a17f-4100090b03a1)
  4318. )
  4319. (label "TMC_WL" (at 325.12 53.34 0)
  4320. (effects (font (size 1.27 1.27)) (justify left bottom))
  4321. (uuid f08895dc-4dcb-4aef-a39b-5a08864cdaaf)
  4322. )
  4323. (label "LCD_BACKLIGHT" (at 394.97 50.8 180)
  4324. (effects (font (size 1.27 1.27)) (justify right bottom))
  4325. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4326. )
  4327. (label "USB_SERIAL_RXI" (at 398.78 40.64 180)
  4328. (effects (font (size 1.27 1.27)) (justify right bottom))
  4329. (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be)
  4330. )
  4331. (label "STRAIN_E-" (at 121.92 191.77 0)
  4332. (effects (font (size 1.27 1.27)) (justify left bottom))
  4333. (uuid fb9a832c-737d-49fb-bbb4-29a0ba3e8178)
  4334. )
  4335. (label "MAG_CLK" (at 118.11 144.78 0)
  4336. (effects (font (size 1.27 1.27)) (justify left bottom))
  4337. (uuid fe4068b9-89da-4c59-ba51-b5949772f5d8)
  4338. )
  4339. (label "STRAIN_S-" (at 121.92 200.66 0)
  4340. (effects (font (size 1.27 1.27)) (justify left bottom))
  4341. (uuid fead07ab-5a70-40db-ada8-c72dcc827bfc)
  4342. )
  4343. (symbol (lib_id "MagnTek:MT6701-CT") (at 58.42 195.58 0) (unit 1)
  4344. (in_bom yes) (on_board yes)
  4345. (uuid 00000000-0000-0000-0000-000061f4f0c2)
  4346. (property "Reference" "U1" (id 0) (at 59.69 186.055 0))
  4347. (property "Value" "MT6701-CT" (id 1) (at 59.69 188.3664 0))
  4348. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 58.42 195.58 0)
  4349. (effects (font (size 1.27 1.27)) hide)
  4350. )
  4351. (property "Datasheet" "" (id 3) (at 58.42 195.58 0)
  4352. (effects (font (size 1.27 1.27)) hide)
  4353. )
  4354. (property "LCSC" "C2856764" (id 4) (at 58.42 195.58 0)
  4355. (effects (font (size 1.27 1.27)) hide)
  4356. )
  4357. (property "Digikey" "N/A" (id 5) (at 58.42 195.58 0)
  4358. (effects (font (size 1.27 1.27)) hide)
  4359. )
  4360. (property "Mouser" "N/A" (id 6) (at 58.42 195.58 0)
  4361. (effects (font (size 1.27 1.27)) hide)
  4362. )
  4363. (pin "1" (uuid 41445a0a-aba9-4520-8a8a-661b0822bea1))
  4364. (pin "2" (uuid b7a32267-072b-4e70-bfe9-b0a3dfef4c9c))
  4365. (pin "3" (uuid 104c52b0-fa5b-4965-bafe-99b694fc4373))
  4366. (pin "4" (uuid 8e155617-d4f4-46e4-909c-3f000857b3b2))
  4367. (pin "5" (uuid 6c0abecf-f361-4699-8ddd-02d1b8372136))
  4368. (pin "6" (uuid 013fd080-24b1-4ff0-a3fa-a8d9093bae2d))
  4369. (pin "7" (uuid 5f4ddf40-42af-4f8e-9942-235d798238c4))
  4370. (pin "8" (uuid 19771d4c-1e60-41d3-ab7d-ea0ca2bfd638))
  4371. )
  4372. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 101.6 242.57 0) (unit 1)
  4373. (in_bom yes) (on_board yes)
  4374. (uuid 00000000-0000-0000-0000-000061f5027f)
  4375. (property "Reference" "D1" (id 0) (at 93.98 228.6 0)
  4376. (effects (font (size 1.27 1.27)) (justify left))
  4377. )
  4378. (property "Value" "SK6812SIDE-A" (id 1) (at 93.98 231.14 0)
  4379. (effects (font (size 1.27 1.27)) (justify left))
  4380. )
  4381. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 102.87 250.19 0)
  4382. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4383. )
  4384. (property "Datasheet" "" (id 3) (at 104.14 252.095 0)
  4385. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4386. )
  4387. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 101.6 242.57 0)
  4388. (effects (font (size 1.27 1.27)) hide)
  4389. )
  4390. (property "Digikey" "1528-4691-ND" (id 5) (at 101.6 242.57 0)
  4391. (effects (font (size 1.27 1.27)) hide)
  4392. )
  4393. (property "Mouser" "485-4691" (id 6) (at 101.6 242.57 0)
  4394. (effects (font (size 1.27 1.27)) hide)
  4395. )
  4396. (property "LCSC" "C2890037" (id 7) (at 101.6 242.57 0)
  4397. (effects (font (size 1.27 1.27)) hide)
  4398. )
  4399. (pin "1" (uuid bafd7713-de56-4b13-bde3-2bb1eb95b862))
  4400. (pin "2" (uuid b0a9d4e0-4a35-4ef4-bf75-f8230a9a0080))
  4401. (pin "3" (uuid 1bd41d7a-cc03-44d3-8bb3-d6d3905c11be))
  4402. (pin "4" (uuid f01f8ee4-5ab0-46bf-ba4d-6358091f1053))
  4403. )
  4404. (symbol (lib_id "Device:C_Small") (at 88.9 237.49 0) (unit 1)
  4405. (in_bom yes) (on_board yes)
  4406. (uuid 00000000-0000-0000-0000-000061f52a71)
  4407. (property "Reference" "C1" (id 0) (at 91.2368 236.3216 0)
  4408. (effects (font (size 1.27 1.27)) (justify left))
  4409. )
  4410. (property "Value" "0.1uF" (id 1) (at 91.2368 238.633 0)
  4411. (effects (font (size 1.27 1.27)) (justify left))
  4412. )
  4413. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 88.9 237.49 0)
  4414. (effects (font (size 1.27 1.27)) hide)
  4415. )
  4416. (property "Datasheet" "~" (id 3) (at 88.9 237.49 0)
  4417. (effects (font (size 1.27 1.27)) hide)
  4418. )
  4419. (property "LCSC" "C1591" (id 4) (at 88.9 237.49 0)
  4420. (effects (font (size 1.27 1.27)) hide)
  4421. )
  4422. (property "Digikey" "1276-1935-1-ND" (id 5) (at 88.9 237.49 0)
  4423. (effects (font (size 1.27 1.27)) hide)
  4424. )
  4425. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 88.9 237.49 0)
  4426. (effects (font (size 1.27 1.27)) hide)
  4427. )
  4428. (pin "1" (uuid b5b98d18-92b0-45e4-a464-abeb3e63c67f))
  4429. (pin "2" (uuid 3d816713-8e55-4148-9a62-71edf593333b))
  4430. )
  4431. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 129.54 242.57 0) (unit 1)
  4432. (in_bom yes) (on_board yes)
  4433. (uuid 00000000-0000-0000-0000-000061f5739b)
  4434. (property "Reference" "D2" (id 0) (at 121.92 228.6 0)
  4435. (effects (font (size 1.27 1.27)) (justify left))
  4436. )
  4437. (property "Value" "SK6812SIDE-A" (id 1) (at 121.92 231.14 0)
  4438. (effects (font (size 1.27 1.27)) (justify left))
  4439. )
  4440. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 130.81 250.19 0)
  4441. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4442. )
  4443. (property "Datasheet" "" (id 3) (at 132.08 252.095 0)
  4444. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4445. )
  4446. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 129.54 242.57 0)
  4447. (effects (font (size 1.27 1.27)) hide)
  4448. )
  4449. (property "Digikey" "1528-4691-ND" (id 5) (at 129.54 242.57 0)
  4450. (effects (font (size 1.27 1.27)) hide)
  4451. )
  4452. (property "Mouser" "485-4691" (id 6) (at 129.54 242.57 0)
  4453. (effects (font (size 1.27 1.27)) hide)
  4454. )
  4455. (property "LCSC" "C2890037" (id 7) (at 129.54 242.57 0)
  4456. (effects (font (size 1.27 1.27)) hide)
  4457. )
  4458. (pin "1" (uuid 04a28995-10a7-4e8d-bf0a-3c28cd74c2fa))
  4459. (pin "2" (uuid 5b5e9d4f-5380-4795-9c5c-6c9dd2774543))
  4460. (pin "3" (uuid c2113ebe-baee-4c93-b17b-9f259cc79e1d))
  4461. (pin "4" (uuid fce757f0-707e-4a92-9cdc-645159fe4b93))
  4462. )
  4463. (symbol (lib_id "Device:C_Small") (at 116.84 237.49 0) (unit 1)
  4464. (in_bom yes) (on_board yes)
  4465. (uuid 00000000-0000-0000-0000-000061f573a1)
  4466. (property "Reference" "C2" (id 0) (at 119.1768 236.3216 0)
  4467. (effects (font (size 1.27 1.27)) (justify left))
  4468. )
  4469. (property "Value" "0.1uF" (id 1) (at 119.1768 238.633 0)
  4470. (effects (font (size 1.27 1.27)) (justify left))
  4471. )
  4472. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 116.84 237.49 0)
  4473. (effects (font (size 1.27 1.27)) hide)
  4474. )
  4475. (property "Datasheet" "~" (id 3) (at 116.84 237.49 0)
  4476. (effects (font (size 1.27 1.27)) hide)
  4477. )
  4478. (property "LCSC" "C1591" (id 4) (at 116.84 237.49 0)
  4479. (effects (font (size 1.27 1.27)) hide)
  4480. )
  4481. (property "Digikey" "1276-1935-1-ND" (id 5) (at 116.84 237.49 0)
  4482. (effects (font (size 1.27 1.27)) hide)
  4483. )
  4484. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 116.84 237.49 0)
  4485. (effects (font (size 1.27 1.27)) hide)
  4486. )
  4487. (pin "1" (uuid bf709803-4d4f-4339-b1c6-1b1dd9ed8ffe))
  4488. (pin "2" (uuid 9511d6e1-ad69-48c7-ab16-eeced975e0f6))
  4489. )
  4490. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 157.48 242.57 0) (unit 1)
  4491. (in_bom yes) (on_board yes)
  4492. (uuid 00000000-0000-0000-0000-000061f5777f)
  4493. (property "Reference" "D3" (id 0) (at 149.86 228.6 0)
  4494. (effects (font (size 1.27 1.27)) (justify left))
  4495. )
  4496. (property "Value" "SK6812SIDE-A" (id 1) (at 149.86 231.14 0)
  4497. (effects (font (size 1.27 1.27)) (justify left))
  4498. )
  4499. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 158.75 250.19 0)
  4500. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4501. )
  4502. (property "Datasheet" "" (id 3) (at 160.02 252.095 0)
  4503. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4504. )
  4505. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 157.48 242.57 0)
  4506. (effects (font (size 1.27 1.27)) hide)
  4507. )
  4508. (property "Digikey" "1528-4691-ND" (id 5) (at 157.48 242.57 0)
  4509. (effects (font (size 1.27 1.27)) hide)
  4510. )
  4511. (property "Mouser" "485-4691" (id 6) (at 157.48 242.57 0)
  4512. (effects (font (size 1.27 1.27)) hide)
  4513. )
  4514. (property "LCSC" "C2890037" (id 7) (at 157.48 242.57 0)
  4515. (effects (font (size 1.27 1.27)) hide)
  4516. )
  4517. (pin "1" (uuid 201ef1b6-fe47-4e18-a25d-8454a9ece970))
  4518. (pin "2" (uuid 6db3e0a6-b3ef-46d7-a683-43d6b85524e1))
  4519. (pin "3" (uuid 950602fa-6edc-4822-8c77-2744d02a2a8e))
  4520. (pin "4" (uuid e2a94c35-3ea5-4429-9e49-f1597125258b))
  4521. )
  4522. (symbol (lib_id "Device:C_Small") (at 144.78 237.49 0) (unit 1)
  4523. (in_bom yes) (on_board yes)
  4524. (uuid 00000000-0000-0000-0000-000061f57785)
  4525. (property "Reference" "C3" (id 0) (at 147.1168 236.3216 0)
  4526. (effects (font (size 1.27 1.27)) (justify left))
  4527. )
  4528. (property "Value" "0.1uF" (id 1) (at 147.1168 238.633 0)
  4529. (effects (font (size 1.27 1.27)) (justify left))
  4530. )
  4531. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 144.78 237.49 0)
  4532. (effects (font (size 1.27 1.27)) hide)
  4533. )
  4534. (property "Datasheet" "~" (id 3) (at 144.78 237.49 0)
  4535. (effects (font (size 1.27 1.27)) hide)
  4536. )
  4537. (property "LCSC" "C1591" (id 4) (at 144.78 237.49 0)
  4538. (effects (font (size 1.27 1.27)) hide)
  4539. )
  4540. (property "Digikey" "1276-1935-1-ND" (id 5) (at 144.78 237.49 0)
  4541. (effects (font (size 1.27 1.27)) hide)
  4542. )
  4543. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 144.78 237.49 0)
  4544. (effects (font (size 1.27 1.27)) hide)
  4545. )
  4546. (pin "1" (uuid 2ffc2f04-cc47-469f-96de-81004a825de9))
  4547. (pin "2" (uuid aa9279f7-b972-4f25-b0f3-5e0f01a71f40))
  4548. )
  4549. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 185.42 242.57 0) (unit 1)
  4550. (in_bom yes) (on_board yes)
  4551. (uuid 00000000-0000-0000-0000-000061f5835d)
  4552. (property "Reference" "D4" (id 0) (at 177.8 228.6 0)
  4553. (effects (font (size 1.27 1.27)) (justify left))
  4554. )
  4555. (property "Value" "SK6812SIDE-A" (id 1) (at 177.8 231.14 0)
  4556. (effects (font (size 1.27 1.27)) (justify left))
  4557. )
  4558. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 186.69 250.19 0)
  4559. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4560. )
  4561. (property "Datasheet" "" (id 3) (at 187.96 252.095 0)
  4562. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4563. )
  4564. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 185.42 242.57 0)
  4565. (effects (font (size 1.27 1.27)) hide)
  4566. )
  4567. (property "Digikey" "1528-4691-ND" (id 5) (at 185.42 242.57 0)
  4568. (effects (font (size 1.27 1.27)) hide)
  4569. )
  4570. (property "Mouser" "485-4691" (id 6) (at 185.42 242.57 0)
  4571. (effects (font (size 1.27 1.27)) hide)
  4572. )
  4573. (property "LCSC" "C2890037" (id 7) (at 185.42 242.57 0)
  4574. (effects (font (size 1.27 1.27)) hide)
  4575. )
  4576. (pin "1" (uuid d127318f-e6ee-4aa6-8794-a9c8d7148677))
  4577. (pin "2" (uuid e8a993ec-3ca1-4e1c-b9db-8fedba6ba9f3))
  4578. (pin "3" (uuid ddd35cc1-7ea2-4027-93d1-5b3fd2c08415))
  4579. (pin "4" (uuid f853907f-0368-4b9f-8e86-2c6abac9120f))
  4580. )
  4581. (symbol (lib_id "Device:C_Small") (at 172.72 237.49 0) (unit 1)
  4582. (in_bom yes) (on_board yes)
  4583. (uuid 00000000-0000-0000-0000-000061f58363)
  4584. (property "Reference" "C4" (id 0) (at 175.0568 236.3216 0)
  4585. (effects (font (size 1.27 1.27)) (justify left))
  4586. )
  4587. (property "Value" "0.1uF" (id 1) (at 175.0568 238.633 0)
  4588. (effects (font (size 1.27 1.27)) (justify left))
  4589. )
  4590. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 172.72 237.49 0)
  4591. (effects (font (size 1.27 1.27)) hide)
  4592. )
  4593. (property "Datasheet" "~" (id 3) (at 172.72 237.49 0)
  4594. (effects (font (size 1.27 1.27)) hide)
  4595. )
  4596. (property "LCSC" "C1591" (id 4) (at 172.72 237.49 0)
  4597. (effects (font (size 1.27 1.27)) hide)
  4598. )
  4599. (property "Digikey" "1276-1935-1-ND" (id 5) (at 172.72 237.49 0)
  4600. (effects (font (size 1.27 1.27)) hide)
  4601. )
  4602. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 172.72 237.49 0)
  4603. (effects (font (size 1.27 1.27)) hide)
  4604. )
  4605. (pin "1" (uuid b9df3039-b0ba-4288-b952-e06df3568a9e))
  4606. (pin "2" (uuid f6ebdeb1-8356-41f8-aef5-a882f96ea707))
  4607. )
  4608. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 213.36 242.57 0) (unit 1)
  4609. (in_bom yes) (on_board yes)
  4610. (uuid 00000000-0000-0000-0000-000061f59037)
  4611. (property "Reference" "D5" (id 0) (at 205.74 228.6 0)
  4612. (effects (font (size 1.27 1.27)) (justify left))
  4613. )
  4614. (property "Value" "SK6812SIDE-A" (id 1) (at 205.74 231.14 0)
  4615. (effects (font (size 1.27 1.27)) (justify left))
  4616. )
  4617. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 214.63 250.19 0)
  4618. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4619. )
  4620. (property "Datasheet" "" (id 3) (at 215.9 252.095 0)
  4621. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4622. )
  4623. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 213.36 242.57 0)
  4624. (effects (font (size 1.27 1.27)) hide)
  4625. )
  4626. (property "Digikey" "1528-4691-ND" (id 5) (at 213.36 242.57 0)
  4627. (effects (font (size 1.27 1.27)) hide)
  4628. )
  4629. (property "Mouser" "485-4691" (id 6) (at 213.36 242.57 0)
  4630. (effects (font (size 1.27 1.27)) hide)
  4631. )
  4632. (property "LCSC" "C2890037" (id 7) (at 213.36 242.57 0)
  4633. (effects (font (size 1.27 1.27)) hide)
  4634. )
  4635. (pin "1" (uuid c7bd907f-ded5-4071-a8ba-298b61938e2d))
  4636. (pin "2" (uuid d72feaa1-d250-4ba1-908e-630af4ccb017))
  4637. (pin "3" (uuid 863622d7-1ac7-42d5-b53e-b58d28e7ac53))
  4638. (pin "4" (uuid 401cd2a0-2a04-428b-98d5-784a840a38d1))
  4639. )
  4640. (symbol (lib_id "Device:C_Small") (at 200.66 237.49 0) (unit 1)
  4641. (in_bom yes) (on_board yes)
  4642. (uuid 00000000-0000-0000-0000-000061f5903d)
  4643. (property "Reference" "C5" (id 0) (at 202.9968 236.3216 0)
  4644. (effects (font (size 1.27 1.27)) (justify left))
  4645. )
  4646. (property "Value" "0.1uF" (id 1) (at 202.9968 238.633 0)
  4647. (effects (font (size 1.27 1.27)) (justify left))
  4648. )
  4649. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 200.66 237.49 0)
  4650. (effects (font (size 1.27 1.27)) hide)
  4651. )
  4652. (property "Datasheet" "~" (id 3) (at 200.66 237.49 0)
  4653. (effects (font (size 1.27 1.27)) hide)
  4654. )
  4655. (property "LCSC" "C1591" (id 4) (at 200.66 237.49 0)
  4656. (effects (font (size 1.27 1.27)) hide)
  4657. )
  4658. (property "Digikey" "1276-1935-1-ND" (id 5) (at 200.66 237.49 0)
  4659. (effects (font (size 1.27 1.27)) hide)
  4660. )
  4661. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 200.66 237.49 0)
  4662. (effects (font (size 1.27 1.27)) hide)
  4663. )
  4664. (pin "1" (uuid 9bd7e8a2-4890-4d4a-ba78-597a7ab993ac))
  4665. (pin "2" (uuid 222be3c0-bf81-4a68-9c90-b370f4595e2d))
  4666. )
  4667. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 241.3 242.57 0) (unit 1)
  4668. (in_bom yes) (on_board yes)
  4669. (uuid 00000000-0000-0000-0000-000061f59ca5)
  4670. (property "Reference" "D6" (id 0) (at 233.68 228.6 0)
  4671. (effects (font (size 1.27 1.27)) (justify left))
  4672. )
  4673. (property "Value" "SK6812SIDE-A" (id 1) (at 233.68 231.14 0)
  4674. (effects (font (size 1.27 1.27)) (justify left))
  4675. )
  4676. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 242.57 250.19 0)
  4677. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4678. )
  4679. (property "Datasheet" "" (id 3) (at 243.84 252.095 0)
  4680. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4681. )
  4682. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 241.3 242.57 0)
  4683. (effects (font (size 1.27 1.27)) hide)
  4684. )
  4685. (property "Digikey" "1528-4691-ND" (id 5) (at 241.3 242.57 0)
  4686. (effects (font (size 1.27 1.27)) hide)
  4687. )
  4688. (property "Mouser" "485-4691" (id 6) (at 241.3 242.57 0)
  4689. (effects (font (size 1.27 1.27)) hide)
  4690. )
  4691. (property "LCSC" "C2890037" (id 7) (at 241.3 242.57 0)
  4692. (effects (font (size 1.27 1.27)) hide)
  4693. )
  4694. (pin "1" (uuid 1ee46f38-e002-4d3e-ad64-8a0e5f2fcd53))
  4695. (pin "2" (uuid 244a08c3-3e40-487a-bf72-768fa3af4139))
  4696. (pin "3" (uuid bfa445ac-246e-4db8-a60c-beb85501bf65))
  4697. (pin "4" (uuid c3b2e23c-8699-44ed-8837-d92d75420e84))
  4698. )
  4699. (symbol (lib_id "Device:C_Small") (at 228.6 237.49 0) (unit 1)
  4700. (in_bom yes) (on_board yes)
  4701. (uuid 00000000-0000-0000-0000-000061f59cab)
  4702. (property "Reference" "C6" (id 0) (at 230.9368 236.3216 0)
  4703. (effects (font (size 1.27 1.27)) (justify left))
  4704. )
  4705. (property "Value" "0.1uF" (id 1) (at 230.9368 238.633 0)
  4706. (effects (font (size 1.27 1.27)) (justify left))
  4707. )
  4708. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 228.6 237.49 0)
  4709. (effects (font (size 1.27 1.27)) hide)
  4710. )
  4711. (property "Datasheet" "~" (id 3) (at 228.6 237.49 0)
  4712. (effects (font (size 1.27 1.27)) hide)
  4713. )
  4714. (property "LCSC" "C1591" (id 4) (at 228.6 237.49 0)
  4715. (effects (font (size 1.27 1.27)) hide)
  4716. )
  4717. (property "Digikey" "1276-1935-1-ND" (id 5) (at 228.6 237.49 0)
  4718. (effects (font (size 1.27 1.27)) hide)
  4719. )
  4720. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 228.6 237.49 0)
  4721. (effects (font (size 1.27 1.27)) hide)
  4722. )
  4723. (pin "1" (uuid 2c04050f-f512-4581-b983-748e3e9c8741))
  4724. (pin "2" (uuid 0e2b9951-d16b-44e6-b1cb-591d480e8428))
  4725. )
  4726. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 269.24 242.57 0) (unit 1)
  4727. (in_bom yes) (on_board yes)
  4728. (uuid 00000000-0000-0000-0000-000061f5a949)
  4729. (property "Reference" "D7" (id 0) (at 261.62 228.6 0)
  4730. (effects (font (size 1.27 1.27)) (justify left))
  4731. )
  4732. (property "Value" "SK6812SIDE-A" (id 1) (at 261.62 231.14 0)
  4733. (effects (font (size 1.27 1.27)) (justify left))
  4734. )
  4735. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 270.51 250.19 0)
  4736. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4737. )
  4738. (property "Datasheet" "" (id 3) (at 271.78 252.095 0)
  4739. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4740. )
  4741. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 269.24 242.57 0)
  4742. (effects (font (size 1.27 1.27)) hide)
  4743. )
  4744. (property "Digikey" "1528-4691-ND" (id 5) (at 269.24 242.57 0)
  4745. (effects (font (size 1.27 1.27)) hide)
  4746. )
  4747. (property "Mouser" "485-4691" (id 6) (at 269.24 242.57 0)
  4748. (effects (font (size 1.27 1.27)) hide)
  4749. )
  4750. (property "LCSC" "C2890037" (id 7) (at 269.24 242.57 0)
  4751. (effects (font (size 1.27 1.27)) hide)
  4752. )
  4753. (pin "1" (uuid 1d8217dd-eaa5-4107-a059-78f1a0cf2926))
  4754. (pin "2" (uuid 21792e87-7a3e-440b-91e0-fb1e08f2f0ea))
  4755. (pin "3" (uuid 2bcef6ab-349b-4b2d-949e-d48ed58c62d8))
  4756. (pin "4" (uuid 34103ee4-40e1-4607-be07-8f0e21ac8c2f))
  4757. )
  4758. (symbol (lib_id "Device:C_Small") (at 256.54 237.49 0) (unit 1)
  4759. (in_bom yes) (on_board yes)
  4760. (uuid 00000000-0000-0000-0000-000061f5a94f)
  4761. (property "Reference" "C7" (id 0) (at 258.8768 236.3216 0)
  4762. (effects (font (size 1.27 1.27)) (justify left))
  4763. )
  4764. (property "Value" "0.1uF" (id 1) (at 258.8768 238.633 0)
  4765. (effects (font (size 1.27 1.27)) (justify left))
  4766. )
  4767. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 256.54 237.49 0)
  4768. (effects (font (size 1.27 1.27)) hide)
  4769. )
  4770. (property "Datasheet" "~" (id 3) (at 256.54 237.49 0)
  4771. (effects (font (size 1.27 1.27)) hide)
  4772. )
  4773. (property "LCSC" "C1591" (id 4) (at 256.54 237.49 0)
  4774. (effects (font (size 1.27 1.27)) hide)
  4775. )
  4776. (property "Digikey" "1276-1935-1-ND" (id 5) (at 256.54 237.49 0)
  4777. (effects (font (size 1.27 1.27)) hide)
  4778. )
  4779. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 256.54 237.49 0)
  4780. (effects (font (size 1.27 1.27)) hide)
  4781. )
  4782. (pin "1" (uuid 258c48bd-1542-4a0f-b861-39673f328184))
  4783. (pin "2" (uuid 2e1c27a1-dd61-4b32-84b9-2ef402708e70))
  4784. )
  4785. (symbol (lib_id "SK6812:SK6812SIDE-A") (at 297.18 242.57 0) (unit 1)
  4786. (in_bom yes) (on_board yes)
  4787. (uuid 00000000-0000-0000-0000-000061f5bfc3)
  4788. (property "Reference" "D8" (id 0) (at 289.56 228.6 0)
  4789. (effects (font (size 1.27 1.27)) (justify left))
  4790. )
  4791. (property "Value" "SK6812SIDE-A" (id 1) (at 289.56 231.14 0)
  4792. (effects (font (size 1.27 1.27)) (justify left))
  4793. )
  4794. (property "Footprint" "sk6812:SK6812-SIDE-A" (id 2) (at 298.45 250.19 0)
  4795. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4796. )
  4797. (property "Datasheet" "" (id 3) (at 299.72 252.095 0)
  4798. (effects (font (size 1.27 1.27)) (justify left top) hide)
  4799. )
  4800. (property "AliExpress" "https://www.aliexpress.com/item/10000009330139.html" (id 4) (at 297.18 242.57 0)
  4801. (effects (font (size 1.27 1.27)) hide)
  4802. )
  4803. (property "Digikey" "1528-4691-ND" (id 5) (at 297.18 242.57 0)
  4804. (effects (font (size 1.27 1.27)) hide)
  4805. )
  4806. (property "Mouser" "485-4691" (id 6) (at 297.18 242.57 0)
  4807. (effects (font (size 1.27 1.27)) hide)
  4808. )
  4809. (property "LCSC" "C2890037" (id 7) (at 297.18 242.57 0)
  4810. (effects (font (size 1.27 1.27)) hide)
  4811. )
  4812. (pin "1" (uuid 288b0cba-a15a-4d68-9c26-9264b1d2c369))
  4813. (pin "2" (uuid e03bd6b8-1308-4880-a800-290862af978e))
  4814. (pin "3" (uuid 71176ca5-c623-4627-aab5-549c91a9fba5))
  4815. (pin "4" (uuid 99a3dbfb-1c73-4c78-be7c-ded34e626f42))
  4816. )
  4817. (symbol (lib_id "Device:C_Small") (at 284.48 237.49 0) (unit 1)
  4818. (in_bom yes) (on_board yes)
  4819. (uuid 00000000-0000-0000-0000-000061f5bfc9)
  4820. (property "Reference" "C8" (id 0) (at 286.8168 236.3216 0)
  4821. (effects (font (size 1.27 1.27)) (justify left))
  4822. )
  4823. (property "Value" "0.1uF" (id 1) (at 286.8168 238.633 0)
  4824. (effects (font (size 1.27 1.27)) (justify left))
  4825. )
  4826. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 284.48 237.49 0)
  4827. (effects (font (size 1.27 1.27)) hide)
  4828. )
  4829. (property "Datasheet" "~" (id 3) (at 284.48 237.49 0)
  4830. (effects (font (size 1.27 1.27)) hide)
  4831. )
  4832. (property "LCSC" "C1591" (id 4) (at 284.48 237.49 0)
  4833. (effects (font (size 1.27 1.27)) hide)
  4834. )
  4835. (property "Digikey" "1276-1935-1-ND" (id 5) (at 284.48 237.49 0)
  4836. (effects (font (size 1.27 1.27)) hide)
  4837. )
  4838. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 284.48 237.49 0)
  4839. (effects (font (size 1.27 1.27)) hide)
  4840. )
  4841. (pin "1" (uuid 2e65c8b8-a3a7-4207-a4c6-ab159b0c890b))
  4842. (pin "2" (uuid 79a2fc97-84ef-4b52-93ec-d9847aacf642))
  4843. )
  4844. (symbol (lib_id "power:+5V") (at 88.9 229.87 0) (unit 1)
  4845. (in_bom yes) (on_board yes)
  4846. (uuid 00000000-0000-0000-0000-000061f5e471)
  4847. (property "Reference" "#PWR0101" (id 0) (at 88.9 233.68 0)
  4848. (effects (font (size 1.27 1.27)) hide)
  4849. )
  4850. (property "Value" "+5V" (id 1) (at 89.281 225.4758 0))
  4851. (property "Footprint" "" (id 2) (at 88.9 229.87 0)
  4852. (effects (font (size 1.27 1.27)) hide)
  4853. )
  4854. (property "Datasheet" "" (id 3) (at 88.9 229.87 0)
  4855. (effects (font (size 1.27 1.27)) hide)
  4856. )
  4857. (pin "1" (uuid 59a13100-a5d0-4346-918b-7d0612ecf423))
  4858. )
  4859. (symbol (lib_id "power:GND") (at 88.9 256.54 0) (unit 1)
  4860. (in_bom yes) (on_board yes)
  4861. (uuid 00000000-0000-0000-0000-000061f5f724)
  4862. (property "Reference" "#PWR0102" (id 0) (at 88.9 262.89 0)
  4863. (effects (font (size 1.27 1.27)) hide)
  4864. )
  4865. (property "Value" "GND" (id 1) (at 89.027 260.9342 0))
  4866. (property "Footprint" "" (id 2) (at 88.9 256.54 0)
  4867. (effects (font (size 1.27 1.27)) hide)
  4868. )
  4869. (property "Datasheet" "" (id 3) (at 88.9 256.54 0)
  4870. (effects (font (size 1.27 1.27)) hide)
  4871. )
  4872. (pin "1" (uuid d060b14c-ff8a-4c92-966f-cf6735c0e13f))
  4873. )
  4874. (symbol (lib_id "Connector:Conn_01x03_Male") (at 398.78 171.45 180) (unit 1)
  4875. (in_bom yes) (on_board yes)
  4876. (uuid 00000000-0000-0000-0000-000061f6e8c0)
  4877. (property "Reference" "J1" (id 0) (at 399.4912 172.0596 0)
  4878. (effects (font (size 1.27 1.27)) (justify right))
  4879. )
  4880. (property "Value" "BLDC" (id 1) (at 399.4912 169.7482 0)
  4881. (effects (font (size 1.27 1.27)) (justify right))
  4882. )
  4883. (property "Footprint" "Molex:532610371" (id 2) (at 398.78 171.45 0)
  4884. (effects (font (size 1.27 1.27)) hide)
  4885. )
  4886. (property "Datasheet" "~" (id 3) (at 398.78 171.45 0)
  4887. (effects (font (size 1.27 1.27)) hide)
  4888. )
  4889. (property "LCSC" "C293630" (id 4) (at 398.78 171.45 0)
  4890. (effects (font (size 1.27 1.27)) hide)
  4891. )
  4892. (property "Digikey" "WM7621CT-ND" (id 5) (at 398.78 171.45 0)
  4893. (effects (font (size 1.27 1.27)) hide)
  4894. )
  4895. (property "Mouser" "538-53261-0371" (id 6) (at 398.78 171.45 0)
  4896. (effects (font (size 1.27 1.27)) hide)
  4897. )
  4898. (pin "1" (uuid 8389195b-356a-44c3-a2e9-7820117d6596))
  4899. (pin "2" (uuid 37202a1b-6857-45c1-82b8-63d2e45accf1))
  4900. (pin "3" (uuid 68266e48-6278-4b4b-9827-471e05208fe8))
  4901. )
  4902. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 85.09 25.4 0) (unit 1)
  4903. (in_bom yes) (on_board yes)
  4904. (uuid 00000000-0000-0000-0000-000061f74a74)
  4905. (property "Reference" "H1" (id 0) (at 83.82 19.05 0)
  4906. (effects (font (size 1.27 1.27)) (justify left))
  4907. )
  4908. (property "Value" "MotorHole" (id 1) (at 83.82 20.32 0)
  4909. (effects (font (size 1.27 1.27)) (justify left))
  4910. )
  4911. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 85.09 25.4 0)
  4912. (effects (font (size 1.27 1.27)) hide)
  4913. )
  4914. (property "Datasheet" "~" (id 3) (at 85.09 25.4 0)
  4915. (effects (font (size 1.27 1.27)) hide)
  4916. )
  4917. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round)" (id 4) (at 85.09 25.4 0)
  4918. (effects (font (size 1.27 1.27)) hide)
  4919. )
  4920. (pin "1" (uuid fb7e8f26-7381-4b70-9ac7-a6d9d49f6672))
  4921. )
  4922. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 96.52 25.4 0) (unit 1)
  4923. (in_bom yes) (on_board yes)
  4924. (uuid 00000000-0000-0000-0000-000061f75e86)
  4925. (property "Reference" "H2" (id 0) (at 95.25 19.05 0)
  4926. (effects (font (size 1.27 1.27)) (justify left))
  4927. )
  4928. (property "Value" "MotorHole" (id 1) (at 95.25 20.32 0)
  4929. (effects (font (size 1.27 1.27)) (justify left))
  4930. )
  4931. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 96.52 25.4 0)
  4932. (effects (font (size 1.27 1.27)) hide)
  4933. )
  4934. (property "Datasheet" "~" (id 3) (at 96.52 25.4 0)
  4935. (effects (font (size 1.27 1.27)) hide)
  4936. )
  4937. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round)" (id 4) (at 96.52 25.4 0)
  4938. (effects (font (size 1.27 1.27)) hide)
  4939. )
  4940. (pin "1" (uuid a49a4d82-48bd-42b8-95c9-1c983664fc79))
  4941. )
  4942. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 107.95 25.4 0) (unit 1)
  4943. (in_bom yes) (on_board yes)
  4944. (uuid 00000000-0000-0000-0000-000061f76bf7)
  4945. (property "Reference" "H3" (id 0) (at 106.68 19.05 0)
  4946. (effects (font (size 1.27 1.27)) (justify left))
  4947. )
  4948. (property "Value" "MotorHole" (id 1) (at 106.68 20.32 0)
  4949. (effects (font (size 1.27 1.27)) (justify left))
  4950. )
  4951. (property "Footprint" "Holes:MountingHole_M1.6" (id 2) (at 107.95 25.4 0)
  4952. (effects (font (size 1.27 1.27)) hide)
  4953. )
  4954. (property "Datasheet" "~" (id 3) (at 107.95 25.4 0)
  4955. (effects (font (size 1.27 1.27)) hide)
  4956. )
  4957. (property "Note" "Screw: M1.6x10 (countersunk), or M1.6x9 (pan/round)" (id 4) (at 107.95 25.4 0)
  4958. (effects (font (size 1.27 1.27)) hide)
  4959. )
  4960. (pin "1" (uuid f5b3ac78-e150-4b32-bc84-9d75c87fb341))
  4961. )
  4962. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 85.09 40.64 0) (unit 1)
  4963. (in_bom yes) (on_board yes)
  4964. (uuid 00000000-0000-0000-0000-000061f779d1)
  4965. (property "Reference" "H4" (id 0) (at 83.82 34.29 0)
  4966. (effects (font (size 1.27 1.27)) (justify left))
  4967. )
  4968. (property "Value" "MountHole" (id 1) (at 83.82 35.56 0)
  4969. (effects (font (size 1.27 1.27)) (justify left))
  4970. )
  4971. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 85.09 40.64 0)
  4972. (effects (font (size 1.27 1.27)) hide)
  4973. )
  4974. (property "Datasheet" "~" (id 3) (at 85.09 40.64 0)
  4975. (effects (font (size 1.27 1.27)) hide)
  4976. )
  4977. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 85.09 40.64 0)
  4978. (effects (font (size 1.27 1.27)) hide)
  4979. )
  4980. (pin "1" (uuid 2e306457-a203-45bd-8828-39a6fc7884b5))
  4981. )
  4982. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 96.52 40.64 0) (unit 1)
  4983. (in_bom yes) (on_board yes)
  4984. (uuid 00000000-0000-0000-0000-000061f788c4)
  4985. (property "Reference" "H5" (id 0) (at 95.25 34.29 0)
  4986. (effects (font (size 1.27 1.27)) (justify left))
  4987. )
  4988. (property "Value" "MountHole" (id 1) (at 95.25 35.56 0)
  4989. (effects (font (size 1.27 1.27)) (justify left))
  4990. )
  4991. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 96.52 40.64 0)
  4992. (effects (font (size 1.27 1.27)) hide)
  4993. )
  4994. (property "Datasheet" "~" (id 3) (at 96.52 40.64 0)
  4995. (effects (font (size 1.27 1.27)) hide)
  4996. )
  4997. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 96.52 40.64 0)
  4998. (effects (font (size 1.27 1.27)) hide)
  4999. )
  5000. (pin "1" (uuid 4a7017bb-a698-433b-a0be-587786fcc0bb))
  5001. )
  5002. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 107.95 40.64 0) (unit 1)
  5003. (in_bom yes) (on_board yes)
  5004. (uuid 00000000-0000-0000-0000-000061f79385)
  5005. (property "Reference" "H6" (id 0) (at 106.68 34.29 0)
  5006. (effects (font (size 1.27 1.27)) (justify left))
  5007. )
  5008. (property "Value" "MountHole" (id 1) (at 106.68 35.56 0)
  5009. (effects (font (size 1.27 1.27)) (justify left))
  5010. )
  5011. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 107.95 40.64 0)
  5012. (effects (font (size 1.27 1.27)) hide)
  5013. )
  5014. (property "Datasheet" "~" (id 3) (at 107.95 40.64 0)
  5015. (effects (font (size 1.27 1.27)) hide)
  5016. )
  5017. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 107.95 40.64 0)
  5018. (effects (font (size 1.27 1.27)) hide)
  5019. )
  5020. (pin "1" (uuid 1b2eb90f-4916-4496-934c-ebfaf59fd7d2))
  5021. )
  5022. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 119.38 40.64 0) (unit 1)
  5023. (in_bom yes) (on_board yes)
  5024. (uuid 00000000-0000-0000-0000-000061f79f4a)
  5025. (property "Reference" "H7" (id 0) (at 118.11 34.29 0)
  5026. (effects (font (size 1.27 1.27)) (justify left))
  5027. )
  5028. (property "Value" "MountHole" (id 1) (at 118.11 35.56 0)
  5029. (effects (font (size 1.27 1.27)) (justify left))
  5030. )
  5031. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 119.38 40.64 0)
  5032. (effects (font (size 1.27 1.27)) hide)
  5033. )
  5034. (property "Datasheet" "~" (id 3) (at 119.38 40.64 0)
  5035. (effects (font (size 1.27 1.27)) hide)
  5036. )
  5037. (property "Note" "Screw: M2x5 (pan/round); Nut: M2 hex" (id 4) (at 119.38 40.64 0)
  5038. (effects (font (size 1.27 1.27)) hide)
  5039. )
  5040. (pin "1" (uuid c18786e1-cb25-48dd-81cc-bf7c7fdf476f))
  5041. )
  5042. (symbol (lib_id "no_pin:no_pin") (at 146.05 21.59 0) (unit 1)
  5043. (in_bom yes) (on_board yes)
  5044. (uuid 00000000-0000-0000-0000-000061fa38cf)
  5045. (property "Reference" "Z1" (id 0) (at 146.05 14.3002 0)
  5046. (effects (font (size 1.524 1.524)))
  5047. )
  5048. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 146.05 16.9926 0)
  5049. (effects (font (size 1.524 1.524)))
  5050. )
  5051. (property "Footprint" "strain:BF350-3AA" (id 2) (at 146.05 21.59 0)
  5052. (effects (font (size 1.524 1.524)) hide)
  5053. )
  5054. (property "Datasheet" "" (id 3) (at 146.05 21.59 0)
  5055. (effects (font (size 1.524 1.524)) hide)
  5056. )
  5057. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 146.05 21.59 0)
  5058. (effects (font (size 1.27 1.27)) hide)
  5059. )
  5060. (property "Digikey" "N/A" (id 5) (at 146.05 21.59 0)
  5061. (effects (font (size 1.27 1.27)) hide)
  5062. )
  5063. (property "LCSC" "N/A" (id 6) (at 146.05 21.59 0)
  5064. (effects (font (size 1.27 1.27)) hide)
  5065. )
  5066. (property "Mouser" "N/A" (id 7) (at 146.05 21.59 0)
  5067. (effects (font (size 1.27 1.27)) hide)
  5068. )
  5069. )
  5070. (symbol (lib_id "no_pin:no_pin") (at 167.64 21.59 0) (unit 1)
  5071. (in_bom yes) (on_board yes)
  5072. (uuid 00000000-0000-0000-0000-000061fa43dc)
  5073. (property "Reference" "Z2" (id 0) (at 167.64 14.3002 0)
  5074. (effects (font (size 1.524 1.524)))
  5075. )
  5076. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 167.64 16.9926 0)
  5077. (effects (font (size 1.524 1.524)))
  5078. )
  5079. (property "Footprint" "strain:BF350-3AA" (id 2) (at 167.64 21.59 0)
  5080. (effects (font (size 1.524 1.524)) hide)
  5081. )
  5082. (property "Datasheet" "" (id 3) (at 167.64 21.59 0)
  5083. (effects (font (size 1.524 1.524)) hide)
  5084. )
  5085. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 167.64 21.59 0)
  5086. (effects (font (size 1.27 1.27)) hide)
  5087. )
  5088. (property "Digikey" "N/A" (id 5) (at 167.64 21.59 0)
  5089. (effects (font (size 1.27 1.27)) hide)
  5090. )
  5091. (property "LCSC" "N/A" (id 6) (at 167.64 21.59 0)
  5092. (effects (font (size 1.27 1.27)) hide)
  5093. )
  5094. (property "Mouser" "N/A" (id 7) (at 167.64 21.59 0)
  5095. (effects (font (size 1.27 1.27)) hide)
  5096. )
  5097. )
  5098. (symbol (lib_id "no_pin:no_pin") (at 189.23 21.59 0) (unit 1)
  5099. (in_bom yes) (on_board yes)
  5100. (uuid 00000000-0000-0000-0000-000061fa4fb7)
  5101. (property "Reference" "Z3" (id 0) (at 189.23 14.3002 0)
  5102. (effects (font (size 1.524 1.524)))
  5103. )
  5104. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 189.23 16.9926 0)
  5105. (effects (font (size 1.524 1.524)))
  5106. )
  5107. (property "Footprint" "strain:BF350-3AA" (id 2) (at 189.23 21.59 0)
  5108. (effects (font (size 1.524 1.524)) hide)
  5109. )
  5110. (property "Datasheet" "" (id 3) (at 189.23 21.59 0)
  5111. (effects (font (size 1.524 1.524)) hide)
  5112. )
  5113. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 189.23 21.59 0)
  5114. (effects (font (size 1.27 1.27)) hide)
  5115. )
  5116. (property "Digikey" "N/A" (id 5) (at 189.23 21.59 0)
  5117. (effects (font (size 1.27 1.27)) hide)
  5118. )
  5119. (property "LCSC" "N/A" (id 6) (at 189.23 21.59 0)
  5120. (effects (font (size 1.27 1.27)) hide)
  5121. )
  5122. (property "Mouser" "N/A" (id 7) (at 189.23 21.59 0)
  5123. (effects (font (size 1.27 1.27)) hide)
  5124. )
  5125. )
  5126. (symbol (lib_id "no_pin:no_pin") (at 210.82 21.59 0) (unit 1)
  5127. (in_bom yes) (on_board yes)
  5128. (uuid 00000000-0000-0000-0000-000061fa5b5e)
  5129. (property "Reference" "Z4" (id 0) (at 210.82 14.3002 0)
  5130. (effects (font (size 1.524 1.524)))
  5131. )
  5132. (property "Value" "BF350-3AA Strain Gauge" (id 1) (at 210.82 16.9926 0)
  5133. (effects (font (size 1.524 1.524)))
  5134. )
  5135. (property "Footprint" "strain:BF350-3AA" (id 2) (at 210.82 21.59 0)
  5136. (effects (font (size 1.524 1.524)) hide)
  5137. )
  5138. (property "Datasheet" "" (id 3) (at 210.82 21.59 0)
  5139. (effects (font (size 1.524 1.524)) hide)
  5140. )
  5141. (property "AliExpress" "https://www.aliexpress.com/item/4000204288561.html" (id 4) (at 210.82 21.59 0)
  5142. (effects (font (size 1.27 1.27)) hide)
  5143. )
  5144. (property "Digikey" "N/A" (id 5) (at 210.82 21.59 0)
  5145. (effects (font (size 1.27 1.27)) hide)
  5146. )
  5147. (property "LCSC" "N/A" (id 6) (at 210.82 21.59 0)
  5148. (effects (font (size 1.27 1.27)) hide)
  5149. )
  5150. (property "Mouser" "N/A" (id 7) (at 210.82 21.59 0)
  5151. (effects (font (size 1.27 1.27)) hide)
  5152. )
  5153. )
  5154. (symbol (lib_id "Connector:USB_C_Receptacle_USB2.0") (at 38.1 76.2 0) (unit 1)
  5155. (in_bom yes) (on_board yes)
  5156. (uuid 00000000-0000-0000-0000-000061fcaa5b)
  5157. (property "Reference" "J2" (id 0) (at 40.8178 54.1782 0))
  5158. (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 40.8178 56.4896 0))
  5159. (property "Footprint" "GCT_USB:USB4510_NoPaste" (id 2) (at 41.91 76.2 0)
  5160. (effects (font (size 1.27 1.27)) hide)
  5161. )
  5162. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 41.91 76.2 0)
  5163. (effects (font (size 1.27 1.27)) hide)
  5164. )
  5165. (property "LCSC" "C428463" (id 4) (at 38.1 76.2 0)
  5166. (effects (font (size 1.27 1.27)) hide)
  5167. )
  5168. (property "Mouser" "640-USB4510031A" (id 5) (at 38.1 76.2 0)
  5169. (effects (font (size 1.27 1.27)) hide)
  5170. )
  5171. (property "Digikey" "USB4510-03-1-A" (id 6) (at 38.1 76.2 0)
  5172. (effects (font (size 1.27 1.27)) hide)
  5173. )
  5174. (pin "A1" (uuid 002f7484-2b7c-4028-a197-c7ee893455cd))
  5175. (pin "A12" (uuid b64072d6-c6a3-480c-b247-ced76a0683e2))
  5176. (pin "A4" (uuid fd650d11-1f43-4a29-b666-0e915ada0015))
  5177. (pin "A5" (uuid 11059d92-63df-44ac-a943-05eabeaf6b3b))
  5178. (pin "A6" (uuid 6ca9a15b-7bed-4718-b87f-cf6cd158c0fb))
  5179. (pin "A7" (uuid 065c4afd-f083-4572-ae73-9f005b8a95bc))
  5180. (pin "A8" (uuid 62bc0e7f-185a-4e68-985e-5d6bf4e3ea4f))
  5181. (pin "A9" (uuid f66ea475-b102-46de-8024-e5ca653f9bf4))
  5182. (pin "B1" (uuid 5baffaf4-808e-4171-9980-10bcb56b2135))
  5183. (pin "B12" (uuid 8781b105-979a-42b2-819f-1b043b4adf27))
  5184. (pin "B4" (uuid fac50c0a-4700-4a91-82d0-1c46b35dca25))
  5185. (pin "B5" (uuid 95895ffd-4330-4c63-aa8a-80105ad94072))
  5186. (pin "B6" (uuid d3c25891-3308-4e1a-81a3-920c152e8483))
  5187. (pin "B7" (uuid ded34583-530c-49a3-9bd1-3387d788ac5f))
  5188. (pin "B8" (uuid bab68279-cb28-4a3f-9bf9-91aaa2b9f18f))
  5189. (pin "B9" (uuid 25af3105-71ee-4af7-8f3c-eb77a7b9280e))
  5190. (pin "S1" (uuid 7214610a-9815-4f4b-85c6-8f2cd1130da1))
  5191. )
  5192. (symbol (lib_id "Device:Q_PNP_BEC") (at 191.77 172.72 180) (unit 1)
  5193. (in_bom yes) (on_board yes)
  5194. (uuid 00000000-0000-0000-0000-000061fe5517)
  5195. (property "Reference" "Q1" (id 0) (at 186.9186 171.5516 0)
  5196. (effects (font (size 1.27 1.27)) (justify left))
  5197. )
  5198. (property "Value" "MMBT4403" (id 1) (at 186.9186 173.863 0)
  5199. (effects (font (size 1.27 1.27)) (justify left))
  5200. )
  5201. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 186.69 175.26 0)
  5202. (effects (font (size 1.27 1.27)) hide)
  5203. )
  5204. (property "Datasheet" "~" (id 3) (at 191.77 172.72 0)
  5205. (effects (font (size 1.27 1.27)) hide)
  5206. )
  5207. (property "LCSC" "C78864" (id 4) (at 191.77 172.72 0)
  5208. (effects (font (size 1.27 1.27)) hide)
  5209. )
  5210. (property "Digikey" "MMBT4403LT1GOSCT-ND" (id 5) (at 191.77 172.72 0)
  5211. (effects (font (size 1.27 1.27)) hide)
  5212. )
  5213. (property "Mouser" "241-MMBT4403R100001" (id 6) (at 191.77 172.72 0)
  5214. (effects (font (size 1.27 1.27)) hide)
  5215. )
  5216. (pin "1" (uuid 161b1717-b29c-4bd9-8a62-3aa7a05da5be))
  5217. (pin "2" (uuid a2db5db7-5865-46a7-aee9-882a62db9f60))
  5218. (pin "3" (uuid 32786941-fff9-4885-b617-e55883187978))
  5219. )
  5220. (symbol (lib_id "power:GND") (at 30.48 104.14 0) (unit 1)
  5221. (in_bom yes) (on_board yes)
  5222. (uuid 00000000-0000-0000-0000-000061fefd56)
  5223. (property "Reference" "#PWR0103" (id 0) (at 30.48 110.49 0)
  5224. (effects (font (size 1.27 1.27)) hide)
  5225. )
  5226. (property "Value" "GND" (id 1) (at 30.607 108.5342 0))
  5227. (property "Footprint" "" (id 2) (at 30.48 104.14 0)
  5228. (effects (font (size 1.27 1.27)) hide)
  5229. )
  5230. (property "Datasheet" "" (id 3) (at 30.48 104.14 0)
  5231. (effects (font (size 1.27 1.27)) hide)
  5232. )
  5233. (pin "1" (uuid 753db779-6d2f-4629-a652-9a47910cf470))
  5234. )
  5235. (symbol (lib_id "Device:R_Small") (at 83.82 68.58 0) (unit 1)
  5236. (in_bom yes) (on_board yes)
  5237. (uuid 00000000-0000-0000-0000-000061ff5247)
  5238. (property "Reference" "R1" (id 0) (at 85.3186 67.4116 0)
  5239. (effects (font (size 1.27 1.27)) (justify left))
  5240. )
  5241. (property "Value" "5.1k" (id 1) (at 85.3186 69.723 0)
  5242. (effects (font (size 1.27 1.27)) (justify left))
  5243. )
  5244. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 83.82 68.58 0)
  5245. (effects (font (size 1.27 1.27)) hide)
  5246. )
  5247. (property "Datasheet" "~" (id 3) (at 83.82 68.58 0)
  5248. (effects (font (size 1.27 1.27)) hide)
  5249. )
  5250. (property "LCSC" "C105580" (id 4) (at 83.82 68.58 0)
  5251. (effects (font (size 1.27 1.27)) hide)
  5252. )
  5253. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 83.82 68.58 0)
  5254. (effects (font (size 1.27 1.27)) hide)
  5255. )
  5256. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 83.82 68.58 0)
  5257. (effects (font (size 1.27 1.27)) hide)
  5258. )
  5259. (pin "1" (uuid 2622f595-7ff0-453e-9b78-19125b1110e8))
  5260. (pin "2" (uuid 7bfd21eb-4ee9-42ce-8900-a93d825953d0))
  5261. )
  5262. (symbol (lib_id "Device:R_Small") (at 77.47 71.12 0) (unit 1)
  5263. (in_bom yes) (on_board yes)
  5264. (uuid 00000000-0000-0000-0000-000061ff59bf)
  5265. (property "Reference" "R2" (id 0) (at 78.9686 69.9516 0)
  5266. (effects (font (size 1.27 1.27)) (justify left))
  5267. )
  5268. (property "Value" "5.1k" (id 1) (at 78.9686 72.263 0)
  5269. (effects (font (size 1.27 1.27)) (justify left))
  5270. )
  5271. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 77.47 71.12 0)
  5272. (effects (font (size 1.27 1.27)) hide)
  5273. )
  5274. (property "Datasheet" "~" (id 3) (at 77.47 71.12 0)
  5275. (effects (font (size 1.27 1.27)) hide)
  5276. )
  5277. (property "LCSC" "C105580" (id 4) (at 77.47 71.12 0)
  5278. (effects (font (size 1.27 1.27)) hide)
  5279. )
  5280. (property "Digikey" "RMCF0603JT5K10CT-ND" (id 5) (at 77.47 71.12 0)
  5281. (effects (font (size 1.27 1.27)) hide)
  5282. )
  5283. (property "Mouser" "652-CR0603FX-5101ELF" (id 6) (at 77.47 71.12 0)
  5284. (effects (font (size 1.27 1.27)) hide)
  5285. )
  5286. (pin "1" (uuid 03899fc2-7ab8-4d54-82c2-1488f5d9b0d9))
  5287. (pin "2" (uuid acc4d69b-68c3-4d63-9943-16f6eacb0ebc))
  5288. )
  5289. (symbol (lib_id "power:GND") (at 81.28 77.47 0) (unit 1)
  5290. (in_bom yes) (on_board yes)
  5291. (uuid 00000000-0000-0000-0000-000061ff8431)
  5292. (property "Reference" "#PWR0104" (id 0) (at 81.28 83.82 0)
  5293. (effects (font (size 1.27 1.27)) hide)
  5294. )
  5295. (property "Value" "GND" (id 1) (at 81.407 81.8642 0))
  5296. (property "Footprint" "" (id 2) (at 81.28 77.47 0)
  5297. (effects (font (size 1.27 1.27)) hide)
  5298. )
  5299. (property "Datasheet" "" (id 3) (at 81.28 77.47 0)
  5300. (effects (font (size 1.27 1.27)) hide)
  5301. )
  5302. (pin "1" (uuid eb8a3560-5898-4134-bac6-7bb251ee79be))
  5303. )
  5304. (symbol (lib_id "Device:R_Small") (at 184.15 184.15 0) (unit 1)
  5305. (in_bom yes) (on_board yes)
  5306. (uuid 00000000-0000-0000-0000-000061ff8747)
  5307. (property "Reference" "R3" (id 0) (at 185.6486 182.9816 0)
  5308. (effects (font (size 1.27 1.27)) (justify left))
  5309. )
  5310. (property "Value" "10k" (id 1) (at 185.6486 185.293 0)
  5311. (effects (font (size 1.27 1.27)) (justify left))
  5312. )
  5313. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 184.15 0)
  5314. (effects (font (size 1.27 1.27)) hide)
  5315. )
  5316. (property "Datasheet" "~" (id 3) (at 184.15 184.15 0)
  5317. (effects (font (size 1.27 1.27)) hide)
  5318. )
  5319. (property "LCSC" "C98220" (id 4) (at 184.15 184.15 0)
  5320. (effects (font (size 1.27 1.27)) hide)
  5321. )
  5322. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 184.15 184.15 0)
  5323. (effects (font (size 1.27 1.27)) hide)
  5324. )
  5325. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 184.15 184.15 0)
  5326. (effects (font (size 1.27 1.27)) hide)
  5327. )
  5328. (pin "1" (uuid 4d0cb151-be02-460e-84ff-e89488e5e234))
  5329. (pin "2" (uuid 5a7e1875-0a35-41e4-b34e-52ef60ffafd7))
  5330. )
  5331. (symbol (lib_id "Device:R_Small") (at 184.15 191.77 0) (unit 1)
  5332. (in_bom yes) (on_board yes)
  5333. (uuid 00000000-0000-0000-0000-000061fff7fc)
  5334. (property "Reference" "R4" (id 0) (at 185.6486 190.6016 0)
  5335. (effects (font (size 1.27 1.27)) (justify left))
  5336. )
  5337. (property "Value" "8.2k" (id 1) (at 185.6486 192.913 0)
  5338. (effects (font (size 1.27 1.27)) (justify left))
  5339. )
  5340. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 184.15 191.77 0)
  5341. (effects (font (size 1.27 1.27)) hide)
  5342. )
  5343. (property "Datasheet" "~" (id 3) (at 184.15 191.77 0)
  5344. (effects (font (size 1.27 1.27)) hide)
  5345. )
  5346. (property "LCSC" "C114637" (id 4) (at 184.15 191.77 0)
  5347. (effects (font (size 1.27 1.27)) hide)
  5348. )
  5349. (property "Digikey" "RMCF0603FT8K20CT-ND" (id 5) (at 184.15 191.77 0)
  5350. (effects (font (size 1.27 1.27)) hide)
  5351. )
  5352. (property "Mouser" "652-CR0603FX-8201ELF" (id 6) (at 184.15 191.77 0)
  5353. (effects (font (size 1.27 1.27)) hide)
  5354. )
  5355. (pin "1" (uuid 4677f77b-9c70-421e-9de7-f775b3529feb))
  5356. (pin "2" (uuid 97568c37-72cd-4f98-87e8-6c89ce613585))
  5357. )
  5358. (symbol (lib_id "lilygo_micro32:T-Micro32_Plus") (at 359.41 50.8 0) (unit 1)
  5359. (in_bom yes) (on_board yes)
  5360. (uuid 00000000-0000-0000-0000-00006200e46e)
  5361. (property "Reference" "U2" (id 0) (at 359.41 26.289 0))
  5362. (property "Value" "T-Micro32_Plus" (id 1) (at 359.41 28.6004 0))
  5363. (property "Footprint" "lilygo_micro32:T-Micro32" (id 2) (at 359.41 50.8 0)
  5364. (effects (font (size 1.27 1.27)) hide)
  5365. )
  5366. (property "Datasheet" "" (id 3) (at 359.41 50.8 0)
  5367. (effects (font (size 1.27 1.27)) hide)
  5368. )
  5369. (property "AliExpress" "https://www.aliexpress.com/item/1005002308952882.html" (id 4) (at 359.41 50.8 0)
  5370. (effects (font (size 1.27 1.27)) hide)
  5371. )
  5372. (property "Digikey" "N/A" (id 5) (at 359.41 50.8 0)
  5373. (effects (font (size 1.27 1.27)) hide)
  5374. )
  5375. (property "LCSC" "N/A" (id 6) (at 359.41 50.8 0)
  5376. (effects (font (size 1.27 1.27)) hide)
  5377. )
  5378. (property "Mouser" "N/A" (id 7) (at 359.41 50.8 0)
  5379. (effects (font (size 1.27 1.27)) hide)
  5380. )
  5381. (pin "1" (uuid 6b3002dd-62c9-4f2a-8c51-d319894ff4a7))
  5382. (pin "10" (uuid 34029f0e-f900-4d7a-9828-197bbcb8268d))
  5383. (pin "11" (uuid cbe5ee8f-62c2-4029-9056-b2f9e38d44f7))
  5384. (pin "12" (uuid 1b39aee1-14bb-4f57-949c-af5946eea388))
  5385. (pin "13" (uuid 0471630c-6e2d-4993-a721-ad6b31523ea6))
  5386. (pin "14" (uuid c28a02b8-543d-4b71-94f5-b4f7fb82f2a4))
  5387. (pin "15" (uuid bfdd06e2-88b3-46c3-90e9-61feb9373e52))
  5388. (pin "16" (uuid e55179bd-83e9-4012-8409-5f9273ff012b))
  5389. (pin "17" (uuid e5d566b5-604a-4348-bb23-43d85bcaf394))
  5390. (pin "18" (uuid 3f337261-bd0b-4a3c-af5d-41e4f20b8d2b))
  5391. (pin "19" (uuid 89b4a707-c1ed-4546-9194-77a5268f4f37))
  5392. (pin "2" (uuid 6eb210e6-2a55-4bbe-b437-8097f6ba8718))
  5393. (pin "20" (uuid 70335fd6-e8f4-4775-9886-57d960327617))
  5394. (pin "21" (uuid 89a0ce78-20ea-4c37-a2a1-821844b77b5d))
  5395. (pin "22" (uuid 5c99a6ab-e247-47b9-aa50-cb98a25ea96f))
  5396. (pin "23" (uuid a6891bb5-a357-4c05-8e0e-ce8ff96bc5b7))
  5397. (pin "24" (uuid 89c5080f-2ff3-46dd-9810-2d1cc5f0678f))
  5398. (pin "25" (uuid a0f7b4f1-b832-4e8c-a8da-e907a365d7c9))
  5399. (pin "26" (uuid d462d3d3-f72d-4da5-ba63-9581787e3cbc))
  5400. (pin "27" (uuid 73a6877f-e142-4c8a-9931-2019ad27bde0))
  5401. (pin "28" (uuid da72a49f-1d98-4ec6-a8da-2d113d494eac))
  5402. (pin "29" (uuid f0f06ae3-1e13-44be-bb4c-cd708e56fb43))
  5403. (pin "3" (uuid 502a5913-ee24-401f-9f1a-9d3a372ca6ac))
  5404. (pin "30" (uuid 9ea0d503-4d4d-4c1c-90df-744a6489c595))
  5405. (pin "31" (uuid 9d64d986-5464-4a8c-99c0-33609c2bcbc0))
  5406. (pin "32" (uuid da16f818-0e37-4603-a547-ed7df9a96452))
  5407. (pin "33" (uuid b7f33759-9c41-4f21-9251-82c96e55b33c))
  5408. (pin "34" (uuid 8078e752-010a-4a6c-9826-0a04781deb71))
  5409. (pin "35" (uuid a908c14e-8db0-43d6-ad9e-7bc7cd7d2260))
  5410. (pin "36" (uuid 7e6bef7f-a70d-4c13-b4df-61d4bdc1257a))
  5411. (pin "37" (uuid 2c427024-ca14-4429-b693-ea483e491065))
  5412. (pin "38" (uuid 1da88dc4-5345-4e0d-a84c-400631092f11))
  5413. (pin "4" (uuid bbc62690-b8fb-438a-8ee0-c77d65956f89))
  5414. (pin "5" (uuid bb690633-a2d8-45d8-8d80-85ce2f66f3a7))
  5415. (pin "6" (uuid aa67310a-259a-4b0d-8870-2ee279e7e79a))
  5416. (pin "7" (uuid 6eaf2310-87a6-4b9a-92e8-35debbcaa5b5))
  5417. (pin "8" (uuid d7b0be32-8a7e-4951-abf9-98542738f8f1))
  5418. (pin "9" (uuid 82fd1409-968b-41c3-be8c-cb2561ea3ffe))
  5419. )
  5420. (symbol (lib_id "Device:L_Small") (at 173.99 181.61 270) (unit 1)
  5421. (in_bom yes) (on_board yes)
  5422. (uuid 00000000-0000-0000-0000-00006200e5de)
  5423. (property "Reference" "L1" (id 0) (at 173.99 177.0126 90))
  5424. (property "Value" "3.3uH" (id 1) (at 173.99 179.324 90))
  5425. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 173.99 181.61 0)
  5426. (effects (font (size 1.27 1.27)) hide)
  5427. )
  5428. (property "Datasheet" "~" (id 3) (at 173.99 181.61 0)
  5429. (effects (font (size 1.27 1.27)) hide)
  5430. )
  5431. (property "LCSC" "C307744" (id 4) (at 173.99 181.61 0)
  5432. (effects (font (size 1.27 1.27)) hide)
  5433. )
  5434. (property "Digikey" "445-6394-1-ND" (id 5) (at 173.99 181.61 0)
  5435. (effects (font (size 1.27 1.27)) hide)
  5436. )
  5437. (property "Mouser" "810-MLZ2012A3R3WT000" (id 6) (at 173.99 181.61 0)
  5438. (effects (font (size 1.27 1.27)) hide)
  5439. )
  5440. (pin "1" (uuid 89283502-e13e-4c58-93fe-0e0a0b4dc0b5))
  5441. (pin "2" (uuid 7eb55f38-c35e-457a-b1e4-b1dae5d70338))
  5442. )
  5443. (symbol (lib_id "Device:C_Small") (at 167.64 184.15 0) (unit 1)
  5444. (in_bom yes) (on_board yes)
  5445. (uuid 00000000-0000-0000-0000-0000620172ce)
  5446. (property "Reference" "C19" (id 0) (at 169.9768 182.9816 0)
  5447. (effects (font (size 1.27 1.27)) (justify left))
  5448. )
  5449. (property "Value" "0.1uF" (id 1) (at 169.9768 185.293 0)
  5450. (effects (font (size 1.27 1.27)) (justify left))
  5451. )
  5452. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 167.64 184.15 0)
  5453. (effects (font (size 1.27 1.27)) hide)
  5454. )
  5455. (property "Datasheet" "~" (id 3) (at 167.64 184.15 0)
  5456. (effects (font (size 1.27 1.27)) hide)
  5457. )
  5458. (property "LCSC" "C1591" (id 4) (at 167.64 184.15 0)
  5459. (effects (font (size 1.27 1.27)) hide)
  5460. )
  5461. (property "Digikey" "1276-1935-1-ND" (id 5) (at 167.64 184.15 0)
  5462. (effects (font (size 1.27 1.27)) hide)
  5463. )
  5464. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 167.64 184.15 0)
  5465. (effects (font (size 1.27 1.27)) hide)
  5466. )
  5467. (pin "1" (uuid 3e488e92-bddd-4d44-95f8-53f1899959b3))
  5468. (pin "2" (uuid e97a138c-907f-4ac2-909d-5420774bbc49))
  5469. )
  5470. (symbol (lib_id "Interface_USB:CH340C") (at 121.92 77.47 0) (unit 1)
  5471. (in_bom yes) (on_board yes)
  5472. (uuid 00000000-0000-0000-0000-0000620180e0)
  5473. (property "Reference" "U3" (id 0) (at 114.3 57.15 0))
  5474. (property "Value" "CH340C" (id 1) (at 118.11 81.28 0))
  5475. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 123.19 91.44 0)
  5476. (effects (font (size 1.27 1.27)) (justify left) hide)
  5477. )
  5478. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/Jiangsu-Qin-Heng-CH340C_C84681.pdf" (id 3) (at 113.03 57.15 0)
  5479. (effects (font (size 1.27 1.27)) hide)
  5480. )
  5481. (property "LCSC" "C84681" (id 4) (at 121.92 77.47 0)
  5482. (effects (font (size 1.27 1.27)) hide)
  5483. )
  5484. (property "Digikey" "N/A" (id 5) (at 121.92 77.47 0)
  5485. (effects (font (size 1.27 1.27)) hide)
  5486. )
  5487. (property "Mouser" "N/A" (id 6) (at 121.92 77.47 0)
  5488. (effects (font (size 1.27 1.27)) hide)
  5489. )
  5490. (pin "1" (uuid ec1f1e1b-be42-4866-9a6b-b89e6e88f2c5))
  5491. (pin "10" (uuid 44d072f9-64e1-459e-80d1-c82fa5b6cb3e))
  5492. (pin "11" (uuid 181a4764-a462-4b4f-82ec-35df94857db0))
  5493. (pin "12" (uuid 05f453e1-e6ac-4725-ac6f-c737cb237871))
  5494. (pin "13" (uuid ec54d593-d947-40d5-9ce4-01090f07d42f))
  5495. (pin "14" (uuid 016969ab-09a8-471c-ace6-1bdaa379b509))
  5496. (pin "15" (uuid f12847bd-98ae-41f9-b585-95021b3ae723))
  5497. (pin "16" (uuid d539fbf6-d474-41de-bda0-19ba022ca66a))
  5498. (pin "2" (uuid df232253-71d7-4d83-a4f3-12da054a77bd))
  5499. (pin "3" (uuid 40950b1d-ca89-4396-b2fc-a613e266e57c))
  5500. (pin "4" (uuid be6525b4-e91c-443a-b608-161699ca5e45))
  5501. (pin "5" (uuid daf121ec-2c00-4e96-96aa-2bc6f7a0fed5))
  5502. (pin "6" (uuid 070365ef-242a-4d41-bc0a-b8ed9b91feca))
  5503. (pin "7" (uuid 76011dd7-642b-438a-bb90-b324383a7851))
  5504. (pin "8" (uuid 5e597a99-b966-40ca-93cf-60af0be59632))
  5505. (pin "9" (uuid 62785fc4-216d-4983-9ac2-0f8d21d68772))
  5506. )
  5507. (symbol (lib_id "Device:C_Small") (at 158.75 184.15 0) (unit 1)
  5508. (in_bom yes) (on_board yes)
  5509. (uuid 00000000-0000-0000-0000-0000620191b6)
  5510. (property "Reference" "C18" (id 0) (at 161.0868 182.9816 0)
  5511. (effects (font (size 1.27 1.27)) (justify left))
  5512. )
  5513. (property "Value" "10uF" (id 1) (at 161.0868 185.293 0)
  5514. (effects (font (size 1.27 1.27)) (justify left))
  5515. )
  5516. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 158.75 184.15 0)
  5517. (effects (font (size 1.27 1.27)) hide)
  5518. )
  5519. (property "Datasheet" "~" (id 3) (at 158.75 184.15 0)
  5520. (effects (font (size 1.27 1.27)) hide)
  5521. )
  5522. (property "LCSC" "C2922480" (id 4) (at 158.75 184.15 0)
  5523. (effects (font (size 1.27 1.27)) hide)
  5524. )
  5525. (property "Digikey" "1276-2891-1-ND" (id 5) (at 158.75 184.15 0)
  5526. (effects (font (size 1.27 1.27)) hide)
  5527. )
  5528. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 158.75 184.15 0)
  5529. (effects (font (size 1.27 1.27)) hide)
  5530. )
  5531. (pin "1" (uuid dbf73e11-83bc-47c4-99f5-3e855a0a071c))
  5532. (pin "2" (uuid 19b5ceaf-8af8-44bc-8898-82006d249547))
  5533. )
  5534. (symbol (lib_id "strain:HX711") (at 219.71 184.15 0) (unit 1)
  5535. (in_bom yes) (on_board yes)
  5536. (uuid 00000000-0000-0000-0000-00006201f11d)
  5537. (property "Reference" "U4" (id 0) (at 219.71 168.529 0))
  5538. (property "Value" "HX711" (id 1) (at 219.71 170.8404 0))
  5539. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 219.71 184.15 0)
  5540. (effects (font (size 1.27 1.27)) hide)
  5541. )
  5542. (property "Datasheet" "" (id 3) (at 219.71 184.15 0)
  5543. (effects (font (size 1.27 1.27)) hide)
  5544. )
  5545. (property "LCSC" "C43656" (id 4) (at 219.71 184.15 0)
  5546. (effects (font (size 1.27 1.27)) hide)
  5547. )
  5548. (property "Digikey" "N/A" (id 5) (at 219.71 184.15 0)
  5549. (effects (font (size 1.27 1.27)) hide)
  5550. )
  5551. (property "Mouser" "N/A" (id 6) (at 219.71 184.15 0)
  5552. (effects (font (size 1.27 1.27)) hide)
  5553. )
  5554. (pin "1" (uuid 4c48b2b5-5c1e-416c-8af1-9cc6f401041e))
  5555. (pin "10" (uuid 96915e8f-9a52-4410-9b54-bd771f6667c3))
  5556. (pin "11" (uuid 5a56abc4-5b25-4c88-97db-344566c9d379))
  5557. (pin "12" (uuid a424f5d1-34b1-460e-a454-2b7a281b3e10))
  5558. (pin "13" (uuid 936dbf09-d873-41f3-8551-53d6b8cd1ca4))
  5559. (pin "14" (uuid 28c18f4a-6fb8-44d9-9ab6-d3b8ee57c978))
  5560. (pin "15" (uuid 8f9eeb33-e286-45d9-8587-d74e21ad9770))
  5561. (pin "16" (uuid 66308b32-b4c1-4428-8c3f-a86bbc2c13ef))
  5562. (pin "2" (uuid f6c4fb2e-1560-4c98-a4da-d3f3f074bd57))
  5563. (pin "3" (uuid 7f4b0aee-a094-47eb-84a1-4d76eed7332a))
  5564. (pin "4" (uuid 8dbb934a-5586-4bd6-9d1a-9db3e71dd096))
  5565. (pin "5" (uuid 50f92996-a571-4b51-bd1a-6d9c37fd2a8b))
  5566. (pin "6" (uuid 590fc34e-a1ee-43b2-8622-3dfce47b0067))
  5567. (pin "7" (uuid c6d1a5ed-a9f5-400d-9242-15501f9eaaf7))
  5568. (pin "8" (uuid e108e200-0dd3-49db-8f09-dd357f2187a6))
  5569. (pin "9" (uuid 660feb2f-ed14-424b-9bf2-c6c2c987a377))
  5570. )
  5571. (symbol (lib_id "Trinamic:TMC6300") (at 364.49 189.23 0) (unit 1)
  5572. (in_bom yes) (on_board yes)
  5573. (uuid 00000000-0000-0000-0000-0000620241db)
  5574. (property "Reference" "U5" (id 0) (at 364.49 162.179 0))
  5575. (property "Value" "TMC6300" (id 1) (at 364.49 164.4904 0))
  5576. (property "Footprint" "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles" (id 2) (at 364.49 189.23 0)
  5577. (effects (font (size 1.27 1.27)) hide)
  5578. )
  5579. (property "Datasheet" "" (id 3) (at 364.49 189.23 0)
  5580. (effects (font (size 1.27 1.27)) hide)
  5581. )
  5582. (property "Digikey" "TMC6300-LA-T" (id 4) (at 364.49 189.23 0)
  5583. (effects (font (size 1.27 1.27)) hide)
  5584. )
  5585. (property "Mouser" "700-TMC6300-LA" (id 5) (at 364.49 189.23 0)
  5586. (effects (font (size 1.27 1.27)) hide)
  5587. )
  5588. (property "LCSC" "N/A" (id 6) (at 364.49 189.23 0)
  5589. (effects (font (size 1.27 1.27)) hide)
  5590. )
  5591. (pin "1" (uuid 79073c57-46e7-4396-b557-04a02bba0109))
  5592. (pin "10" (uuid ebccd30a-0414-47c3-9936-1d7844f4f6af))
  5593. (pin "11" (uuid ed1b0183-04a2-4cb7-a1a1-20d3a3e82dac))
  5594. (pin "12" (uuid c95b1c20-2052-4a82-9eda-ca9913f1f1b1))
  5595. (pin "13" (uuid 0d0bad9e-9a17-4232-95e2-1777d4b18542))
  5596. (pin "14" (uuid 51bb1c8d-78ec-4290-a93e-a43f4c748f96))
  5597. (pin "15" (uuid c924c1fa-6f69-4c8e-9fab-25fcfa9314ce))
  5598. (pin "16" (uuid dfe691f4-6238-4df2-b80f-62dd5c318974))
  5599. (pin "17" (uuid 135e0385-0438-4b6b-a16a-b2a87c07c49c))
  5600. (pin "18" (uuid 322f22ee-7049-4600-ba35-723eb2cb910d))
  5601. (pin "19" (uuid ebf551f3-3279-4b51-a4ff-85b30e1da558))
  5602. (pin "2" (uuid e41afad5-564e-4b4b-8792-e404cb358545))
  5603. (pin "20" (uuid b9ef4c66-f0a7-428d-ab36-6d0f1a1d0ce2))
  5604. (pin "3" (uuid 5640b998-b28c-4be1-808e-1d6b0cc9509e))
  5605. (pin "4" (uuid aafb4786-bfee-4885-b52c-c4e0221e8073))
  5606. (pin "5" (uuid f1d3d319-55eb-465b-a886-dd1a7bf3a652))
  5607. (pin "6" (uuid 74866e02-9bb1-44c6-9ec8-5e2d99aac1e7))
  5608. (pin "7" (uuid 4991f4b1-e65c-440a-b6db-5dfc5cb33d4f))
  5609. (pin "8" (uuid 10d6bece-2fe2-4e9c-951c-ce0f71bb10fc))
  5610. (pin "9" (uuid 34e599a4-b6fd-4f18-ad63-44c4b0648740))
  5611. (pin "PAD" (uuid b90e91c0-3cef-4715-81b4-93ed637f5b12))
  5612. )
  5613. (symbol (lib_id "no_pin:no_pin") (at 146.05 33.02 0) (unit 1)
  5614. (in_bom yes) (on_board yes)
  5615. (uuid 00000000-0000-0000-0000-000062038103)
  5616. (property "Reference" "Z5" (id 0) (at 146.05 25.7302 0)
  5617. (effects (font (size 1.524 1.524)))
  5618. )
  5619. (property "Value" "dummy_keepouts" (id 1) (at 146.05 28.4226 0)
  5620. (effects (font (size 1.524 1.524)))
  5621. )
  5622. (property "Footprint" "view_custom:ViewKeepouts3d" (id 2) (at 146.05 33.02 0)
  5623. (effects (font (size 1.524 1.524)) hide)
  5624. )
  5625. (property "Datasheet" "" (id 3) (at 146.05 33.02 0)
  5626. (effects (font (size 1.524 1.524)) hide)
  5627. )
  5628. )
  5629. (symbol (lib_id "Regulator_Linear:AP7361C-33E") (at 48.26 29.21 0) (unit 1)
  5630. (in_bom yes) (on_board yes)
  5631. (uuid 00000000-0000-0000-0000-00006203d4f8)
  5632. (property "Reference" "U6" (id 0) (at 48.26 23.0632 0))
  5633. (property "Value" "AP2114HA-3.3" (id 1) (at 48.26 25.3746 0))
  5634. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 48.26 24.13 0)
  5635. (effects (font (size 1.27 1.27)) hide)
  5636. )
  5637. (property "Datasheet" "" (id 3) (at 50.8 35.56 0)
  5638. (effects (font (size 1.27 1.27)) hide)
  5639. )
  5640. (property "LCSC" "C460314" (id 4) (at 48.26 29.21 0)
  5641. (effects (font (size 1.27 1.27)) hide)
  5642. )
  5643. (property "Digikey" "AP2114HA-3.3TRG1DICT-ND" (id 5) (at 48.26 29.21 0)
  5644. (effects (font (size 1.27 1.27)) hide)
  5645. )
  5646. (property "Mouser" "621-AP2114HA-3.3TRG1" (id 6) (at 48.26 29.21 0)
  5647. (effects (font (size 1.27 1.27)) hide)
  5648. )
  5649. (pin "1" (uuid 4f09cb32-5a0c-4f44-89e2-81335d9dbf63))
  5650. (pin "2" (uuid fa8be394-74cd-4d9b-8e36-cbc87a934488))
  5651. (pin "3" (uuid 2b471bad-edbf-44fe-a5a3-8940bcf5d975))
  5652. )
  5653. (symbol (lib_id "power:GND") (at 48.26 40.64 0) (unit 1)
  5654. (in_bom yes) (on_board yes)
  5655. (uuid 00000000-0000-0000-0000-00006204bf3e)
  5656. (property "Reference" "#PWR0105" (id 0) (at 48.26 46.99 0)
  5657. (effects (font (size 1.27 1.27)) hide)
  5658. )
  5659. (property "Value" "GND" (id 1) (at 48.387 45.0342 0))
  5660. (property "Footprint" "" (id 2) (at 48.26 40.64 0)
  5661. (effects (font (size 1.27 1.27)) hide)
  5662. )
  5663. (property "Datasheet" "" (id 3) (at 48.26 40.64 0)
  5664. (effects (font (size 1.27 1.27)) hide)
  5665. )
  5666. (pin "1" (uuid d508eea5-eaef-4fbc-840e-49d8a9aeab5b))
  5667. )
  5668. (symbol (lib_id "Device:C_Small") (at 33.02 33.02 0) (unit 1)
  5669. (in_bom yes) (on_board yes)
  5670. (uuid 00000000-0000-0000-0000-0000620545dc)
  5671. (property "Reference" "C9" (id 0) (at 35.3568 31.8516 0)
  5672. (effects (font (size 1.27 1.27)) (justify left))
  5673. )
  5674. (property "Value" "10uF" (id 1) (at 35.3568 34.163 0)
  5675. (effects (font (size 1.27 1.27)) (justify left))
  5676. )
  5677. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 33.02 33.02 0)
  5678. (effects (font (size 1.27 1.27)) hide)
  5679. )
  5680. (property "Datasheet" "~" (id 3) (at 33.02 33.02 0)
  5681. (effects (font (size 1.27 1.27)) hide)
  5682. )
  5683. (property "LCSC" "C2922480" (id 4) (at 33.02 33.02 0)
  5684. (effects (font (size 1.27 1.27)) hide)
  5685. )
  5686. (property "Digikey" "1276-2891-1-ND" (id 5) (at 33.02 33.02 0)
  5687. (effects (font (size 1.27 1.27)) hide)
  5688. )
  5689. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 33.02 33.02 0)
  5690. (effects (font (size 1.27 1.27)) hide)
  5691. )
  5692. (pin "1" (uuid d98776c4-2262-4384-80a2-9ef8792f7c0b))
  5693. (pin "2" (uuid 149d67ae-cae8-40d5-9531-44ab97286a5f))
  5694. )
  5695. (symbol (lib_id "Device:C_Small") (at 58.42 33.02 0) (unit 1)
  5696. (in_bom yes) (on_board yes)
  5697. (uuid 00000000-0000-0000-0000-0000620581b5)
  5698. (property "Reference" "C10" (id 0) (at 60.7568 31.8516 0)
  5699. (effects (font (size 1.27 1.27)) (justify left))
  5700. )
  5701. (property "Value" "10uF" (id 1) (at 60.7568 34.163 0)
  5702. (effects (font (size 1.27 1.27)) (justify left))
  5703. )
  5704. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 58.42 33.02 0)
  5705. (effects (font (size 1.27 1.27)) hide)
  5706. )
  5707. (property "Datasheet" "~" (id 3) (at 58.42 33.02 0)
  5708. (effects (font (size 1.27 1.27)) hide)
  5709. )
  5710. (property "LCSC" "C2922480" (id 4) (at 58.42 33.02 0)
  5711. (effects (font (size 1.27 1.27)) hide)
  5712. )
  5713. (property "Digikey" "1276-2891-1-ND" (id 5) (at 58.42 33.02 0)
  5714. (effects (font (size 1.27 1.27)) hide)
  5715. )
  5716. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 58.42 33.02 0)
  5717. (effects (font (size 1.27 1.27)) hide)
  5718. )
  5719. (pin "1" (uuid 9fdc8848-47b8-4f5a-a420-f4c378d4d673))
  5720. (pin "2" (uuid 2592fd2e-0efe-462f-93ce-ac796f2c2a71))
  5721. )
  5722. (symbol (lib_id "power:+3.3V") (at 67.31 25.4 0) (unit 1)
  5723. (in_bom yes) (on_board yes)
  5724. (uuid 00000000-0000-0000-0000-00006205ee7e)
  5725. (property "Reference" "#PWR0106" (id 0) (at 67.31 29.21 0)
  5726. (effects (font (size 1.27 1.27)) hide)
  5727. )
  5728. (property "Value" "+3.3V" (id 1) (at 67.691 21.0058 0))
  5729. (property "Footprint" "" (id 2) (at 67.31 25.4 0)
  5730. (effects (font (size 1.27 1.27)) hide)
  5731. )
  5732. (property "Datasheet" "" (id 3) (at 67.31 25.4 0)
  5733. (effects (font (size 1.27 1.27)) hide)
  5734. )
  5735. (pin "1" (uuid 7a5b9e09-1bda-4ff7-851e-759e442c212e))
  5736. )
  5737. (symbol (lib_id "power:+3.3V") (at 189.23 160.02 0) (unit 1)
  5738. (in_bom yes) (on_board yes)
  5739. (uuid 00000000-0000-0000-0000-0000620606f7)
  5740. (property "Reference" "#PWR0116" (id 0) (at 189.23 163.83 0)
  5741. (effects (font (size 1.27 1.27)) hide)
  5742. )
  5743. (property "Value" "+3.3V" (id 1) (at 189.611 155.6258 0))
  5744. (property "Footprint" "" (id 2) (at 189.23 160.02 0)
  5745. (effects (font (size 1.27 1.27)) hide)
  5746. )
  5747. (property "Datasheet" "" (id 3) (at 189.23 160.02 0)
  5748. (effects (font (size 1.27 1.27)) hide)
  5749. )
  5750. (pin "1" (uuid 52f95826-77fa-45a0-90f2-08a39c194e57))
  5751. )
  5752. (symbol (lib_id "Device:C_Small") (at 172.72 165.1 0) (unit 1)
  5753. (in_bom yes) (on_board yes)
  5754. (uuid 00000000-0000-0000-0000-000062060ff5)
  5755. (property "Reference" "C16" (id 0) (at 175.0568 163.9316 0)
  5756. (effects (font (size 1.27 1.27)) (justify left))
  5757. )
  5758. (property "Value" "10uF" (id 1) (at 175.0568 166.243 0)
  5759. (effects (font (size 1.27 1.27)) (justify left))
  5760. )
  5761. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 172.72 165.1 0)
  5762. (effects (font (size 1.27 1.27)) hide)
  5763. )
  5764. (property "Datasheet" "~" (id 3) (at 172.72 165.1 0)
  5765. (effects (font (size 1.27 1.27)) hide)
  5766. )
  5767. (property "LCSC" "C2922480" (id 4) (at 172.72 165.1 0)
  5768. (effects (font (size 1.27 1.27)) hide)
  5769. )
  5770. (property "Digikey" "1276-2891-1-ND" (id 5) (at 172.72 165.1 0)
  5771. (effects (font (size 1.27 1.27)) hide)
  5772. )
  5773. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 172.72 165.1 0)
  5774. (effects (font (size 1.27 1.27)) hide)
  5775. )
  5776. (pin "1" (uuid d553cc01-d5e4-42f9-acdb-7c87d03d3ab9))
  5777. (pin "2" (uuid dbdb625a-6ae2-4268-896f-11debd628c4f))
  5778. )
  5779. (symbol (lib_id "Device:C_Small") (at 27.94 194.31 0) (unit 1)
  5780. (in_bom yes) (on_board yes)
  5781. (uuid 00000000-0000-0000-0000-000062066b6d)
  5782. (property "Reference" "C20" (id 0) (at 30.2768 193.1416 0)
  5783. (effects (font (size 1.27 1.27)) (justify left))
  5784. )
  5785. (property "Value" "0.1uF" (id 1) (at 30.2768 195.453 0)
  5786. (effects (font (size 1.27 1.27)) (justify left))
  5787. )
  5788. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 27.94 194.31 0)
  5789. (effects (font (size 1.27 1.27)) hide)
  5790. )
  5791. (property "Datasheet" "~" (id 3) (at 27.94 194.31 0)
  5792. (effects (font (size 1.27 1.27)) hide)
  5793. )
  5794. (property "LCSC" "C1591" (id 4) (at 27.94 194.31 0)
  5795. (effects (font (size 1.27 1.27)) hide)
  5796. )
  5797. (property "Digikey" "1276-1935-1-ND" (id 5) (at 27.94 194.31 0)
  5798. (effects (font (size 1.27 1.27)) hide)
  5799. )
  5800. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 27.94 194.31 0)
  5801. (effects (font (size 1.27 1.27)) hide)
  5802. )
  5803. (pin "1" (uuid a81f00c9-55ed-4851-af0e-6377a9975736))
  5804. (pin "2" (uuid 4de8b7be-07f1-404c-8a88-482f6237258c))
  5805. )
  5806. (symbol (lib_id "Logic_LevelTranslator:SN74LV1T34DBV") (at 43.18 242.57 0) (unit 1)
  5807. (in_bom yes) (on_board yes)
  5808. (uuid 00000000-0000-0000-0000-0000620700a0)
  5809. (property "Reference" "U7" (id 0) (at 41.91 229.87 0)
  5810. (effects (font (size 1.27 1.27)) (justify left))
  5811. )
  5812. (property "Value" "SN74LV1T34DBV" (id 1) (at 35.56 232.41 0)
  5813. (effects (font (size 1.27 1.27)) (justify left))
  5814. )
  5815. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 59.69 248.92 0)
  5816. (effects (font (size 1.27 1.27)) hide)
  5817. )
  5818. (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at 33.02 247.65 0)
  5819. (effects (font (size 1.27 1.27)) hide)
  5820. )
  5821. (property "LCSC" "C100024" (id 4) (at 43.18 242.57 0)
  5822. (effects (font (size 1.27 1.27)) hide)
  5823. )
  5824. (property "Digikey" "296-37176-1-ND" (id 5) (at 43.18 242.57 0)
  5825. (effects (font (size 1.27 1.27)) hide)
  5826. )
  5827. (property "Mouser" "595-SN74LV1T34DBVR" (id 6) (at 43.18 242.57 0)
  5828. (effects (font (size 1.27 1.27)) hide)
  5829. )
  5830. (pin "1" (uuid bd52c8b7-35b1-46ab-bbd9-f9255e8ba474))
  5831. (pin "2" (uuid b0290cba-1c3c-48c0-a9bc-215e7d25968b))
  5832. (pin "3" (uuid 3fd557e1-bf68-4805-b4ea-17079bc0f2ca))
  5833. (pin "4" (uuid 71d384ef-6541-4d3f-8e57-b50845e9c714))
  5834. (pin "5" (uuid 6f9ff052-6887-4fbe-a989-d0b4f028936c))
  5835. )
  5836. (symbol (lib_id "Connector:TestPoint_Small") (at 26.67 26.67 0) (unit 1)
  5837. (in_bom yes) (on_board yes)
  5838. (uuid 00000000-0000-0000-0000-0000620734a8)
  5839. (property "Reference" "TP1" (id 0) (at 27.8892 25.5016 0)
  5840. (effects (font (size 1.27 1.27)) (justify left))
  5841. )
  5842. (property "Value" "5V" (id 1) (at 27.8892 27.813 0)
  5843. (effects (font (size 1.27 1.27)) (justify left))
  5844. )
  5845. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 31.75 26.67 0)
  5846. (effects (font (size 1.27 1.27)) hide)
  5847. )
  5848. (property "Datasheet" "~" (id 3) (at 31.75 26.67 0)
  5849. (effects (font (size 1.27 1.27)) hide)
  5850. )
  5851. (pin "1" (uuid 13663e45-ff00-48c9-a1f3-53ce577f0583))
  5852. )
  5853. (symbol (lib_id "Device:C_Small") (at 30.48 237.49 0) (unit 1)
  5854. (in_bom yes) (on_board yes)
  5855. (uuid 00000000-0000-0000-0000-000062078a75)
  5856. (property "Reference" "C29" (id 0) (at 32.8168 236.3216 0)
  5857. (effects (font (size 1.27 1.27)) (justify left))
  5858. )
  5859. (property "Value" "0.1uF" (id 1) (at 32.8168 238.633 0)
  5860. (effects (font (size 1.27 1.27)) (justify left))
  5861. )
  5862. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 30.48 237.49 0)
  5863. (effects (font (size 1.27 1.27)) hide)
  5864. )
  5865. (property "Datasheet" "~" (id 3) (at 30.48 237.49 0)
  5866. (effects (font (size 1.27 1.27)) hide)
  5867. )
  5868. (property "LCSC" "C1591" (id 4) (at 30.48 237.49 0)
  5869. (effects (font (size 1.27 1.27)) hide)
  5870. )
  5871. (property "Digikey" "1276-1935-1-ND" (id 5) (at 30.48 237.49 0)
  5872. (effects (font (size 1.27 1.27)) hide)
  5873. )
  5874. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 30.48 237.49 0)
  5875. (effects (font (size 1.27 1.27)) hide)
  5876. )
  5877. (pin "1" (uuid 3c273b2a-2c92-4c14-a97a-48cecf1c34d7))
  5878. (pin "2" (uuid 6eea4de7-227d-40d6-acc1-1620ef137fa5))
  5879. )
  5880. (symbol (lib_id "power:+5V") (at 30.48 229.87 0) (unit 1)
  5881. (in_bom yes) (on_board yes)
  5882. (uuid 00000000-0000-0000-0000-000062078a82)
  5883. (property "Reference" "#PWR0133" (id 0) (at 30.48 233.68 0)
  5884. (effects (font (size 1.27 1.27)) hide)
  5885. )
  5886. (property "Value" "+5V" (id 1) (at 30.861 225.4758 0))
  5887. (property "Footprint" "" (id 2) (at 30.48 229.87 0)
  5888. (effects (font (size 1.27 1.27)) hide)
  5889. )
  5890. (property "Datasheet" "" (id 3) (at 30.48 229.87 0)
  5891. (effects (font (size 1.27 1.27)) hide)
  5892. )
  5893. (pin "1" (uuid 93980984-2fb8-43a1-85bb-eca986ca7ba2))
  5894. )
  5895. (symbol (lib_id "power:GND") (at 30.48 256.54 0) (unit 1)
  5896. (in_bom yes) (on_board yes)
  5897. (uuid 00000000-0000-0000-0000-000062078a89)
  5898. (property "Reference" "#PWR0134" (id 0) (at 30.48 262.89 0)
  5899. (effects (font (size 1.27 1.27)) hide)
  5900. )
  5901. (property "Value" "GND" (id 1) (at 30.607 260.9342 0))
  5902. (property "Footprint" "" (id 2) (at 30.48 256.54 0)
  5903. (effects (font (size 1.27 1.27)) hide)
  5904. )
  5905. (property "Datasheet" "" (id 3) (at 30.48 256.54 0)
  5906. (effects (font (size 1.27 1.27)) hide)
  5907. )
  5908. (pin "1" (uuid b9d4e899-1575-4eac-bf26-ac64f406deec))
  5909. )
  5910. (symbol (lib_id "Device:C_Small") (at 342.9 170.18 0) (unit 1)
  5911. (in_bom yes) (on_board yes)
  5912. (uuid 00000000-0000-0000-0000-000062084712)
  5913. (property "Reference" "C15" (id 0) (at 345.2368 169.0116 0)
  5914. (effects (font (size 1.27 1.27)) (justify left))
  5915. )
  5916. (property "Value" "0.1uF" (id 1) (at 345.2368 171.323 0)
  5917. (effects (font (size 1.27 1.27)) (justify left))
  5918. )
  5919. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 342.9 170.18 0)
  5920. (effects (font (size 1.27 1.27)) hide)
  5921. )
  5922. (property "Datasheet" "~" (id 3) (at 342.9 170.18 0)
  5923. (effects (font (size 1.27 1.27)) hide)
  5924. )
  5925. (property "LCSC" "C1591" (id 4) (at 342.9 170.18 0)
  5926. (effects (font (size 1.27 1.27)) hide)
  5927. )
  5928. (property "Digikey" "1276-1935-1-ND" (id 5) (at 342.9 170.18 0)
  5929. (effects (font (size 1.27 1.27)) hide)
  5930. )
  5931. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 342.9 170.18 0)
  5932. (effects (font (size 1.27 1.27)) hide)
  5933. )
  5934. (pin "1" (uuid c304d748-e511-46ac-b8d3-d74b06071a27))
  5935. (pin "2" (uuid edf178cc-a73e-459c-82af-45a152fa31ca))
  5936. )
  5937. (symbol (lib_id "Device:C_Small") (at 332.74 170.18 0) (unit 1)
  5938. (in_bom yes) (on_board yes)
  5939. (uuid 00000000-0000-0000-0000-000062086349)
  5940. (property "Reference" "C14" (id 0) (at 335.0768 169.0116 0)
  5941. (effects (font (size 1.27 1.27)) (justify left))
  5942. )
  5943. (property "Value" "0.1uF" (id 1) (at 335.0768 171.323 0)
  5944. (effects (font (size 1.27 1.27)) (justify left))
  5945. )
  5946. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 332.74 170.18 0)
  5947. (effects (font (size 1.27 1.27)) hide)
  5948. )
  5949. (property "Datasheet" "~" (id 3) (at 332.74 170.18 0)
  5950. (effects (font (size 1.27 1.27)) hide)
  5951. )
  5952. (property "LCSC" "C1591" (id 4) (at 332.74 170.18 0)
  5953. (effects (font (size 1.27 1.27)) hide)
  5954. )
  5955. (property "Digikey" "1276-1935-1-ND" (id 5) (at 332.74 170.18 0)
  5956. (effects (font (size 1.27 1.27)) hide)
  5957. )
  5958. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 332.74 170.18 0)
  5959. (effects (font (size 1.27 1.27)) hide)
  5960. )
  5961. (pin "1" (uuid 0633adfa-914b-4f9d-80ba-161103ceec79))
  5962. (pin "2" (uuid e26458db-ffb9-4a18-886d-cfa3a8d4f544))
  5963. )
  5964. (symbol (lib_id "Device:C_Small") (at 323.85 170.18 0) (unit 1)
  5965. (in_bom yes) (on_board yes)
  5966. (uuid 00000000-0000-0000-0000-00006208a205)
  5967. (property "Reference" "C13" (id 0) (at 326.1868 169.0116 0)
  5968. (effects (font (size 1.27 1.27)) (justify left))
  5969. )
  5970. (property "Value" "22uF" (id 1) (at 326.1868 171.323 0)
  5971. (effects (font (size 1.27 1.27)) (justify left))
  5972. )
  5973. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 323.85 170.18 0)
  5974. (effects (font (size 1.27 1.27)) hide)
  5975. )
  5976. (property "Datasheet" "~" (id 3) (at 323.85 170.18 0)
  5977. (effects (font (size 1.27 1.27)) hide)
  5978. )
  5979. (property "LCSC" "C98190" (id 4) (at 323.85 170.18 0)
  5980. (effects (font (size 1.27 1.27)) hide)
  5981. )
  5982. (property "Digikey" "1276-CL21A226MAYNNNECT-ND" (id 5) (at 323.85 170.18 0)
  5983. (effects (font (size 1.27 1.27)) hide)
  5984. )
  5985. (property "Mouser" "187-CL21A226MAYNNNE" (id 6) (at 323.85 170.18 0)
  5986. (effects (font (size 1.27 1.27)) hide)
  5987. )
  5988. (pin "1" (uuid bb0ba8a2-8b47-4ad8-8cad-d915e088c687))
  5989. (pin "2" (uuid 5956c9c4-93f5-4341-b42d-e62e27b5e9d6))
  5990. )
  5991. (symbol (lib_id "Device:C_Small") (at 381 212.09 0) (unit 1)
  5992. (in_bom yes) (on_board yes)
  5993. (uuid 00000000-0000-0000-0000-00006209158d)
  5994. (property "Reference" "C21" (id 0) (at 383.3368 210.9216 0)
  5995. (effects (font (size 1.27 1.27)) (justify left))
  5996. )
  5997. (property "Value" "0.1uF" (id 1) (at 383.3368 213.233 0)
  5998. (effects (font (size 1.27 1.27)) (justify left))
  5999. )
  6000. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 381 212.09 0)
  6001. (effects (font (size 1.27 1.27)) hide)
  6002. )
  6003. (property "Datasheet" "~" (id 3) (at 381 212.09 0)
  6004. (effects (font (size 1.27 1.27)) hide)
  6005. )
  6006. (property "LCSC" "C1591" (id 4) (at 381 212.09 0)
  6007. (effects (font (size 1.27 1.27)) hide)
  6008. )
  6009. (property "Digikey" "1276-1935-1-ND" (id 5) (at 381 212.09 0)
  6010. (effects (font (size 1.27 1.27)) hide)
  6011. )
  6012. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 381 212.09 0)
  6013. (effects (font (size 1.27 1.27)) hide)
  6014. )
  6015. (pin "1" (uuid 7a2ca59d-820f-4fa1-abab-bd90f7425325))
  6016. (pin "2" (uuid 5b291660-876b-4f49-bc42-f0ce83419c18))
  6017. )
  6018. (symbol (lib_id "Device:C_Small") (at 336.55 203.2 0) (unit 1)
  6019. (in_bom yes) (on_board yes)
  6020. (uuid 00000000-0000-0000-0000-000062091f81)
  6021. (property "Reference" "C17" (id 0) (at 338.8868 202.0316 0)
  6022. (effects (font (size 1.27 1.27)) (justify left))
  6023. )
  6024. (property "Value" "0.1uF" (id 1) (at 338.8868 204.343 0)
  6025. (effects (font (size 1.27 1.27)) (justify left))
  6026. )
  6027. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 336.55 203.2 0)
  6028. (effects (font (size 1.27 1.27)) hide)
  6029. )
  6030. (property "Datasheet" "~" (id 3) (at 336.55 203.2 0)
  6031. (effects (font (size 1.27 1.27)) hide)
  6032. )
  6033. (property "LCSC" "C1591" (id 4) (at 336.55 203.2 0)
  6034. (effects (font (size 1.27 1.27)) hide)
  6035. )
  6036. (property "Digikey" "1276-1935-1-ND" (id 5) (at 336.55 203.2 0)
  6037. (effects (font (size 1.27 1.27)) hide)
  6038. )
  6039. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 336.55 203.2 0)
  6040. (effects (font (size 1.27 1.27)) hide)
  6041. )
  6042. (pin "1" (uuid 0a914979-ff8a-4d1e-ac72-2c67810487be))
  6043. (pin "2" (uuid a3bb59ab-2bb5-4644-8375-027f0cc1abc0))
  6044. )
  6045. (symbol (lib_id "power:GND") (at 381 217.17 0) (unit 1)
  6046. (in_bom yes) (on_board yes)
  6047. (uuid 00000000-0000-0000-0000-000062092c18)
  6048. (property "Reference" "#PWR0107" (id 0) (at 381 223.52 0)
  6049. (effects (font (size 1.27 1.27)) hide)
  6050. )
  6051. (property "Value" "GND" (id 1) (at 381.127 221.5642 0))
  6052. (property "Footprint" "" (id 2) (at 381 217.17 0)
  6053. (effects (font (size 1.27 1.27)) hide)
  6054. )
  6055. (property "Datasheet" "" (id 3) (at 381 217.17 0)
  6056. (effects (font (size 1.27 1.27)) hide)
  6057. )
  6058. (pin "1" (uuid b932d339-7888-4506-92dc-7b9f4a021ec5))
  6059. )
  6060. (symbol (lib_id "Connector:TestPoint_Small") (at 69.85 26.67 0) (unit 1)
  6061. (in_bom yes) (on_board yes)
  6062. (uuid 00000000-0000-0000-0000-0000620939bb)
  6063. (property "Reference" "TP2" (id 0) (at 71.0692 25.5016 0)
  6064. (effects (font (size 1.27 1.27)) (justify left))
  6065. )
  6066. (property "Value" "3.3v" (id 1) (at 71.0692 27.813 0)
  6067. (effects (font (size 1.27 1.27)) (justify left))
  6068. )
  6069. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 74.93 26.67 0)
  6070. (effects (font (size 1.27 1.27)) hide)
  6071. )
  6072. (property "Datasheet" "~" (id 3) (at 74.93 26.67 0)
  6073. (effects (font (size 1.27 1.27)) hide)
  6074. )
  6075. (pin "1" (uuid c5f60ad2-3c12-4476-8404-2c06cc32df66))
  6076. )
  6077. (symbol (lib_id "power:GND") (at 347.98 217.17 0) (unit 1)
  6078. (in_bom yes) (on_board yes)
  6079. (uuid 00000000-0000-0000-0000-000062096fa5)
  6080. (property "Reference" "#PWR0108" (id 0) (at 347.98 223.52 0)
  6081. (effects (font (size 1.27 1.27)) hide)
  6082. )
  6083. (property "Value" "GND" (id 1) (at 348.107 221.5642 0))
  6084. (property "Footprint" "" (id 2) (at 347.98 217.17 0)
  6085. (effects (font (size 1.27 1.27)) hide)
  6086. )
  6087. (property "Datasheet" "" (id 3) (at 347.98 217.17 0)
  6088. (effects (font (size 1.27 1.27)) hide)
  6089. )
  6090. (pin "1" (uuid 513e44b9-1e1a-4ee2-8d06-ac0de5e52179))
  6091. )
  6092. (symbol (lib_id "Device:C_Small") (at 203.2 190.5 180) (unit 1)
  6093. (in_bom yes) (on_board yes)
  6094. (uuid 00000000-0000-0000-0000-00006209787a)
  6095. (property "Reference" "C22" (id 0) (at 200.8632 191.6684 0)
  6096. (effects (font (size 1.27 1.27)) (justify left))
  6097. )
  6098. (property "Value" "0.1uF" (id 1) (at 200.8632 189.357 0)
  6099. (effects (font (size 1.27 1.27)) (justify left))
  6100. )
  6101. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 190.5 0)
  6102. (effects (font (size 1.27 1.27)) hide)
  6103. )
  6104. (property "Datasheet" "~" (id 3) (at 203.2 190.5 0)
  6105. (effects (font (size 1.27 1.27)) hide)
  6106. )
  6107. (property "LCSC" "C1591" (id 4) (at 203.2 190.5 0)
  6108. (effects (font (size 1.27 1.27)) hide)
  6109. )
  6110. (property "Digikey" "1276-1935-1-ND" (id 5) (at 203.2 190.5 0)
  6111. (effects (font (size 1.27 1.27)) hide)
  6112. )
  6113. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 203.2 190.5 0)
  6114. (effects (font (size 1.27 1.27)) hide)
  6115. )
  6116. (pin "1" (uuid fde97225-e327-4f0d-a0d0-ae491822da36))
  6117. (pin "2" (uuid cf99f970-43e4-4767-a02a-b896d20db8c0))
  6118. )
  6119. (symbol (lib_id "power:+3.3V") (at 330.2 200.66 0) (unit 1)
  6120. (in_bom yes) (on_board yes)
  6121. (uuid 00000000-0000-0000-0000-0000620a6032)
  6122. (property "Reference" "#PWR0109" (id 0) (at 330.2 204.47 0)
  6123. (effects (font (size 1.27 1.27)) hide)
  6124. )
  6125. (property "Value" "+3.3V" (id 1) (at 330.581 196.2658 0))
  6126. (property "Footprint" "" (id 2) (at 330.2 200.66 0)
  6127. (effects (font (size 1.27 1.27)) hide)
  6128. )
  6129. (property "Datasheet" "" (id 3) (at 330.2 200.66 0)
  6130. (effects (font (size 1.27 1.27)) hide)
  6131. )
  6132. (pin "1" (uuid 7c6968c0-fe3f-4461-bd16-269e440f9e68))
  6133. )
  6134. (symbol (lib_id "power:GNDA") (at 195.58 196.85 0) (unit 1)
  6135. (in_bom yes) (on_board yes)
  6136. (uuid 00000000-0000-0000-0000-0000620d3feb)
  6137. (property "Reference" "#PWR0117" (id 0) (at 195.58 203.2 0)
  6138. (effects (font (size 1.27 1.27)) hide)
  6139. )
  6140. (property "Value" "GNDA" (id 1) (at 195.707 201.2442 0))
  6141. (property "Footprint" "" (id 2) (at 195.58 196.85 0)
  6142. (effects (font (size 1.27 1.27)) hide)
  6143. )
  6144. (property "Datasheet" "" (id 3) (at 195.58 196.85 0)
  6145. (effects (font (size 1.27 1.27)) hide)
  6146. )
  6147. (pin "1" (uuid 6d96171e-7384-48a3-b7b6-f3f35d176d40))
  6148. )
  6149. (symbol (lib_id "power:GND") (at 383.54 190.5 0) (unit 1)
  6150. (in_bom yes) (on_board yes)
  6151. (uuid 00000000-0000-0000-0000-0000620d59fa)
  6152. (property "Reference" "#PWR0110" (id 0) (at 383.54 196.85 0)
  6153. (effects (font (size 1.27 1.27)) hide)
  6154. )
  6155. (property "Value" "GND" (id 1) (at 383.667 194.8942 0))
  6156. (property "Footprint" "" (id 2) (at 383.54 190.5 0)
  6157. (effects (font (size 1.27 1.27)) hide)
  6158. )
  6159. (property "Datasheet" "" (id 3) (at 383.54 190.5 0)
  6160. (effects (font (size 1.27 1.27)) hide)
  6161. )
  6162. (pin "1" (uuid 73b41eb2-3ccf-4143-92fe-caaab34649bf))
  6163. )
  6164. (symbol (lib_id "Connector:TestPoint_Small") (at 50.8 40.64 0) (unit 1)
  6165. (in_bom yes) (on_board yes)
  6166. (uuid 00000000-0000-0000-0000-0000620f043a)
  6167. (property "Reference" "TP3" (id 0) (at 52.0192 39.4716 0)
  6168. (effects (font (size 1.27 1.27)) (justify left))
  6169. )
  6170. (property "Value" "GND" (id 1) (at 52.0192 41.783 0)
  6171. (effects (font (size 1.27 1.27)) (justify left))
  6172. )
  6173. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 55.88 40.64 0)
  6174. (effects (font (size 1.27 1.27)) hide)
  6175. )
  6176. (property "Datasheet" "~" (id 3) (at 55.88 40.64 0)
  6177. (effects (font (size 1.27 1.27)) hide)
  6178. )
  6179. (pin "1" (uuid 38cdeb79-38b0-4b02-a77a-a4cc178e7598))
  6180. )
  6181. (symbol (lib_id "power:GND") (at 121.92 96.52 0) (unit 1)
  6182. (in_bom yes) (on_board yes)
  6183. (uuid 00000000-0000-0000-0000-00006210086e)
  6184. (property "Reference" "#PWR0111" (id 0) (at 121.92 102.87 0)
  6185. (effects (font (size 1.27 1.27)) hide)
  6186. )
  6187. (property "Value" "GND" (id 1) (at 122.047 100.9142 0))
  6188. (property "Footprint" "" (id 2) (at 121.92 96.52 0)
  6189. (effects (font (size 1.27 1.27)) hide)
  6190. )
  6191. (property "Datasheet" "" (id 3) (at 121.92 96.52 0)
  6192. (effects (font (size 1.27 1.27)) hide)
  6193. )
  6194. (pin "1" (uuid 5ceb0e80-7d98-4e66-aa31-ce51c35f043e))
  6195. )
  6196. (symbol (lib_id "power:+3.3V") (at 101.6 57.15 0) (unit 1)
  6197. (in_bom yes) (on_board yes)
  6198. (uuid 00000000-0000-0000-0000-000062105589)
  6199. (property "Reference" "#PWR0112" (id 0) (at 101.6 60.96 0)
  6200. (effects (font (size 1.27 1.27)) hide)
  6201. )
  6202. (property "Value" "+3.3V" (id 1) (at 101.981 52.7558 0))
  6203. (property "Footprint" "" (id 2) (at 101.6 57.15 0)
  6204. (effects (font (size 1.27 1.27)) hide)
  6205. )
  6206. (property "Datasheet" "" (id 3) (at 101.6 57.15 0)
  6207. (effects (font (size 1.27 1.27)) hide)
  6208. )
  6209. (pin "1" (uuid be7b6fc0-680b-422c-9cd2-a6357a97bdaa))
  6210. )
  6211. (symbol (lib_id "power:GNDA") (at 163.83 196.85 0) (unit 1)
  6212. (in_bom yes) (on_board yes)
  6213. (uuid 00000000-0000-0000-0000-000062110345)
  6214. (property "Reference" "#PWR0118" (id 0) (at 163.83 203.2 0)
  6215. (effects (font (size 1.27 1.27)) hide)
  6216. )
  6217. (property "Value" "GNDA" (id 1) (at 163.957 201.2442 0))
  6218. (property "Footprint" "" (id 2) (at 163.83 196.85 0)
  6219. (effects (font (size 1.27 1.27)) hide)
  6220. )
  6221. (property "Datasheet" "" (id 3) (at 163.83 196.85 0)
  6222. (effects (font (size 1.27 1.27)) hide)
  6223. )
  6224. (pin "1" (uuid 132f87af-fee0-4378-a134-77a68eb21f40))
  6225. )
  6226. (symbol (lib_id "Device:C_Small") (at 105.41 59.69 0) (unit 1)
  6227. (in_bom yes) (on_board yes)
  6228. (uuid 00000000-0000-0000-0000-0000621156c4)
  6229. (property "Reference" "C11" (id 0) (at 107.7468 58.5216 0)
  6230. (effects (font (size 1.27 1.27)) (justify left))
  6231. )
  6232. (property "Value" "0.1uF" (id 1) (at 107.7468 60.833 0)
  6233. (effects (font (size 1.27 1.27)) (justify left))
  6234. )
  6235. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 105.41 59.69 0)
  6236. (effects (font (size 1.27 1.27)) hide)
  6237. )
  6238. (property "Datasheet" "~" (id 3) (at 105.41 59.69 0)
  6239. (effects (font (size 1.27 1.27)) hide)
  6240. )
  6241. (property "LCSC" "C1591" (id 4) (at 105.41 59.69 0)
  6242. (effects (font (size 1.27 1.27)) hide)
  6243. )
  6244. (property "Digikey" "1276-1935-1-ND" (id 5) (at 105.41 59.69 0)
  6245. (effects (font (size 1.27 1.27)) hide)
  6246. )
  6247. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 105.41 59.69 0)
  6248. (effects (font (size 1.27 1.27)) hide)
  6249. )
  6250. (pin "1" (uuid 38b4d1b0-a915-4c3c-be73-8ed9dd8948f2))
  6251. (pin "2" (uuid d9fe496c-d570-49d6-8e55-cc837c24c797))
  6252. )
  6253. (symbol (lib_id "power:GND") (at 105.41 66.04 0) (unit 1)
  6254. (in_bom yes) (on_board yes)
  6255. (uuid 00000000-0000-0000-0000-0000621184b4)
  6256. (property "Reference" "#PWR0113" (id 0) (at 105.41 72.39 0)
  6257. (effects (font (size 1.27 1.27)) hide)
  6258. )
  6259. (property "Value" "GND" (id 1) (at 105.537 70.4342 0))
  6260. (property "Footprint" "" (id 2) (at 105.41 66.04 0)
  6261. (effects (font (size 1.27 1.27)) hide)
  6262. )
  6263. (property "Datasheet" "" (id 3) (at 105.41 66.04 0)
  6264. (effects (font (size 1.27 1.27)) hide)
  6265. )
  6266. (pin "1" (uuid 56101d6e-ac4a-44da-9c84-8faacaf7937d))
  6267. )
  6268. (symbol (lib_id "power:GNDA") (at 184.15 196.85 0) (unit 1)
  6269. (in_bom yes) (on_board yes)
  6270. (uuid 00000000-0000-0000-0000-00006211ae93)
  6271. (property "Reference" "#PWR0119" (id 0) (at 184.15 203.2 0)
  6272. (effects (font (size 1.27 1.27)) hide)
  6273. )
  6274. (property "Value" "GNDA" (id 1) (at 184.277 201.2442 0))
  6275. (property "Footprint" "" (id 2) (at 184.15 196.85 0)
  6276. (effects (font (size 1.27 1.27)) hide)
  6277. )
  6278. (property "Datasheet" "" (id 3) (at 184.15 196.85 0)
  6279. (effects (font (size 1.27 1.27)) hide)
  6280. )
  6281. (pin "1" (uuid f184639c-12d7-4661-a8c4-139986dfaf3a))
  6282. )
  6283. (symbol (lib_id "Device:C_Small") (at 241.3 137.16 0) (unit 1)
  6284. (in_bom yes) (on_board yes)
  6285. (uuid 00000000-0000-0000-0000-00006211bef1)
  6286. (property "Reference" "C28" (id 0) (at 243.6368 135.9916 0)
  6287. (effects (font (size 1.27 1.27)) (justify left))
  6288. )
  6289. (property "Value" "1uF" (id 1) (at 243.6368 138.303 0)
  6290. (effects (font (size 1.27 1.27)) (justify left))
  6291. )
  6292. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 241.3 137.16 0)
  6293. (effects (font (size 1.27 1.27)) hide)
  6294. )
  6295. (property "Datasheet" "~" (id 3) (at 241.3 137.16 0)
  6296. (effects (font (size 1.27 1.27)) hide)
  6297. )
  6298. (property "Mouser" "187-CL10A105KA8NNNC" (id 4) (at 241.3 137.16 0)
  6299. (effects (font (size 1.27 1.27)) hide)
  6300. )
  6301. (property "LCSC" "C5673" (id 5) (at 241.3 137.16 0)
  6302. (effects (font (size 1.27 1.27)) hide)
  6303. )
  6304. (property "Digikey" "1276-1102-1-ND" (id 6) (at 241.3 137.16 0)
  6305. (effects (font (size 1.27 1.27)) hide)
  6306. )
  6307. (pin "1" (uuid acd276fb-d20b-4553-b073-bd7db980812a))
  6308. (pin "2" (uuid 13621f30-38eb-438c-99e2-f2bda3f08c97))
  6309. )
  6310. (symbol (lib_id "power:GNDA") (at 172.72 168.91 0) (unit 1)
  6311. (in_bom yes) (on_board yes)
  6312. (uuid 00000000-0000-0000-0000-000062131aaa)
  6313. (property "Reference" "#PWR0120" (id 0) (at 172.72 175.26 0)
  6314. (effects (font (size 1.27 1.27)) hide)
  6315. )
  6316. (property "Value" "GNDA" (id 1) (at 172.847 173.3042 0))
  6317. (property "Footprint" "" (id 2) (at 172.72 168.91 0)
  6318. (effects (font (size 1.27 1.27)) hide)
  6319. )
  6320. (property "Datasheet" "" (id 3) (at 172.72 168.91 0)
  6321. (effects (font (size 1.27 1.27)) hide)
  6322. )
  6323. (pin "1" (uuid c495cda9-772c-419d-8204-ec560c974d4b))
  6324. )
  6325. (symbol (lib_id "Device:R_Small") (at 130.81 133.35 0) (unit 1)
  6326. (in_bom yes) (on_board yes)
  6327. (uuid 00000000-0000-0000-0000-000062132ffe)
  6328. (property "Reference" "R15" (id 0) (at 125.8316 133.35 90))
  6329. (property "Value" "2.2k" (id 1) (at 128.143 133.35 90))
  6330. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 130.81 133.35 0)
  6331. (effects (font (size 1.27 1.27)) hide)
  6332. )
  6333. (property "Datasheet" "~" (id 3) (at 130.81 133.35 0)
  6334. (effects (font (size 1.27 1.27)) hide)
  6335. )
  6336. (property "LCSC" "C4190" (id 4) (at 130.81 133.35 0)
  6337. (effects (font (size 1.27 1.27)) hide)
  6338. )
  6339. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 130.81 133.35 0)
  6340. (effects (font (size 1.27 1.27)) hide)
  6341. )
  6342. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 130.81 133.35 0)
  6343. (effects (font (size 1.27 1.27)) hide)
  6344. )
  6345. (pin "1" (uuid eb3de0ad-58fd-4c79-81f7-33a544f94145))
  6346. (pin "2" (uuid 6a7410ac-6f2d-41b6-9ae5-119b71f0d7e5))
  6347. )
  6348. (symbol (lib_id "Device:R_Small") (at 133.35 133.35 180) (unit 1)
  6349. (in_bom yes) (on_board yes)
  6350. (uuid 00000000-0000-0000-0000-000062133004)
  6351. (property "Reference" "R16" (id 0) (at 138.3284 133.35 90))
  6352. (property "Value" "2.2k" (id 1) (at 136.017 133.35 90))
  6353. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 133.35 133.35 0)
  6354. (effects (font (size 1.27 1.27)) hide)
  6355. )
  6356. (property "Datasheet" "~" (id 3) (at 133.35 133.35 0)
  6357. (effects (font (size 1.27 1.27)) hide)
  6358. )
  6359. (property "LCSC" "C4190" (id 4) (at 133.35 133.35 0)
  6360. (effects (font (size 1.27 1.27)) hide)
  6361. )
  6362. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 133.35 133.35 0)
  6363. (effects (font (size 1.27 1.27)) hide)
  6364. )
  6365. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 133.35 133.35 0)
  6366. (effects (font (size 1.27 1.27)) hide)
  6367. )
  6368. (pin "1" (uuid 16301ee3-311c-4d9e-9a87-7c01dfd42108))
  6369. (pin "2" (uuid d78f26bb-d771-4fb4-adb7-2b335440ff09))
  6370. )
  6371. (symbol (lib_id "power:+3.3V") (at 132.08 128.27 0) (unit 1)
  6372. (in_bom yes) (on_board yes)
  6373. (uuid 00000000-0000-0000-0000-00006213300a)
  6374. (property "Reference" "#PWR0142" (id 0) (at 132.08 132.08 0)
  6375. (effects (font (size 1.27 1.27)) hide)
  6376. )
  6377. (property "Value" "+3.3V" (id 1) (at 132.461 123.8758 0))
  6378. (property "Footprint" "" (id 2) (at 132.08 128.27 0)
  6379. (effects (font (size 1.27 1.27)) hide)
  6380. )
  6381. (property "Datasheet" "" (id 3) (at 132.08 128.27 0)
  6382. (effects (font (size 1.27 1.27)) hide)
  6383. )
  6384. (pin "1" (uuid be8857bc-d4e7-4da2-b159-61059f2b533c))
  6385. )
  6386. (symbol (lib_id "Connector:TestPoint_Small") (at 57.15 234.95 0) (unit 1)
  6387. (in_bom yes) (on_board yes)
  6388. (uuid 00000000-0000-0000-0000-00006213725a)
  6389. (property "Reference" "TP12" (id 0) (at 58.3692 233.7816 0)
  6390. (effects (font (size 1.27 1.27)) (justify left))
  6391. )
  6392. (property "Value" "LED" (id 1) (at 58.3692 236.093 0)
  6393. (effects (font (size 1.27 1.27)) (justify left))
  6394. )
  6395. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 62.23 234.95 0)
  6396. (effects (font (size 1.27 1.27)) hide)
  6397. )
  6398. (property "Datasheet" "~" (id 3) (at 62.23 234.95 0)
  6399. (effects (font (size 1.27 1.27)) hide)
  6400. )
  6401. (pin "1" (uuid 5f10d7a0-4d70-4b91-97f5-8b7b5b68ee9e))
  6402. )
  6403. (symbol (lib_id "Device:C_Small") (at 181.61 165.1 0) (unit 1)
  6404. (in_bom yes) (on_board yes)
  6405. (uuid 00000000-0000-0000-0000-000062138f96)
  6406. (property "Reference" "C12" (id 0) (at 183.9468 163.9316 0)
  6407. (effects (font (size 1.27 1.27)) (justify left))
  6408. )
  6409. (property "Value" "0.1uF" (id 1) (at 183.9468 166.243 0)
  6410. (effects (font (size 1.27 1.27)) (justify left))
  6411. )
  6412. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 181.61 165.1 0)
  6413. (effects (font (size 1.27 1.27)) hide)
  6414. )
  6415. (property "Datasheet" "~" (id 3) (at 181.61 165.1 0)
  6416. (effects (font (size 1.27 1.27)) hide)
  6417. )
  6418. (property "LCSC" "C1591" (id 4) (at 181.61 165.1 0)
  6419. (effects (font (size 1.27 1.27)) hide)
  6420. )
  6421. (property "Digikey" "1276-1935-1-ND" (id 5) (at 181.61 165.1 0)
  6422. (effects (font (size 1.27 1.27)) hide)
  6423. )
  6424. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 181.61 165.1 0)
  6425. (effects (font (size 1.27 1.27)) hide)
  6426. )
  6427. (pin "1" (uuid 453fc808-4126-453d-85ae-1cdb419088b5))
  6428. (pin "2" (uuid eeebd06e-2360-41d5-bcbf-6a991cfb4216))
  6429. )
  6430. (symbol (lib_id "power:GNDA") (at 203.2 196.85 0) (unit 1)
  6431. (in_bom yes) (on_board yes)
  6432. (uuid 00000000-0000-0000-0000-00006213fbbb)
  6433. (property "Reference" "#PWR0121" (id 0) (at 203.2 203.2 0)
  6434. (effects (font (size 1.27 1.27)) hide)
  6435. )
  6436. (property "Value" "GNDA" (id 1) (at 203.327 201.2442 0))
  6437. (property "Footprint" "" (id 2) (at 203.2 196.85 0)
  6438. (effects (font (size 1.27 1.27)) hide)
  6439. )
  6440. (property "Datasheet" "" (id 3) (at 203.2 196.85 0)
  6441. (effects (font (size 1.27 1.27)) hide)
  6442. )
  6443. (pin "1" (uuid f5a63825-b5d0-4689-95d7-73382f27bff9))
  6444. )
  6445. (symbol (lib_id "Device:C_Small") (at 195.58 207.01 180) (unit 1)
  6446. (in_bom yes) (on_board yes)
  6447. (uuid 00000000-0000-0000-0000-00006213ff11)
  6448. (property "Reference" "C23" (id 0) (at 193.2432 208.1784 0)
  6449. (effects (font (size 1.27 1.27)) (justify left))
  6450. )
  6451. (property "Value" "0.1uF" (id 1) (at 193.2432 205.867 0)
  6452. (effects (font (size 1.27 1.27)) (justify left))
  6453. )
  6454. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 195.58 207.01 0)
  6455. (effects (font (size 1.27 1.27)) hide)
  6456. )
  6457. (property "Datasheet" "~" (id 3) (at 195.58 207.01 0)
  6458. (effects (font (size 1.27 1.27)) hide)
  6459. )
  6460. (property "LCSC" "C1591" (id 4) (at 195.58 207.01 0)
  6461. (effects (font (size 1.27 1.27)) hide)
  6462. )
  6463. (property "Digikey" "1276-1935-1-ND" (id 5) (at 195.58 207.01 0)
  6464. (effects (font (size 1.27 1.27)) hide)
  6465. )
  6466. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 195.58 207.01 0)
  6467. (effects (font (size 1.27 1.27)) hide)
  6468. )
  6469. (pin "1" (uuid 5c15ae8b-cb8e-4d01-9663-994d42e6e174))
  6470. (pin "2" (uuid 077de74b-17bd-4819-ab12-a3d892cfac38))
  6471. )
  6472. (symbol (lib_id "power:+3.3V") (at 21.59 187.96 0) (unit 1)
  6473. (in_bom yes) (on_board yes)
  6474. (uuid 00000000-0000-0000-0000-000062153ea9)
  6475. (property "Reference" "#PWR0114" (id 0) (at 21.59 191.77 0)
  6476. (effects (font (size 1.27 1.27)) hide)
  6477. )
  6478. (property "Value" "+3.3V" (id 1) (at 21.971 183.5658 0))
  6479. (property "Footprint" "" (id 2) (at 21.59 187.96 0)
  6480. (effects (font (size 1.27 1.27)) hide)
  6481. )
  6482. (property "Datasheet" "" (id 3) (at 21.59 187.96 0)
  6483. (effects (font (size 1.27 1.27)) hide)
  6484. )
  6485. (pin "1" (uuid 7cd55ac0-3e83-42d0-a2b4-7a85c4b8c98f))
  6486. )
  6487. (symbol (lib_id "power:GND") (at 27.94 201.93 0) (unit 1)
  6488. (in_bom yes) (on_board yes)
  6489. (uuid 00000000-0000-0000-0000-000062154495)
  6490. (property "Reference" "#PWR0115" (id 0) (at 27.94 208.28 0)
  6491. (effects (font (size 1.27 1.27)) hide)
  6492. )
  6493. (property "Value" "GND" (id 1) (at 28.067 206.3242 0))
  6494. (property "Footprint" "" (id 2) (at 27.94 201.93 0)
  6495. (effects (font (size 1.27 1.27)) hide)
  6496. )
  6497. (property "Datasheet" "" (id 3) (at 27.94 201.93 0)
  6498. (effects (font (size 1.27 1.27)) hide)
  6499. )
  6500. (pin "1" (uuid 1f62f3d5-1557-4819-ae45-dbb47075c859))
  6501. )
  6502. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 193.04 0) (unit 1)
  6503. (in_bom yes) (on_board yes)
  6504. (uuid 00000000-0000-0000-0000-000062179005)
  6505. (property "Reference" "TP9" (id 0) (at 82.4992 191.8716 0)
  6506. (effects (font (size 1.27 1.27)) (justify left))
  6507. )
  6508. (property "Value" "CSN" (id 1) (at 82.55 193.04 0)
  6509. (effects (font (size 1.27 1.27)) (justify left))
  6510. )
  6511. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 193.04 0)
  6512. (effects (font (size 1.27 1.27)) hide)
  6513. )
  6514. (property "Datasheet" "~" (id 3) (at 86.36 193.04 0)
  6515. (effects (font (size 1.27 1.27)) hide)
  6516. )
  6517. (pin "1" (uuid 96a4c85e-b3a9-4ac1-9741-4dab5e7ca8e1))
  6518. )
  6519. (symbol (lib_id "Device:R_Small") (at 199.39 124.46 90) (unit 1)
  6520. (in_bom yes) (on_board yes)
  6521. (uuid 00000000-0000-0000-0000-00006217c4cc)
  6522. (property "Reference" "R7" (id 0) (at 198.12 123.19 90)
  6523. (effects (font (size 1.27 1.27)) (justify left))
  6524. )
  6525. (property "Value" "10k" (id 1) (at 199.39 124.46 90)
  6526. (effects (font (size 0.7874 0.7874)))
  6527. )
  6528. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 124.46 0)
  6529. (effects (font (size 1.27 1.27)) hide)
  6530. )
  6531. (property "Datasheet" "~" (id 3) (at 199.39 124.46 0)
  6532. (effects (font (size 1.27 1.27)) hide)
  6533. )
  6534. (property "LCSC" "C98220" (id 4) (at 199.39 124.46 0)
  6535. (effects (font (size 1.27 1.27)) hide)
  6536. )
  6537. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 124.46 0)
  6538. (effects (font (size 1.27 1.27)) hide)
  6539. )
  6540. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 124.46 0)
  6541. (effects (font (size 1.27 1.27)) hide)
  6542. )
  6543. (pin "1" (uuid 1d127886-5828-493c-86e2-80fa6a7d352c))
  6544. (pin "2" (uuid ae6c9e6d-aafa-464f-a2bc-107cbe65ce24))
  6545. )
  6546. (symbol (lib_id "Device:R_Small") (at 173.99 204.47 270) (unit 1)
  6547. (in_bom yes) (on_board yes)
  6548. (uuid 00000000-0000-0000-0000-00006217ebc1)
  6549. (property "Reference" "R5" (id 0) (at 173.99 199.4916 90))
  6550. (property "Value" "100" (id 1) (at 173.99 201.803 90))
  6551. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 204.47 0)
  6552. (effects (font (size 1.27 1.27)) hide)
  6553. )
  6554. (property "Datasheet" "~" (id 3) (at 173.99 204.47 0)
  6555. (effects (font (size 1.27 1.27)) hide)
  6556. )
  6557. (property "LCSC" "C319953" (id 4) (at 173.99 204.47 0)
  6558. (effects (font (size 1.27 1.27)) hide)
  6559. )
  6560. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 204.47 0)
  6561. (effects (font (size 1.27 1.27)) hide)
  6562. )
  6563. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 204.47 0)
  6564. (effects (font (size 1.27 1.27)) hide)
  6565. )
  6566. (pin "1" (uuid 3fe9d150-a60b-45b7-ac68-9f7b4f02ad5a))
  6567. (pin "2" (uuid b194a5f3-2ea8-4b52-992c-b4253723fa8f))
  6568. )
  6569. (symbol (lib_id "Device:R_Small") (at 173.99 209.55 90) (unit 1)
  6570. (in_bom yes) (on_board yes)
  6571. (uuid 00000000-0000-0000-0000-00006217f6bc)
  6572. (property "Reference" "R6" (id 0) (at 173.99 214.63 90))
  6573. (property "Value" "100" (id 1) (at 173.99 212.09 90))
  6574. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 173.99 209.55 0)
  6575. (effects (font (size 1.27 1.27)) hide)
  6576. )
  6577. (property "Datasheet" "~" (id 3) (at 173.99 209.55 0)
  6578. (effects (font (size 1.27 1.27)) hide)
  6579. )
  6580. (property "LCSC" "C319953" (id 4) (at 173.99 209.55 0)
  6581. (effects (font (size 1.27 1.27)) hide)
  6582. )
  6583. (property "Digikey" "RMCF0603FT100RCT-ND" (id 5) (at 173.99 209.55 0)
  6584. (effects (font (size 1.27 1.27)) hide)
  6585. )
  6586. (property "Mouser" "652-CR0603FX-1000ELF" (id 6) (at 173.99 209.55 0)
  6587. (effects (font (size 1.27 1.27)) hide)
  6588. )
  6589. (pin "1" (uuid 8cab69cb-5e51-457c-a7d0-f2fd58e50eb1))
  6590. (pin "2" (uuid c7be23ee-d023-4c4a-b6e8-adaba11d9f62))
  6591. )
  6592. (symbol (lib_id "Device:R_Small") (at 199.39 127 90) (unit 1)
  6593. (in_bom yes) (on_board yes)
  6594. (uuid 00000000-0000-0000-0000-000062180f46)
  6595. (property "Reference" "R8" (id 0) (at 198.12 125.73 90)
  6596. (effects (font (size 1.27 1.27)) (justify left))
  6597. )
  6598. (property "Value" "10k" (id 1) (at 199.39 127 90)
  6599. (effects (font (size 0.7874 0.7874)))
  6600. )
  6601. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 127 0)
  6602. (effects (font (size 1.27 1.27)) hide)
  6603. )
  6604. (property "Datasheet" "~" (id 3) (at 199.39 127 0)
  6605. (effects (font (size 1.27 1.27)) hide)
  6606. )
  6607. (property "LCSC" "C98220" (id 4) (at 199.39 127 0)
  6608. (effects (font (size 1.27 1.27)) hide)
  6609. )
  6610. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 127 0)
  6611. (effects (font (size 1.27 1.27)) hide)
  6612. )
  6613. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 127 0)
  6614. (effects (font (size 1.27 1.27)) hide)
  6615. )
  6616. (pin "1" (uuid 689eb1a4-2d7a-4d99-96ef-c4384e731194))
  6617. (pin "2" (uuid 0d5c8553-0a1e-48c9-8ac0-a164fada8c9a))
  6618. )
  6619. (symbol (lib_id "Device:R_Small") (at 199.39 129.54 90) (unit 1)
  6620. (in_bom yes) (on_board yes)
  6621. (uuid 00000000-0000-0000-0000-0000621810c8)
  6622. (property "Reference" "R9" (id 0) (at 198.12 128.27 90)
  6623. (effects (font (size 1.27 1.27)) (justify left))
  6624. )
  6625. (property "Value" "10k" (id 1) (at 199.39 129.54 90)
  6626. (effects (font (size 0.7874 0.7874)))
  6627. )
  6628. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 129.54 0)
  6629. (effects (font (size 1.27 1.27)) hide)
  6630. )
  6631. (property "Datasheet" "~" (id 3) (at 199.39 129.54 0)
  6632. (effects (font (size 1.27 1.27)) hide)
  6633. )
  6634. (property "LCSC" "C98220" (id 4) (at 199.39 129.54 0)
  6635. (effects (font (size 1.27 1.27)) hide)
  6636. )
  6637. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 129.54 0)
  6638. (effects (font (size 1.27 1.27)) hide)
  6639. )
  6640. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 129.54 0)
  6641. (effects (font (size 1.27 1.27)) hide)
  6642. )
  6643. (pin "1" (uuid 6bef994a-775b-4d4f-bf69-479cd86544c8))
  6644. (pin "2" (uuid 53be0f6b-4e65-4ee5-8c8e-608ec0e40613))
  6645. )
  6646. (symbol (lib_id "Device:R_Small") (at 199.39 132.08 90) (unit 1)
  6647. (in_bom yes) (on_board yes)
  6648. (uuid 00000000-0000-0000-0000-000062181360)
  6649. (property "Reference" "R10" (id 0) (at 198.12 130.81 90)
  6650. (effects (font (size 1.27 1.27)) (justify left))
  6651. )
  6652. (property "Value" "10k" (id 1) (at 199.39 132.08 90)
  6653. (effects (font (size 0.7874 0.7874)))
  6654. )
  6655. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 132.08 0)
  6656. (effects (font (size 1.27 1.27)) hide)
  6657. )
  6658. (property "Datasheet" "~" (id 3) (at 199.39 132.08 0)
  6659. (effects (font (size 1.27 1.27)) hide)
  6660. )
  6661. (property "LCSC" "C98220" (id 4) (at 199.39 132.08 0)
  6662. (effects (font (size 1.27 1.27)) hide)
  6663. )
  6664. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 132.08 0)
  6665. (effects (font (size 1.27 1.27)) hide)
  6666. )
  6667. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 132.08 0)
  6668. (effects (font (size 1.27 1.27)) hide)
  6669. )
  6670. (pin "1" (uuid 241e061c-fed4-4dff-959b-98da9e878eee))
  6671. (pin "2" (uuid 2e877dbb-6832-4630-bc2c-069ff902df6b))
  6672. )
  6673. (symbol (lib_id "Device:R_Small") (at 199.39 134.62 90) (unit 1)
  6674. (in_bom yes) (on_board yes)
  6675. (uuid 00000000-0000-0000-0000-0000621814c1)
  6676. (property "Reference" "R11" (id 0) (at 198.12 133.35 90)
  6677. (effects (font (size 1.27 1.27)) (justify left))
  6678. )
  6679. (property "Value" "10k" (id 1) (at 199.39 134.62 90)
  6680. (effects (font (size 0.7874 0.7874)))
  6681. )
  6682. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 134.62 0)
  6683. (effects (font (size 1.27 1.27)) hide)
  6684. )
  6685. (property "Datasheet" "~" (id 3) (at 199.39 134.62 0)
  6686. (effects (font (size 1.27 1.27)) hide)
  6687. )
  6688. (property "LCSC" "C98220" (id 4) (at 199.39 134.62 0)
  6689. (effects (font (size 1.27 1.27)) hide)
  6690. )
  6691. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 134.62 0)
  6692. (effects (font (size 1.27 1.27)) hide)
  6693. )
  6694. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 134.62 0)
  6695. (effects (font (size 1.27 1.27)) hide)
  6696. )
  6697. (pin "1" (uuid 2974720c-4a0b-45fd-835c-880391f2f884))
  6698. (pin "2" (uuid 58acf8ca-51b2-4de5-ae93-e733a49e6fe1))
  6699. )
  6700. (symbol (lib_id "Device:R_Small") (at 199.39 137.16 90) (unit 1)
  6701. (in_bom yes) (on_board yes)
  6702. (uuid 00000000-0000-0000-0000-00006218171e)
  6703. (property "Reference" "R12" (id 0) (at 198.12 135.89 90)
  6704. (effects (font (size 1.27 1.27)) (justify left))
  6705. )
  6706. (property "Value" "10k" (id 1) (at 199.39 137.16 90)
  6707. (effects (font (size 0.7874 0.7874)))
  6708. )
  6709. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 199.39 137.16 0)
  6710. (effects (font (size 1.27 1.27)) hide)
  6711. )
  6712. (property "Datasheet" "~" (id 3) (at 199.39 137.16 0)
  6713. (effects (font (size 1.27 1.27)) hide)
  6714. )
  6715. (property "LCSC" "C98220" (id 4) (at 199.39 137.16 0)
  6716. (effects (font (size 1.27 1.27)) hide)
  6717. )
  6718. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 199.39 137.16 0)
  6719. (effects (font (size 1.27 1.27)) hide)
  6720. )
  6721. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 199.39 137.16 0)
  6722. (effects (font (size 1.27 1.27)) hide)
  6723. )
  6724. (pin "1" (uuid 0d42402b-f0df-4e33-a8b7-c0e62c06aa04))
  6725. (pin "2" (uuid a3e3c332-5caa-4e5e-b7d6-3a89be67903f))
  6726. )
  6727. (symbol (lib_id "power:GND") (at 207.01 142.24 0) (unit 1)
  6728. (in_bom yes) (on_board yes)
  6729. (uuid 00000000-0000-0000-0000-000062182795)
  6730. (property "Reference" "#PWR0135" (id 0) (at 207.01 148.59 0)
  6731. (effects (font (size 1.27 1.27)) hide)
  6732. )
  6733. (property "Value" "GND" (id 1) (at 207.137 146.6342 0))
  6734. (property "Footprint" "" (id 2) (at 207.01 142.24 0)
  6735. (effects (font (size 1.27 1.27)) hide)
  6736. )
  6737. (property "Datasheet" "" (id 3) (at 207.01 142.24 0)
  6738. (effects (font (size 1.27 1.27)) hide)
  6739. )
  6740. (pin "1" (uuid 26bc4cd1-fdf8-403d-b694-724b6695b14c))
  6741. )
  6742. (symbol (lib_id "power:GNDA") (at 233.68 196.85 0) (unit 1)
  6743. (in_bom yes) (on_board yes)
  6744. (uuid 00000000-0000-0000-0000-0000621b25e8)
  6745. (property "Reference" "#PWR0122" (id 0) (at 233.68 203.2 0)
  6746. (effects (font (size 1.27 1.27)) hide)
  6747. )
  6748. (property "Value" "GNDA" (id 1) (at 233.807 201.2442 0))
  6749. (property "Footprint" "" (id 2) (at 233.68 196.85 0)
  6750. (effects (font (size 1.27 1.27)) hide)
  6751. )
  6752. (property "Datasheet" "" (id 3) (at 233.68 196.85 0)
  6753. (effects (font (size 1.27 1.27)) hide)
  6754. )
  6755. (pin "1" (uuid d018d709-67d3-4ad7-be8b-17913be602e2))
  6756. )
  6757. (symbol (lib_id "Device:R_Small") (at 241.3 128.27 0) (unit 1)
  6758. (in_bom yes) (on_board yes)
  6759. (uuid 00000000-0000-0000-0000-0000621b8442)
  6760. (property "Reference" "R17" (id 0) (at 236.3216 128.27 90))
  6761. (property "Value" "10k" (id 1) (at 238.633 128.27 90))
  6762. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 241.3 128.27 0)
  6763. (effects (font (size 1.27 1.27)) hide)
  6764. )
  6765. (property "Datasheet" "~" (id 3) (at 241.3 128.27 0)
  6766. (effects (font (size 1.27 1.27)) hide)
  6767. )
  6768. (property "LCSC" "C98220" (id 4) (at 241.3 128.27 0)
  6769. (effects (font (size 1.27 1.27)) hide)
  6770. )
  6771. (property "Digikey" "RMCF0603JT10K0CT-ND" (id 5) (at 241.3 128.27 0)
  6772. (effects (font (size 1.27 1.27)) hide)
  6773. )
  6774. (property "Mouser" "652-CR0603FX-1002ELF" (id 6) (at 241.3 128.27 0)
  6775. (effects (font (size 1.27 1.27)) hide)
  6776. )
  6777. (pin "1" (uuid 4d0ad09d-f9da-4c89-82bd-6ce3882f7602))
  6778. (pin "2" (uuid 095cce66-fe1f-4d0d-8d34-b30a0d2d3fc1))
  6779. )
  6780. (symbol (lib_id "power:+3.3V") (at 241.3 123.19 0) (unit 1)
  6781. (in_bom yes) (on_board yes)
  6782. (uuid 00000000-0000-0000-0000-0000621b8449)
  6783. (property "Reference" "#PWR01" (id 0) (at 241.3 127 0)
  6784. (effects (font (size 1.27 1.27)) hide)
  6785. )
  6786. (property "Value" "+3.3V" (id 1) (at 241.681 118.7958 0))
  6787. (property "Footprint" "" (id 2) (at 241.3 123.19 0)
  6788. (effects (font (size 1.27 1.27)) hide)
  6789. )
  6790. (property "Datasheet" "" (id 3) (at 241.3 123.19 0)
  6791. (effects (font (size 1.27 1.27)) hide)
  6792. )
  6793. (pin "1" (uuid b8351dea-9937-4b77-b800-d92809167b1c))
  6794. )
  6795. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 60.96 0) (unit 1)
  6796. (in_bom yes) (on_board yes)
  6797. (uuid 00000000-0000-0000-0000-0000621b8454)
  6798. (property "Reference" "TP13" (id 0) (at 173.9392 59.7916 0)
  6799. (effects (font (size 1.27 1.27)) (justify left))
  6800. )
  6801. (property "Value" "EN" (id 1) (at 173.99 60.96 0)
  6802. (effects (font (size 1.27 1.27)) (justify left))
  6803. )
  6804. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 60.96 0)
  6805. (effects (font (size 1.27 1.27)) hide)
  6806. )
  6807. (property "Datasheet" "~" (id 3) (at 177.8 60.96 0)
  6808. (effects (font (size 1.27 1.27)) hide)
  6809. )
  6810. (pin "1" (uuid 07e2d2d9-cc28-4fde-9a47-6afb5023973f))
  6811. )
  6812. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 195.58 0) (unit 1)
  6813. (in_bom yes) (on_board yes)
  6814. (uuid 00000000-0000-0000-0000-0000621b8956)
  6815. (property "Reference" "TP10" (id 0) (at 82.4992 194.4116 0)
  6816. (effects (font (size 1.27 1.27)) (justify left))
  6817. )
  6818. (property "Value" "CLK" (id 1) (at 82.55 195.58 0)
  6819. (effects (font (size 1.27 1.27)) (justify left))
  6820. )
  6821. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 195.58 0)
  6822. (effects (font (size 1.27 1.27)) hide)
  6823. )
  6824. (property "Datasheet" "~" (id 3) (at 86.36 195.58 0)
  6825. (effects (font (size 1.27 1.27)) hide)
  6826. )
  6827. (pin "1" (uuid e0450c32-6c7d-418d-bc0f-aa7cbff84d35))
  6828. )
  6829. (symbol (lib_id "power:GNDA") (at 214.63 209.55 0) (unit 1)
  6830. (in_bom yes) (on_board yes)
  6831. (uuid 00000000-0000-0000-0000-0000621d4025)
  6832. (property "Reference" "#PWR0123" (id 0) (at 214.63 215.9 0)
  6833. (effects (font (size 1.27 1.27)) hide)
  6834. )
  6835. (property "Value" "GNDA" (id 1) (at 214.757 213.9442 0))
  6836. (property "Footprint" "" (id 2) (at 214.63 209.55 0)
  6837. (effects (font (size 1.27 1.27)) hide)
  6838. )
  6839. (property "Datasheet" "" (id 3) (at 214.63 209.55 0)
  6840. (effects (font (size 1.27 1.27)) hide)
  6841. )
  6842. (pin "1" (uuid 3e803eba-8186-424f-b068-34ca56535b22))
  6843. )
  6844. (symbol (lib_id "power:GND") (at 229.87 209.55 0) (unit 1)
  6845. (in_bom yes) (on_board yes)
  6846. (uuid 00000000-0000-0000-0000-0000621d490e)
  6847. (property "Reference" "#PWR0124" (id 0) (at 229.87 215.9 0)
  6848. (effects (font (size 1.27 1.27)) hide)
  6849. )
  6850. (property "Value" "GND" (id 1) (at 229.997 213.9442 0))
  6851. (property "Footprint" "" (id 2) (at 229.87 209.55 0)
  6852. (effects (font (size 1.27 1.27)) hide)
  6853. )
  6854. (property "Datasheet" "" (id 3) (at 229.87 209.55 0)
  6855. (effects (font (size 1.27 1.27)) hide)
  6856. )
  6857. (pin "1" (uuid af13bbe6-4b76-49e2-b43c-d33a21379d7a))
  6858. )
  6859. (symbol (lib_id "Connector:TestPoint_Small") (at 81.28 198.12 0) (unit 1)
  6860. (in_bom yes) (on_board yes)
  6861. (uuid 00000000-0000-0000-0000-0000621d8fb7)
  6862. (property "Reference" "TP11" (id 0) (at 82.4992 196.9516 0)
  6863. (effects (font (size 1.27 1.27)) (justify left))
  6864. )
  6865. (property "Value" "DO" (id 1) (at 82.55 198.12 0)
  6866. (effects (font (size 1.27 1.27)) (justify left))
  6867. )
  6868. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 86.36 198.12 0)
  6869. (effects (font (size 1.27 1.27)) hide)
  6870. )
  6871. (property "Datasheet" "~" (id 3) (at 86.36 198.12 0)
  6872. (effects (font (size 1.27 1.27)) hide)
  6873. )
  6874. (pin "1" (uuid bcf55e80-256f-4b8f-baf1-67feda44bef2))
  6875. )
  6876. (symbol (lib_id "power:GNDA") (at 240.03 180.34 0) (unit 1)
  6877. (in_bom yes) (on_board yes)
  6878. (uuid 00000000-0000-0000-0000-0000621f9c4b)
  6879. (property "Reference" "#PWR0125" (id 0) (at 240.03 186.69 0)
  6880. (effects (font (size 1.27 1.27)) hide)
  6881. )
  6882. (property "Value" "GNDA" (id 1) (at 240.157 184.7342 0))
  6883. (property "Footprint" "" (id 2) (at 240.03 180.34 0)
  6884. (effects (font (size 1.27 1.27)) hide)
  6885. )
  6886. (property "Datasheet" "" (id 3) (at 240.03 180.34 0)
  6887. (effects (font (size 1.27 1.27)) hide)
  6888. )
  6889. (pin "1" (uuid 358b5a19-1161-43b1-8fe8-76dfffdf809b))
  6890. )
  6891. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 167.64 0) (unit 1)
  6892. (in_bom yes) (on_board yes)
  6893. (uuid 00000000-0000-0000-0000-000062263aa7)
  6894. (property "Reference" "TP6" (id 0) (at 380.9492 166.4716 0)
  6895. (effects (font (size 1.27 1.27)) (justify left))
  6896. )
  6897. (property "Value" "U" (id 1) (at 381 167.64 0)
  6898. (effects (font (size 1.27 1.27)) (justify left))
  6899. )
  6900. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 167.64 0)
  6901. (effects (font (size 1.27 1.27)) hide)
  6902. )
  6903. (property "Datasheet" "~" (id 3) (at 384.81 167.64 0)
  6904. (effects (font (size 1.27 1.27)) hide)
  6905. )
  6906. (pin "1" (uuid 7221f931-dfac-4f0d-bd11-296f4aa12b10))
  6907. )
  6908. (symbol (lib_id "power:GND") (at 241.3 140.97 0) (unit 1)
  6909. (in_bom yes) (on_board yes)
  6910. (uuid 00000000-0000-0000-0000-000062269e5e)
  6911. (property "Reference" "#PWR02" (id 0) (at 241.3 147.32 0)
  6912. (effects (font (size 1.27 1.27)) hide)
  6913. )
  6914. (property "Value" "GND" (id 1) (at 241.427 145.3642 0))
  6915. (property "Footprint" "" (id 2) (at 241.3 140.97 0)
  6916. (effects (font (size 1.27 1.27)) hide)
  6917. )
  6918. (property "Datasheet" "" (id 3) (at 241.3 140.97 0)
  6919. (effects (font (size 1.27 1.27)) hide)
  6920. )
  6921. (pin "1" (uuid 198dd92f-055f-4b28-85e1-2a45cc19fbc5))
  6922. )
  6923. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 170.18 0) (unit 1)
  6924. (in_bom yes) (on_board yes)
  6925. (uuid 00000000-0000-0000-0000-0000622a8e6d)
  6926. (property "Reference" "TP7" (id 0) (at 380.9492 169.0116 0)
  6927. (effects (font (size 1.27 1.27)) (justify left))
  6928. )
  6929. (property "Value" "V" (id 1) (at 381 170.18 0)
  6930. (effects (font (size 1.27 1.27)) (justify left))
  6931. )
  6932. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 170.18 0)
  6933. (effects (font (size 1.27 1.27)) hide)
  6934. )
  6935. (property "Datasheet" "~" (id 3) (at 384.81 170.18 0)
  6936. (effects (font (size 1.27 1.27)) hide)
  6937. )
  6938. (pin "1" (uuid a15af6c7-e3a9-47d1-99d9-d37c012c0b96))
  6939. )
  6940. (symbol (lib_id "Connector:TestPoint_Small") (at 379.73 172.72 0) (unit 1)
  6941. (in_bom yes) (on_board yes)
  6942. (uuid 00000000-0000-0000-0000-0000622cad46)
  6943. (property "Reference" "TP8" (id 0) (at 380.9492 171.5516 0)
  6944. (effects (font (size 1.27 1.27)) (justify left))
  6945. )
  6946. (property "Value" "W" (id 1) (at 381 172.72 0)
  6947. (effects (font (size 1.27 1.27)) (justify left))
  6948. )
  6949. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 384.81 172.72 0)
  6950. (effects (font (size 1.27 1.27)) hide)
  6951. )
  6952. (property "Datasheet" "~" (id 3) (at 384.81 172.72 0)
  6953. (effects (font (size 1.27 1.27)) hide)
  6954. )
  6955. (pin "1" (uuid ed030602-ad33-43c6-8797-055c5097d7b0))
  6956. )
  6957. (symbol (lib_id "Connector_Generic:Conn_01x08") (at 251.46 81.28 0) (unit 1)
  6958. (in_bom yes) (on_board yes)
  6959. (uuid 00000000-0000-0000-0000-0000622dfef9)
  6960. (property "Reference" "J3" (id 0) (at 253.492 81.4832 0)
  6961. (effects (font (size 1.27 1.27)) (justify left))
  6962. )
  6963. (property "Value" "LCD" (id 1) (at 253.492 83.7946 0)
  6964. (effects (font (size 1.27 1.27)) (justify left))
  6965. )
  6966. (property "Footprint" "SolderPads:SolderPads_2mm_8" (id 2) (at 251.46 81.28 0)
  6967. (effects (font (size 1.27 1.27)) hide)
  6968. )
  6969. (property "Datasheet" "~" (id 3) (at 251.46 81.28 0)
  6970. (effects (font (size 1.27 1.27)) hide)
  6971. )
  6972. (pin "1" (uuid 521b2398-56fa-4338-8610-870ca4d61557))
  6973. (pin "2" (uuid a201db9e-baf7-4871-be5a-ff795414340c))
  6974. (pin "3" (uuid 17e880b1-271c-4cec-8d9b-beeeb30a1b89))
  6975. (pin "4" (uuid 1a87a7f3-d023-4106-84ee-f187c706415f))
  6976. (pin "5" (uuid caa42d03-8d73-4d57-b233-e69949da956a))
  6977. (pin "6" (uuid e72203a7-4fd3-4622-bb9c-8600bfabdd8f))
  6978. (pin "7" (uuid 35f3c689-1acd-4f9d-8a20-40aa0367785d))
  6979. (pin "8" (uuid 077d5522-c76b-482a-bb37-34c61cd35bac))
  6980. )
  6981. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 69.85 0) (mirror y) (unit 1)
  6982. (in_bom yes) (on_board yes)
  6983. (uuid 00000000-0000-0000-0000-0000622e5052)
  6984. (property "Reference" "Q2" (id 0) (at 172.9486 68.6816 0)
  6985. (effects (font (size 1.27 1.27)) (justify left))
  6986. )
  6987. (property "Value" "UMH3N" (id 1) (at 172.9486 70.993 0)
  6988. (effects (font (size 1.27 1.27)) (justify left))
  6989. )
  6990. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 81.026 0)
  6991. (effects (font (size 1.27 1.27)) hide)
  6992. )
  6993. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 69.85 0)
  6994. (effects (font (size 1.27 1.27)) hide)
  6995. )
  6996. (property "LCSC" "C62892" (id 4) (at 180.34 69.85 0)
  6997. (effects (font (size 1.27 1.27)) hide)
  6998. )
  6999. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 69.85 0)
  7000. (effects (font (size 1.27 1.27)) hide)
  7001. )
  7002. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 69.85 0)
  7003. (effects (font (size 1.27 1.27)) hide)
  7004. )
  7005. (pin "1" (uuid 6691ca19-6715-4a80-847e-ca117309ce61))
  7006. (pin "2" (uuid 76cae1b5-a024-4bde-989b-5ff609e0e526))
  7007. (pin "6" (uuid 0b81ceb9-a3fb-4c04-8c6e-575ef33f6392))
  7008. (pin "3" (uuid d6fc91b9-3675-4ade-9918-6116602d2cdf))
  7009. (pin "4" (uuid ffb75972-f30a-4fb1-8f00-ff2653dbf2db))
  7010. (pin "5" (uuid b02f9511-2061-45c8-8bd6-ba849d7a0eeb))
  7011. )
  7012. (symbol (lib_id "Transistor_BJT:UMH3N") (at 180.34 85.09 180) (unit 2)
  7013. (in_bom yes) (on_board yes)
  7014. (uuid 00000000-0000-0000-0000-0000622e5b70)
  7015. (property "Reference" "Q2" (id 0) (at 172.9486 83.9216 0)
  7016. (effects (font (size 1.27 1.27)) (justify left))
  7017. )
  7018. (property "Value" "UMH3N" (id 1) (at 172.9486 86.233 0)
  7019. (effects (font (size 1.27 1.27)) (justify left))
  7020. )
  7021. (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 180.213 73.914 0)
  7022. (effects (font (size 1.27 1.27)) hide)
  7023. )
  7024. (property "Datasheet" "http://rohmfs.rohm.com/en/products/databook/datasheet/discrete/transistor/digital/emh3t2r-e.pdf" (id 3) (at 176.53 85.09 0)
  7025. (effects (font (size 1.27 1.27)) hide)
  7026. )
  7027. (property "LCSC" "C62892" (id 4) (at 180.34 85.09 0)
  7028. (effects (font (size 1.27 1.27)) hide)
  7029. )
  7030. (property "Digikey" "UMH3NTNCT-ND" (id 5) (at 180.34 85.09 0)
  7031. (effects (font (size 1.27 1.27)) hide)
  7032. )
  7033. (property "Mouser" "755-UMH3NTN" (id 6) (at 180.34 85.09 0)
  7034. (effects (font (size 1.27 1.27)) hide)
  7035. )
  7036. (pin "1" (uuid c1bec82d-bcfc-4ffd-9b29-aad0bc15267a))
  7037. (pin "2" (uuid b80cc904-f790-42df-b2f6-ef82a594cbe4))
  7038. (pin "6" (uuid 109cb803-fb15-43a3-a52f-3a5ae2a5aa7b))
  7039. (pin "3" (uuid 8760d1f3-4419-461e-b7ab-5248c2bbbb92))
  7040. (pin "4" (uuid d1bfa2a4-7f52-4f58-86f4-99ff41468384))
  7041. (pin "5" (uuid 33b75fa6-e454-4222-af75-e36476064ee7))
  7042. )
  7043. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 133.35 0) (unit 1)
  7044. (in_bom yes) (on_board yes)
  7045. (uuid 00000000-0000-0000-0000-0000622f4012)
  7046. (property "Reference" "TP4" (id 0) (at 157.4292 132.1816 0)
  7047. (effects (font (size 1.27 1.27)) (justify left))
  7048. )
  7049. (property "Value" "SDA" (id 1) (at 157.48 133.35 0)
  7050. (effects (font (size 1.27 1.27)) (justify left))
  7051. )
  7052. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 133.35 0)
  7053. (effects (font (size 1.27 1.27)) hide)
  7054. )
  7055. (property "Datasheet" "~" (id 3) (at 161.29 133.35 0)
  7056. (effects (font (size 1.27 1.27)) hide)
  7057. )
  7058. (pin "1" (uuid a314d631-cc6f-4d86-afb5-c4e22d9ee906))
  7059. )
  7060. (symbol (lib_id "no_pin:no_pin") (at 182.88 33.02 0) (unit 1)
  7061. (in_bom yes) (on_board yes)
  7062. (uuid 00000000-0000-0000-0000-000062311cef)
  7063. (property "Reference" "Z6" (id 0) (at 182.88 25.7302 0)
  7064. (effects (font (size 1.524 1.524)))
  7065. )
  7066. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 182.88 28.4226 0)
  7067. (effects (font (size 1.524 1.524)))
  7068. )
  7069. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 182.88 33.02 0)
  7070. (effects (font (size 1.524 1.524)) hide)
  7071. )
  7072. (property "Datasheet" "" (id 3) (at 182.88 33.02 0)
  7073. (effects (font (size 1.524 1.524)) hide)
  7074. )
  7075. (property "Note" "Screw: M1.6x3 (countersunk)" (id 4) (at 182.88 33.02 0)
  7076. (effects (font (size 1.27 1.27)) hide)
  7077. )
  7078. )
  7079. (symbol (lib_id "no_pin:no_pin") (at 204.47 33.02 0) (unit 1)
  7080. (in_bom yes) (on_board yes)
  7081. (uuid 00000000-0000-0000-0000-000062314e0d)
  7082. (property "Reference" "Z7" (id 0) (at 204.47 25.7302 0)
  7083. (effects (font (size 1.524 1.524)))
  7084. )
  7085. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 204.47 28.4226 0)
  7086. (effects (font (size 1.524 1.524)))
  7087. )
  7088. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 204.47 33.02 0)
  7089. (effects (font (size 1.524 1.524)) hide)
  7090. )
  7091. (property "Datasheet" "" (id 3) (at 204.47 33.02 0)
  7092. (effects (font (size 1.524 1.524)) hide)
  7093. )
  7094. (property "Note" "Screw: M1.6x3 (countersunk)" (id 4) (at 204.47 33.02 0)
  7095. (effects (font (size 1.27 1.27)) hide)
  7096. )
  7097. )
  7098. (symbol (lib_id "Connector:TestPoint_Small") (at 156.21 139.7 0) (unit 1)
  7099. (in_bom yes) (on_board yes)
  7100. (uuid 00000000-0000-0000-0000-0000623162cf)
  7101. (property "Reference" "TP5" (id 0) (at 157.4292 138.5316 0)
  7102. (effects (font (size 1.27 1.27)) (justify left))
  7103. )
  7104. (property "Value" "SCL" (id 1) (at 157.48 139.7 0)
  7105. (effects (font (size 1.27 1.27)) (justify left))
  7106. )
  7107. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 161.29 139.7 0)
  7108. (effects (font (size 1.27 1.27)) hide)
  7109. )
  7110. (property "Datasheet" "~" (id 3) (at 161.29 139.7 0)
  7111. (effects (font (size 1.27 1.27)) hide)
  7112. )
  7113. (pin "1" (uuid 8b08f3ad-d9c5-4621-9d11-9579e8e0a6d2))
  7114. )
  7115. (symbol (lib_id "Connector:TestPoint_Small") (at 172.72 95.25 0) (unit 1)
  7116. (in_bom yes) (on_board yes)
  7117. (uuid 00000000-0000-0000-0000-000062317868)
  7118. (property "Reference" "TP14" (id 0) (at 173.9392 94.0816 0)
  7119. (effects (font (size 1.27 1.27)) (justify left))
  7120. )
  7121. (property "Value" "BOOT" (id 1) (at 173.99 95.25 0)
  7122. (effects (font (size 1.27 1.27)) (justify left))
  7123. )
  7124. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 177.8 95.25 0)
  7125. (effects (font (size 1.27 1.27)) hide)
  7126. )
  7127. (property "Datasheet" "~" (id 3) (at 177.8 95.25 0)
  7128. (effects (font (size 1.27 1.27)) hide)
  7129. )
  7130. (pin "1" (uuid ba51139c-0c14-4520-b3c5-4cd60fc7a73f))
  7131. )
  7132. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 135.89 44.45 0) (unit 1)
  7133. (in_bom yes) (on_board yes)
  7134. (uuid 00000000-0000-0000-0000-0000623284d1)
  7135. (property "Reference" "H8" (id 0) (at 134.62 38.1 0)
  7136. (effects (font (size 1.27 1.27)) (justify left))
  7137. )
  7138. (property "Value" "AlignmentHole" (id 1) (at 134.62 39.37 0)
  7139. (effects (font (size 1.27 1.27)) (justify left))
  7140. )
  7141. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 135.89 44.45 0)
  7142. (effects (font (size 1.27 1.27)) hide)
  7143. )
  7144. (property "Datasheet" "~" (id 3) (at 135.89 44.45 0)
  7145. (effects (font (size 1.27 1.27)) hide)
  7146. )
  7147. (property "Note" "" (id 4) (at 135.89 44.45 0)
  7148. (effects (font (size 1.27 1.27)) hide)
  7149. )
  7150. (pin "1" (uuid d8058f93-8b91-4e0b-826a-2f09b4026bee))
  7151. )
  7152. (symbol (lib_id "Mechanical:MountingHole_Pad") (at 147.32 44.45 0) (unit 1)
  7153. (in_bom yes) (on_board yes)
  7154. (uuid 00000000-0000-0000-0000-0000623284d9)
  7155. (property "Reference" "H9" (id 0) (at 146.05 38.1 0)
  7156. (effects (font (size 1.27 1.27)) (justify left))
  7157. )
  7158. (property "Value" "AlignmentHole" (id 1) (at 146.05 39.37 0)
  7159. (effects (font (size 1.27 1.27)) (justify left))
  7160. )
  7161. (property "Footprint" "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual" (id 2) (at 147.32 44.45 0)
  7162. (effects (font (size 1.27 1.27)) hide)
  7163. )
  7164. (property "Datasheet" "~" (id 3) (at 147.32 44.45 0)
  7165. (effects (font (size 1.27 1.27)) hide)
  7166. )
  7167. (property "Note" "" (id 4) (at 147.32 44.45 0)
  7168. (effects (font (size 1.27 1.27)) hide)
  7169. )
  7170. (pin "1" (uuid da4b4b3b-963a-4206-8440-61248fca61a5))
  7171. )
  7172. (symbol (lib_id "no_pin:no_pin") (at 226.06 33.02 0) (unit 1)
  7173. (in_bom yes) (on_board yes)
  7174. (uuid 00000000-0000-0000-0000-00006233c06f)
  7175. (property "Reference" "Z8" (id 0) (at 226.06 25.7302 0)
  7176. (effects (font (size 1.524 1.524)))
  7177. )
  7178. (property "Value" "RotorScrew (BOM-only)" (id 1) (at 226.06 28.4226 0)
  7179. (effects (font (size 1.524 1.524)))
  7180. )
  7181. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 226.06 33.02 0)
  7182. (effects (font (size 1.524 1.524)) hide)
  7183. )
  7184. (property "Datasheet" "" (id 3) (at 226.06 33.02 0)
  7185. (effects (font (size 1.524 1.524)) hide)
  7186. )
  7187. (property "Note" "Screw: M1.6x3 (countersunk)" (id 4) (at 226.06 33.02 0)
  7188. (effects (font (size 1.27 1.27)) hide)
  7189. )
  7190. )
  7191. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 40.64 0) (unit 1)
  7192. (in_bom yes) (on_board yes)
  7193. (uuid 00000000-0000-0000-0000-000062379e81)
  7194. (property "Reference" "TP15" (id 0) (at 402.5392 39.4716 0)
  7195. (effects (font (size 1.27 1.27)) (justify left))
  7196. )
  7197. (property "Value" "TX" (id 1) (at 402.59 40.64 0)
  7198. (effects (font (size 1.27 1.27)) (justify left))
  7199. )
  7200. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 40.64 0)
  7201. (effects (font (size 1.27 1.27)) hide)
  7202. )
  7203. (property "Datasheet" "~" (id 3) (at 406.4 40.64 0)
  7204. (effects (font (size 1.27 1.27)) hide)
  7205. )
  7206. (pin "1" (uuid d88397a1-27ae-408d-87ab-cc3630533b80))
  7207. )
  7208. (symbol (lib_id "Device:C_Small") (at 326.39 30.48 0) (unit 1)
  7209. (in_bom yes) (on_board yes)
  7210. (uuid 00000000-0000-0000-0000-000062390737)
  7211. (property "Reference" "C25" (id 0) (at 328.7268 29.3116 0)
  7212. (effects (font (size 1.27 1.27)) (justify left))
  7213. )
  7214. (property "Value" "0.1uF" (id 1) (at 328.7268 31.623 0)
  7215. (effects (font (size 1.27 1.27)) (justify left))
  7216. )
  7217. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 326.39 30.48 0)
  7218. (effects (font (size 1.27 1.27)) hide)
  7219. )
  7220. (property "Datasheet" "~" (id 3) (at 326.39 30.48 0)
  7221. (effects (font (size 1.27 1.27)) hide)
  7222. )
  7223. (property "LCSC" "C1591" (id 4) (at 326.39 30.48 0)
  7224. (effects (font (size 1.27 1.27)) hide)
  7225. )
  7226. (property "Digikey" "1276-1935-1-ND" (id 5) (at 326.39 30.48 0)
  7227. (effects (font (size 1.27 1.27)) hide)
  7228. )
  7229. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 326.39 30.48 0)
  7230. (effects (font (size 1.27 1.27)) hide)
  7231. )
  7232. (pin "1" (uuid 10c554fd-22dd-46cf-acfe-70c8dfb45b11))
  7233. (pin "2" (uuid 85094a5b-8cf5-4fd4-95c7-e6160dca3246))
  7234. )
  7235. (symbol (lib_id "Device:C_Small") (at 317.5 30.48 0) (unit 1)
  7236. (in_bom yes) (on_board yes)
  7237. (uuid 00000000-0000-0000-0000-0000623909d3)
  7238. (property "Reference" "C24" (id 0) (at 319.8368 29.3116 0)
  7239. (effects (font (size 1.27 1.27)) (justify left))
  7240. )
  7241. (property "Value" "10uF" (id 1) (at 319.8368 31.623 0)
  7242. (effects (font (size 1.27 1.27)) (justify left))
  7243. )
  7244. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 317.5 30.48 0)
  7245. (effects (font (size 1.27 1.27)) hide)
  7246. )
  7247. (property "Datasheet" "~" (id 3) (at 317.5 30.48 0)
  7248. (effects (font (size 1.27 1.27)) hide)
  7249. )
  7250. (property "LCSC" "C2922480" (id 4) (at 317.5 30.48 0)
  7251. (effects (font (size 1.27 1.27)) hide)
  7252. )
  7253. (property "Digikey" "1276-2891-1-ND" (id 5) (at 317.5 30.48 0)
  7254. (effects (font (size 1.27 1.27)) hide)
  7255. )
  7256. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 317.5 30.48 0)
  7257. (effects (font (size 1.27 1.27)) hide)
  7258. )
  7259. (pin "1" (uuid 7efbb406-d445-4109-b6da-573057ce7536))
  7260. (pin "2" (uuid 372c03b7-f3ce-4285-8a79-a23ebebdc0f1))
  7261. )
  7262. (symbol (lib_id "Connector:TestPoint_Small") (at 401.32 43.18 0) (unit 1)
  7263. (in_bom yes) (on_board yes)
  7264. (uuid 00000000-0000-0000-0000-0000623a126c)
  7265. (property "Reference" "TP16" (id 0) (at 402.5392 42.0116 0)
  7266. (effects (font (size 1.27 1.27)) (justify left))
  7267. )
  7268. (property "Value" "RX" (id 1) (at 402.59 43.18 0)
  7269. (effects (font (size 1.27 1.27)) (justify left))
  7270. )
  7271. (property "Footprint" "Modified:TestPoint_Pad_D2.0mm_ValueSilk" (id 2) (at 406.4 43.18 0)
  7272. (effects (font (size 1.27 1.27)) hide)
  7273. )
  7274. (property "Datasheet" "~" (id 3) (at 406.4 43.18 0)
  7275. (effects (font (size 1.27 1.27)) hide)
  7276. )
  7277. (pin "1" (uuid 3aec649b-7bfb-45b0-aab7-a7fd1c3cd2bb))
  7278. )
  7279. (symbol (lib_id "power:+3.3V") (at 312.42 25.4 0) (unit 1)
  7280. (in_bom yes) (on_board yes)
  7281. (uuid 00000000-0000-0000-0000-0000623d2efc)
  7282. (property "Reference" "#PWR0126" (id 0) (at 312.42 29.21 0)
  7283. (effects (font (size 1.27 1.27)) hide)
  7284. )
  7285. (property "Value" "+3.3V" (id 1) (at 312.801 21.0058 0))
  7286. (property "Footprint" "" (id 2) (at 312.42 25.4 0)
  7287. (effects (font (size 1.27 1.27)) hide)
  7288. )
  7289. (property "Datasheet" "" (id 3) (at 312.42 25.4 0)
  7290. (effects (font (size 1.27 1.27)) hide)
  7291. )
  7292. (pin "1" (uuid e4fcdd73-1b73-41d5-86e8-fa708452c6d3))
  7293. )
  7294. (symbol (lib_id "power:GND") (at 312.42 45.72 0) (unit 1)
  7295. (in_bom yes) (on_board yes)
  7296. (uuid 00000000-0000-0000-0000-0000623d364a)
  7297. (property "Reference" "#PWR0127" (id 0) (at 312.42 52.07 0)
  7298. (effects (font (size 1.27 1.27)) hide)
  7299. )
  7300. (property "Value" "GND" (id 1) (at 312.547 50.1142 0))
  7301. (property "Footprint" "" (id 2) (at 312.42 45.72 0)
  7302. (effects (font (size 1.27 1.27)) hide)
  7303. )
  7304. (property "Datasheet" "" (id 3) (at 312.42 45.72 0)
  7305. (effects (font (size 1.27 1.27)) hide)
  7306. )
  7307. (pin "1" (uuid c18e9869-03c4-4f9f-af59-b974de518cf0))
  7308. )
  7309. (symbol (lib_id "no_pin:no_pin") (at 182.88 45.72 0) (unit 1)
  7310. (in_bom yes) (on_board yes)
  7311. (uuid 00000000-0000-0000-0000-0000623f109c)
  7312. (property "Reference" "Z9" (id 0) (at 182.88 38.4302 0)
  7313. (effects (font (size 1.524 1.524)))
  7314. )
  7315. (property "Value" "WatchGlass39.5mm" (id 1) (at 182.88 41.1226 0)
  7316. (effects (font (size 1.524 1.524)))
  7317. )
  7318. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 182.88 45.72 0)
  7319. (effects (font (size 1.524 1.524)) hide)
  7320. )
  7321. (property "Datasheet" "" (id 3) (at 182.88 45.72 0)
  7322. (effects (font (size 1.524 1.524)) hide)
  7323. )
  7324. (property "Note" "Watch glass: 1mm thick, 39.5mm diameter" (id 4) (at 182.88 45.72 0)
  7325. (effects (font (size 1.27 1.27)) hide)
  7326. )
  7327. (property "AliExpress" "https://www.aliexpress.com/item/33055356489.html" (id 5) (at 182.88 45.72 0)
  7328. (effects (font (size 1.27 1.27)) hide)
  7329. )
  7330. )
  7331. (symbol (lib_id "power:GND") (at 402.59 33.02 0) (unit 1)
  7332. (in_bom yes) (on_board yes)
  7333. (uuid 00000000-0000-0000-0000-0000623f1786)
  7334. (property "Reference" "#PWR0128" (id 0) (at 402.59 39.37 0)
  7335. (effects (font (size 1.27 1.27)) hide)
  7336. )
  7337. (property "Value" "GND" (id 1) (at 402.717 37.4142 0))
  7338. (property "Footprint" "" (id 2) (at 402.59 33.02 0)
  7339. (effects (font (size 1.27 1.27)) hide)
  7340. )
  7341. (property "Datasheet" "" (id 3) (at 402.59 33.02 0)
  7342. (effects (font (size 1.27 1.27)) hide)
  7343. )
  7344. (pin "1" (uuid 638f25d2-c0f3-4b26-98c2-56361c19f1f1))
  7345. )
  7346. (symbol (lib_id "power:GND") (at 334.01 71.12 0) (unit 1)
  7347. (in_bom yes) (on_board yes)
  7348. (uuid 00000000-0000-0000-0000-0000623f1d8e)
  7349. (property "Reference" "#PWR0129" (id 0) (at 334.01 77.47 0)
  7350. (effects (font (size 1.27 1.27)) hide)
  7351. )
  7352. (property "Value" "GND" (id 1) (at 334.137 75.5142 0))
  7353. (property "Footprint" "" (id 2) (at 334.01 71.12 0)
  7354. (effects (font (size 1.27 1.27)) hide)
  7355. )
  7356. (property "Datasheet" "" (id 3) (at 334.01 71.12 0)
  7357. (effects (font (size 1.27 1.27)) hide)
  7358. )
  7359. (pin "1" (uuid 91a3fbaf-aacd-4755-b3f8-d13cadbd6007))
  7360. )
  7361. (symbol (lib_id "power:+3.3V") (at 223.52 69.85 0) (unit 1)
  7362. (in_bom yes) (on_board yes)
  7363. (uuid 00000000-0000-0000-0000-00006245e5c2)
  7364. (property "Reference" "#PWR0130" (id 0) (at 223.52 73.66 0)
  7365. (effects (font (size 1.27 1.27)) hide)
  7366. )
  7367. (property "Value" "+3.3V" (id 1) (at 223.901 65.4558 0))
  7368. (property "Footprint" "" (id 2) (at 223.52 69.85 0)
  7369. (effects (font (size 1.27 1.27)) hide)
  7370. )
  7371. (property "Datasheet" "" (id 3) (at 223.52 69.85 0)
  7372. (effects (font (size 1.27 1.27)) hide)
  7373. )
  7374. (pin "1" (uuid cd758a1e-1d24-42e5-94f9-c79dc5fb0413))
  7375. )
  7376. (symbol (lib_id "power:GND") (at 223.52 77.47 0) (unit 1)
  7377. (in_bom yes) (on_board yes)
  7378. (uuid 00000000-0000-0000-0000-00006245ef1e)
  7379. (property "Reference" "#PWR0131" (id 0) (at 223.52 83.82 0)
  7380. (effects (font (size 1.27 1.27)) hide)
  7381. )
  7382. (property "Value" "GND" (id 1) (at 223.647 81.8642 0))
  7383. (property "Footprint" "" (id 2) (at 223.52 77.47 0)
  7384. (effects (font (size 1.27 1.27)) hide)
  7385. )
  7386. (property "Datasheet" "" (id 3) (at 223.52 77.47 0)
  7387. (effects (font (size 1.27 1.27)) hide)
  7388. )
  7389. (pin "1" (uuid 43f7b188-3c38-4aec-8f91-8fbccbdd3dcd))
  7390. )
  7391. (symbol (lib_id "no_pin:no_pin") (at 204.47 45.72 0) (unit 1)
  7392. (in_bom yes) (on_board yes)
  7393. (uuid 00000000-0000-0000-0000-00006246aa1a)
  7394. (property "Reference" "Z10" (id 0) (at 204.47 38.4302 0)
  7395. (effects (font (size 1.524 1.524)))
  7396. )
  7397. (property "Value" "BLDCMotor" (id 1) (at 204.47 41.1226 0)
  7398. (effects (font (size 1.524 1.524)))
  7399. )
  7400. (property "Footprint" "BOM_Only:bom_only_no_pin" (id 2) (at 204.47 45.72 0)
  7401. (effects (font (size 1.524 1.524)) hide)
  7402. )
  7403. (property "Datasheet" "" (id 3) (at 204.47 45.72 0)
  7404. (effects (font (size 1.524 1.524)) hide)
  7405. )
  7406. (property "Note" "SparkFun: https://www.sparkfun.com/products/20441" (id 4) (at 204.47 45.72 0)
  7407. (effects (font (size 1.27 1.27)) hide)
  7408. )
  7409. (property "AliExpress" "" (id 5) (at 204.47 45.72 0)
  7410. (effects (font (size 1.27 1.27)) hide)
  7411. )
  7412. )
  7413. (symbol (lib_id "Device:C_Small") (at 224.79 73.66 0) (unit 1)
  7414. (in_bom yes) (on_board yes)
  7415. (uuid 00000000-0000-0000-0000-00006246f069)
  7416. (property "Reference" "C26" (id 0) (at 227.1268 72.4916 0)
  7417. (effects (font (size 1.27 1.27)) (justify left))
  7418. )
  7419. (property "Value" "10uF" (id 1) (at 227.1268 74.803 0)
  7420. (effects (font (size 1.27 1.27)) (justify left))
  7421. )
  7422. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 224.79 73.66 0)
  7423. (effects (font (size 1.27 1.27)) hide)
  7424. )
  7425. (property "Datasheet" "~" (id 3) (at 224.79 73.66 0)
  7426. (effects (font (size 1.27 1.27)) hide)
  7427. )
  7428. (property "LCSC" "C2922480" (id 4) (at 224.79 73.66 0)
  7429. (effects (font (size 1.27 1.27)) hide)
  7430. )
  7431. (property "Digikey" "1276-2891-1-ND" (id 5) (at 224.79 73.66 0)
  7432. (effects (font (size 1.27 1.27)) hide)
  7433. )
  7434. (property "Mouser" "187-CL21A106KAYNNNE" (id 6) (at 224.79 73.66 0)
  7435. (effects (font (size 1.27 1.27)) hide)
  7436. )
  7437. (pin "1" (uuid fcbbeefe-3039-4d5e-b86c-9c72c7ae9bfc))
  7438. (pin "2" (uuid 294a1a09-794d-4457-8db5-2717b007b81c))
  7439. )
  7440. (symbol (lib_id "power:PWR_FLAG") (at 57.15 58.42 0) (unit 1)
  7441. (in_bom yes) (on_board yes)
  7442. (uuid 00000000-0000-0000-0000-0000625e1008)
  7443. (property "Reference" "#FLG0101" (id 0) (at 57.15 56.515 0)
  7444. (effects (font (size 1.27 1.27)) hide)
  7445. )
  7446. (property "Value" "PWR_FLAG" (id 1) (at 57.15 54.0258 0))
  7447. (property "Footprint" "" (id 2) (at 57.15 58.42 0)
  7448. (effects (font (size 1.27 1.27)) hide)
  7449. )
  7450. (property "Datasheet" "~" (id 3) (at 57.15 58.42 0)
  7451. (effects (font (size 1.27 1.27)) hide)
  7452. )
  7453. (pin "1" (uuid d3d27eed-0d1a-4443-9ecf-3382e9e5792c))
  7454. )
  7455. (symbol (lib_id "power:PWR_FLAG") (at 45.72 100.33 0) (unit 1)
  7456. (in_bom yes) (on_board yes)
  7457. (uuid 00000000-0000-0000-0000-0000625fa47a)
  7458. (property "Reference" "#FLG0102" (id 0) (at 45.72 98.425 0)
  7459. (effects (font (size 1.27 1.27)) hide)
  7460. )
  7461. (property "Value" "PWR_FLAG" (id 1) (at 45.72 95.9358 0))
  7462. (property "Footprint" "" (id 2) (at 45.72 100.33 0)
  7463. (effects (font (size 1.27 1.27)) hide)
  7464. )
  7465. (property "Datasheet" "~" (id 3) (at 45.72 100.33 0)
  7466. (effects (font (size 1.27 1.27)) hide)
  7467. )
  7468. (pin "1" (uuid 3596e4f6-a62f-45f3-a36d-75a44a506f70))
  7469. )
  7470. (symbol (lib_id "power:+5V") (at 67.31 58.42 0) (unit 1)
  7471. (in_bom yes) (on_board yes)
  7472. (uuid 00000000-0000-0000-0000-000062644c87)
  7473. (property "Reference" "#PWR0136" (id 0) (at 67.31 62.23 0)
  7474. (effects (font (size 1.27 1.27)) hide)
  7475. )
  7476. (property "Value" "+5V" (id 1) (at 67.691 54.0258 0))
  7477. (property "Footprint" "" (id 2) (at 67.31 58.42 0)
  7478. (effects (font (size 1.27 1.27)) hide)
  7479. )
  7480. (property "Datasheet" "" (id 3) (at 67.31 58.42 0)
  7481. (effects (font (size 1.27 1.27)) hide)
  7482. )
  7483. (pin "1" (uuid a65f4b08-ed17-4666-991e-102dbdbbb7ae))
  7484. )
  7485. (symbol (lib_id "power:+5V") (at 321.31 165.1 0) (unit 1)
  7486. (in_bom yes) (on_board yes)
  7487. (uuid 00000000-0000-0000-0000-000062663a0f)
  7488. (property "Reference" "#PWR0137" (id 0) (at 321.31 168.91 0)
  7489. (effects (font (size 1.27 1.27)) hide)
  7490. )
  7491. (property "Value" "+5V" (id 1) (at 321.691 160.7058 0))
  7492. (property "Footprint" "" (id 2) (at 321.31 165.1 0)
  7493. (effects (font (size 1.27 1.27)) hide)
  7494. )
  7495. (property "Datasheet" "" (id 3) (at 321.31 165.1 0)
  7496. (effects (font (size 1.27 1.27)) hide)
  7497. )
  7498. (pin "1" (uuid e127aca6-2244-4ab0-a5ba-d39a64f63be0))
  7499. )
  7500. (symbol (lib_id "power:+5V") (at 24.13 25.4 0) (unit 1)
  7501. (in_bom yes) (on_board yes)
  7502. (uuid 00000000-0000-0000-0000-00006269a626)
  7503. (property "Reference" "#PWR0138" (id 0) (at 24.13 29.21 0)
  7504. (effects (font (size 1.27 1.27)) hide)
  7505. )
  7506. (property "Value" "+5V" (id 1) (at 24.511 21.0058 0))
  7507. (property "Footprint" "" (id 2) (at 24.13 25.4 0)
  7508. (effects (font (size 1.27 1.27)) hide)
  7509. )
  7510. (property "Datasheet" "" (id 3) (at 24.13 25.4 0)
  7511. (effects (font (size 1.27 1.27)) hide)
  7512. )
  7513. (pin "1" (uuid 2e063fff-a2c7-45f0-96f6-e7831414a280))
  7514. )
  7515. (symbol (lib_id "power:GND") (at 321.31 175.26 0) (unit 1)
  7516. (in_bom yes) (on_board yes)
  7517. (uuid 00000000-0000-0000-0000-0000626b6cf1)
  7518. (property "Reference" "#PWR0132" (id 0) (at 321.31 181.61 0)
  7519. (effects (font (size 1.27 1.27)) hide)
  7520. )
  7521. (property "Value" "GND" (id 1) (at 321.437 179.6542 0))
  7522. (property "Footprint" "" (id 2) (at 321.31 175.26 0)
  7523. (effects (font (size 1.27 1.27)) hide)
  7524. )
  7525. (property "Datasheet" "" (id 3) (at 321.31 175.26 0)
  7526. (effects (font (size 1.27 1.27)) hide)
  7527. )
  7528. (pin "1" (uuid bc72b5b2-7af7-488d-b91b-58a1a8d3b9ab))
  7529. )
  7530. (symbol (lib_id "VEML7700:VEML7700") (at 62.23 147.32 0) (unit 1)
  7531. (in_bom yes) (on_board yes)
  7532. (uuid 00000000-0000-0000-0000-00006271597a)
  7533. (property "Reference" "U8" (id 0) (at 55.1688 146.7866 0)
  7534. (effects (font (size 1.27 1.27)) (justify right))
  7535. )
  7536. (property "Value" "VEML7700" (id 1) (at 55.1688 149.098 0)
  7537. (effects (font (size 1.27 1.27)) (justify right))
  7538. )
  7539. (property "Footprint" "VEML7700:VEML7700-TOP" (id 2) (at 62.23 147.32 0)
  7540. (effects (font (size 1.27 1.27)) hide)
  7541. )
  7542. (property "Datasheet" "" (id 3) (at 62.23 147.32 0)
  7543. (effects (font (size 1.27 1.27)) hide)
  7544. )
  7545. (property "Digikey" "VEML7700-TT" (id 4) (at 62.23 147.32 0)
  7546. (effects (font (size 1.27 1.27)) hide)
  7547. )
  7548. (property "Mouser" "78-VEML7700-TT" (id 5) (at 62.23 147.32 0)
  7549. (effects (font (size 1.27 1.27)) hide)
  7550. )
  7551. (property "LCSC" "C1850416" (id 6) (at 62.23 147.32 0)
  7552. (effects (font (size 1.27 1.27)) hide)
  7553. )
  7554. (pin "1" (uuid 4e639396-fd0d-48f3-ae01-491cad4cd2ae))
  7555. (pin "2" (uuid cf7662f5-8d7d-406e-833a-14d8e8de7e9e))
  7556. (pin "3" (uuid b64ab217-2d8d-49d7-adba-67ecfdf386a3))
  7557. (pin "4" (uuid a91d6319-4f81-4284-8582-de6896fbd8c1))
  7558. )
  7559. (symbol (lib_id "Device:C_Small") (at 45.72 139.7 0) (unit 1)
  7560. (in_bom yes) (on_board yes)
  7561. (uuid 00000000-0000-0000-0000-00006271863d)
  7562. (property "Reference" "C27" (id 0) (at 48.0568 138.5316 0)
  7563. (effects (font (size 1.27 1.27)) (justify left))
  7564. )
  7565. (property "Value" "0.1uF" (id 1) (at 48.0568 140.843 0)
  7566. (effects (font (size 1.27 1.27)) (justify left))
  7567. )
  7568. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 45.72 139.7 0)
  7569. (effects (font (size 1.27 1.27)) hide)
  7570. )
  7571. (property "Datasheet" "~" (id 3) (at 45.72 139.7 0)
  7572. (effects (font (size 1.27 1.27)) hide)
  7573. )
  7574. (property "LCSC" "C1591" (id 4) (at 45.72 139.7 0)
  7575. (effects (font (size 1.27 1.27)) hide)
  7576. )
  7577. (property "Digikey" "1276-1935-1-ND" (id 5) (at 45.72 139.7 0)
  7578. (effects (font (size 1.27 1.27)) hide)
  7579. )
  7580. (property "Mouser" "187-CL10B104KB8NNWC" (id 6) (at 45.72 139.7 0)
  7581. (effects (font (size 1.27 1.27)) hide)
  7582. )
  7583. (pin "1" (uuid 661ecab7-71a0-40fb-9b45-35d1b476f11d))
  7584. (pin "2" (uuid d5ba6e76-eefc-42d3-a8c9-fcf1e81d29a6))
  7585. )
  7586. (symbol (lib_id "power:+3.3V") (at 45.72 129.54 0) (unit 1)
  7587. (in_bom yes) (on_board yes)
  7588. (uuid 00000000-0000-0000-0000-000062719d79)
  7589. (property "Reference" "#PWR0139" (id 0) (at 45.72 133.35 0)
  7590. (effects (font (size 1.27 1.27)) hide)
  7591. )
  7592. (property "Value" "+3.3V" (id 1) (at 46.101 125.1458 0))
  7593. (property "Footprint" "" (id 2) (at 45.72 129.54 0)
  7594. (effects (font (size 1.27 1.27)) hide)
  7595. )
  7596. (property "Datasheet" "" (id 3) (at 45.72 129.54 0)
  7597. (effects (font (size 1.27 1.27)) hide)
  7598. )
  7599. (pin "1" (uuid 7174babe-609e-414a-875a-5d616c24c193))
  7600. )
  7601. (symbol (lib_id "power:GND") (at 45.72 165.1 0) (unit 1)
  7602. (in_bom yes) (on_board yes)
  7603. (uuid 00000000-0000-0000-0000-00006271a63e)
  7604. (property "Reference" "#PWR0140" (id 0) (at 45.72 171.45 0)
  7605. (effects (font (size 1.27 1.27)) hide)
  7606. )
  7607. (property "Value" "GND" (id 1) (at 45.847 169.4942 0))
  7608. (property "Footprint" "" (id 2) (at 45.72 165.1 0)
  7609. (effects (font (size 1.27 1.27)) hide)
  7610. )
  7611. (property "Datasheet" "" (id 3) (at 45.72 165.1 0)
  7612. (effects (font (size 1.27 1.27)) hide)
  7613. )
  7614. (pin "1" (uuid 2a2a4016-7e4c-44fd-931a-e34a173acb81))
  7615. )
  7616. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 189.23 0) (unit 1)
  7617. (in_bom yes) (on_board yes)
  7618. (uuid 00000000-0000-0000-0000-000062748b8a)
  7619. (property "Reference" "J4" (id 0) (at 140.462 188.1632 0)
  7620. (effects (font (size 1.27 1.27)) (justify left))
  7621. )
  7622. (property "Value" "A" (id 1) (at 140.462 190.4746 0)
  7623. (effects (font (size 1.27 1.27)) (justify left))
  7624. )
  7625. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 189.23 0)
  7626. (effects (font (size 1.27 1.27)) hide)
  7627. )
  7628. (property "Datasheet" "~" (id 3) (at 138.43 189.23 0)
  7629. (effects (font (size 1.27 1.27)) hide)
  7630. )
  7631. (pin "1" (uuid 46a17313-3b78-4a84-8f45-a37ea5833dad))
  7632. (pin "2" (uuid 8b9119fb-4888-4674-b5b7-19ba6fe17e82))
  7633. (pin "3" (uuid 8c1feb9f-d0b8-42a7-8406-aa936270dc75))
  7634. )
  7635. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 138.43 200.66 0) (unit 1)
  7636. (in_bom yes) (on_board yes)
  7637. (uuid 00000000-0000-0000-0000-00006274a9bb)
  7638. (property "Reference" "J5" (id 0) (at 140.462 199.5932 0)
  7639. (effects (font (size 1.27 1.27)) (justify left))
  7640. )
  7641. (property "Value" "B" (id 1) (at 140.462 201.9046 0)
  7642. (effects (font (size 1.27 1.27)) (justify left))
  7643. )
  7644. (property "Footprint" "SolderPads:SolderPads_2mm_3_STRAIN" (id 2) (at 138.43 200.66 0)
  7645. (effects (font (size 1.27 1.27)) hide)
  7646. )
  7647. (property "Datasheet" "~" (id 3) (at 138.43 200.66 0)
  7648. (effects (font (size 1.27 1.27)) hide)
  7649. )
  7650. (pin "1" (uuid e14baf8b-f165-42d0-ab67-48db2ef1f110))
  7651. (pin "2" (uuid 674dc7df-a1ab-4b4f-990f-590eb08c2ce2))
  7652. (pin "3" (uuid ff42b5b9-653e-46b0-81ab-36da556cf5d0))
  7653. )
  7654. (symbol (lib_id "Device:R_Small") (at 166.37 132.08 0) (unit 1)
  7655. (in_bom yes) (on_board yes)
  7656. (uuid 00000000-0000-0000-0000-0000627e020e)
  7657. (property "Reference" "R13" (id 0) (at 161.3916 132.08 90))
  7658. (property "Value" "2.2k" (id 1) (at 163.703 132.08 90))
  7659. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 166.37 132.08 0)
  7660. (effects (font (size 1.27 1.27)) hide)
  7661. )
  7662. (property "Datasheet" "~" (id 3) (at 166.37 132.08 0)
  7663. (effects (font (size 1.27 1.27)) hide)
  7664. )
  7665. (property "LCSC" "C4190" (id 4) (at 166.37 132.08 0)
  7666. (effects (font (size 1.27 1.27)) hide)
  7667. )
  7668. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 166.37 132.08 0)
  7669. (effects (font (size 1.27 1.27)) hide)
  7670. )
  7671. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 166.37 132.08 0)
  7672. (effects (font (size 1.27 1.27)) hide)
  7673. )
  7674. (pin "1" (uuid 0e3e8dbc-ddc7-40fc-a10a-28e14606eb80))
  7675. (pin "2" (uuid efc8f1b1-e26b-4dcb-9909-745df981a878))
  7676. )
  7677. (symbol (lib_id "Device:R_Small") (at 172.72 138.43 0) (unit 1)
  7678. (in_bom yes) (on_board yes)
  7679. (uuid 00000000-0000-0000-0000-0000627eadb9)
  7680. (property "Reference" "R14" (id 0) (at 167.7416 138.43 90))
  7681. (property "Value" "2.2k" (id 1) (at 170.053 138.43 90))
  7682. (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 172.72 138.43 0)
  7683. (effects (font (size 1.27 1.27)) hide)
  7684. )
  7685. (property "Datasheet" "~" (id 3) (at 172.72 138.43 0)
  7686. (effects (font (size 1.27 1.27)) hide)
  7687. )
  7688. (property "LCSC" "C4190" (id 4) (at 172.72 138.43 0)
  7689. (effects (font (size 1.27 1.27)) hide)
  7690. )
  7691. (property "Digikey" "RMCF0603FT2K20CT-ND" (id 5) (at 172.72 138.43 0)
  7692. (effects (font (size 1.27 1.27)) hide)
  7693. )
  7694. (property "Mouser" "652-CR0603FX-2201ELF" (id 6) (at 172.72 138.43 0)
  7695. (effects (font (size 1.27 1.27)) hide)
  7696. )
  7697. (pin "1" (uuid 5c368fdc-8657-4d4e-bac9-9fad9b825df9))
  7698. (pin "2" (uuid 2ba6ef0c-0901-4570-8a77-6e40184846a7))
  7699. )
  7700. (symbol (lib_id "power:+3.3V") (at 170.18 127 0) (unit 1)
  7701. (in_bom yes) (on_board yes)
  7702. (uuid 00000000-0000-0000-0000-000062826cad)
  7703. (property "Reference" "#PWR0141" (id 0) (at 170.18 130.81 0)
  7704. (effects (font (size 1.27 1.27)) hide)
  7705. )
  7706. (property "Value" "+3.3V" (id 1) (at 170.561 122.6058 0))
  7707. (property "Footprint" "" (id 2) (at 170.18 127 0)
  7708. (effects (font (size 1.27 1.27)) hide)
  7709. )
  7710. (property "Datasheet" "" (id 3) (at 170.18 127 0)
  7711. (effects (font (size 1.27 1.27)) hide)
  7712. )
  7713. (pin "1" (uuid fd271d37-3ee8-4620-82ff-72683338471b))
  7714. )
  7715. (symbol (lib_id "power:PWR_FLAG") (at 214.63 207.01 0) (unit 1)
  7716. (in_bom yes) (on_board yes) (fields_autoplaced)
  7717. (uuid 6ae86d03-847c-45a5-8903-ce32ee0509d6)
  7718. (property "Reference" "#FLG0103" (id 0) (at 214.63 205.105 0)
  7719. (effects (font (size 1.27 1.27)) hide)
  7720. )
  7721. (property "Value" "PWR_FLAG" (id 1) (at 214.63 201.93 0))
  7722. (property "Footprint" "" (id 2) (at 214.63 207.01 0)
  7723. (effects (font (size 1.27 1.27)) hide)
  7724. )
  7725. (property "Datasheet" "~" (id 3) (at 214.63 207.01 0)
  7726. (effects (font (size 1.27 1.27)) hide)
  7727. )
  7728. (pin "1" (uuid a5cdc951-a651-4b84-af46-2da1a268b065))
  7729. )
  7730. (symbol (lib_id "Device:NetTie_2") (at 222.25 207.01 0) (unit 1)
  7731. (in_bom yes) (on_board yes)
  7732. (uuid 6c2ba31f-e69e-499b-a871-fef898c318d8)
  7733. (property "Reference" "NT1" (id 0) (at 222.25 208.28 0))
  7734. (property "Value" "NetTie_2" (id 1) (at 222.25 210.82 0)
  7735. (effects (font (size 1.27 1.27)) hide)
  7736. )
  7737. (property "Footprint" "NetTie:NetTie-2_SMD_Pad0.5mm" (id 2) (at 222.25 207.01 0)
  7738. (effects (font (size 1.27 1.27)) hide)
  7739. )
  7740. (property "Datasheet" "~" (id 3) (at 222.25 207.01 0)
  7741. (effects (font (size 1.27 1.27)) hide)
  7742. )
  7743. (pin "1" (uuid 64a816d7-8779-40eb-abd0-dcef6915077a))
  7744. (pin "2" (uuid f190f63b-6701-467a-ae0a-1f70e305fc5d))
  7745. )
  7746. (sheet_instances
  7747. (path "/" (page "1"))
  7748. )
  7749. (symbol_instances
  7750. (path "/00000000-0000-0000-0000-0000625e1008"
  7751. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  7752. )
  7753. (path "/00000000-0000-0000-0000-0000625fa47a"
  7754. (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
  7755. )
  7756. (path "/6ae86d03-847c-45a5-8903-ce32ee0509d6"
  7757. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7758. )
  7759. (path "/00000000-0000-0000-0000-0000621b8449"
  7760. (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "")
  7761. )
  7762. (path "/00000000-0000-0000-0000-000062269e5e"
  7763. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  7764. )
  7765. (path "/00000000-0000-0000-0000-000061f5e471"
  7766. (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
  7767. )
  7768. (path "/00000000-0000-0000-0000-000061f5f724"
  7769. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7770. )
  7771. (path "/00000000-0000-0000-0000-000061fefd56"
  7772. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  7773. )
  7774. (path "/00000000-0000-0000-0000-000061ff8431"
  7775. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  7776. )
  7777. (path "/00000000-0000-0000-0000-00006204bf3e"
  7778. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  7779. )
  7780. (path "/00000000-0000-0000-0000-00006205ee7e"
  7781. (reference "#PWR0106") (unit 1) (value "+3.3V") (footprint "")
  7782. )
  7783. (path "/00000000-0000-0000-0000-000062092c18"
  7784. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  7785. )
  7786. (path "/00000000-0000-0000-0000-000062096fa5"
  7787. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  7788. )
  7789. (path "/00000000-0000-0000-0000-0000620a6032"
  7790. (reference "#PWR0109") (unit 1) (value "+3.3V") (footprint "")
  7791. )
  7792. (path "/00000000-0000-0000-0000-0000620d59fa"
  7793. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  7794. )
  7795. (path "/00000000-0000-0000-0000-00006210086e"
  7796. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  7797. )
  7798. (path "/00000000-0000-0000-0000-000062105589"
  7799. (reference "#PWR0112") (unit 1) (value "+3.3V") (footprint "")
  7800. )
  7801. (path "/00000000-0000-0000-0000-0000621184b4"
  7802. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  7803. )
  7804. (path "/00000000-0000-0000-0000-000062153ea9"
  7805. (reference "#PWR0114") (unit 1) (value "+3.3V") (footprint "")
  7806. )
  7807. (path "/00000000-0000-0000-0000-000062154495"
  7808. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  7809. )
  7810. (path "/00000000-0000-0000-0000-0000620606f7"
  7811. (reference "#PWR0116") (unit 1) (value "+3.3V") (footprint "")
  7812. )
  7813. (path "/00000000-0000-0000-0000-0000620d3feb"
  7814. (reference "#PWR0117") (unit 1) (value "GNDA") (footprint "")
  7815. )
  7816. (path "/00000000-0000-0000-0000-000062110345"
  7817. (reference "#PWR0118") (unit 1) (value "GNDA") (footprint "")
  7818. )
  7819. (path "/00000000-0000-0000-0000-00006211ae93"
  7820. (reference "#PWR0119") (unit 1) (value "GNDA") (footprint "")
  7821. )
  7822. (path "/00000000-0000-0000-0000-000062131aaa"
  7823. (reference "#PWR0120") (unit 1) (value "GNDA") (footprint "")
  7824. )
  7825. (path "/00000000-0000-0000-0000-00006213fbbb"
  7826. (reference "#PWR0121") (unit 1) (value "GNDA") (footprint "")
  7827. )
  7828. (path "/00000000-0000-0000-0000-0000621b25e8"
  7829. (reference "#PWR0122") (unit 1) (value "GNDA") (footprint "")
  7830. )
  7831. (path "/00000000-0000-0000-0000-0000621d4025"
  7832. (reference "#PWR0123") (unit 1) (value "GNDA") (footprint "")
  7833. )
  7834. (path "/00000000-0000-0000-0000-0000621d490e"
  7835. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  7836. )
  7837. (path "/00000000-0000-0000-0000-0000621f9c4b"
  7838. (reference "#PWR0125") (unit 1) (value "GNDA") (footprint "")
  7839. )
  7840. (path "/00000000-0000-0000-0000-0000623d2efc"
  7841. (reference "#PWR0126") (unit 1) (value "+3.3V") (footprint "")
  7842. )
  7843. (path "/00000000-0000-0000-0000-0000623d364a"
  7844. (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
  7845. )
  7846. (path "/00000000-0000-0000-0000-0000623f1786"
  7847. (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
  7848. )
  7849. (path "/00000000-0000-0000-0000-0000623f1d8e"
  7850. (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
  7851. )
  7852. (path "/00000000-0000-0000-0000-00006245e5c2"
  7853. (reference "#PWR0130") (unit 1) (value "+3.3V") (footprint "")
  7854. )
  7855. (path "/00000000-0000-0000-0000-00006245ef1e"
  7856. (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
  7857. )
  7858. (path "/00000000-0000-0000-0000-0000626b6cf1"
  7859. (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
  7860. )
  7861. (path "/00000000-0000-0000-0000-000062078a82"
  7862. (reference "#PWR0133") (unit 1) (value "+5V") (footprint "")
  7863. )
  7864. (path "/00000000-0000-0000-0000-000062078a89"
  7865. (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
  7866. )
  7867. (path "/00000000-0000-0000-0000-000062182795"
  7868. (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
  7869. )
  7870. (path "/00000000-0000-0000-0000-000062644c87"
  7871. (reference "#PWR0136") (unit 1) (value "+5V") (footprint "")
  7872. )
  7873. (path "/00000000-0000-0000-0000-000062663a0f"
  7874. (reference "#PWR0137") (unit 1) (value "+5V") (footprint "")
  7875. )
  7876. (path "/00000000-0000-0000-0000-00006269a626"
  7877. (reference "#PWR0138") (unit 1) (value "+5V") (footprint "")
  7878. )
  7879. (path "/00000000-0000-0000-0000-000062719d79"
  7880. (reference "#PWR0139") (unit 1) (value "+3.3V") (footprint "")
  7881. )
  7882. (path "/00000000-0000-0000-0000-00006271a63e"
  7883. (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
  7884. )
  7885. (path "/00000000-0000-0000-0000-000062826cad"
  7886. (reference "#PWR0141") (unit 1) (value "+3.3V") (footprint "")
  7887. )
  7888. (path "/00000000-0000-0000-0000-00006213300a"
  7889. (reference "#PWR0142") (unit 1) (value "+3.3V") (footprint "")
  7890. )
  7891. (path "/00000000-0000-0000-0000-000061f52a71"
  7892. (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7893. )
  7894. (path "/00000000-0000-0000-0000-000061f573a1"
  7895. (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7896. )
  7897. (path "/00000000-0000-0000-0000-000061f57785"
  7898. (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7899. )
  7900. (path "/00000000-0000-0000-0000-000061f58363"
  7901. (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7902. )
  7903. (path "/00000000-0000-0000-0000-000061f5903d"
  7904. (reference "C5") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7905. )
  7906. (path "/00000000-0000-0000-0000-000061f59cab"
  7907. (reference "C6") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7908. )
  7909. (path "/00000000-0000-0000-0000-000061f5a94f"
  7910. (reference "C7") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7911. )
  7912. (path "/00000000-0000-0000-0000-000061f5bfc9"
  7913. (reference "C8") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7914. )
  7915. (path "/00000000-0000-0000-0000-0000620545dc"
  7916. (reference "C9") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7917. )
  7918. (path "/00000000-0000-0000-0000-0000620581b5"
  7919. (reference "C10") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7920. )
  7921. (path "/00000000-0000-0000-0000-0000621156c4"
  7922. (reference "C11") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7923. )
  7924. (path "/00000000-0000-0000-0000-000062138f96"
  7925. (reference "C12") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7926. )
  7927. (path "/00000000-0000-0000-0000-00006208a205"
  7928. (reference "C13") (unit 1) (value "22uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7929. )
  7930. (path "/00000000-0000-0000-0000-000062086349"
  7931. (reference "C14") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7932. )
  7933. (path "/00000000-0000-0000-0000-000062084712"
  7934. (reference "C15") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7935. )
  7936. (path "/00000000-0000-0000-0000-000062060ff5"
  7937. (reference "C16") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7938. )
  7939. (path "/00000000-0000-0000-0000-000062091f81"
  7940. (reference "C17") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7941. )
  7942. (path "/00000000-0000-0000-0000-0000620191b6"
  7943. (reference "C18") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7944. )
  7945. (path "/00000000-0000-0000-0000-0000620172ce"
  7946. (reference "C19") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7947. )
  7948. (path "/00000000-0000-0000-0000-000062066b6d"
  7949. (reference "C20") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7950. )
  7951. (path "/00000000-0000-0000-0000-00006209158d"
  7952. (reference "C21") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7953. )
  7954. (path "/00000000-0000-0000-0000-00006209787a"
  7955. (reference "C22") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7956. )
  7957. (path "/00000000-0000-0000-0000-00006213ff11"
  7958. (reference "C23") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7959. )
  7960. (path "/00000000-0000-0000-0000-0000623909d3"
  7961. (reference "C24") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7962. )
  7963. (path "/00000000-0000-0000-0000-000062390737"
  7964. (reference "C25") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7965. )
  7966. (path "/00000000-0000-0000-0000-00006246f069"
  7967. (reference "C26") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
  7968. )
  7969. (path "/00000000-0000-0000-0000-00006271863d"
  7970. (reference "C27") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7971. )
  7972. (path "/00000000-0000-0000-0000-00006211bef1"
  7973. (reference "C28") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7974. )
  7975. (path "/00000000-0000-0000-0000-000062078a75"
  7976. (reference "C29") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7977. )
  7978. (path "/00000000-0000-0000-0000-000061f5027f"
  7979. (reference "D1") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7980. )
  7981. (path "/00000000-0000-0000-0000-000061f5739b"
  7982. (reference "D2") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7983. )
  7984. (path "/00000000-0000-0000-0000-000061f5777f"
  7985. (reference "D3") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7986. )
  7987. (path "/00000000-0000-0000-0000-000061f5835d"
  7988. (reference "D4") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7989. )
  7990. (path "/00000000-0000-0000-0000-000061f59037"
  7991. (reference "D5") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7992. )
  7993. (path "/00000000-0000-0000-0000-000061f59ca5"
  7994. (reference "D6") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7995. )
  7996. (path "/00000000-0000-0000-0000-000061f5a949"
  7997. (reference "D7") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  7998. )
  7999. (path "/00000000-0000-0000-0000-000061f5bfc3"
  8000. (reference "D8") (unit 1) (value "SK6812SIDE-A") (footprint "sk6812:SK6812-SIDE-A")
  8001. )
  8002. (path "/00000000-0000-0000-0000-000061f74a74"
  8003. (reference "H1") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8004. )
  8005. (path "/00000000-0000-0000-0000-000061f75e86"
  8006. (reference "H2") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8007. )
  8008. (path "/00000000-0000-0000-0000-000061f76bf7"
  8009. (reference "H3") (unit 1) (value "MotorHole") (footprint "Holes:MountingHole_M1.6")
  8010. )
  8011. (path "/00000000-0000-0000-0000-000061f779d1"
  8012. (reference "H4") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8013. )
  8014. (path "/00000000-0000-0000-0000-000061f788c4"
  8015. (reference "H5") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8016. )
  8017. (path "/00000000-0000-0000-0000-000061f79385"
  8018. (reference "H6") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8019. )
  8020. (path "/00000000-0000-0000-0000-000061f79f4a"
  8021. (reference "H7") (unit 1) (value "MountHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8022. )
  8023. (path "/00000000-0000-0000-0000-0000623284d1"
  8024. (reference "H8") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8025. )
  8026. (path "/00000000-0000-0000-0000-0000623284d9"
  8027. (reference "H9") (unit 1) (value "AlignmentHole") (footprint "Holes:MountingHole_2.2mm_M2_ISO7380_Pad_NonVirtual")
  8028. )
  8029. (path "/00000000-0000-0000-0000-000061f6e8c0"
  8030. (reference "J1") (unit 1) (value "BLDC") (footprint "Molex:532610371")
  8031. )
  8032. (path "/00000000-0000-0000-0000-000061fcaa5b"
  8033. (reference "J2") (unit 1) (value "USB_C_Receptacle_USB2.0") (footprint "GCT_USB:USB4510_NoPaste")
  8034. )
  8035. (path "/00000000-0000-0000-0000-0000622dfef9"
  8036. (reference "J3") (unit 1) (value "LCD") (footprint "SolderPads:SolderPads_2mm_8")
  8037. )
  8038. (path "/00000000-0000-0000-0000-000062748b8a"
  8039. (reference "J4") (unit 1) (value "A") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8040. )
  8041. (path "/00000000-0000-0000-0000-00006274a9bb"
  8042. (reference "J5") (unit 1) (value "B") (footprint "SolderPads:SolderPads_2mm_3_STRAIN")
  8043. )
  8044. (path "/00000000-0000-0000-0000-00006200e5de"
  8045. (reference "L1") (unit 1) (value "3.3uH") (footprint "Inductor_SMD:L_0805_2012Metric")
  8046. )
  8047. (path "/6c2ba31f-e69e-499b-a871-fef898c318d8"
  8048. (reference "NT1") (unit 1) (value "NetTie_2") (footprint "NetTie:NetTie-2_SMD_Pad0.5mm")
  8049. )
  8050. (path "/00000000-0000-0000-0000-000061fe5517"
  8051. (reference "Q1") (unit 1) (value "MMBT4403") (footprint "Package_TO_SOT_SMD:SOT-23")
  8052. )
  8053. (path "/00000000-0000-0000-0000-0000622e5052"
  8054. (reference "Q2") (unit 1) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8055. )
  8056. (path "/00000000-0000-0000-0000-0000622e5b70"
  8057. (reference "Q2") (unit 2) (value "UMH3N") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
  8058. )
  8059. (path "/00000000-0000-0000-0000-000061ff5247"
  8060. (reference "R1") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8061. )
  8062. (path "/00000000-0000-0000-0000-000061ff59bf"
  8063. (reference "R2") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8064. )
  8065. (path "/00000000-0000-0000-0000-000061ff8747"
  8066. (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8067. )
  8068. (path "/00000000-0000-0000-0000-000061fff7fc"
  8069. (reference "R4") (unit 1) (value "8.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8070. )
  8071. (path "/00000000-0000-0000-0000-00006217ebc1"
  8072. (reference "R5") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8073. )
  8074. (path "/00000000-0000-0000-0000-00006217f6bc"
  8075. (reference "R6") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric")
  8076. )
  8077. (path "/00000000-0000-0000-0000-00006217c4cc"
  8078. (reference "R7") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8079. )
  8080. (path "/00000000-0000-0000-0000-000062180f46"
  8081. (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8082. )
  8083. (path "/00000000-0000-0000-0000-0000621810c8"
  8084. (reference "R9") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8085. )
  8086. (path "/00000000-0000-0000-0000-000062181360"
  8087. (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8088. )
  8089. (path "/00000000-0000-0000-0000-0000621814c1"
  8090. (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8091. )
  8092. (path "/00000000-0000-0000-0000-00006218171e"
  8093. (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8094. )
  8095. (path "/00000000-0000-0000-0000-0000627e020e"
  8096. (reference "R13") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8097. )
  8098. (path "/00000000-0000-0000-0000-0000627eadb9"
  8099. (reference "R14") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8100. )
  8101. (path "/00000000-0000-0000-0000-000062132ffe"
  8102. (reference "R15") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8103. )
  8104. (path "/00000000-0000-0000-0000-000062133004"
  8105. (reference "R16") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8106. )
  8107. (path "/00000000-0000-0000-0000-0000621b8442"
  8108. (reference "R17") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
  8109. )
  8110. (path "/00000000-0000-0000-0000-0000620734a8"
  8111. (reference "TP1") (unit 1) (value "5V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8112. )
  8113. (path "/00000000-0000-0000-0000-0000620939bb"
  8114. (reference "TP2") (unit 1) (value "3.3v") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8115. )
  8116. (path "/00000000-0000-0000-0000-0000620f043a"
  8117. (reference "TP3") (unit 1) (value "GND") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8118. )
  8119. (path "/00000000-0000-0000-0000-0000622f4012"
  8120. (reference "TP4") (unit 1) (value "SDA") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8121. )
  8122. (path "/00000000-0000-0000-0000-0000623162cf"
  8123. (reference "TP5") (unit 1) (value "SCL") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8124. )
  8125. (path "/00000000-0000-0000-0000-000062263aa7"
  8126. (reference "TP6") (unit 1) (value "U") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8127. )
  8128. (path "/00000000-0000-0000-0000-0000622a8e6d"
  8129. (reference "TP7") (unit 1) (value "V") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8130. )
  8131. (path "/00000000-0000-0000-0000-0000622cad46"
  8132. (reference "TP8") (unit 1) (value "W") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8133. )
  8134. (path "/00000000-0000-0000-0000-000062179005"
  8135. (reference "TP9") (unit 1) (value "CSN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8136. )
  8137. (path "/00000000-0000-0000-0000-0000621b8956"
  8138. (reference "TP10") (unit 1) (value "CLK") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8139. )
  8140. (path "/00000000-0000-0000-0000-0000621d8fb7"
  8141. (reference "TP11") (unit 1) (value "DO") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8142. )
  8143. (path "/00000000-0000-0000-0000-00006213725a"
  8144. (reference "TP12") (unit 1) (value "LED") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8145. )
  8146. (path "/00000000-0000-0000-0000-0000621b8454"
  8147. (reference "TP13") (unit 1) (value "EN") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8148. )
  8149. (path "/00000000-0000-0000-0000-000062317868"
  8150. (reference "TP14") (unit 1) (value "BOOT") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8151. )
  8152. (path "/00000000-0000-0000-0000-000062379e81"
  8153. (reference "TP15") (unit 1) (value "TX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8154. )
  8155. (path "/00000000-0000-0000-0000-0000623a126c"
  8156. (reference "TP16") (unit 1) (value "RX") (footprint "Modified:TestPoint_Pad_D2.0mm_ValueSilk")
  8157. )
  8158. (path "/00000000-0000-0000-0000-000061f4f0c2"
  8159. (reference "U1") (unit 1) (value "MT6701-CT") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  8160. )
  8161. (path "/00000000-0000-0000-0000-00006200e46e"
  8162. (reference "U2") (unit 1) (value "T-Micro32_Plus") (footprint "lilygo_micro32:T-Micro32")
  8163. )
  8164. (path "/00000000-0000-0000-0000-0000620180e0"
  8165. (reference "U3") (unit 1) (value "CH340C") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8166. )
  8167. (path "/00000000-0000-0000-0000-00006201f11d"
  8168. (reference "U4") (unit 1) (value "HX711") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  8169. )
  8170. (path "/00000000-0000-0000-0000-0000620241db"
  8171. (reference "U5") (unit 1) (value "TMC6300") (footprint "Modified:QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias_LargerViaHoles")
  8172. )
  8173. (path "/00000000-0000-0000-0000-00006203d4f8"
  8174. (reference "U6") (unit 1) (value "AP2114HA-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8175. )
  8176. (path "/00000000-0000-0000-0000-0000620700a0"
  8177. (reference "U7") (unit 1) (value "SN74LV1T34DBV") (footprint "Package_TO_SOT_SMD:SOT-23-5")
  8178. )
  8179. (path "/00000000-0000-0000-0000-00006271597a"
  8180. (reference "U8") (unit 1) (value "VEML7700") (footprint "VEML7700:VEML7700-TOP")
  8181. )
  8182. (path "/00000000-0000-0000-0000-000061fa38cf"
  8183. (reference "Z1") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8184. )
  8185. (path "/00000000-0000-0000-0000-000061fa43dc"
  8186. (reference "Z2") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8187. )
  8188. (path "/00000000-0000-0000-0000-000061fa4fb7"
  8189. (reference "Z3") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8190. )
  8191. (path "/00000000-0000-0000-0000-000061fa5b5e"
  8192. (reference "Z4") (unit 1) (value "BF350-3AA Strain Gauge") (footprint "strain:BF350-3AA")
  8193. )
  8194. (path "/00000000-0000-0000-0000-000062038103"
  8195. (reference "Z5") (unit 1) (value "dummy_keepouts") (footprint "view_custom:ViewKeepouts3d")
  8196. )
  8197. (path "/00000000-0000-0000-0000-000062311cef"
  8198. (reference "Z6") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8199. )
  8200. (path "/00000000-0000-0000-0000-000062314e0d"
  8201. (reference "Z7") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8202. )
  8203. (path "/00000000-0000-0000-0000-00006233c06f"
  8204. (reference "Z8") (unit 1) (value "RotorScrew (BOM-only)") (footprint "BOM_Only:bom_only_no_pin")
  8205. )
  8206. (path "/00000000-0000-0000-0000-0000623f109c"
  8207. (reference "Z9") (unit 1) (value "WatchGlass39.5mm") (footprint "BOM_Only:bom_only_no_pin")
  8208. )
  8209. (path "/00000000-0000-0000-0000-00006246aa1a"
  8210. (reference "Z10") (unit 1) (value "BLDCMotor") (footprint "BOM_Only:bom_only_no_pin")
  8211. )
  8212. )
  8213. )